content
stringlengths
4
1.04M
lang
stringclasses
358 values
score
int64
0
5
repo_name
stringlengths
5
114
repo_path
stringlengths
4
229
repo_licenses
listlengths
1
8
parameters { #include incl_nested.stan } transformed parameters { real w = y + z; }
Stan
3
sthagen/stan-dev-stan
src/test/test-models/included/incl_rec.stan
[ "CC-BY-3.0", "BSD-3-Clause" ]
2016-02-18 11:39:14 purple_request_4 Enter password for two factor authentication 2016-02-18 11:39:14 [11:39] 2016-02-18 11:39:36 fsociety 75345 2016-02-18 11:39:36 - [purple_request_4] is away: Offline 2016-04-06 15:06:08 purple_request_4 Password needed 2016-04-06 15:06:08 [15:06] 2016-04-06 15:06:08 purple_request_4 Password needed 2016-04-06 15:06:08 purple_request_4 Enter password for two factor authentication
IRC log
0
0x4b1dN/2016-dots
misc/weechat/logs/irc.bitlbee.purple_request_4.weechatlog
[ "MIT" ]
' ********** Copyright 2016 Roku Corp. All Rights Reserved. ********** Library "Roku_Ads.brs" function Main() as void screen = CreateObject("roSGScreen") m.port = CreateObject("roMessagePort") screen.setMessagePort(m.port) scene = screen.CreateScene("MainScene") screen.show() PlayContentWithCSAS(scene) end function sub PlayContentWithCSAS(scene as Object) adUrl = "https://devtools.web.roku.com/samples/sample.xml" videoUrl = "http://pmd205604tn.download.theplatform.com.edgesuite.net/Demo_Sub_Account_2/411/535/ED_HD__571970.m3u8" m.adIface = Roku_Ads() 'RAF initialize m.adIface.enableAdMeasurements(true) m.adIface.setContentGenre("Entertainment") m.adIface.setContentId("CSASAdSample" ) m.adIface.setContentLength(600) m.adIface.SetDebugOutput(true) 'for debug purpose m.adIface.SetAdPrefs(false) m.adIface.SetAdURL(adUrl) m.adPods = m.adIface.GetAds() myContentNode = createObject("roSgNode", "ContentNode") myContentNode.url = videoUrl myContentNode.length = 600 myContentNode.streamFormat = "hls" csasStream = m.adIface.constructStitchedStream(myContentNode, m.adPods) m.adIface.renderStitchedStream(csasStream, scene) end sub
Brightscript
4
khangh/samples
advertising/CSASAdSample/source/main.brs
[ "MIT" ]
<html> <head> </head> <body> custom </body> </html>
HTML
0
frank-dspeed/nw.js
test/sanity/webview-cdt-ext/extensions/custom.html
[ "MIT" ]
Prefix(:=<http://example.org/>) Ontology(:TestPun Declaration(ObjectProperty(:p)) ObjectPropertyAssertion(:p :i :j) SubClassOf(:i :k) )
Web Ontology Language
3
jmcmurry/SciGraph
SciGraph-core/src/test/resources/ontologies/cases/TestPun.owl
[ "Apache-2.0" ]
//===--- UIDHandling.cpp --------------------------------------------------===// // // This source file is part of the Swift.org open source project // // Copyright (c) 2014 - 2020 Apple Inc. and the Swift project authors // Licensed under Apache License v2.0 with Runtime Library Exception // // See https://swift.org/LICENSE.txt for license information // See https://swift.org/CONTRIBUTORS.txt for the list of Swift project authors // //===----------------------------------------------------------------------===// #include "SourceKit/Support/UIdent.h" #include "sourcekitd/Internal.h" #include "llvm/Support/Mutex.h" #include <Block.h> using namespace SourceKit; static llvm::sys::Mutex GlobalHandlersMtx; static sourcekitd_uid_handler_t UidMappingHandler; static sourcekitd_str_from_uid_handler_t StrFromUidMappingHandler; void sourcekitd_set_uid_handler(sourcekitd_uid_handler_t handler) { llvm::sys::ScopedLock L(GlobalHandlersMtx); sourcekitd_uid_handler_t newHandler = Block_copy(handler); Block_release(UidMappingHandler); UidMappingHandler = newHandler; } void sourcekitd_set_uid_handlers( sourcekitd_uid_from_str_handler_t uid_from_str, sourcekitd_str_from_uid_handler_t str_from_uid) { llvm::sys::ScopedLock L(GlobalHandlersMtx); sourcekitd_uid_handler_t newUIDFromStrHandler = Block_copy(uid_from_str); Block_release(UidMappingHandler); UidMappingHandler = newUIDFromStrHandler; sourcekitd_str_from_uid_handler_t newStrFromUIDHandler = Block_copy(str_from_uid); Block_release(StrFromUidMappingHandler); StrFromUidMappingHandler = newStrFromUIDHandler; } sourcekitd_uid_t sourcekitd::SKDUIDFromUIdent(UIdent UID) { if (void *Tag = UID.getTag()) return reinterpret_cast<sourcekitd_uid_t>(Tag); if (UidMappingHandler) { sourcekitd_uid_t skduid = UidMappingHandler(UID.c_str()); if (skduid) { UID.setTag(skduid); return skduid; } } return reinterpret_cast<sourcekitd_uid_t>(UID.getAsOpaqueValue()); } UIdent sourcekitd::UIdentFromSKDUID(sourcekitd_uid_t uid) { if (StrFromUidMappingHandler) return UIdent(StrFromUidMappingHandler(uid)); return UIdent::getFromOpaqueValue(uid); }
C++
4
gandhi56/swift
tools/SourceKit/tools/sourcekitd/lib/API/UIDHandling.cpp
[ "Apache-2.0" ]
import Node from './shared/Node'; import Component from '../Component'; import { walk } from 'estree-walker'; import { BasePattern, Identifier } from 'estree'; import TemplateScope from './shared/TemplateScope'; import { TemplateNode } from '../../interfaces'; import compiler_errors from '../compiler_errors'; const applicable = new Set(['Identifier', 'ObjectExpression', 'ArrayExpression', 'Property']); export default class Let extends Node { type: 'Let'; name: Identifier; value: Identifier; names: string[] = []; constructor(component: Component, parent: Node, scope: TemplateScope, info: TemplateNode) { super(component, parent, scope, info); this.name = { type: 'Identifier', name: info.name }; const { names } = this; if (info.expression) { this.value = info.expression; walk(info.expression, { enter(node: Identifier | BasePattern) { if (!applicable.has(node.type)) { return component.error(node as any, compiler_errors.invalid_let); } if (node.type === 'Identifier') { names.push((node as Identifier).name); } // slightly unfortunate hack if (node.type === 'ArrayExpression') { node.type = 'ArrayPattern'; } if (node.type === 'ObjectExpression') { node.type = 'ObjectPattern'; } } }); } else { names.push(this.name.name); } } }
TypeScript
4
vatro/svelte
src/compiler/compile/nodes/Let.ts
[ "MIT" ]
.row.empty-state .col-12 .svg-content = image_tag 'illustrations/labels.svg', data: { qa_selector: 'svg_content' } .text-content.gl-text-center.gl-pt-0! %h4= _('There are no topics to show.') %p= _('Add topics to projects to help users find them.')
Haml
3
nowkoai/test
app/views/shared/empty_states/_topics.html.haml
[ "MIT" ]
package conf; import com.google.inject.AbstractModule; import com.google.inject.Singleton; import services.UserService; import services.UserServiceImpl; @Singleton public class Module extends AbstractModule { protected void configure() { bind(UserService.class).to(UserServiceImpl.class); } }
Java
3
DBatOWL/tutorials
ninja/src/main/java/conf/Module.java
[ "MIT" ]
Note 0 Copyright (C) 2017 Jonathan Hough. All rights reserved. ) NB. Implementation of K-Nearest Neighbour algorithm. coclass 'KNN' NB. Runs the k-nn algorithm to find the k-nearest neighbours NB. of the given input datapoints for the given NB. dataset. NB. params: NB. 0: dataset of data points NB. 1: number of neighbours NB. 2: number of classes NB. 3: input datapoints to search nearest neighbours for. NB. NB. Example. NB. > knn=: ((>0{D);(>1{D);7;I) conew 'KNN' NB. > NB. I is some arbitrary points NB. > NB. D is the dataset;classes NB. > NB. 7 indicates we want to find the 7 nn classes NB. > ... NB. > NB. generate nearest neighbours NB. > predict__knn '' NB. create=: 3 : 0 'd c k i'=:y ) NB. Returns the predicted classes per each NB. input datapoint. returnMaxClass=: 3 : 0 a=. (#/.~ y) b=. (~. <"1 y) /: a {:b ) NB. enumerateClasses=: 3 : 0 <(~. <"1 y) ,: <"0 (#/.~ y) ) NB. Predicts the classes for each of the input NB. datapoints. For each datapoint this will return NB. the k-classes representing the k-nearest neighbours. predict=: 3 : 0 " 1 dc=: d;c findnn=: k&{.@:(([ +/@:*:@:-"_ 1 >@:{.@:]) /:~ >@:{:@:]) nnset =: i findnn"1 _ dc distances=: nnset maxClasses=: returnMaxClass"2 nnset enumerateClasses"2 nnset ) destroy=: codestroy Note 'Example' > knn=: (data,2;(>{.data)) conew 'KNN' > predict__knn '' > R=: I.&:> (~. ="0 _ ])#.&:> maxClasses__knn > pd 'reset' > pd 'type marker' > pd <"2 (<"1 |:2{."1 >{.data) ({~&:>)"0 _ <"1 R > pd 'show' )
J
4
jonghough/jlearn
knn/knn.ijs
[ "MIT" ]
grammar t053heteroT9; options { language=JavaScript; output=AST; } @header { function V2() { var x, y, z, token, ttype; if (arguments.length===4) { ttype = arguments[0]; x = arguments[1]; y = arguments[2]; z = arguments[3]; token = new org.antlr.runtime.CommonToken(ttype, ""); } else if (arguments.length===3) { ttype = arguments[0]; token = arguments[1]; x = arguments[2]; y = 0; z = 0; } else { throw new Error("Invalid args"); } V2.superclass.constructor.call(this, token); this.x = x; this.y = y; this.z = z; }; org.antlr.lang.extend(V2, org.antlr.runtime.tree.CommonTree, { toString: function() { var txt = ""; if (this.token) { txt += this.getText(); } txt += "<V>;"+this.x.toString()+this.y.toString()+this.z.toString(); return txt; } }); } a : ID -> ID<V2>[42,19,30] ID<V2>[$ID,99]; ID : 'a'..'z'+ ; WS : (' '|'\n') {$channel=HIDDEN;} ;
G-code
3
DanielMabadeje/Artificial-Intelligence-Deep-Learning-Machine-Learning-Tutorials
java/java2py/antlr-3.1.3/runtime/JavaScript/tests/functional/t053heteroT9.g
[ "Apache-2.0" ]
parser grammar RecoveryParser; options { superClass = 'org.batfish.grammar.BatfishParser'; tokenVocab = RecoveryLexer; } block_statement : BLOCK tail_word* NEWLINE inner_statement* ; inner_statement : INNER tail_word* NEWLINE ; statement : block_statement | simple_statement ; recovery : statement* EOF ; simple_statement : SIMPLE tail_word* NEWLINE ; tail_word : BLOCK | INNER | SIMPLE ;
ANTLR
4
zabrewer/batfish
projects/batfish-common-protocol/src/test/antlr4/org/batfish/grammar/recovery/RecoveryParser.g4
[ "Apache-2.0" ]
scriptname _DE_ZReporterCScript extends ObjectReference GlobalVariable property _DE_ZTestValC auto GlobalVariable property _DE_PlacementErrorCounter auto GlobalVariable property _DE_HelpDone_PlacementError auto GlobalVariable property _DE_CampsitePlacementOn auto ObjectReference property _DE_ZTestShooterREF auto import math Event OnInit() ;debug.Trace("[Frostfall] C reporting X:" + self.GetPositionX() + ", Y:" + self.GetPositionY() + ", Z:" + self.GetPositionZ()) _DE_ZTestValC.SetValue(self.GetPositionZ()) if _DE_HelpDone_PlacementError.GetValue() == 1 float XVariance = abs(self.GetPositionX()) - abs(_DE_ZTestShooterREF.GetPositionX()) float YVariance = abs(self.GetPositionY()) - abs(_DE_ZTestShooterREF.GetPositionY()) if abs(XVariance) >= 100.0 || abs(YVariance) >= 100.0 _DE_PlacementErrorCounter.SetValue(_DE_PlacementErrorCounter.GetValueInt() + 1) if _DE_PlacementErrorCounter.GetValue() >= 3 ;3 strikes, you're out _DE_CampsitePlacementOn.SetValue(3) _DE_PlacementErrorCounter.SetValue(0) endif else _DE_PlacementErrorCounter.SetValue(0) endif endif self.Disable() self.Delete() endEvent
Papyrus
4
chesko256/Campfire
Scripts/Source/_DE_ZReporterCScript.psc
[ "MIT" ]
/* Copyright 2021 The TensorFlow Authors. All Rights Reserved. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. ==============================================================================*/ #include "tensorflow/cc/experimental/libtf/impl/string.h" #include <unordered_set> // It is important for the container below to not invalidate pointers to // elements when elements are inserted, because the String class stores such // pointers. This rules out, for example, absl::flat_hash_set. using StringTable = std::unordered_set<std::string>; namespace tf { namespace libtf { namespace impl { String::String(const char* s) { static StringTable* table = new StringTable; value_ = &*table->insert(s).first; } } // namespace impl } // namespace libtf } // namespace tf
C++
4
EricRemmerswaal/tensorflow
tensorflow/cc/experimental/libtf/impl/string.cc
[ "Apache-2.0" ]
/****************************************************************************** * Copyright 2018 The Apollo Authors. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. *****************************************************************************/ #ifndef CYBER_TRANSPORT_MESSAGE_MESSAGE_INFO_H_ #define CYBER_TRANSPORT_MESSAGE_MESSAGE_INFO_H_ #include <cstddef> #include <cstdint> #include <string> #include "cyber/transport/common/identity.h" namespace apollo { namespace cyber { namespace transport { class MessageInfo { public: MessageInfo(); MessageInfo(const Identity& sender_id, uint64_t seq_num); MessageInfo(const Identity& sender_id, uint64_t seq_num, const Identity& spare_id); MessageInfo(const MessageInfo& another); virtual ~MessageInfo(); MessageInfo& operator=(const MessageInfo& another); bool operator==(const MessageInfo& another) const; bool operator!=(const MessageInfo& another) const; bool SerializeTo(std::string* dst) const; bool SerializeTo(char* dst, std::size_t len) const; bool DeserializeFrom(const std::string& src); bool DeserializeFrom(const char* src, std::size_t len); // getter and setter const Identity& sender_id() const { return sender_id_; } void set_sender_id(const Identity& sender_id) { sender_id_ = sender_id; } uint64_t channel_id() const { return channel_id_; } void set_channel_id(uint64_t channel_id) { channel_id_ = channel_id; } uint64_t seq_num() const { return seq_num_; } void set_seq_num(uint64_t seq_num) { seq_num_ = seq_num; } const Identity& spare_id() const { return spare_id_; } void set_spare_id(const Identity& spare_id) { spare_id_ = spare_id; } static const std::size_t kSize; private: Identity sender_id_; uint64_t channel_id_ = 0; uint64_t seq_num_ = 0; Identity spare_id_; }; } // namespace transport } // namespace cyber } // namespace apollo #endif // CYBER_TRANSPORT_MESSAGE_MESSAGE_INFO_H_
C
4
seeclong/apollo
cyber/transport/message/message_info.h
[ "Apache-2.0" ]
# Copyright (c) 2018-2021, Carnegie Mellon University # See LICENSE for details @1 := @(1); @2 := @(2); zero := @.cond(e -> e=0 or (IsValue(e) and (e.v=0 or e.v=0.0))); one := @.cond(e -> e=1 or (IsValue(e) and (e.v=1 or e.v=1.0))); negone := @.cond(e -> e=-1 or (IsValue(e) and (e.v=-1 or e.v=-1.0))); IS := objid -> When(IsList(objid), o -> ObjId(o) in objid, o -> Same(ObjId(o), objid) ); IS_A := (o, objid) -> Same(ObjId(o), objid); CHILDREN_ARE := (objid) -> (o -> ForAll(o.children(), IS(objid))); NOT_ALL_CHILDREN_ARE := (objid) -> (o -> not ForAll(o.children(), IS(objid))); NOT_ALL_ARGS_ARE := (objid) -> (o -> not ForAll(o.args, IS(objid))); countRealAdds := c -> Sum(Collect(c, @(1, [add,sub], x->IsRealT(x.t))), op -> Length(op.args)-1); countRealMuls := c -> Sum(Collect(c, @(1, mul, x->IsRealT(x.t))), op -> Length(op.args)-1); countVectMuls := c -> Sum(Collect(c, @(1, mul, x->IsVecT(x.t))), op -> Length(op.args)-1); countVectAdds := c -> Sum(Collect(c, @(1, [add,sub], x->IsVecT(x.t))), op -> Length(op.args)-1);
GAP
3
sr7cb/spiral-software
namespaces/spiral/code/hacks.gi
[ "BSD-2-Clause-FreeBSD" ]
.container { width: 100%; } @media (min-width: 640px) { .container { max-width: 640px; } } @media (min-width: 768px) { .container { max-width: 768px; } } @media (min-width: 1024px) { .container { max-width: 1024px; } } @media (min-width: 1280px) { .container { max-width: 1280px; } } @media (min-width: 1536px) { .container { max-width: 1536px; } } #app .btn { button: yes; } @font-face { font-family: Inter; } @page { margin: 1cm; } .custom-component { font-weight: 700; } .custom-important-component { text-align: center !important; } @keyframes spin { to { transform: rotate(360deg); } } #app .animate-spin { animation: spin 1s linear infinite; } #app .font-bold { font-weight: 700; } .custom-util { button: no; } #app .group:hover .group-hover\:focus-within\:text-left:focus-within { text-align: left; } #app [dir='rtl'] .rtl\:active\:text-center:active { text-align: center; } @media (prefers-reduced-motion: no-preference) { #app .motion-safe\:hover\:text-center:hover { text-align: center; } } #app .dark .dark\:focus\:text-left:focus { text-align: left; } @media (min-width: 768px) { #app .md\:hover\:text-right:hover { text-align: right; } }
CSS
3
admariner/tailwindcss
tests/important-selector.test.css
[ "MIT" ]
extends /templates/base block content #codeplayback-view input.searchInput#userid-search(placeholder='Filter: userID (exact)') br input.searchInput#levelslug-search(placeholder='Filter: levelSlug (exact)') #codelogtable table.table.table-striped tr th date th userID th levelSlug th if view.codelogs for codelog in view.codelogs.models +codeLogRow(codelog) mixin codeLogRow(codelog) tr td= codelog.get('created') td= codelog.get('userID') td= codelog.get('levelSlug') td button.button.playback(data-codelog=codelog.get('log')) Playback
Jade
4
cihatislamdede/codecombat
app/templates/admin/codelogs-view.jade
[ "CC-BY-4.0", "MIT" ]
# Written by Bob Rotsted # Copyright Reservoir Labs, 2014. # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation, either version 3 of the License, or # (at your option) any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program. If not, see <http://www.gnu.org/licenses/>. module HistorySummary; export { global epoch: interval = 60min &redef; redef enum Log::ID += { LOG }; type Info: record { start_time: time &log; end_time: time &log; history: string &log; cnt: double &log; }; global log_history_summary: event(rec: Info); } event bro_init() { local rec: HistorySummary::Info; Log::create_stream(HistorySummary::LOG, [$columns=Info, $ev=log_history_summary]); local r1 = SumStats::Reducer($stream="history.summary", $apply=set(SumStats::SUM)); SumStats::create([$name="top_history.summary", $epoch=epoch, $reducers=set(r1), $epoch_result(ts: time, key: SumStats::Key, result: SumStats::Result) = { local r = result["history.summary"]; rec = [$start_time=(ts - epoch), $end_time=ts, $history=key$str, $cnt=r$sum]; Log::write(HistorySummary::LOG, rec); } ]); } event connection_state_remove (c: connection) { if ( ! c$conn?$history ) return; SumStats::observe("history.summary", [$str=c$conn$history], [$num=1]); }
Bro
5
reservoirlabs/bro-scripts
troubleshooting/conn-history-summary.bro
[ "Apache-2.0" ]
grammar HelloWorld; helloWorld : 'hello' NAME; NAME : [a-z]+ ; WS : [ \t\r\n]+ -> skip ;
ANTLR
4
kennethsequeira/Hello-world
Antlr4/src/main/antlr4/HelloWorld.g4
[ "MIT" ]
// https://html.spec.whatwg.org/#htmlhyperlinkelementutils interface mixin HTMLHyperlinkElementUtils { [CEReactions] stringifier attribute USVString href; readonly attribute USVString origin; [CEReactions] attribute USVString protocol; [CEReactions] attribute USVString username; [CEReactions] attribute USVString password; [CEReactions] attribute USVString host; [CEReactions] attribute USVString hostname; [CEReactions] attribute USVString port; [CEReactions] attribute USVString pathname; [CEReactions] attribute USVString search; [CEReactions] attribute USVString hash; };
WebIDL
4
Bkucera/jsdom
lib/jsdom/living/nodes/HTMLHyperlinkElementUtils.webidl
[ "MIT" ]
REBOL [ System: "REBOL [R3] Language Interpreter and Run-time Environment" Title: "REBOL 3 Mezzanine: Math" Rights: { Copyright 2012 REBOL Technologies REBOL is a trademark of REBOL Technologies } License: { Licensed under the Apache License, Version 2.0 See: http://www.apache.org/licenses/LICENSE-2.0 } ] ;- mod and modulo are now implemented as natives ; ;mod: func [ ; "Compute a nonnegative remainder of A divided by B." ; ; In fact the function tries to find the remainder, ; ; that is "almost non-negative" ; ; Example: 0.15 - 0.05 - 0.1 % 0.1 is negative, ; ; but it is "almost" zero, i.e. "almost non-negative" ; [catch] ; a [number! money! time!] ; b [number! money! time!] "Must be nonzero." ; /local r ;] [ ; ; Compute the smallest non-negative remainder ; all [negative? r: a % b r: r + b] ; ; Use abs a for comparisons ; a: abs a ; ; If r is "almost" b (i.e. negligible compared to b), the ; ; result will be r - b. Otherwise the result will be r ; either all [a + r = (a + b) positive? r + r - b] [r - b] [r] ;] ; ;modulo: func [ ; {Wrapper for MOD that handles errors like REMAINDER. Negligible values (compared to A and B) are rounded to zero.} ; ;[catch] ; a [number! money! time!] ; b [number! money! time!] "Absolute value will be used" ; /local r ;] [ ; ; Coerce B to a type compatible with A ; any [number? a b: make a b] ; ; Get the "accurate" MOD value ; r: mod a abs b ; ; If the MOD result is "near zero", w.r.t. A and B, ; ; return 0--the "expected" result, in human terms. ; ; Otherwise, return the result we got from MOD. ; either any [a - r = a r + b = b] [make r 0] [r] ;] sign?: func [ "Returns sign of number as 1, 0, or -1 (to use as multiplier)." number [number! money! time!] ][ case [ positive? number [1] negative? number [-1] true [0] ] ] find-min: func [ {Returns the series where the smallest value is found, or none if the series is empty.} series [series!] {Series to search} /skip {Treat the series as records of fixed size} size [integer!] /local spot ][ size: any [size 1] if 1 > size [cause-error 'script 'out-of-range size] spot: series forskip series size [ if lesser? first series first spot [spot: series] ] spot ] find-max: func [ {Returns the series where the largest value is found, or none if the series is empty.} series [series!] {Series to search} /skip {Treat the series as records of fixed size} size [integer!] /local spot ][ size: any [size 1] if 1 > size [cause-error 'script 'out-of-range size] spot: series forskip series size [ if greater? first series first spot [spot: series] ] spot ]
Rebol
4
semarie/rebol3-oldes
src/mezz/mezz-math.reb
[ "Apache-2.0" ]
module IntBits import IntCasts import IntEqOrd import IntNum import Data.Bits import Data.DPair -- This file to be deleted once these interfaces are added to base public export %inline Bits Int8 where Index = Subset Nat (`LT` 8) (.&.) = prim__and_Int8 (.|.) = prim__or_Int8 xor = prim__xor_Int8 bit = (1 `shiftL`) zeroBits = 0 testBit x i = (x .&. bit i) /= 0 shiftR x = prim__shr_Int8 x . cast . fst shiftL x = prim__shl_Int8 x . cast . fst complement = xor (-1) oneBits = -1 public export %inline Bits Int16 where Index = Subset Nat (`LT` 16) (.&.) = prim__and_Int16 (.|.) = prim__or_Int16 xor = prim__xor_Int16 bit = (1 `shiftL`) zeroBits = 0 testBit x i = (x .&. bit i) /= 0 shiftR x = prim__shr_Int16 x . cast . fst shiftL x = prim__shl_Int16 x . cast . fst complement = xor (-1) oneBits = -1 public export %inline Bits Int32 where Index = Subset Nat (`LT` 32) (.&.) = prim__and_Int32 (.|.) = prim__or_Int32 xor = prim__xor_Int32 bit = (1 `shiftL`) zeroBits = 0 testBit x i = (x .&. bit i) /= 0 shiftR x = prim__shr_Int32 x . cast . fst shiftL x = prim__shl_Int32 x . cast . fst complement = xor (-1) oneBits = -1 public export %inline Bits Int64 where Index = Subset Nat (`LT` 64) (.&.) = prim__and_Int64 (.|.) = prim__or_Int64 xor = prim__xor_Int64 bit = (1 `shiftL`) zeroBits = 0 testBit x i = (x .&. bit i) /= 0 shiftR x = prim__shr_Int64 x . cast . fst shiftL x = prim__shl_Int64 x . cast . fst complement = xor (-1) oneBits = -1 public export %inline Bits Bits64 where Index = Subset Nat (`LT` 64) (.&.) = prim__and_Bits64 (.|.) = prim__or_Bits64 xor = prim__xor_Bits64 bit = (1 `shiftL`) zeroBits = 0 testBit x i = (x .&. bit i) /= 0 shiftR x = prim__shr_Bits64 x . fromInteger . cast . fst shiftL x = prim__shl_Bits64 x . fromInteger . cast . fst complement = xor 0xffffffffffffffff oneBits = 0xffffffffffffffff public export %inline Bits Integer where Index = Nat (.&.) = prim__and_Integer (.|.) = prim__or_Integer xor = prim__xor_Integer bit = (1 `shiftL`) zeroBits = 0 testBit x i = (x .&. bit i) /= 0 shiftR x = prim__shr_Integer x . cast shiftL x = prim__shl_Integer x . cast complement = xor (-1) oneBits = (-1)
Idris
4
mmhelloworld/idris-jvm
tests/chez/integers/IntBits.idr
[ "BSD-3-Clause" ]
xubop-rekyd-bakal-nubuf-pahaf-gicuh-logeb-gocif-petod-galip-fuxux
BitBake
2
chrisburr/gct
gsi_openssh/source/regress/unittests/sshkey/testdata/ed25519_1.fp.bb
[ "Apache-2.0" ]
#!/bin/bash grunt minify gzip -c < build/angular.min.js > build/angular.min.js.gzip ls -l build/angular.min.*
Shell
4
Inventorum/angular.js
check-size.sh
[ "MIT" ]
USE: vocabs.loader IN: compiler.tests.reload ! "parser" reload ! "sequences" reload ! "kernel" reload
Factor
2
alex-ilin/factor
basis/compiler/tests/reload.factor
[ "BSD-2-Clause" ]
-- Taken from an example from Autodesk's MAXScript reference: -- http://help.autodesk.com/view/3DSMAX/2016/ENU/?guid=__files_GUID_0876DF46_FAA3_4131_838D_5739A67FF2C1_htm macroscript FreeSpline category:"HowTo" tooltip:"FreeSpline" ( local old_pos local new_spline local second_knot_set fn get_mouse_pos pen_pos old_pen_pos = ( if old_pos == undefined then old_pos = old_pen_pos if distance pen_pos old_pos > 10 then ( if second_knot_set then addKnot new_spline 1 #smooth #curve pen_pos else ( setKnotPoint new_spline 1 2 pen_pos second_knot_set = true ) old_pos = pen_pos updateShape new_spline )-- end if )-- end fn fn draw_new_line old_pen_pos = ( pickPoint mouseMoveCallback:#(get_mouse_pos,old_pen_pos) ) undo"Free Spline"on( new_spline = splineShape () old_pen_pos = pickPoint () if old_pen_pos == #RightClick then delete new_spline else ( select new_spline new_spline.pos = old_pen_pos addNewSpline new_spline addKnot new_spline 1 #smooth #curve old_pen_pos addKnot new_spline 1 #smooth #curve old_pen_pos second_knot_set = false draw_new_line old_pen_pos q = querybox "Close Spline?" title:"Free Spline" if q then ( close new_spline 1 updateshape new_spline ) select new_spline )--end else )--end undo )--end script
MAXScript
4
JavascriptID/sourcerer-app
src/test/resources/samples/langs/MAXScript/macro-2.mcr
[ "MIT" ]
# Distributed under the terms of the BSD3 license # This file needs to be renamed to something like "urweb-20110917.ebuild", to reflect the Ur/Web version to use. inherit eutils EAPI=3 DESCRIPTION="A domain-specific functional programming language for modern web applications" HOMEPAGE="http://www.impredicative.com/ur/" SRC_URI="http://www.impredicative.com/ur/${P}.tgz" LICENSE="BSD" SLOT="0" KEYWORDS="~amd64 ~x86" IUSE="" DEPEND="dev-lang/mlton dev-libs/openssl" RDEPEND="${DEPEND}" S="${WORKDIR}/urweb" src_unpack() { unpack ${A} } src_configure() { econf || die } src_compile() { emake || die } src_install() { emake DESTDIR=${D} install || die dodoc CHANGELOG || die }
Gentoo Ebuild
3
apple314159/urweb
urweb.ebuild
[ "BSD-3-Clause" ]
(datatype progression X : (A * (A --> A) * (A --> boolean)); ====================================== X : (progression A);) (define delay {(progression A) --> (progression A)} (@p X F E) -> (if (not (E X)) (@p (F X) F E) (error "progression exhausted!~%"))) (define force {(progression A) --> A} (@p X F E) -> X) (define end? {(progression A) --> boolean} (@p X _ E) -> (E X))
Shen
4
WilliamStone/Shen.java
shen/test/streams.shen
[ "Unlicense" ]
insert into utf8mb4 values (231), (214), (33), (2), (42), (137), (186), (3), (23), (248);
SQL
2
imtbkcat/tidb-lightning
tests/character_sets/utf8mb4/charsets.utf8mb4.sql
[ "Apache-2.0" ]
// // This file is part of the Simutrans project under the Artistic License. // (see LICENSE.txt) // // // Tests for building and removal of tunnels // function test_way_tunnel_build_straight() { local digger = command_x(tool_build_tunnel) local raise = command_x(tool_raise_land) local lower = command_x(tool_lower_land) local remover = command_x(tool_remover) local default_tunnel = tunnel_desc_x.get_available_tunnels(wt_road)[0] local pl = player_x(0) ASSERT_TRUE(default_tunnel != null) { ASSERT_EQUAL(raise.work(pl, coord3d(3, 2, 0)), null) ASSERT_EQUAL(raise.work(pl, coord3d(4, 2, 0)), null) digger.set_flags(2) ASSERT_EQUAL(digger.work(pl, tile_x(3, 1, 0), default_tunnel.get_name()), null) ASSERT_WAY_PATTERN(wt_road, coord3d(0, 0, 0), [ "........", "...0....", "........", "........", "........", "........", "........", "........" ]) ASSERT_EQUAL(digger.work(pl, tile_x(3, 2, 0), default_tunnel.get_name()), null) ASSERT_WAY_PATTERN(wt_road, coord3d(0, 0, 0), [ "........", "...0....", "...0....", "........", "........", "........", "........", "........" ]) ASSERT_EQUAL(remover.work(pl, coord3d(3, 1, 0)), null) ASSERT_EQUAL(remover.work(pl, coord3d(3, 2, 0)), null) ASSERT_WAY_PATTERN(wt_road, coord3d(0, 0, 0), [ "........", "........", "........", "........", "........", "........", "........", "........" ]) digger.set_flags(0) } { ASSERT_EQUAL(raise.work(pl, coord3d(3, 3, 0)), null) ASSERT_EQUAL(raise.work(pl, coord3d(4, 3, 0)), null) ASSERT_EQUAL(digger.work(pl, tile_x(3, 1, 0), default_tunnel.get_name()), null) ASSERT_WAY_PATTERN(wt_road, coord3d(0, 0, 0), [ "........", "...4....", "...5....", "...1....", "........", "........", "........", "........" ]) } { ASSERT_EQUAL(digger.work(pl, tile_x(2, 2, 0), default_tunnel.get_name()), null) ASSERT_WAY_PATTERN(wt_road, coord3d(0, 0, 0), [ "........", "...4....", "..2D....", "...1....", "........", "........", "........", "........" ]) // building with ctrl digger.set_flags(2) ASSERT_EQUAL(digger.work(pl, tile_x(4, 2, 0), default_tunnel.get_name()), null) ASSERT_WAY_PATTERN(wt_road, coord3d(0, 0, 0), [ "........", "...4....", "..2D0...", "...1....", "........", "........", "........", "........" ]) digger.set_flags(0) // remove the single tunnel entrance ASSERT_EQUAL(remover.work(pl, coord3d(4, 2, 0)), null) ASSERT_WAY_PATTERN(wt_road, coord3d(0, 0, 0), [ "........", "...4....", "..2D....", "...1....", "........", "........", "........", "........" ]) // remove tunnel network (more than 2 entrances) // should fail without ctrl local err = remover.work(pl, coord3d(3, 3, 0)) ASSERT_EQUAL(err, "This tunnel branches. You can try Control+Click to remove.") ASSERT_WAY_PATTERN(wt_road, coord3d(0, 0, 0), [ "........", "...4....", "..2D....", "...1....", "........", "........", "........", "........" ]) remover.set_flags(2) // activate ctrl ASSERT_EQUAL(remover.work(pl, coord3d(3, 3, 0)), null) ASSERT_WAY_PATTERN(wt_road, coord3d(0, 0, 0), [ "........", "........", "........", "........", "........", "........", "........", "........" ]) remover.set_flags(0) // deactivate ctrl } // clean up ASSERT_EQUAL(lower.work(pl, coord3d(3, 2, 0)), null) ASSERT_EQUAL(lower.work(pl, coord3d(3, 3, 0)), null) ASSERT_EQUAL(lower.work(pl, coord3d(4, 2, 0)), null) ASSERT_EQUAL(lower.work(pl, coord3d(4, 3, 0)), null) RESET_ALL_PLAYER_FUNDS() } function test_way_tunnel_build_up_down() { local digger = command_x(tool_build_tunnel) local raise = command_x(tool_raise_land) local lower = command_x(tool_lower_land) local setslope = command_x(tool_setslope) local remover = command_x(tool_remover) local default_tunnel = tunnel_desc_x.get_available_tunnels(wt_rail)[0] local pl = player_x(0) ASSERT_TRUE(default_tunnel != null) ASSERT_EQUAL(raise.work(pl, coord3d(1, 1, 0)), null) ASSERT_EQUAL(raise.work(pl, coord3d(2, 1, 0)), null) ASSERT_EQUAL(raise.work(pl, coord3d(1, 2, 0)), null) ASSERT_EQUAL(raise.work(pl, coord3d(2, 2, 0)), null) ASSERT_EQUAL(raise.work(pl, coord3d(1, 3, 0)), null) ASSERT_EQUAL(raise.work(pl, coord3d(2, 3, 0)), null) digger.set_flags(2) // ctrl ASSERT_EQUAL(digger.work(pl, coord3d(1, 0, 0), default_tunnel.get_name()), null) ASSERT_EQUAL(digger.work(pl, coord3d(1, 0, 0), coord3d(1, 1, 0), default_tunnel.get_name()), null) // invalid param { ASSERT_EQUAL(setslope.work(pl, coord3d(1, 1, 0), "42"), "Only up and down movement in the underground!") ASSERT_WAY_PATTERN(wt_rail, coord3d(0, 0, 0), // no change [ ".4......", ".1......", "........", "........", "........", "........", "........", "........" ]) } // Build up: Does not work: surface in the way { ASSERT_EQUAL(setslope.work(pl, coord3d(1, 1, 0), "" + slope.all_up_slope), "Tile not empty.") ASSERT_WAY_PATTERN(wt_rail, coord3d(0, 0, 0), // no change [ ".4......", ".1......", "........", "........", "........", "........", "........", "........" ]) } // Build down { local old_maint = pl.get_current_maintenance() ASSERT_EQUAL(setslope.work(pl, coord3d(1, 1, 0), "" + slope.all_down_slope), null) ASSERT_WAY_PATTERN(wt_rail, coord3d(0, 0, 0), [ ".4......", "........", "........", "........", "........", "........", "........", "........" ]) ASSERT_WAY_PATTERN(wt_rail, coord3d(0, 0, -1), [ "........", ".1......", "........", "........", "........", "........", "........", "........" ]) ASSERT_EQUAL(pl.get_current_maintenance(), old_maint) } // try building duble slope down, rail does not support double slopes { local old_maint = pl.get_current_maintenance() ASSERT_EQUAL(setslope.work(pl, coord3d(1, 1, -1), "" + slope.all_down_slope), "Tile not empty.") ASSERT_WAY_PATTERN(wt_rail, coord3d(0, 0, 0), [ ".4......", "........", "........", "........", "........", "........", "........", "........" ]) ASSERT_WAY_PATTERN(wt_rail, coord3d(0, 0, -1), [ "........", ".1......", "........", "........", "........", "........", "........", "........" ]) ASSERT_EQUAL(pl.get_current_maintenance(), old_maint) } ASSERT_EQUAL(digger.work(pl, coord3d(1, 1, -1), coord3d(1, 2, -1), default_tunnel.get_name()), null) // Build up { local old_maint = pl.get_current_maintenance() ASSERT_EQUAL(setslope.work(pl, coord3d(1, 2, -1), "" + slope.all_up_slope), null) ASSERT_WAY_PATTERN(wt_rail, coord3d(0, 0, 0), [ ".4......", "........", "........", "........", "........", "........", "........", "........" ]) ASSERT_WAY_PATTERN(wt_rail, coord3d(0, 0, -1), [ "........", ".5......", ".1......", "........", "........", "........", "........", "........" ]) ASSERT_EQUAL(pl.get_current_maintenance(), old_maint) } // try building double slope up, rail does not support double slopes { ASSERT_EQUAL(raise.work(pl, coord3d(1, 2, 1)), null) ASSERT_EQUAL(raise.work(pl, coord3d(2, 2, 1)), null) ASSERT_EQUAL(raise.work(pl, coord3d(1, 3, 1)), null) ASSERT_EQUAL(raise.work(pl, coord3d(2, 3, 1)), null) local old_maint = pl.get_current_maintenance() ASSERT_EQUAL(setslope.work(pl, coord3d(1, 1, 0), "" + slope.all_up_slope), "") ASSERT_WAY_PATTERN(wt_rail, coord3d(0, 0, 0), [ ".4......", "........", "........", "........", "........", "........", "........", "........" ]) ASSERT_WAY_PATTERN(wt_rail, coord3d(0, 0, -1), [ "........", ".5......", ".1......", "........", "........", "........", "........", "........" ]) ASSERT_EQUAL(pl.get_current_maintenance(), old_maint) ASSERT_EQUAL(lower.work(pl, coord3d(1, 2, 2)), null) ASSERT_EQUAL(lower.work(pl, coord3d(2, 2, 2)), null) ASSERT_EQUAL(lower.work(pl, coord3d(1, 3, 2)), null) ASSERT_EQUAL(lower.work(pl, coord3d(2, 3, 2)), null) } // clean up ASSERT_EQUAL(command_x(tool_remover).work(pl, coord3d(1, 0, 0)), null) ASSERT_EQUAL(lower.work(pl, coord3d(1, 1, 1)), null) ASSERT_EQUAL(lower.work(pl, coord3d(2, 1, 1)), null) ASSERT_EQUAL(lower.work(pl, coord3d(1, 2, 1)), null) ASSERT_EQUAL(lower.work(pl, coord3d(2, 2, 1)), null) ASSERT_EQUAL(lower.work(pl, coord3d(1, 3, 1)), null) ASSERT_EQUAL(lower.work(pl, coord3d(2, 3, 1)), null) RESET_ALL_PLAYER_FUNDS() } function test_way_tunnel_make_public() { local pl = player_x(0) local public_pl = player_x(1) local tunnel_desc = tunnel_desc_x.get_available_tunnels(wt_road)[0] local makepublic = command_x(tool_make_stop_public) local raise = command_x(tool_raise_land) local lower = command_x(tool_lower_land) ASSERT_EQUAL(raise.work(public_pl, coord3d(4, 3, 0)), null) ASSERT_EQUAL(raise.work(public_pl, coord3d(5, 3, 0)), null) ASSERT_EQUAL(raise.work(public_pl, coord3d(4, 4, 0)), null) ASSERT_EQUAL(raise.work(public_pl, coord3d(5, 4, 0)), null) ASSERT_EQUAL(command_x(tool_build_tunnel).work(pl, coord3d(4, 2, 0), tunnel_desc.get_name()), null) // make tunnel portal public { local old_pl_cash = pl.get_current_cash() local old_pl_maint = pl.get_current_maintenance() local old_public_cash = public_pl.get_current_cash() local old_public_maint = public_pl.get_current_maintenance() ASSERT_EQUAL(makepublic.work(pl, coord3d(4, 2, 0)), null) ASSERT_TRUE(way_x(4, 2, 0).get_owner() != null) ASSERT_EQUAL(way_x(4, 2, 0).get_owner().get_name(), public_pl.get_name()) ASSERT_EQUAL(pl.get_current_cash()*100, old_pl_cash*100 - 60 * tunnel_desc.get_maintenance()) // 60 == cst_make_public_months ASSERT_EQUAL(pl.get_current_maintenance(), old_pl_maint - tunnel_desc.get_maintenance()) ASSERT_EQUAL(public_pl.get_current_maintenance(), old_public_maint + tunnel_desc.get_maintenance()) ASSERT_EQUAL(public_pl.get_current_cash(), old_public_cash) } // make tunnel inside public { local old_pl_cash = pl.get_current_cash() local old_pl_maint = pl.get_current_maintenance() local old_public_cash = public_pl.get_current_cash() local old_public_maint = public_pl.get_current_maintenance() ASSERT_EQUAL(makepublic.work(pl, coord3d(4, 3, 0)), null) ASSERT_TRUE(way_x(4, 3, 0).get_owner() != null) ASSERT_EQUAL(way_x(4, 3, 0).get_owner().get_name(), public_pl.get_name()) ASSERT_EQUAL(pl.get_current_cash()*100, old_pl_cash*100 - 60 * tunnel_desc.get_maintenance()) // 60 == cst_make_public_months ASSERT_EQUAL(pl.get_current_maintenance(), old_pl_maint - tunnel_desc.get_maintenance()) ASSERT_EQUAL(public_pl.get_current_maintenance(), old_public_maint + tunnel_desc.get_maintenance()) ASSERT_EQUAL(public_pl.get_current_cash(), old_public_cash) } // clean up ASSERT_EQUAL(command_x(tool_remove_way).work(public_pl, coord3d(4, 2, 0), coord3d(4, 4, 0), "" + wt_road), null) ASSERT_EQUAL(lower.work(public_pl, coord3d(4, 3, 1)), null) ASSERT_EQUAL(lower.work(public_pl, coord3d(5, 3, 1)), null) ASSERT_EQUAL(lower.work(public_pl, coord3d(4, 4, 1)), null) ASSERT_EQUAL(lower.work(public_pl, coord3d(5, 4, 1)), null) RESET_ALL_PLAYER_FUNDS() }
Squirrel
5
Andarix/simutrans_nightly
tests/tests/test_way_tunnel.nut
[ "Artistic-1.0" ]
; RUN: llc -mattr=avr6,sram < %s -march=avr | FileCheck %s ; CHECK: ld {{r[0-9]+}}, [[PTR:[XYZ]]] ; CHECK: ldd {{r[0-9]+}}, [[PTR]]+1 ; CHECK: st [[PTR2:[XYZ]]], {{r[0-9]+}} ; CHECK: std [[PTR2]]+1, {{r[0-9]+}} define void @load_store_16(i16* nocapture %ptr) local_unnamed_addr #1 { entry: %0 = load i16, i16* %ptr, align 2 %add = add i16 %0, 5 store i16 %add, i16* %ptr, align 2 ret void }
LLVM
4
medismailben/llvm-project
llvm/test/CodeGen/AVR/PR37143.ll
[ "Apache-2.0" ]
<GameProjectFile> <PropertyGroup Type="Node" Name="generalshark" ID="a216914d-c0d7-49f6-8da3-6a19dd0dc55f" Version="0.0.0.1" /> <Content ctype="GameProjectContent"> <Content> <Animation Duration="67" Speed="0.4"> <Timeline ActionTag="1250924656" FrameType="VisibleFrame"> <BoolFrame FrameIndex="0" Value="True" /> </Timeline> <Timeline ActionTag="1250924656" FrameType="AnchorPointFrame"> <PointFrame FrameIndex="0" X="0.5" Y="0.5" /> <PointFrame FrameIndex="6" X="0.5" Y="0.5" /> <PointFrame FrameIndex="13" X="0.5" Y="0.5" /> <PointFrame FrameIndex="14" X="0.5" Y="0.5" /> <PointFrame FrameIndex="15" X="0.5" Y="0.5" /> <PointFrame FrameIndex="16" X="0.5" Y="0.5" /> <PointFrame FrameIndex="17" X="0.5" Y="0.5" /> <PointFrame FrameIndex="18" X="0.5" Y="0.5" /> <PointFrame FrameIndex="19" X="0.5" Y="0.5" /> <PointFrame FrameIndex="21" X="0.5" Y="0.5" /> <PointFrame FrameIndex="22" X="0.5" Y="0.5" /> <PointFrame FrameIndex="23" X="0.5" Y="0.5" /> <PointFrame FrameIndex="24" X="0.5" Y="0.5" /> <PointFrame FrameIndex="26" X="0.5" Y="0.5" /> <PointFrame FrameIndex="28" X="0.5" Y="0.5" /> <PointFrame FrameIndex="29" X="0.5" Y="0.5" /> <PointFrame FrameIndex="30" X="0.5" Y="0.5" /> <PointFrame FrameIndex="40" X="0.5" Y="0.5" /> <PointFrame FrameIndex="51" X="0.5" Y="0.5" /> <PointFrame FrameIndex="53" X="0.5" Y="0.5" /> <PointFrame FrameIndex="54" X="0.5" Y="0.5" /> <PointFrame FrameIndex="56" X="0.5" Y="0.5" /> <PointFrame FrameIndex="57" X="0.5" Y="0.5" /> <PointFrame FrameIndex="59" X="0.5" Y="0.5" /> <PointFrame FrameIndex="61" X="0.5" Y="0.5" /> <PointFrame FrameIndex="63" X="0.5" Y="0.5" /> <PointFrame FrameIndex="67" X="0.5" Y="0.5" /> </Timeline> <Timeline ActionTag="1250924655" FrameType="PositionFrame"> <PointFrame FrameIndex="0" X="52.85" Y="-2.2" /> <PointFrame FrameIndex="6" X="54.4" Y="-4.1" /> <PointFrame FrameIndex="13" Tween="False" X="52.85" Y="-2.2" /> <PointFrame FrameIndex="14" X="52.85" Y="-2.2" /> <PointFrame FrameIndex="15" X="53.65" Y="-3.5" /> <PointFrame FrameIndex="16" X="53.4" Y="-2.75" /> <PointFrame FrameIndex="17" X="53.15" Y="1.6" /> <PointFrame FrameIndex="18" X="51.25" Y="-2.2" /> <PointFrame FrameIndex="19" X="51.6" Y="-3.3" /> <PointFrame FrameIndex="21" Tween="False" X="52.85" Y="-2.2" /> <PointFrame FrameIndex="22" Tween="False" X="52.85" Y="-2.2" /> <PointFrame FrameIndex="23" Tween="False" X="52.85" Y="-2.2" /> <PointFrame FrameIndex="24" Tween="False" X="49.05" Y="-4.2" /> <PointFrame FrameIndex="26" Tween="False" X="50.55" Y="-3.45" /> <PointFrame FrameIndex="28" Tween="False" X="52.2" Y="-2.6" /> <PointFrame FrameIndex="29" Tween="False" X="52.85" Y="-2.2" /> <PointFrame FrameIndex="30" X="52.85" Y="-2.2" /> <PointFrame FrameIndex="40" X="50.7" Y="-0.2" /> <PointFrame FrameIndex="51" X="49.75" Y="-2.2" /> <PointFrame FrameIndex="53" X="51.3" Y="-2.2" /> <PointFrame FrameIndex="54" X="56.1" Y="-2.2" /> <PointFrame FrameIndex="56" X="59.75" Y="-2.2" /> <PointFrame FrameIndex="57" X="47.5" Y="-18" /> <PointFrame FrameIndex="59" X="46.35" Y="-25" /> <PointFrame FrameIndex="61" X="46.7" Y="-22.6" /> <PointFrame FrameIndex="63" X="46.35" Y="-25" /> <PointFrame FrameIndex="67" X="39.65" Y="-23.15" /> </Timeline> <Timeline ActionTag="1250924655" FrameType="ScaleFrame"> <PointFrame FrameIndex="0" X="0.7999878" Y="0.7999878" /> <PointFrame FrameIndex="6" X="0.7999878" Y="0.7572479" /> <PointFrame FrameIndex="13" Tween="False" X="0.7999878" Y="0.7999878" /> <PointFrame FrameIndex="14" X="0.7999878" Y="0.7999878" /> <PointFrame FrameIndex="15" X="0.7999878" Y="0.768631" /> <PointFrame FrameIndex="16" X="0.7999878" Y="0.7872925" /> <PointFrame FrameIndex="17" X="0.7999878" Y="0.8871765" /> <PointFrame FrameIndex="18" X="0.7999878" Y="0.800827" /> <PointFrame FrameIndex="19" X="0.7999878" Y="0.7753754" /> <PointFrame FrameIndex="21" Tween="False" X="0.7999878" Y="0.7999878" /> <PointFrame FrameIndex="22" Tween="False" X="0.7999878" Y="0.7999878" /> <PointFrame FrameIndex="23" Tween="False" X="0.7999878" Y="0.7999878" /> <PointFrame FrameIndex="24" Tween="False" X="0.7999878" Y="0.7592163" /> <PointFrame FrameIndex="26" Tween="False" X="0.7999878" Y="0.7753448" /> <PointFrame FrameIndex="28" Tween="False" X="0.7999878" Y="0.7917175" /> <PointFrame FrameIndex="29" Tween="False" X="0.7999878" Y="0.7999878" /> <PointFrame FrameIndex="30" X="0.7999878" Y="0.7999878" /> <PointFrame FrameIndex="40" X="0.7999878" Y="0.8461456" /> <PointFrame FrameIndex="51" X="0.7999878" Y="0.8030243" /> <PointFrame FrameIndex="53" X="0.7999878" Y="0.8007813" /> <PointFrame FrameIndex="54" X="0.7999878" Y="0.8034668" /> <PointFrame FrameIndex="56" X="0.7999878" Y="0.8156891" /> <PointFrame FrameIndex="57" X="0.7999878" Y="0.8156738" /> <PointFrame FrameIndex="59" X="0.7999878" Y="0.8156586" /> <PointFrame FrameIndex="61" X="0.7999878" Y="0.8156738" /> <PointFrame FrameIndex="63" X="0.7999878" Y="0.8156586" /> <PointFrame FrameIndex="67" X="0.7999573" Y="0.8156586" /> </Timeline> <Timeline ActionTag="1250924655" FrameType="RotationSkewFrame"> <PointFrame FrameIndex="0" X="0" Y="0" /> <PointFrame FrameIndex="6" X="2.826828" Y="0" /> <PointFrame FrameIndex="13" Tween="False" X="0" Y="0" /> <PointFrame FrameIndex="14" X="0" Y="0" /> <PointFrame FrameIndex="15" X="1.412521" Y="0" /> <PointFrame FrameIndex="16" X="0.9275208" Y="0" /> <PointFrame FrameIndex="17" X="0.486084" Y="0" /> <PointFrame FrameIndex="18" X="-2.631439" Y="0" /> <PointFrame FrameIndex="19" X="-2.020462" Y="0" /> <PointFrame FrameIndex="21" Tween="False" X="0" Y="0" /> <PointFrame FrameIndex="22" Tween="False" X="0" Y="0" /> <PointFrame FrameIndex="23" Tween="False" X="0" Y="0" /> <PointFrame FrameIndex="24" Tween="False" X="-6.57518" Y="0" /> <PointFrame FrameIndex="26" Tween="False" X="-3.800095" Y="0" /> <PointFrame FrameIndex="28" Tween="False" X="-1.254364" Y="0" /> <PointFrame FrameIndex="29" Tween="False" X="0" Y="0" /> <PointFrame FrameIndex="30" X="0" Y="0" /> <PointFrame FrameIndex="40" X="-3.348984" Y="0" /> <PointFrame FrameIndex="51" X="-4.968201" Y="0" /> <PointFrame FrameIndex="53" X="-2.549423" Y="0" /> <PointFrame FrameIndex="54" X="5.335022" Y="0" /> <PointFrame FrameIndex="56" X="11.25427" Y="0" /> <PointFrame FrameIndex="57" X="62.47104" Y="51.21727" /> <PointFrame FrameIndex="59" X="112.1874" Y="100.9327" /> <PointFrame FrameIndex="61" X="113.92" Y="102.6649" /> <PointFrame FrameIndex="63" X="112.1874" Y="100.9327" /> <PointFrame FrameIndex="67" X="132.6713" Y="121.4157" /> </Timeline> <Timeline ActionTag="1250924655" FrameType="EventFrame"> <StringFrame FrameIndex="67" Value="enemy_down" /> </Timeline> <Timeline ActionTag="1250924658" FrameType="VisibleFrame"> <BoolFrame FrameIndex="0" Value="True" /> </Timeline> <Timeline ActionTag="1250924658" FrameType="AnchorPointFrame"> <PointFrame FrameIndex="0" X="0.5" Y="0.5" /> <PointFrame FrameIndex="6" X="0.5" Y="0.5" /> <PointFrame FrameIndex="13" X="0.5" Y="0.5" /> <PointFrame FrameIndex="14" X="0.5" Y="0.5" /> <PointFrame FrameIndex="15" X="0.5" Y="0.5" /> <PointFrame FrameIndex="16" X="0.5" Y="0.5" /> <PointFrame FrameIndex="17" X="0.5" Y="0.5" /> <PointFrame FrameIndex="18" X="0.5" Y="0.5" /> <PointFrame FrameIndex="19" X="0.5" Y="0.5" /> <PointFrame FrameIndex="21" X="0.5" Y="0.5" /> <PointFrame FrameIndex="22" X="0.5" Y="0.5" /> <PointFrame FrameIndex="23" X="0.5" Y="0.5" /> <PointFrame FrameIndex="24" X="0.5" Y="0.5" /> <PointFrame FrameIndex="26" X="0.5" Y="0.5" /> <PointFrame FrameIndex="28" X="0.5" Y="0.5" /> <PointFrame FrameIndex="29" X="0.5" Y="0.5" /> <PointFrame FrameIndex="30" X="0.5" Y="0.5" /> <PointFrame FrameIndex="40" X="0.5" Y="0.5" /> <PointFrame FrameIndex="51" X="0.5" Y="0.5" /> <PointFrame FrameIndex="53" X="0.5" Y="0.5" /> <PointFrame FrameIndex="54" X="0.5" Y="0.5" /> <PointFrame FrameIndex="56" X="0.5" Y="0.5" /> <PointFrame FrameIndex="57" X="0.5" Y="0.5" /> <PointFrame FrameIndex="59" X="0.5" Y="0.5" /> <PointFrame FrameIndex="67" X="0.5" Y="0.5" /> </Timeline> <Timeline ActionTag="1250924657" FrameType="PositionFrame"> <PointFrame FrameIndex="0" X="-46.9" Y="2.25" /> <PointFrame FrameIndex="6" X="-48.7" Y="0.7" /> <PointFrame FrameIndex="13" Tween="False" X="-46.9" Y="2.25" /> <PointFrame FrameIndex="14" X="-46.9" Y="2.25" /> <PointFrame FrameIndex="15" X="-46.9" Y="0.4" /> <PointFrame FrameIndex="16" X="-31.7" Y="51.15" /> <PointFrame FrameIndex="17" X="-35.35" Y="75.15" /> <PointFrame FrameIndex="18" X="-49.6" Y="-13.75" /> <PointFrame FrameIndex="19" X="-47.7" Y="-10.55" /> <PointFrame FrameIndex="21" Tween="False" X="-46.9" Y="2.25" /> <PointFrame FrameIndex="22" Tween="False" X="-46.9" Y="2.25" /> <PointFrame FrameIndex="23" Tween="False" X="-46.9" Y="2.25" /> <PointFrame FrameIndex="24" Tween="False" X="-48.35" Y="-6.4" /> <PointFrame FrameIndex="26" Tween="False" X="-47.75" Y="-2.95" /> <PointFrame FrameIndex="28" Tween="False" X="-47.2" Y="0.5" /> <PointFrame FrameIndex="29" Tween="False" X="-46.9" Y="2.25" /> <PointFrame FrameIndex="30" X="-46.9" Y="2.25" /> <PointFrame FrameIndex="40" X="-48" Y="68.6" /> <PointFrame FrameIndex="51" X="-63" Y="-4.55" /> <PointFrame FrameIndex="53" X="-63" Y="-4.55" /> <PointFrame FrameIndex="54" X="-55.95" Y="-2.85" /> <PointFrame FrameIndex="56" X="-56.1" Y="-3.05" /> <PointFrame FrameIndex="57" X="-48.45" Y="-3.6" /> <PointFrame FrameIndex="59" X="-47.7" Y="-10.85" /> <PointFrame FrameIndex="67" Tween="False" X="-47.7" Y="-10.85" /> </Timeline> <Timeline ActionTag="1250924657" FrameType="ScaleFrame"> <PointFrame FrameIndex="0" X="0.7999878" Y="0.7999878" /> <PointFrame FrameIndex="6" X="0.7999878" Y="0.7596893" /> <PointFrame FrameIndex="13" Tween="False" X="0.7999878" Y="0.7999878" /> <PointFrame FrameIndex="14" X="0.7999878" Y="0.7999878" /> <PointFrame FrameIndex="15" X="0.7999878" Y="0.7506409" /> <PointFrame FrameIndex="16" X="0.7999878" Y="0.7999878" /> <PointFrame FrameIndex="17" X="0.7999725" Y="0.607132" /> <PointFrame FrameIndex="18" X="0.7999878" Y="0.395813" /> <PointFrame FrameIndex="19" X="0.7999878" Y="0.4719696" /> <PointFrame FrameIndex="21" Tween="False" X="0.7999878" Y="0.7999878" /> <PointFrame FrameIndex="22" Tween="False" X="0.7999878" Y="0.7999878" /> <PointFrame FrameIndex="23" Tween="False" X="0.7999878" Y="0.7999878" /> <PointFrame FrameIndex="24" Tween="False" X="0.7999878" Y="0.5805969" /> <PointFrame FrameIndex="26" Tween="False" X="0.7999878" Y="0.6682892" /> <PointFrame FrameIndex="28" Tween="False" X="0.7999878" Y="0.756073" /> <PointFrame FrameIndex="29" Tween="False" X="0.7999878" Y="0.7999878" /> <PointFrame FrameIndex="30" X="0.7999878" Y="0.7999878" /> <PointFrame FrameIndex="40" X="0.7999573" Y="0.7999573" /> <PointFrame FrameIndex="51" X="0.7999573" Y="0.7999573" /> <PointFrame FrameIndex="53" X="0.7999573" Y="0.7999573" /> <PointFrame FrameIndex="54" X="0.7999573" Y="0.7999573" /> <PointFrame FrameIndex="56" X="0.7999573" Y="0.7999573" /> <PointFrame FrameIndex="57" X="0.7999573" Y="0.7999573" /> <PointFrame FrameIndex="59" X="0.7999573" Y="0.7999573" /> <PointFrame FrameIndex="67" Tween="False" X="0.7999573" Y="0.7999573" /> </Timeline> <Timeline ActionTag="1250924657" FrameType="RotationSkewFrame"> <PointFrame FrameIndex="0" X="0" Y="0" /> <PointFrame FrameIndex="6" X="-3.430878" Y="0" /> <PointFrame FrameIndex="13" Tween="False" X="0" Y="0" /> <PointFrame FrameIndex="14" X="0" Y="0" /> <PointFrame FrameIndex="15" X="0" Y="0" /> <PointFrame FrameIndex="16" X="-8.258331" Y="-8.258331" /> <PointFrame FrameIndex="17" X="3.975876" Y="3.976746" /> <PointFrame FrameIndex="18" X="-10.10191" Y="0" /> <PointFrame FrameIndex="19" X="-2.508408" Y="0" /> <PointFrame FrameIndex="21" Tween="False" X="0" Y="0" /> <PointFrame FrameIndex="22" Tween="False" X="0" Y="0" /> <PointFrame FrameIndex="23" Tween="False" X="0" Y="0" /> <PointFrame FrameIndex="24" Tween="False" X="-3.666901" Y="0" /> <PointFrame FrameIndex="26" Tween="False" X="-2.050156" Y="0" /> <PointFrame FrameIndex="28" Tween="False" X="-0.545517" Y="0" /> <PointFrame FrameIndex="29" Tween="False" X="0" Y="0" /> <PointFrame FrameIndex="30" X="0" Y="0" /> <PointFrame FrameIndex="40" X="-6.13736" Y="-6.13736" /> <PointFrame FrameIndex="51" X="3.366409" Y="3.366409" /> <PointFrame FrameIndex="53" X="3.366409" Y="3.366409" /> <PointFrame FrameIndex="54" X="-24.09587" Y="-24.09587" /> <PointFrame FrameIndex="56" X="-23.10039" Y="-23.10039" /> <PointFrame FrameIndex="57" X="-66.56317" Y="-66.56317" /> <PointFrame FrameIndex="59" X="-77.05577" Y="-77.05577" /> <PointFrame FrameIndex="67" Tween="False" X="-77.05577" Y="-77.05577" /> </Timeline> <Timeline ActionTag="1250924660" FrameType="VisibleFrame"> <BoolFrame FrameIndex="0" Value="True" /> </Timeline> <Timeline ActionTag="1250924660" FrameType="AnchorPointFrame"> <PointFrame FrameIndex="0" X="0.5" Y="0.5" /> <PointFrame FrameIndex="6" X="0.5" Y="0.5" /> <PointFrame FrameIndex="13" X="0.5" Y="0.5" /> <PointFrame FrameIndex="14" X="0.5" Y="0.5" /> <PointFrame FrameIndex="15" X="0.5" Y="0.5" /> <PointFrame FrameIndex="16" X="0.5" Y="0.5" /> <PointFrame FrameIndex="17" X="0.5" Y="0.5" /> <PointFrame FrameIndex="18" X="0.5" Y="0.5" /> <PointFrame FrameIndex="19" X="0.5" Y="0.5" /> <PointFrame FrameIndex="21" X="0.5" Y="0.5" /> <PointFrame FrameIndex="22" X="0.5" Y="0.5" /> <PointFrame FrameIndex="23" X="0.5" Y="0.5" /> <PointFrame FrameIndex="24" X="0.5" Y="0.5" /> <PointFrame FrameIndex="26" X="0.5" Y="0.5" /> <PointFrame FrameIndex="28" X="0.5" Y="0.5" /> <PointFrame FrameIndex="29" X="0.5" Y="0.5" /> <PointFrame FrameIndex="30" X="0.5" Y="0.5" /> <PointFrame FrameIndex="40" X="0.5" Y="0.5" /> <PointFrame FrameIndex="51" X="0.5" Y="0.5" /> <PointFrame FrameIndex="53" X="0.5" Y="0.5" /> <PointFrame FrameIndex="54" X="0.5" Y="0.5" /> <PointFrame FrameIndex="56" X="0.5" Y="0.5" /> <PointFrame FrameIndex="57" X="0.5" Y="0.5" /> <PointFrame FrameIndex="59" X="0.5" Y="0.5" /> <PointFrame FrameIndex="60" X="0.5" Y="0.5" /> <PointFrame FrameIndex="62" X="0.5" Y="0.5" /> <PointFrame FrameIndex="63" X="0.5" Y="0.5" /> <PointFrame FrameIndex="65" X="0.5" Y="0.5" /> <PointFrame FrameIndex="67" X="0.5" Y="0.5" /> </Timeline> <Timeline ActionTag="1250924659" FrameType="PositionFrame"> <PointFrame FrameIndex="0" X="2" Y="55.95" /> <PointFrame FrameIndex="6" X="2.6" Y="49.15" /> <PointFrame FrameIndex="13" Tween="False" X="2" Y="55.95" /> <PointFrame FrameIndex="14" X="2" Y="55.95" /> <PointFrame FrameIndex="15" X="2.15" Y="53.2" /> <PointFrame FrameIndex="16" X="26.55" Y="76.2" /> <PointFrame FrameIndex="17" X="27.05" Y="95.25" /> <PointFrame FrameIndex="18" X="-10.9" Y="46.5" /> <PointFrame FrameIndex="19" X="-6.55" Y="47.75" /> <PointFrame FrameIndex="21" Tween="False" X="2" Y="55.95" /> <PointFrame FrameIndex="22" Tween="False" X="2" Y="55.95" /> <PointFrame FrameIndex="23" Tween="False" X="2" Y="55.95" /> <PointFrame FrameIndex="24" Tween="False" X="-4.1" Y="52.55" /> <PointFrame FrameIndex="26" Tween="False" X="-1.7" Y="53.95" /> <PointFrame FrameIndex="28" Tween="False" X="0.8" Y="55.25" /> <PointFrame FrameIndex="29" Tween="False" X="2" Y="55.95" /> <PointFrame FrameIndex="30" X="2" Y="55.95" /> <PointFrame FrameIndex="40" X="10.75" Y="86.65" /> <PointFrame FrameIndex="51" X="-9.25" Y="52.5" /> <PointFrame FrameIndex="53" X="-11.1" Y="48.25" /> <PointFrame FrameIndex="54" X="-15.3" Y="39.15" /> <PointFrame FrameIndex="56" X="-13.35" Y="28.5" /> <PointFrame FrameIndex="57" X="-4.1" Y="14.6" /> <PointFrame FrameIndex="59" X="-4.1" Y="7.95" /> <PointFrame FrameIndex="60" X="-4.95" Y="16.85" /> <PointFrame FrameIndex="62" X="-4.55" Y="5.25" /> <PointFrame FrameIndex="63" X="-4.1" Y="10.25" /> <PointFrame FrameIndex="65" X="-5.15" Y="2.25" /> <PointFrame FrameIndex="67" X="-5.6" Y="-3.6" /> </Timeline> <Timeline ActionTag="1250924659" FrameType="ScaleFrame"> <PointFrame FrameIndex="0" X="0.7999878" Y="0.7999878" /> <PointFrame FrameIndex="6" X="0.8114624" Y="0.7999878" /> <PointFrame FrameIndex="13" Tween="False" X="0.7999878" Y="0.7999878" /> <PointFrame FrameIndex="14" X="0.7999878" Y="0.7999878" /> <PointFrame FrameIndex="15" X="0.7999878" Y="0.7999878" /> <PointFrame FrameIndex="16" X="0.7999725" Y="0.7999725" /> <PointFrame FrameIndex="17" X="0.7861633" Y="0.9555359" /> <PointFrame FrameIndex="18" X="0.7999878" Y="0.7999878" /> <PointFrame FrameIndex="19" X="0.7996063" Y="0.7996063" /> <PointFrame FrameIndex="21" Tween="False" X="0.7999878" Y="0.7999878" /> <PointFrame FrameIndex="22" Tween="False" X="0.7999878" Y="0.7999878" /> <PointFrame FrameIndex="23" Tween="False" X="0.7999878" Y="0.7999878" /> <PointFrame FrameIndex="24" Tween="False" X="0.8000031" Y="0.8000031" /> <PointFrame FrameIndex="26" Tween="False" X="0.7999115" Y="0.7999115" /> <PointFrame FrameIndex="28" Tween="False" X="0.799942" Y="0.799942" /> <PointFrame FrameIndex="29" Tween="False" X="0.7999878" Y="0.7999878" /> <PointFrame FrameIndex="30" X="0.7999878" Y="0.7999878" /> <PointFrame FrameIndex="40" X="0.7991943" Y="0.7999878" /> <PointFrame FrameIndex="51" X="0.8000031" Y="0.8000031" /> <PointFrame FrameIndex="53" X="0.8000031" Y="0.8000031" /> <PointFrame FrameIndex="54" X="0.7999878" Y="0.7999878" /> <PointFrame FrameIndex="56" X="0.7999878" Y="0.7999878" /> <PointFrame FrameIndex="57" X="0.7999573" Y="0.7999573" /> <PointFrame FrameIndex="59" X="0.7999573" Y="0.7999573" /> <PointFrame FrameIndex="60" X="0.7999725" Y="0.7999725" /> <PointFrame FrameIndex="62" X="0.7999725" Y="0.7999725" /> <PointFrame FrameIndex="63" X="0.7999573" Y="0.7999573" /> <PointFrame FrameIndex="65" X="0.7999725" Y="0.7999725" /> <PointFrame FrameIndex="67" X="0.7999725" Y="0.7999725" /> </Timeline> <Timeline ActionTag="1250924659" FrameType="RotationSkewFrame"> <PointFrame FrameIndex="0" X="0" Y="0" /> <PointFrame FrameIndex="6" X="0" Y="0" /> <PointFrame FrameIndex="13" Tween="False" X="0" Y="0" /> <PointFrame FrameIndex="14" X="0" Y="0" /> <PointFrame FrameIndex="15" X="-1.733139" Y="-1.733139" /> <PointFrame FrameIndex="16" X="25.21008" Y="25.21008" /> <PointFrame FrameIndex="17" X="15.09677" Y="15.09677" /> <PointFrame FrameIndex="18" X="-14.64514" Y="-14.64514" /> <PointFrame FrameIndex="19" X="-11.00513" Y="-11.00513" /> <PointFrame FrameIndex="21" Tween="False" X="0" Y="0" /> <PointFrame FrameIndex="22" Tween="False" X="0" Y="0" /> <PointFrame FrameIndex="23" Tween="False" X="0" Y="0" /> <PointFrame FrameIndex="24" Tween="False" X="-3.718262" Y="-3.718262" /> <PointFrame FrameIndex="26" Tween="False" X="-2.057129" Y="-2.057129" /> <PointFrame FrameIndex="28" Tween="False" X="-0.546402" Y="-0.546402" /> <PointFrame FrameIndex="29" Tween="False" X="0" Y="0" /> <PointFrame FrameIndex="30" X="0" Y="0" /> <PointFrame FrameIndex="40" X="12.92679" Y="15.30031" /> <PointFrame FrameIndex="51" X="-1.224655" Y="-1.224655" /> <PointFrame FrameIndex="53" X="-4.175949" Y="-4.175949" /> <PointFrame FrameIndex="54" X="-8.142715" Y="-8.142715" /> <PointFrame FrameIndex="56" X="-34.3533" Y="-34.3533" /> <PointFrame FrameIndex="57" X="-154.972" Y="-154.972" /> <PointFrame FrameIndex="59" X="-154.972" Y="-154.972" /> <PointFrame FrameIndex="60" X="-163.8677" Y="-163.8677" /> <PointFrame FrameIndex="62" X="-159.6781" Y="-159.6781" /> <PointFrame FrameIndex="63" X="-154.972" Y="-154.972" /> <PointFrame FrameIndex="65" X="-164.9326" Y="-164.9326" /> <PointFrame FrameIndex="67" X="-170.8814" Y="-170.8814" /> </Timeline> <Timeline ActionTag="1250924662" FrameType="VisibleFrame"> <BoolFrame FrameIndex="0" Value="True" /> </Timeline> <Timeline ActionTag="1250924662" FrameType="AnchorPointFrame"> <PointFrame FrameIndex="0" X="0.5" Y="0.5" /> <PointFrame FrameIndex="6" X="0.5" Y="0.5" /> <PointFrame FrameIndex="13" X="0.5" Y="0.5" /> <PointFrame FrameIndex="14" X="0.5" Y="0.5" /> <PointFrame FrameIndex="15" X="0.5" Y="0.5" /> <PointFrame FrameIndex="16" X="0.5" Y="0.5" /> <PointFrame FrameIndex="17" X="0.5" Y="0.5" /> <PointFrame FrameIndex="18" X="0.5" Y="0.5" /> <PointFrame FrameIndex="19" X="0.5" Y="0.5" /> <PointFrame FrameIndex="21" X="0.5" Y="0.5" /> <PointFrame FrameIndex="22" X="0.5" Y="0.5" /> <PointFrame FrameIndex="23" X="0.5" Y="0.5" /> <PointFrame FrameIndex="24" X="0.5" Y="0.5" /> <PointFrame FrameIndex="26" X="0.5" Y="0.5" /> <PointFrame FrameIndex="28" X="0.5" Y="0.5" /> <PointFrame FrameIndex="29" X="0.5" Y="0.5" /> <PointFrame FrameIndex="30" X="0.5" Y="0.5" /> <PointFrame FrameIndex="40" X="0.5" Y="0.5" /> <PointFrame FrameIndex="51" X="0.5" Y="0.5" /> <PointFrame FrameIndex="53" X="0.5" Y="0.5" /> <PointFrame FrameIndex="54" X="0.5" Y="0.5" /> <PointFrame FrameIndex="56" X="0.5" Y="0.5" /> <PointFrame FrameIndex="67" X="0.5" Y="0.5" /> </Timeline> <Timeline ActionTag="1250924661" FrameType="PositionFrame"> <PointFrame FrameIndex="0" X="-41.65" Y="30.65" /> <PointFrame FrameIndex="6" X="-44.25" Y="27.8" /> <PointFrame FrameIndex="13" Tween="False" X="-41.65" Y="30.65" /> <PointFrame FrameIndex="14" X="-41.65" Y="30.65" /> <PointFrame FrameIndex="15" X="-40.75" Y="26.5" /> <PointFrame FrameIndex="16" X="-23.7" Y="71.9" /> <PointFrame FrameIndex="17" X="-29.9" Y="86" /> <PointFrame FrameIndex="18" X="-46.95" Y="8.6" /> <PointFrame FrameIndex="19" X="-44.35" Y="14.35" /> <PointFrame FrameIndex="21" Tween="False" X="-41.65" Y="30.65" /> <PointFrame FrameIndex="22" Tween="False" X="-41.65" Y="30.65" /> <PointFrame FrameIndex="23" Tween="False" X="-41.65" Y="30.65" /> <PointFrame FrameIndex="24" Tween="False" X="-44.5" Y="20.1" /> <PointFrame FrameIndex="26" Tween="False" X="-43.4" Y="24.25" /> <PointFrame FrameIndex="28" Tween="False" X="-42.25" Y="28.55" /> <PointFrame FrameIndex="29" Tween="False" X="-41.65" Y="30.65" /> <PointFrame FrameIndex="30" X="-41.65" Y="30.65" /> <PointFrame FrameIndex="40" X="-42.25" Y="84" /> <PointFrame FrameIndex="51" X="-55.25" Y="26.55" /> <PointFrame FrameIndex="53" X="-55.8" Y="19.95" /> <PointFrame FrameIndex="54" X="-62.8" Y="9.6" /> <PointFrame FrameIndex="56" X="-65.1" Y="-6.75" /> <PointFrame FrameIndex="67" Tween="False" X="-64.25" Y="-27.2" /> </Timeline> <Timeline ActionTag="1250924661" FrameType="ScaleFrame"> <PointFrame FrameIndex="0" X="0.7999878" Y="0.7999878" /> <PointFrame FrameIndex="6" X="0.7999878" Y="0.7999878" /> <PointFrame FrameIndex="13" Tween="False" X="0.7999878" Y="0.7999878" /> <PointFrame FrameIndex="14" X="0.7999878" Y="0.7999878" /> <PointFrame FrameIndex="15" X="0.7999878" Y="0.7999878" /> <PointFrame FrameIndex="16" X="0.7999878" Y="0.7999878" /> <PointFrame FrameIndex="17" X="0.8036804" Y="0.8014374" /> <PointFrame FrameIndex="18" X="0.8000031" Y="1.014023" /> <PointFrame FrameIndex="19" X="0.8004303" Y="0.9873505" /> <PointFrame FrameIndex="21" Tween="False" X="0.7999878" Y="0.7999878" /> <PointFrame FrameIndex="22" Tween="False" X="0.7999878" Y="0.7999878" /> <PointFrame FrameIndex="23" Tween="False" X="0.7999878" Y="0.7999878" /> <PointFrame FrameIndex="24" Tween="False" X="0.8000031" Y="0.8000031" /> <PointFrame FrameIndex="26" Tween="False" X="0.7995758" Y="0.7995758" /> <PointFrame FrameIndex="28" Tween="False" X="0.7997131" Y="0.7997131" /> <PointFrame FrameIndex="29" Tween="False" X="0.7999878" Y="0.7999878" /> <PointFrame FrameIndex="30" X="0.7999878" Y="0.7999878" /> <PointFrame FrameIndex="40" X="0.7999878" Y="0.7999878" /> <PointFrame FrameIndex="51" X="0.8669586" Y="1.00029" /> <PointFrame FrameIndex="53" X="0.8669434" Y="1.000259" /> <PointFrame FrameIndex="54" X="0.8669434" Y="1.000259" /> <PointFrame FrameIndex="56" X="0.8669281" Y="1.000244" /> <PointFrame FrameIndex="67" Tween="False" X="0.8669128" Y="1.000244" /> </Timeline> <Timeline ActionTag="1250924661" FrameType="RotationSkewFrame"> <PointFrame FrameIndex="0" X="0" Y="0" /> <PointFrame FrameIndex="6" X="2.703842" Y="2.703842" /> <PointFrame FrameIndex="13" Tween="False" X="0" Y="0" /> <PointFrame FrameIndex="14" X="0" Y="0" /> <PointFrame FrameIndex="15" X="-1.733139" Y="-1.733139" /> <PointFrame FrameIndex="16" X="24.68109" Y="24.68109" /> <PointFrame FrameIndex="17" X="55.46594" Y="49.00087" /> <PointFrame FrameIndex="18" X="-12.47835" Y="-7.738785" /> <PointFrame FrameIndex="19" X="-4.712997" Y="-1.440491" /> <PointFrame FrameIndex="21" Tween="False" X="0" Y="0" /> <PointFrame FrameIndex="22" Tween="False" X="0" Y="0" /> <PointFrame FrameIndex="23" Tween="False" X="0" Y="0" /> <PointFrame FrameIndex="24" Tween="False" X="-16.21132" Y="-16.21132" /> <PointFrame FrameIndex="26" Tween="False" X="-9.562103" Y="-9.562103" /> <PointFrame FrameIndex="28" Tween="False" X="-3.046555" Y="-3.046555" /> <PointFrame FrameIndex="29" Tween="False" X="0" Y="0" /> <PointFrame FrameIndex="30" X="0" Y="0" /> <PointFrame FrameIndex="40" X="38.36702" Y="38.36702" /> <PointFrame FrameIndex="51" X="0.4624786" Y="7.256683" /> <PointFrame FrameIndex="53" X="-2.488342" Y="4.305496" /> <PointFrame FrameIndex="54" X="28.51881" Y="35.31276" /> <PointFrame FrameIndex="56" X="51.52725" Y="58.32204" /> <PointFrame FrameIndex="67" Tween="False" X="41.27437" Y="48.06955" /> </Timeline> <Timeline ActionTag="123958689" FrameType="VisibleFrame"> <BoolFrame FrameIndex="0" Value="True" /> </Timeline> <Timeline ActionTag="123958689" FrameType="AnchorPointFrame"> <PointFrame FrameIndex="0" X="0.5" Y="0.5" /> <PointFrame FrameIndex="6" X="0.5" Y="0.5" /> <PointFrame FrameIndex="13" X="0.5" Y="0.5" /> <PointFrame FrameIndex="14" X="0.5" Y="0.5" /> <PointFrame FrameIndex="15" X="0.5" Y="0.5" /> <PointFrame FrameIndex="16" X="0.5" Y="0.5" /> <PointFrame FrameIndex="17" X="0.5" Y="0.5" /> <PointFrame FrameIndex="18" X="0.5" Y="0.5" /> <PointFrame FrameIndex="19" X="0.5" Y="0.5" /> <PointFrame FrameIndex="21" X="0.5" Y="0.5" /> <PointFrame FrameIndex="22" X="0.5" Y="0.5" /> <PointFrame FrameIndex="23" X="0.5" Y="0.5" /> <PointFrame FrameIndex="24" X="0.5" Y="0.5" /> <PointFrame FrameIndex="26" X="0.5" Y="0.5" /> <PointFrame FrameIndex="28" X="0.5" Y="0.5" /> <PointFrame FrameIndex="29" X="0.5" Y="0.5" /> <PointFrame FrameIndex="30" X="0.5" Y="0.5" /> <PointFrame FrameIndex="40" X="0.5" Y="0.5" /> <PointFrame FrameIndex="51" X="0.5" Y="0.5" /> <PointFrame FrameIndex="53" X="0.5" Y="0.5" /> <PointFrame FrameIndex="54" X="0.5" Y="0.5" /> <PointFrame FrameIndex="56" X="0.5" Y="0.5" /> <PointFrame FrameIndex="57" X="0.5" Y="0.5" /> <PointFrame FrameIndex="59" X="0.5" Y="0.5" /> <PointFrame FrameIndex="60" X="0.5" Y="0.5" /> <PointFrame FrameIndex="62" X="0.5" Y="0.5" /> <PointFrame FrameIndex="63" X="0.5" Y="0.5" /> <PointFrame FrameIndex="65" X="0.5" Y="0.5" /> <PointFrame FrameIndex="67" X="0.5" Y="0.5" /> </Timeline> <Timeline ActionTag="1250924663" FrameType="PositionFrame"> <PointFrame FrameIndex="0" X="46.45" Y="36.25" /> <PointFrame FrameIndex="6" X="49.85" Y="32.95" /> <PointFrame FrameIndex="13" Tween="False" X="46.45" Y="36.25" /> <PointFrame FrameIndex="14" X="46.45" Y="36.25" /> <PointFrame FrameIndex="15" X="46.85" Y="33.65" /> <PointFrame FrameIndex="16" X="55.25" Y="39.65" /> <PointFrame FrameIndex="17" X="54.15" Y="49.85" /> <PointFrame FrameIndex="18" X="38.2" Y="34.6" /> <PointFrame FrameIndex="19" X="39.25" Y="33.05" /> <PointFrame FrameIndex="21" Tween="False" X="46.45" Y="36.25" /> <PointFrame FrameIndex="22" Tween="False" X="46.45" Y="36.25" /> <PointFrame FrameIndex="23" Tween="False" X="46.45" Y="36.25" /> <PointFrame FrameIndex="24" Tween="False" X="39.65" Y="33.95" /> <PointFrame FrameIndex="26" Tween="False" X="42.45" Y="35" /> <PointFrame FrameIndex="28" Tween="False" X="45.1" Y="35.95" /> <PointFrame FrameIndex="29" Tween="False" X="46.45" Y="36.25" /> <PointFrame FrameIndex="30" X="46.45" Y="36.25" /> <PointFrame FrameIndex="40" X="44.9" Y="45.95" /> <PointFrame FrameIndex="51" X="37.8" Y="35.25" /> <PointFrame FrameIndex="53" X="38.3" Y="34.8" /> <PointFrame FrameIndex="54" X="40.2" Y="33.2" /> <PointFrame FrameIndex="56" X="37.05" Y="33.15" /> <PointFrame FrameIndex="57" X="37.55" Y="-10.65" /> <PointFrame FrameIndex="59" X="34.25" Y="-25.45" /> <PointFrame FrameIndex="60" X="39.05" Y="-44.55" /> <PointFrame FrameIndex="62" X="38" Y="-35.15" /> <PointFrame FrameIndex="63" X="39" Y="-44.8" /> <PointFrame FrameIndex="65" X="38" Y="-47.25" /> <PointFrame FrameIndex="67" Tween="False" X="37.55" Y="-48" /> </Timeline> <Timeline ActionTag="1250924663" FrameType="ScaleFrame"> <PointFrame FrameIndex="0" X="0.7999878" Y="0.7999878" /> <PointFrame FrameIndex="6" X="0.8000031" Y="0.8000031" /> <PointFrame FrameIndex="13" Tween="False" X="0.7999878" Y="0.7999878" /> <PointFrame FrameIndex="14" X="0.7999878" Y="0.7999878" /> <PointFrame FrameIndex="15" X="0.8000031" Y="0.8000031" /> <PointFrame FrameIndex="16" X="0.7999878" Y="0.7999878" /> <PointFrame FrameIndex="17" X="0.8292236" Y="0.7999878" /> <PointFrame FrameIndex="18" X="0.8000031" Y="0.8652802" /> <PointFrame FrameIndex="19" X="0.7998505" Y="0.8567505" /> <PointFrame FrameIndex="21" Tween="False" X="0.7999878" Y="0.7999878" /> <PointFrame FrameIndex="22" Tween="False" X="0.7999878" Y="0.7999878" /> <PointFrame FrameIndex="23" Tween="False" X="0.7999878" Y="0.7999878" /> <PointFrame FrameIndex="24" Tween="False" X="0.7999725" Y="0.8266296" /> <PointFrame FrameIndex="26" Tween="False" X="0.7999115" Y="0.8158875" /> <PointFrame FrameIndex="28" Tween="False" X="0.799942" Y="0.8052521" /> <PointFrame FrameIndex="29" Tween="False" X="0.7999878" Y="0.7999878" /> <PointFrame FrameIndex="30" X="0.7999878" Y="0.7999878" /> <PointFrame FrameIndex="40" X="0.8204803" Y="0.7999573" /> <PointFrame FrameIndex="51" X="0.7999878" Y="0.7999878" /> <PointFrame FrameIndex="53" X="0.7999878" Y="0.7999878" /> <PointFrame FrameIndex="54" X="0.7999878" Y="0.7999878" /> <PointFrame FrameIndex="56" X="0.7999878" Y="0.7999878" /> <PointFrame FrameIndex="57" X="0.7999878" Y="0.7999878" /> <PointFrame FrameIndex="59" X="0.7999573" Y="0.7999573" /> <PointFrame FrameIndex="60" X="0.7999573" Y="0.7999573" /> <PointFrame FrameIndex="62" X="0.7999573" Y="0.7999573" /> <PointFrame FrameIndex="63" X="0.7999573" Y="0.7999573" /> <PointFrame FrameIndex="65" X="0.7999573" Y="0.7999573" /> <PointFrame FrameIndex="67" Tween="False" X="0.7999725" Y="0.7999725" /> </Timeline> <Timeline ActionTag="1250924663" FrameType="RotationSkewFrame"> <PointFrame FrameIndex="0" X="0" Y="0" /> <PointFrame FrameIndex="6" X="-3.199966" Y="-3.199966" /> <PointFrame FrameIndex="13" Tween="False" X="0" Y="0" /> <PointFrame FrameIndex="14" X="0" Y="0" /> <PointFrame FrameIndex="15" X="-0.6731567" Y="-0.6731567" /> <PointFrame FrameIndex="16" X="37.12579" Y="37.12579" /> <PointFrame FrameIndex="17" X="32.03369" Y="47.29135" /> <PointFrame FrameIndex="18" X="-15.63164" Y="-9.274521" /> <PointFrame FrameIndex="19" X="-8.503067" Y="-2.987274" /> <PointFrame FrameIndex="21" Tween="False" X="0" Y="0" /> <PointFrame FrameIndex="22" Tween="False" X="0" Y="0" /> <PointFrame FrameIndex="23" Tween="False" X="0" Y="0" /> <PointFrame FrameIndex="24" Tween="False" X="2.784088" Y="2.784088" /> <PointFrame FrameIndex="26" Tween="False" X="1.541824" Y="1.541824" /> <PointFrame FrameIndex="28" Tween="False" X="0.5035706" Y="0.5044403" /> <PointFrame FrameIndex="29" Tween="False" X="0" Y="0" /> <PointFrame FrameIndex="30" X="0" Y="0" /> <PointFrame FrameIndex="40" X="19.74316" Y="32.58511" /> <PointFrame FrameIndex="51" X="-9.658997" Y="-9.658997" /> <PointFrame FrameIndex="53" X="-18.76923" Y="-18.76923" /> <PointFrame FrameIndex="54" X="-29.45067" Y="-29.45067" /> <PointFrame FrameIndex="56" X="-63.21506" Y="-63.21506" /> <PointFrame FrameIndex="57" X="-93.20433" Y="-93.20433" /> <PointFrame FrameIndex="59" X="-109.699" Y="-109.699" /> <PointFrame FrameIndex="60" X="-44.46588" Y="-44.46588" /> <PointFrame FrameIndex="62" X="-35.51077" Y="-35.51077" /> <PointFrame FrameIndex="63" X="-43.72871" Y="-43.72871" /> <PointFrame FrameIndex="65" X="-35.51077" Y="-35.51077" /> <PointFrame FrameIndex="67" Tween="False" X="-32.52364" Y="-32.52364" /> </Timeline> <Timeline ActionTag="123958691" FrameType="VisibleFrame"> <BoolFrame FrameIndex="0" Value="True" /> </Timeline> <Timeline ActionTag="123958691" FrameType="AnchorPointFrame"> <PointFrame FrameIndex="0" X="0.5" Y="0.5" /> <PointFrame FrameIndex="6" X="0.5" Y="0.5" /> <PointFrame FrameIndex="13" X="0.5" Y="0.5" /> <PointFrame FrameIndex="14" X="0.5" Y="0.5" /> <PointFrame FrameIndex="15" X="0.5" Y="0.5" /> <PointFrame FrameIndex="16" X="0.5" Y="0.5" /> <PointFrame FrameIndex="17" X="0.5" Y="0.5" /> <PointFrame FrameIndex="18" X="0.5" Y="0.5" /> <PointFrame FrameIndex="19" X="0.5" Y="0.5" /> <PointFrame FrameIndex="21" X="0.5" Y="0.5" /> <PointFrame FrameIndex="22" X="0.5" Y="0.5" /> <PointFrame FrameIndex="23" X="0.5" Y="0.5" /> <PointFrame FrameIndex="24" X="0.5" Y="0.5" /> <PointFrame FrameIndex="26" X="0.5" Y="0.5" /> <PointFrame FrameIndex="28" X="0.5" Y="0.5" /> <PointFrame FrameIndex="29" X="0.5" Y="0.5" /> <PointFrame FrameIndex="30" X="0.5" Y="0.5" /> <PointFrame FrameIndex="40" X="0.5" Y="0.5" /> <PointFrame FrameIndex="51" X="0.5" Y="0.5" /> <PointFrame FrameIndex="53" X="0.5" Y="0.5" /> <PointFrame FrameIndex="54" X="0.5" Y="0.5" /> <PointFrame FrameIndex="56" X="0.5" Y="0.5" /> <PointFrame FrameIndex="57" X="0.5" Y="0.5" /> <PointFrame FrameIndex="59" X="0.5" Y="0.5" /> <PointFrame FrameIndex="60" X="0.5" Y="0.5" /> <PointFrame FrameIndex="62" X="0.5" Y="0.5" /> <PointFrame FrameIndex="64" X="0.5" Y="0.5" /> <PointFrame FrameIndex="66" X="0.5" Y="0.5" /> <PointFrame FrameIndex="67" X="0.5" Y="0.5" /> </Timeline> <Timeline ActionTag="123958690" FrameType="PositionFrame"> <PointFrame FrameIndex="0" X="127.15" Y="52" /> <PointFrame FrameIndex="6" X="139.65" Y="46.8" /> <PointFrame FrameIndex="13" Tween="False" X="127.15" Y="52" /> <PointFrame FrameIndex="14" X="127.15" Y="52" /> <PointFrame FrameIndex="15" X="139.6" Y="57.35" /> <PointFrame FrameIndex="16" X="173.6" Y="26.8" /> <PointFrame FrameIndex="17" X="230.95" Y="78.15" /> <PointFrame FrameIndex="18" X="119.75" Y="95.45" /> <PointFrame FrameIndex="19" X="129.15" Y="86.55" /> <PointFrame FrameIndex="21" Tween="False" X="127.15" Y="52" /> <PointFrame FrameIndex="22" Tween="False" X="127.15" Y="52" /> <PointFrame FrameIndex="23" Tween="False" X="127.15" Y="52" /> <PointFrame FrameIndex="24" Tween="False" X="150.5" Y="89.8" /> <PointFrame FrameIndex="26" Tween="False" X="141.15" Y="73.2" /> <PointFrame FrameIndex="28" Tween="False" X="131.75" Y="58.6" /> <PointFrame FrameIndex="29" Tween="False" X="127.15" Y="52" /> <PointFrame FrameIndex="30" X="127.15" Y="52" /> <PointFrame FrameIndex="40" X="173.15" Y="62.05" /> <PointFrame FrameIndex="51" X="165.5" Y="115.65" /> <PointFrame FrameIndex="53" X="162.2" Y="130.35" /> <PointFrame FrameIndex="54" X="127.7" Y="178" /> <PointFrame FrameIndex="56" X="25.15" Y="184.75" /> <PointFrame FrameIndex="57" X="-5.6" Y="187.6" /> <PointFrame FrameIndex="59" X="58.45" Y="137.2" /> <PointFrame FrameIndex="60" X="109.6" Y="-26.9" /> <PointFrame FrameIndex="62" X="116.85" Y="-4.15" /> <PointFrame FrameIndex="64" X="114.2" Y="-10.8" /> <PointFrame FrameIndex="66" X="113.6" Y="-34.3" /> <PointFrame FrameIndex="67" X="112.45" Y="-41.75" /> </Timeline> <Timeline ActionTag="123958690" FrameType="ScaleFrame"> <PointFrame FrameIndex="0" X="0.8000183" Y="0.8000183" /> <PointFrame FrameIndex="6" X="0.7999878" Y="0.7999878" /> <PointFrame FrameIndex="13" Tween="False" X="0.8000183" Y="0.8000183" /> <PointFrame FrameIndex="14" X="0.8000183" Y="0.8000183" /> <PointFrame FrameIndex="15" X="0.7999878" Y="0.7999878" /> <PointFrame FrameIndex="16" X="0.8000183" Y="0.8000183" /> <PointFrame FrameIndex="17" X="0.8000183" Y="0.8000183" /> <PointFrame FrameIndex="18" X="0.7999878" Y="0.7999878" /> <PointFrame FrameIndex="19" X="0.7987213" Y="0.7987213" /> <PointFrame FrameIndex="21" Tween="False" X="0.8000183" Y="0.8000183" /> <PointFrame FrameIndex="22" Tween="False" X="0.8000183" Y="0.8000183" /> <PointFrame FrameIndex="23" Tween="False" X="0.8000183" Y="0.8000183" /> <PointFrame FrameIndex="24" Tween="False" X="0.8000031" Y="0.8000031" /> <PointFrame FrameIndex="26" Tween="False" X="0.7989197" Y="0.7989197" /> <PointFrame FrameIndex="28" Tween="False" X="0.7991791" Y="0.7991791" /> <PointFrame FrameIndex="29" Tween="False" X="0.8000183" Y="0.8000183" /> <PointFrame FrameIndex="30" X="0.8000183" Y="0.8000183" /> <PointFrame FrameIndex="40" X="0.8000031" Y="0.8000031" /> <PointFrame FrameIndex="51" X="0.7999725" Y="0.7999725" /> <PointFrame FrameIndex="53" X="0.7999725" Y="0.7999725" /> <PointFrame FrameIndex="54" X="0.7999573" Y="0.7999573" /> <PointFrame FrameIndex="56" X="0.799942" Y="0.799942" /> <PointFrame FrameIndex="57" X="0.7999115" Y="0.7999115" /> <PointFrame FrameIndex="59" X="0.7999268" Y="0.7999268" /> <PointFrame FrameIndex="60" X="0.799881" Y="0.799881" /> <PointFrame FrameIndex="62" X="0.7998657" Y="0.7998657" /> <PointFrame FrameIndex="64" X="0.799942" Y="0.799942" /> <PointFrame FrameIndex="66" X="0.7999115" Y="0.7999115" /> <PointFrame FrameIndex="67" X="0.7998962" Y="0.7998962" /> </Timeline> <Timeline ActionTag="123958690" FrameType="RotationSkewFrame"> <PointFrame FrameIndex="0" X="-29.04601" Y="-29.04601" /> <PointFrame FrameIndex="6" X="-37.22958" Y="-37.22958" /> <PointFrame FrameIndex="13" Tween="False" X="-29.04601" Y="-29.04601" /> <PointFrame FrameIndex="14" X="-29.04601" Y="-29.04601" /> <PointFrame FrameIndex="15" X="-44.39009" Y="-44.39009" /> <PointFrame FrameIndex="16" X="-23.11296" Y="-23.11296" /> <PointFrame FrameIndex="17" X="-83.17043" Y="-83.17043" /> <PointFrame FrameIndex="18" X="-65.64023" Y="-65.64023" /> <PointFrame FrameIndex="19" X="-66.06169" Y="-66.06169" /> <PointFrame FrameIndex="21" Tween="False" X="-29.04601" Y="-29.04601" /> <PointFrame FrameIndex="22" Tween="False" X="-29.04601" Y="-29.04601" /> <PointFrame FrameIndex="23" Tween="False" X="-29.04601" Y="-29.04601" /> <PointFrame FrameIndex="24" Tween="False" X="-75.78944" Y="-75.78944" /> <PointFrame FrameIndex="26" Tween="False" X="-57.09944" Y="-57.09944" /> <PointFrame FrameIndex="28" Tween="False" X="-38.32507" Y="-38.32507" /> <PointFrame FrameIndex="29" Tween="False" X="-29.04601" Y="-29.04601" /> <PointFrame FrameIndex="30" X="-29.04601" Y="-29.04601" /> <PointFrame FrameIndex="40" X="-44.32126" Y="-44.32126" /> <PointFrame FrameIndex="51" X="-97.51634" Y="-97.51634" /> <PointFrame FrameIndex="53" X="-113.1529" Y="-113.1529" /> <PointFrame FrameIndex="54" X="-136.4453" Y="-136.4453" /> <PointFrame FrameIndex="56" X="-159.9345" Y="-159.9345" /> <PointFrame FrameIndex="57" X="-197.3875" Y="-197.3875" /> <PointFrame FrameIndex="59" X="-207.959" Y="-207.959" /> <PointFrame FrameIndex="60" X="-126.3987" Y="-126.3987" /> <PointFrame FrameIndex="62" X="-125.2918" Y="-125.2918" /> <PointFrame FrameIndex="64" X="-155.1862" Y="-155.1862" /> <PointFrame FrameIndex="66" X="-143.7222" Y="-143.7222" /> <PointFrame FrameIndex="67" X="-134.0104" Y="-134.0104" /> </Timeline> <Timeline ActionTag="123958693" FrameType="VisibleFrame"> <BoolFrame FrameIndex="0" Value="True" /> </Timeline> <Timeline ActionTag="123958693" FrameType="AnchorPointFrame"> <PointFrame FrameIndex="0" X="0.5" Y="0.5" /> <PointFrame FrameIndex="6" X="0.5" Y="0.5" /> <PointFrame FrameIndex="13" X="0.5" Y="0.5" /> <PointFrame FrameIndex="14" X="0.5" Y="0.5" /> <PointFrame FrameIndex="15" X="0.5" Y="0.5" /> <PointFrame FrameIndex="16" X="0.5" Y="0.5" /> <PointFrame FrameIndex="17" X="0.5" Y="0.5" /> <PointFrame FrameIndex="18" X="0.5" Y="0.5" /> <PointFrame FrameIndex="19" X="0.5" Y="0.5" /> <PointFrame FrameIndex="21" X="0.5" Y="0.5" /> <PointFrame FrameIndex="22" X="0.5" Y="0.5" /> <PointFrame FrameIndex="23" X="0.5" Y="0.5" /> <PointFrame FrameIndex="24" X="0.5" Y="0.5" /> <PointFrame FrameIndex="26" X="0.5" Y="0.5" /> <PointFrame FrameIndex="28" X="0.5" Y="0.5" /> <PointFrame FrameIndex="29" X="0.5" Y="0.5" /> <PointFrame FrameIndex="30" X="0.5" Y="0.5" /> <PointFrame FrameIndex="40" X="0.5" Y="0.5" /> <PointFrame FrameIndex="51" X="0.5" Y="0.5" /> <PointFrame FrameIndex="53" X="0.5" Y="0.5" /> <PointFrame FrameIndex="54" X="0.5" Y="0.5" /> <PointFrame FrameIndex="56" X="0.5" Y="0.5" /> <PointFrame FrameIndex="57" X="0.5" Y="0.5" /> <PointFrame FrameIndex="59" X="0.5" Y="0.5" /> <PointFrame FrameIndex="60" X="0.5" Y="0.5" /> <PointFrame FrameIndex="62" X="0.5" Y="0.5" /> <PointFrame FrameIndex="64" X="0.5" Y="0.5" /> <PointFrame FrameIndex="66" X="0.5" Y="0.5" /> <PointFrame FrameIndex="67" X="0.5" Y="0.5" /> </Timeline> <Timeline ActionTag="123958692" FrameType="PositionFrame"> <PointFrame FrameIndex="0" X="122.75" Y="100.3" /> <PointFrame FrameIndex="6" X="129.95" Y="94.7" /> <PointFrame FrameIndex="13" Tween="False" X="122.75" Y="100.3" /> <PointFrame FrameIndex="14" X="122.75" Y="100.3" /> <PointFrame FrameIndex="15" X="125.45" Y="104.9" /> <PointFrame FrameIndex="16" X="174.2" Y="75.4" /> <PointFrame FrameIndex="17" X="199.55" Y="115.05" /> <PointFrame FrameIndex="18" X="92.55" Y="137.9" /> <PointFrame FrameIndex="19" X="101.05" Y="127.5" /> <PointFrame FrameIndex="21" Tween="False" X="122.75" Y="100.3" /> <PointFrame FrameIndex="22" Tween="False" X="122.75" Y="100.3" /> <PointFrame FrameIndex="23" Tween="False" X="124.45" Y="93.45" /> <PointFrame FrameIndex="24" Tween="False" X="115.4" Y="126.5" /> <PointFrame FrameIndex="26" Tween="False" X="118.35" Y="115.55" /> <PointFrame FrameIndex="28" Tween="False" X="121.25" Y="105.2" /> <PointFrame FrameIndex="29" Tween="False" X="122.75" Y="100.3" /> <PointFrame FrameIndex="30" X="122.75" Y="100.3" /> <PointFrame FrameIndex="40" X="160.4" Y="102.4" /> <PointFrame FrameIndex="51" X="121.5" Y="142.9" /> <PointFrame FrameIndex="53" X="113" Y="147.35" /> <PointFrame FrameIndex="54" X="75.6" Y="175.3" /> <PointFrame FrameIndex="56" X="-22.1" Y="162.4" /> <PointFrame FrameIndex="57" X="-41.4" Y="149.2" /> <PointFrame FrameIndex="59" X="5.75" Y="88.7" /> <PointFrame FrameIndex="60" X="62.95" Y="-17.05" /> <PointFrame FrameIndex="62" X="63.6" Y="-0.3" /> <PointFrame FrameIndex="64" X="67.2" Y="-17.2" /> <PointFrame FrameIndex="66" X="66.25" Y="-24.2" /> <PointFrame FrameIndex="67" X="65.1" Y="-24.35" /> </Timeline> <Timeline ActionTag="123958692" FrameType="ScaleFrame"> <PointFrame FrameIndex="0" X="0.7999878" Y="0.7999878" /> <PointFrame FrameIndex="6" X="0.7999573" Y="0.7999573" /> <PointFrame FrameIndex="13" Tween="False" X="0.7999878" Y="0.7999878" /> <PointFrame FrameIndex="14" X="0.7999878" Y="0.7999878" /> <PointFrame FrameIndex="15" X="0.7999573" Y="0.7999573" /> <PointFrame FrameIndex="16" X="0.7999725" Y="0.7999725" /> <PointFrame FrameIndex="17" X="0.7999878" Y="0.7999878" /> <PointFrame FrameIndex="18" X="0.7999573" Y="0.7999573" /> <PointFrame FrameIndex="19" X="0.7991028" Y="0.7991028" /> <PointFrame FrameIndex="21" Tween="False" X="0.7999878" Y="0.7999878" /> <PointFrame FrameIndex="22" Tween="False" X="0.7999878" Y="0.7999878" /> <PointFrame FrameIndex="23" Tween="False" X="0.7999725" Y="0.7999725" /> <PointFrame FrameIndex="24" Tween="False" X="0.7999725" Y="0.7999725" /> <PointFrame FrameIndex="26" Tween="False" X="0.7992096" Y="0.7992096" /> <PointFrame FrameIndex="28" Tween="False" X="0.7994843" Y="0.7994843" /> <PointFrame FrameIndex="29" Tween="False" X="0.7999878" Y="0.7999878" /> <PointFrame FrameIndex="30" X="0.7999878" Y="0.7999878" /> <PointFrame FrameIndex="40" X="0.7999725" Y="0.7999725" /> <PointFrame FrameIndex="51" X="0.7999725" Y="0.7999725" /> <PointFrame FrameIndex="53" X="0.8000031" Y="0.8000031" /> <PointFrame FrameIndex="54" X="0.7999573" Y="0.7999573" /> <PointFrame FrameIndex="56" X="0.7999573" Y="0.7999573" /> <PointFrame FrameIndex="57" X="0.7999878" Y="0.7999878" /> <PointFrame FrameIndex="59" X="0.7999573" Y="0.7999573" /> <PointFrame FrameIndex="60" X="0.799942" Y="0.799942" /> <PointFrame FrameIndex="62" X="0.799942" Y="0.799942" /> <PointFrame FrameIndex="64" X="0.7999573" Y="0.7999573" /> <PointFrame FrameIndex="66" X="0.799942" Y="0.799942" /> <PointFrame FrameIndex="67" X="0.799942" Y="0.799942" /> </Timeline> <Timeline ActionTag="123958692" FrameType="RotationSkewFrame"> <PointFrame FrameIndex="0" X="-39.87022" Y="-39.87022" /> <PointFrame FrameIndex="6" X="-45.08401" Y="-45.08401" /> <PointFrame FrameIndex="13" Tween="False" X="-39.87022" Y="-39.87022" /> <PointFrame FrameIndex="14" X="-39.87022" Y="-39.87022" /> <PointFrame FrameIndex="15" X="-49.23276" Y="-49.23276" /> <PointFrame FrameIndex="16" X="-33.93652" Y="-33.93652" /> <PointFrame FrameIndex="17" X="-68.35205" Y="-68.35205" /> <PointFrame FrameIndex="18" X="-62.46622" Y="-62.46622" /> <PointFrame FrameIndex="19" X="-62.13177" Y="-62.13177" /> <PointFrame FrameIndex="21" Tween="False" X="-39.87022" Y="-39.87022" /> <PointFrame FrameIndex="22" Tween="False" X="-39.87022" Y="-39.87022" /> <PointFrame FrameIndex="23" Tween="False" X="-36.65776" Y="-36.65776" /> <PointFrame FrameIndex="24" Tween="False" X="-69.72885" Y="-69.72885" /> <PointFrame FrameIndex="26" Tween="False" X="-57.67758" Y="-57.67758" /> <PointFrame FrameIndex="28" Tween="False" X="-45.668" Y="-45.668" /> <PointFrame FrameIndex="29" Tween="False" X="-39.87022" Y="-39.87022" /> <PointFrame FrameIndex="30" X="-39.87022" Y="-39.87022" /> <PointFrame FrameIndex="40" X="-46.63231" Y="-46.63231" /> <PointFrame FrameIndex="51" X="-84.16876" Y="-84.16876" /> <PointFrame FrameIndex="53" X="-95.05582" Y="-95.05582" /> <PointFrame FrameIndex="54" X="-116.1143" Y="-116.1143" /> <PointFrame FrameIndex="56" X="-137.6141" Y="-137.6141" /> <PointFrame FrameIndex="57" X="-150.1328" Y="-150.1328" /> <PointFrame FrameIndex="59" X="-126.7903" Y="-126.7903" /> <PointFrame FrameIndex="60" X="-102.5325" Y="-102.5325" /> <PointFrame FrameIndex="62" X="-106.8405" Y="-106.8405" /> <PointFrame FrameIndex="64" X="-114.8383" Y="-114.8383" /> <PointFrame FrameIndex="66" X="-103.9012" Y="-103.9012" /> <PointFrame FrameIndex="67" X="-99.89163" Y="-99.89163" /> </Timeline> <Timeline ActionTag="123958695" FrameType="VisibleFrame"> <BoolFrame FrameIndex="0" Value="True" /> </Timeline> <Timeline ActionTag="123958695" FrameType="AnchorPointFrame"> <PointFrame FrameIndex="0" X="0.5" Y="0.5" /> <PointFrame FrameIndex="6" X="0.5" Y="0.5" /> <PointFrame FrameIndex="13" X="0.5" Y="0.5" /> <PointFrame FrameIndex="14" X="0.5" Y="0.5" /> <PointFrame FrameIndex="15" X="0.5" Y="0.5" /> <PointFrame FrameIndex="16" X="0.5" Y="0.5" /> <PointFrame FrameIndex="17" X="0.5" Y="0.5" /> <PointFrame FrameIndex="18" X="0.5" Y="0.5" /> <PointFrame FrameIndex="19" X="0.5" Y="0.5" /> <PointFrame FrameIndex="21" X="0.5" Y="0.5" /> <PointFrame FrameIndex="22" X="0.5" Y="0.5" /> <PointFrame FrameIndex="23" X="0.5" Y="0.5" /> <PointFrame FrameIndex="24" X="0.5" Y="0.5" /> <PointFrame FrameIndex="26" X="0.5" Y="0.5" /> <PointFrame FrameIndex="28" X="0.5" Y="0.5" /> <PointFrame FrameIndex="29" X="0.5" Y="0.5" /> <PointFrame FrameIndex="30" X="0.5" Y="0.5" /> <PointFrame FrameIndex="40" X="0.5" Y="0.5" /> <PointFrame FrameIndex="51" X="0.5" Y="0.5" /> <PointFrame FrameIndex="53" X="0.5" Y="0.5" /> <PointFrame FrameIndex="54" X="0.5" Y="0.5" /> <PointFrame FrameIndex="56" X="0.5" Y="0.5" /> <PointFrame FrameIndex="57" X="0.5" Y="0.5" /> <PointFrame FrameIndex="59" X="0.5" Y="0.5" /> <PointFrame FrameIndex="60" X="0.5" Y="0.5" /> <PointFrame FrameIndex="62" X="0.5" Y="0.5" /> <PointFrame FrameIndex="64" X="0.5" Y="0.5" /> <PointFrame FrameIndex="66" X="0.5" Y="0.5" /> <PointFrame FrameIndex="67" X="0.5" Y="0.5" /> </Timeline> <Timeline ActionTag="123958694" FrameType="PositionFrame"> <PointFrame FrameIndex="0" X="109.6" Y="148.3" /> <PointFrame FrameIndex="6" X="111.95" Y="140.9" /> <PointFrame FrameIndex="13" Tween="False" X="109.6" Y="148.3" /> <PointFrame FrameIndex="14" X="109.6" Y="148.3" /> <PointFrame FrameIndex="15" X="104.55" Y="152.45" /> <PointFrame FrameIndex="16" X="166.2" Y="124.55" /> <PointFrame FrameIndex="17" X="169.1" Y="159.55" /> <PointFrame FrameIndex="18" X="60.8" Y="172.55" /> <PointFrame FrameIndex="19" X="70.6" Y="163.6" /> <PointFrame FrameIndex="21" Tween="False" X="109.6" Y="148.3" /> <PointFrame FrameIndex="22" Tween="False" X="109.6" Y="148.3" /> <PointFrame FrameIndex="23" Tween="False" X="114.05" Y="142.05" /> <PointFrame FrameIndex="24" Tween="False" X="86.65" Y="164.05" /> <PointFrame FrameIndex="26" Tween="False" X="95.85" Y="157.6" /> <PointFrame FrameIndex="28" Tween="False" X="105" Y="151.25" /> <PointFrame FrameIndex="29" Tween="False" X="109.6" Y="148.3" /> <PointFrame FrameIndex="30" X="109.6" Y="148.3" /> <PointFrame FrameIndex="40" X="146.5" Y="147.85" /> <PointFrame FrameIndex="51" X="82.55" Y="164.6" /> <PointFrame FrameIndex="53" X="72.95" Y="166.45" /> <PointFrame FrameIndex="54" X="33.8" Y="178.05" /> <PointFrame FrameIndex="56" X="-58.9" Y="144.25" /> <PointFrame FrameIndex="57" X="-58.05" Y="125.35" /> <PointFrame FrameIndex="59" X="-32.5" Y="74.6" /> <PointFrame FrameIndex="60" X="1.95" Y="-16.15" /> <PointFrame FrameIndex="62" X="4.35" Y="-7.8" /> <PointFrame FrameIndex="64" X="1.15" Y="-15.55" /> <PointFrame FrameIndex="66" X="-0.2" Y="-15.45" /> <PointFrame FrameIndex="67" X="-0.3" Y="-15.55" /> </Timeline> <Timeline ActionTag="123958694" FrameType="ScaleFrame"> <PointFrame FrameIndex="0" X="0.8000031" Y="0.8000031" /> <PointFrame FrameIndex="6" X="0.7999725" Y="0.7999725" /> <PointFrame FrameIndex="13" Tween="False" X="0.8000031" Y="0.8000031" /> <PointFrame FrameIndex="14" X="0.8000031" Y="0.8000031" /> <PointFrame FrameIndex="15" X="0.7999878" Y="0.7999878" /> <PointFrame FrameIndex="16" X="0.7999573" Y="0.7999573" /> <PointFrame FrameIndex="17" X="0.7999115" Y="0.7999115" /> <PointFrame FrameIndex="18" X="0.7999878" Y="0.7999878" /> <PointFrame FrameIndex="19" X="0.7989502" Y="0.7989502" /> <PointFrame FrameIndex="21" Tween="False" X="0.8000031" Y="0.8000031" /> <PointFrame FrameIndex="22" Tween="False" X="0.8000031" Y="0.8000031" /> <PointFrame FrameIndex="23" Tween="False" X="0.8000183" Y="0.8000183" /> <PointFrame FrameIndex="24" Tween="False" X="0.7999878" Y="0.7999878" /> <PointFrame FrameIndex="26" Tween="False" X="0.7996368" Y="0.7996368" /> <PointFrame FrameIndex="28" Tween="False" X="0.7997437" Y="0.7997437" /> <PointFrame FrameIndex="29" Tween="False" X="0.8000031" Y="0.8000031" /> <PointFrame FrameIndex="30" X="0.8000031" Y="0.8000031" /> <PointFrame FrameIndex="40" X="0.7999878" Y="0.7999878" /> <PointFrame FrameIndex="51" X="0.7999725" Y="0.7999725" /> <PointFrame FrameIndex="53" X="0.7999725" Y="0.7999725" /> <PointFrame FrameIndex="54" X="0.7999878" Y="0.7999878" /> <PointFrame FrameIndex="56" X="0.799942" Y="0.799942" /> <PointFrame FrameIndex="57" X="0.7999573" Y="0.7999573" /> <PointFrame FrameIndex="59" X="0.799942" Y="0.799942" /> <PointFrame FrameIndex="60" X="0.7999268" Y="0.7999268" /> <PointFrame FrameIndex="62" X="0.799942" Y="0.799942" /> <PointFrame FrameIndex="64" X="0.799942" Y="0.799942" /> <PointFrame FrameIndex="66" X="0.7999268" Y="0.7999268" /> <PointFrame FrameIndex="67" X="0.7999268" Y="0.7999268" /> </Timeline> <Timeline ActionTag="123958694" FrameType="RotationSkewFrame"> <PointFrame FrameIndex="0" X="-2.001251" Y="-2.001251" /> <PointFrame FrameIndex="6" X="-8.457733" Y="-8.457733" /> <PointFrame FrameIndex="13" Tween="False" X="-2.001251" Y="-2.001251" /> <PointFrame FrameIndex="14" X="-2.001251" Y="-2.001251" /> <PointFrame FrameIndex="15" X="-8.671448" Y="-8.671448" /> <PointFrame FrameIndex="16" X="12.17712" Y="12.17712" /> <PointFrame FrameIndex="17" X="-21.2845" Y="-21.2845" /> <PointFrame FrameIndex="18" X="-33.83952" Y="-33.83952" /> <PointFrame FrameIndex="19" X="-31.7861" Y="-31.7861" /> <PointFrame FrameIndex="21" Tween="False" X="-2.001251" Y="-2.001251" /> <PointFrame FrameIndex="22" Tween="False" X="-2.001251" Y="-2.001251" /> <PointFrame FrameIndex="23" Tween="False" X="1.210678" Y="1.210678" /> <PointFrame FrameIndex="24" Tween="False" X="-15.16275" Y="-15.16275" /> <PointFrame FrameIndex="26" Tween="False" X="-9.790634" Y="-9.790634" /> <PointFrame FrameIndex="28" Tween="False" X="-4.525375" Y="-4.525375" /> <PointFrame FrameIndex="29" Tween="False" X="-2.001251" Y="-2.001251" /> <PointFrame FrameIndex="30" X="-2.001251" Y="-2.001251" /> <PointFrame FrameIndex="40" X="1.186203" Y="1.186203" /> <PointFrame FrameIndex="51" X="-25.62161" Y="-25.62161" /> <PointFrame FrameIndex="53" X="-31.25883" Y="-31.25883" /> <PointFrame FrameIndex="54" X="-51.60719" Y="-51.60719" /> <PointFrame FrameIndex="56" X="-109.5547" Y="-109.5547" /> <PointFrame FrameIndex="57" X="-116.2944" Y="-116.2944" /> <PointFrame FrameIndex="59" X="-124.7654" Y="-124.7654" /> <PointFrame FrameIndex="60" X="-54.34813" Y="-54.34813" /> <PointFrame FrameIndex="62" X="-64.95114" Y="-64.95114" /> <PointFrame FrameIndex="64" X="-56.62254" Y="-56.62254" /> <PointFrame FrameIndex="66" X="-46.65541" Y="-46.65541" /> <PointFrame FrameIndex="67" X="-45.90558" Y="-45.90558" /> </Timeline> <Timeline ActionTag="123958697" FrameType="VisibleFrame"> <BoolFrame FrameIndex="0" Value="True" /> </Timeline> <Timeline ActionTag="123958697" FrameType="AnchorPointFrame"> <PointFrame FrameIndex="0" X="0.5" Y="0.5" /> <PointFrame FrameIndex="6" X="0.5" Y="0.5" /> <PointFrame FrameIndex="13" X="0.5" Y="0.5" /> <PointFrame FrameIndex="14" X="0.5" Y="0.5" /> <PointFrame FrameIndex="15" X="0.5" Y="0.5" /> <PointFrame FrameIndex="16" X="0.5" Y="0.5" /> <PointFrame FrameIndex="17" X="0.5" Y="0.5" /> <PointFrame FrameIndex="18" X="0.5" Y="0.5" /> <PointFrame FrameIndex="19" X="0.5" Y="0.5" /> <PointFrame FrameIndex="21" X="0.5" Y="0.5" /> <PointFrame FrameIndex="22" X="0.5" Y="0.5" /> <PointFrame FrameIndex="23" X="0.5" Y="0.5" /> <PointFrame FrameIndex="24" X="0.5" Y="0.5" /> <PointFrame FrameIndex="26" X="0.5" Y="0.5" /> <PointFrame FrameIndex="28" X="0.5" Y="0.5" /> <PointFrame FrameIndex="29" X="0.5" Y="0.5" /> <PointFrame FrameIndex="30" X="0.5" Y="0.5" /> <PointFrame FrameIndex="40" X="0.5" Y="0.5" /> <PointFrame FrameIndex="51" X="0.5" Y="0.5" /> <PointFrame FrameIndex="53" X="0.5" Y="0.5" /> <PointFrame FrameIndex="54" X="0.5" Y="0.5" /> <PointFrame FrameIndex="56" X="0.5" Y="0.5" /> <PointFrame FrameIndex="57" X="0.5" Y="0.5" /> <PointFrame FrameIndex="59" X="0.5" Y="0.5" /> <PointFrame FrameIndex="60" X="0.5" Y="0.5" /> <PointFrame FrameIndex="62" X="0.5" Y="0.5" /> <PointFrame FrameIndex="64" X="0.5" Y="0.5" /> <PointFrame FrameIndex="66" X="0.5" Y="0.5" /> <PointFrame FrameIndex="67" X="0.5" Y="0.5" /> </Timeline> <Timeline ActionTag="123958696" FrameType="PositionFrame"> <PointFrame FrameIndex="0" X="131.55" Y="89.8" /> <PointFrame FrameIndex="6" X="139.65" Y="85" /> <PointFrame FrameIndex="13" Tween="False" X="131.55" Y="89.8" /> <PointFrame FrameIndex="14" X="131.55" Y="89.8" /> <PointFrame FrameIndex="15" X="135.85" Y="95.7" /> <PointFrame FrameIndex="16" X="181.6" Y="64.1" /> <PointFrame FrameIndex="17" X="211.65" Y="119.5" /> <PointFrame FrameIndex="18" X="104.4" Y="131.65" /> <PointFrame FrameIndex="19" X="113.7" Y="121.9" /> <PointFrame FrameIndex="21" Tween="False" X="131.55" Y="89.8" /> <PointFrame FrameIndex="22" Tween="False" X="131.55" Y="89.8" /> <PointFrame FrameIndex="23" Tween="False" X="132.6" Y="82.45" /> <PointFrame FrameIndex="24" Tween="False" X="128.3" Y="121.8" /> <PointFrame FrameIndex="26" Tween="False" X="129.95" Y="107.95" /> <PointFrame FrameIndex="28" Tween="False" X="130.95" Y="95.3" /> <PointFrame FrameIndex="29" Tween="False" X="131.55" Y="89.8" /> <PointFrame FrameIndex="30" X="131.55" Y="89.8" /> <PointFrame FrameIndex="40" X="170.2" Y="92.95" /> <PointFrame FrameIndex="51" X="135.1" Y="141.35" /> <PointFrame FrameIndex="53" X="126.75" Y="148.45" /> <PointFrame FrameIndex="54" X="88.05" Y="181.4" /> <PointFrame FrameIndex="56" X="-12.7" Y="172.8" /> <PointFrame FrameIndex="57" X="-34.6" Y="161.2" /> <PointFrame FrameIndex="59" X="16.75" Y="97" /> <PointFrame FrameIndex="60" X="76.45" Y="-14.2" /> <PointFrame FrameIndex="62" X="76.85" Y="-1.45" /> <PointFrame FrameIndex="64" X="79.3" Y="-13.55" /> <PointFrame FrameIndex="66" X="79.75" Y="-20.75" /> <PointFrame FrameIndex="67" X="78.8" Y="-21.95" /> </Timeline> <Timeline ActionTag="123958696" FrameType="ScaleFrame"> <PointFrame FrameIndex="0" X="0.7999878" Y="0.7999878" /> <PointFrame FrameIndex="6" X="0.7999573" Y="0.7999573" /> <PointFrame FrameIndex="13" Tween="False" X="0.7999878" Y="0.7999878" /> <PointFrame FrameIndex="14" X="0.7999878" Y="0.7999878" /> <PointFrame FrameIndex="15" X="0.7999878" Y="0.7999878" /> <PointFrame FrameIndex="16" X="0.8000031" Y="0.8000031" /> <PointFrame FrameIndex="17" X="0.7999878" Y="0.7999878" /> <PointFrame FrameIndex="18" X="0.7999573" Y="0.7999573" /> <PointFrame FrameIndex="19" X="0.799118" Y="0.799118" /> <PointFrame FrameIndex="21" Tween="False" X="0.7999878" Y="0.7999878" /> <PointFrame FrameIndex="22" Tween="False" X="0.7999878" Y="0.7999878" /> <PointFrame FrameIndex="23" Tween="False" X="0.8000031" Y="0.8000031" /> <PointFrame FrameIndex="24" Tween="False" X="0.7999878" Y="0.7999878" /> <PointFrame FrameIndex="26" Tween="False" X="0.7992096" Y="0.7992096" /> <PointFrame FrameIndex="28" Tween="False" X="0.799469" Y="0.799469" /> <PointFrame FrameIndex="29" Tween="False" X="0.7999878" Y="0.7999878" /> <PointFrame FrameIndex="30" X="0.7999878" Y="0.7999878" /> <PointFrame FrameIndex="40" X="0.7999725" Y="0.7999725" /> <PointFrame FrameIndex="51" X="0.8000031" Y="0.8000031" /> <PointFrame FrameIndex="53" X="0.8000031" Y="0.8000031" /> <PointFrame FrameIndex="54" X="0.7999725" Y="0.7999725" /> <PointFrame FrameIndex="56" X="0.7999878" Y="0.7999878" /> <PointFrame FrameIndex="57" X="0.8000183" Y="0.8000183" /> <PointFrame FrameIndex="59" X="0.7999573" Y="0.7999573" /> <PointFrame FrameIndex="60" X="0.799942" Y="0.799942" /> <PointFrame FrameIndex="62" X="0.799942" Y="0.799942" /> <PointFrame FrameIndex="64" X="0.7999573" Y="0.7999573" /> <PointFrame FrameIndex="66" X="0.7999573" Y="0.7999573" /> <PointFrame FrameIndex="67" X="0.7999573" Y="0.7999573" /> </Timeline> <Timeline ActionTag="123958696" FrameType="RotationSkewFrame"> <PointFrame FrameIndex="0" X="-39.68484" Y="-39.68484" /> <PointFrame FrameIndex="6" X="-44.90021" Y="-44.90021" /> <PointFrame FrameIndex="13" Tween="False" X="-39.68484" Y="-39.68484" /> <PointFrame FrameIndex="14" X="-39.68484" Y="-39.68484" /> <PointFrame FrameIndex="15" X="-49.04771" Y="-49.04771" /> <PointFrame FrameIndex="16" X="-33.75137" Y="-33.75137" /> <PointFrame FrameIndex="17" X="-72.37955" Y="-72.37955" /> <PointFrame FrameIndex="18" X="-62.28093" Y="-62.28093" /> <PointFrame FrameIndex="19" X="-62.45453" Y="-62.45453" /> <PointFrame FrameIndex="21" Tween="False" X="-39.68484" Y="-39.68484" /> <PointFrame FrameIndex="22" Tween="False" X="-39.68484" Y="-39.68484" /> <PointFrame FrameIndex="23" Tween="False" X="-36.47165" Y="-36.47165" /> <PointFrame FrameIndex="24" Tween="False" X="-69.54289" Y="-69.54289" /> <PointFrame FrameIndex="26" Tween="False" X="-57.49377" Y="-57.49377" /> <PointFrame FrameIndex="28" Tween="False" X="-45.48253" Y="-45.48253" /> <PointFrame FrameIndex="29" Tween="False" X="-39.68484" Y="-39.68484" /> <PointFrame FrameIndex="30" X="-39.68484" Y="-39.68484" /> <PointFrame FrameIndex="40" X="-46.44666" Y="-46.44666" /> <PointFrame FrameIndex="51" X="-83.9828" Y="-83.9828" /> <PointFrame FrameIndex="53" X="-94.87187" Y="-94.87187" /> <PointFrame FrameIndex="54" X="-115.9286" Y="-115.9286" /> <PointFrame FrameIndex="56" X="-137.4281" Y="-137.4281" /> <PointFrame FrameIndex="57" X="-149.9471" Y="-149.9471" /> <PointFrame FrameIndex="59" X="-126.6043" Y="-126.6043" /> <PointFrame FrameIndex="60" X="-102.3474" Y="-102.3474" /> <PointFrame FrameIndex="62" X="-106.6553" Y="-106.6553" /> <PointFrame FrameIndex="64" X="-110.4064" Y="-110.4064" /> <PointFrame FrameIndex="66" X="-103.7149" Y="-103.7149" /> <PointFrame FrameIndex="67" X="-99.70486" Y="-99.70486" /> </Timeline> <Timeline ActionTag="123958720" FrameType="VisibleFrame"> <BoolFrame FrameIndex="0" Value="True" /> </Timeline> <Timeline ActionTag="123958720" FrameType="AnchorPointFrame"> <PointFrame FrameIndex="0" X="0.5" Y="0.5" /> <PointFrame FrameIndex="6" X="0.5" Y="0.5" /> <PointFrame FrameIndex="13" X="0.5" Y="0.5" /> <PointFrame FrameIndex="14" X="0.5" Y="0.5" /> <PointFrame FrameIndex="15" X="0.5" Y="0.5" /> <PointFrame FrameIndex="16" X="0.5" Y="0.5" /> <PointFrame FrameIndex="17" X="0.5" Y="0.5" /> <PointFrame FrameIndex="18" X="0.5" Y="0.5" /> <PointFrame FrameIndex="19" X="0.5" Y="0.5" /> <PointFrame FrameIndex="21" X="0.5" Y="0.5" /> <PointFrame FrameIndex="22" X="0.5" Y="0.5" /> <PointFrame FrameIndex="23" X="0.5" Y="0.5" /> <PointFrame FrameIndex="24" X="0.5" Y="0.5" /> <PointFrame FrameIndex="26" X="0.5" Y="0.5" /> <PointFrame FrameIndex="28" X="0.5" Y="0.5" /> <PointFrame FrameIndex="29" X="0.5" Y="0.5" /> <PointFrame FrameIndex="30" X="0.5" Y="0.5" /> <PointFrame FrameIndex="40" X="0.5" Y="0.5" /> <PointFrame FrameIndex="51" X="0.5" Y="0.5" /> <PointFrame FrameIndex="53" X="0.5" Y="0.5" /> <PointFrame FrameIndex="54" X="0.5" Y="0.5" /> <PointFrame FrameIndex="56" X="0.5" Y="0.5" /> <PointFrame FrameIndex="58" X="0.5" Y="0.5" /> <PointFrame FrameIndex="60" X="0.5" Y="0.5" /> <PointFrame FrameIndex="63" X="0.5" Y="0.5" /> <PointFrame FrameIndex="67" X="0.5" Y="0.5" /> </Timeline> <Timeline ActionTag="123958698" FrameType="PositionFrame"> <PointFrame FrameIndex="0" X="-133.85" Y="144.55" /> <PointFrame FrameIndex="6" X="-133.75" Y="142.65" /> <PointFrame FrameIndex="13" Tween="False" X="-133.85" Y="144.55" /> <PointFrame FrameIndex="14" X="-133.85" Y="144.55" /> <PointFrame FrameIndex="15" X="-139" Y="137.25" /> <PointFrame FrameIndex="16" X="16.5" Y="254" /> <PointFrame FrameIndex="17" X="35.35" Y="283.65" /> <PointFrame FrameIndex="18" X="-166.8" Y="94.3" /> <PointFrame FrameIndex="19" X="-129.75" Y="105.5" /> <PointFrame FrameIndex="21" Tween="False" X="-133.85" Y="144.55" /> <PointFrame FrameIndex="22" Tween="False" X="-133.85" Y="144.55" /> <PointFrame FrameIndex="23" Tween="False" X="-129.2" Y="151.95" /> <PointFrame FrameIndex="24" Tween="False" X="-157.35" Y="127.95" /> <PointFrame FrameIndex="26" Tween="False" X="-147.85" Y="134.5" /> <PointFrame FrameIndex="28" Tween="False" X="-138.45" Y="141.1" /> <PointFrame FrameIndex="29" Tween="False" X="-133.85" Y="144.55" /> <PointFrame FrameIndex="30" X="-133.85" Y="144.55" /> <PointFrame FrameIndex="40" X="-76.6" Y="244.7" /> <PointFrame FrameIndex="51" X="-135.4" Y="168.5" /> <PointFrame FrameIndex="53" X="-153" Y="126.75" /> <PointFrame FrameIndex="54" X="-169.1" Y="91.15" /> <PointFrame FrameIndex="56" X="-177.3" Y="30.45" /> <PointFrame FrameIndex="58" X="-139.85" Y="1.45" /> <PointFrame FrameIndex="60" X="-149.6" Y="-4.4" /> <PointFrame FrameIndex="63" X="-138" Y="-14.1" /> <PointFrame FrameIndex="67" Tween="False" X="-149.6" Y="-6.35" /> </Timeline> <Timeline ActionTag="123958698" FrameType="ScaleFrame"> <PointFrame FrameIndex="0" X="0.8000031" Y="0.8000031" /> <PointFrame FrameIndex="6" X="0.8000183" Y="0.8000183" /> <PointFrame FrameIndex="13" Tween="False" X="0.8000031" Y="0.8000031" /> <PointFrame FrameIndex="14" X="0.8000031" Y="0.8000031" /> <PointFrame FrameIndex="15" X="0.7999878" Y="0.7999878" /> <PointFrame FrameIndex="16" X="0.7999725" Y="0.7999725" /> <PointFrame FrameIndex="17" X="0.7999878" Y="0.7999878" /> <PointFrame FrameIndex="18" X="0.8000031" Y="0.8000031" /> <PointFrame FrameIndex="19" X="0.7988892" Y="0.7988892" /> <PointFrame FrameIndex="21" Tween="False" X="0.8000031" Y="0.8000031" /> <PointFrame FrameIndex="22" Tween="False" X="0.8000031" Y="0.8000031" /> <PointFrame FrameIndex="23" Tween="False" X="0.7999878" Y="0.7999878" /> <PointFrame FrameIndex="24" Tween="False" X="0.7999878" Y="0.7999878" /> <PointFrame FrameIndex="26" Tween="False" X="0.7997894" Y="0.7997894" /> <PointFrame FrameIndex="28" Tween="False" X="0.7998657" Y="0.7998657" /> <PointFrame FrameIndex="29" Tween="False" X="0.8000031" Y="0.8000031" /> <PointFrame FrameIndex="30" X="0.8000031" Y="0.8000031" /> <PointFrame FrameIndex="40" X="0.8000031" Y="0.8000031" /> <PointFrame FrameIndex="51" X="0.7999725" Y="0.7999725" /> <PointFrame FrameIndex="53" X="0.8000031" Y="0.8000031" /> <PointFrame FrameIndex="54" X="0.8000031" Y="0.8000031" /> <PointFrame FrameIndex="56" X="0.8000183" Y="0.8000183" /> <PointFrame FrameIndex="58" X="0.8000031" Y="0.8000031" /> <PointFrame FrameIndex="60" X="0.8000031" Y="0.8000031" /> <PointFrame FrameIndex="63" X="0.7993774" Y="0.7993774" /> <PointFrame FrameIndex="67" Tween="False" X="0.8000031" Y="0.8000031" /> </Timeline> <Timeline ActionTag="123958698" FrameType="RotationSkewFrame"> <PointFrame FrameIndex="0" X="-1.508636" Y="-1.508636" /> <PointFrame FrameIndex="6" X="3.135468" Y="3.135468" /> <PointFrame FrameIndex="13" Tween="False" X="-1.508636" Y="-1.508636" /> <PointFrame FrameIndex="14" X="-1.508636" Y="-1.508636" /> <PointFrame FrameIndex="15" X="2.954147" Y="2.954147" /> <PointFrame FrameIndex="16" X="-168.2605" Y="-168.2605" /> <PointFrame FrameIndex="17" X="-158.2735" Y="-158.2735" /> <PointFrame FrameIndex="18" X="-14.09958" Y="-14.09958" /> <PointFrame FrameIndex="19" X="-30.07849" Y="-30.07849" /> <PointFrame FrameIndex="21" Tween="False" X="-1.508636" Y="-1.508636" /> <PointFrame FrameIndex="22" Tween="False" X="-1.508636" Y="-1.508636" /> <PointFrame FrameIndex="23" Tween="False" X="1.70256" Y="1.70256" /> <PointFrame FrameIndex="24" Tween="False" X="5.982605" Y="5.982605" /> <PointFrame FrameIndex="26" Tween="False" X="2.802399" Y="2.802399" /> <PointFrame FrameIndex="28" Tween="False" X="-0.2106934" Y="-0.2106934" /> <PointFrame FrameIndex="29" Tween="False" X="-1.508636" Y="-1.508636" /> <PointFrame FrameIndex="30" X="-1.508636" Y="-1.508636" /> <PointFrame FrameIndex="40" X="44.62437" Y="44.62437" /> <PointFrame FrameIndex="51" X="37.99266" Y="37.99266" /> <PointFrame FrameIndex="53" X="-5.684967" Y="-5.684967" /> <PointFrame FrameIndex="54" X="-16.14842" Y="-16.14842" /> <PointFrame FrameIndex="56" X="28.97313" Y="28.97313" /> <PointFrame FrameIndex="58" X="-16.14842" Y="-16.14842" /> <PointFrame FrameIndex="60" X="-16.14842" Y="-16.14842" /> <PointFrame FrameIndex="63" X="-16.0556" Y="-16.0556" /> <PointFrame FrameIndex="67" Tween="False" X="-16.14842" Y="-16.14842" /> </Timeline> <Timeline ActionTag="123958722" FrameType="VisibleFrame"> <BoolFrame FrameIndex="0" Value="True" /> </Timeline> <Timeline ActionTag="123958722" FrameType="AnchorPointFrame"> <PointFrame FrameIndex="0" X="0.5" Y="0.5" /> <PointFrame FrameIndex="6" X="0.5" Y="0.5" /> <PointFrame FrameIndex="13" X="0.5" Y="0.5" /> <PointFrame FrameIndex="14" X="0.5" Y="0.5" /> <PointFrame FrameIndex="15" X="0.5" Y="0.5" /> <PointFrame FrameIndex="16" X="0.5" Y="0.5" /> <PointFrame FrameIndex="17" X="0.5" Y="0.5" /> <PointFrame FrameIndex="18" X="0.5" Y="0.5" /> <PointFrame FrameIndex="19" X="0.5" Y="0.5" /> <PointFrame FrameIndex="21" X="0.5" Y="0.5" /> <PointFrame FrameIndex="22" X="0.5" Y="0.5" /> <PointFrame FrameIndex="23" X="0.5" Y="0.5" /> <PointFrame FrameIndex="24" X="0.5" Y="0.5" /> <PointFrame FrameIndex="26" X="0.5" Y="0.5" /> <PointFrame FrameIndex="28" X="0.5" Y="0.5" /> <PointFrame FrameIndex="29" X="0.5" Y="0.5" /> <PointFrame FrameIndex="30" X="0.5" Y="0.5" /> <PointFrame FrameIndex="40" X="0.5" Y="0.5" /> <PointFrame FrameIndex="51" X="0.5" Y="0.5" /> <PointFrame FrameIndex="53" X="0.5" Y="0.5" /> <PointFrame FrameIndex="54" X="0.5" Y="0.5" /> <PointFrame FrameIndex="56" X="0.5" Y="0.5" /> <PointFrame FrameIndex="58" X="0.5" Y="0.5" /> <PointFrame FrameIndex="60" X="0.5" Y="0.5" /> <PointFrame FrameIndex="63" X="0.5" Y="0.5" /> <PointFrame FrameIndex="67" X="0.5" Y="0.5" /> </Timeline> <Timeline ActionTag="123958721" FrameType="PositionFrame"> <PointFrame FrameIndex="0" X="-138.65" Y="83.15" /> <PointFrame FrameIndex="6" X="-143.55" Y="81.9" /> <PointFrame FrameIndex="13" Tween="False" X="-138.65" Y="83.15" /> <PointFrame FrameIndex="14" X="-138.65" Y="83.15" /> <PointFrame FrameIndex="15" X="-148.45" Y="76.5" /> <PointFrame FrameIndex="16" X="-14.45" Y="263.3" /> <PointFrame FrameIndex="17" X="59.5" Y="338.1" /> <PointFrame FrameIndex="18" X="-157.65" Y="29.75" /> <PointFrame FrameIndex="19" X="-113.4" Y="70.85" /> <PointFrame FrameIndex="21" Tween="False" X="-138.65" Y="83.15" /> <PointFrame FrameIndex="22" Tween="False" X="-138.65" Y="83.15" /> <PointFrame FrameIndex="23" Tween="False" X="-137.4" Y="90.9" /> <PointFrame FrameIndex="24" Tween="False" X="-169.3" Y="74.35" /> <PointFrame FrameIndex="26" Tween="False" X="-156.85" Y="77.9" /> <PointFrame FrameIndex="28" Tween="False" X="-144.6" Y="81.45" /> <PointFrame FrameIndex="29" Tween="False" X="-138.65" Y="83.15" /> <PointFrame FrameIndex="30" X="-138.65" Y="83.15" /> <PointFrame FrameIndex="40" X="-112.85" Y="226.3" /> <PointFrame FrameIndex="51" X="-178.2" Y="124.15" /> <PointFrame FrameIndex="53" X="-153.25" Y="65.15" /> <PointFrame FrameIndex="54" X="-158.3" Y="46.15" /> <PointFrame FrameIndex="56" X="-201.55" Y="-8.95" /> <PointFrame FrameIndex="58" X="-175.8" Y="-46.75" /> <PointFrame FrameIndex="60" X="-185.55" Y="-52.6" /> <PointFrame FrameIndex="63" X="-173.9" Y="-62.35" /> <PointFrame FrameIndex="67" Tween="False" X="-185.55" Y="-54.55" /> </Timeline> <Timeline ActionTag="123958721" FrameType="ScaleFrame"> <PointFrame FrameIndex="0" X="0.7999878" Y="0.7999878" /> <PointFrame FrameIndex="6" X="0.7999878" Y="0.7999878" /> <PointFrame FrameIndex="13" Tween="False" X="0.7999878" Y="0.7999878" /> <PointFrame FrameIndex="14" X="0.7999878" Y="0.7999878" /> <PointFrame FrameIndex="15" X="0.8000031" Y="0.8000031" /> <PointFrame FrameIndex="16" X="0.7999725" Y="0.7999725" /> <PointFrame FrameIndex="17" X="0.7999878" Y="0.7999878" /> <PointFrame FrameIndex="18" X="0.8000183" Y="0.8000183" /> <PointFrame FrameIndex="19" X="0.7988892" Y="0.7988892" /> <PointFrame FrameIndex="21" Tween="False" X="0.7999878" Y="0.7999878" /> <PointFrame FrameIndex="22" Tween="False" X="0.7999878" Y="0.7999878" /> <PointFrame FrameIndex="23" Tween="False" X="0.8000183" Y="0.8000183" /> <PointFrame FrameIndex="24" Tween="False" X="0.7999878" Y="0.7999878" /> <PointFrame FrameIndex="26" Tween="False" X="0.7997284" Y="0.7997284" /> <PointFrame FrameIndex="28" Tween="False" X="0.7998047" Y="0.7998047" /> <PointFrame FrameIndex="29" Tween="False" X="0.7999878" Y="0.7999878" /> <PointFrame FrameIndex="30" X="0.7999878" Y="0.7999878" /> <PointFrame FrameIndex="40" X="0.8000031" Y="0.8000031" /> <PointFrame FrameIndex="51" X="0.7999878" Y="0.7999878" /> <PointFrame FrameIndex="53" X="0.8000031" Y="0.8000031" /> <PointFrame FrameIndex="54" X="0.8000031" Y="0.8000031" /> <PointFrame FrameIndex="56" X="0.7999725" Y="0.7999725" /> <PointFrame FrameIndex="58" X="0.8000031" Y="0.8000031" /> <PointFrame FrameIndex="60" X="0.8000031" Y="0.8000031" /> <PointFrame FrameIndex="63" X="0.7999115" Y="0.7999115" /> <PointFrame FrameIndex="67" Tween="False" X="0.8000031" Y="0.8000031" /> </Timeline> <Timeline ActionTag="123958721" FrameType="RotationSkewFrame"> <PointFrame FrameIndex="0" X="-2.703842" Y="-2.703842" /> <PointFrame FrameIndex="6" X="1.940125" Y="1.940125" /> <PointFrame FrameIndex="13" Tween="False" X="-2.703842" Y="-2.703842" /> <PointFrame FrameIndex="14" X="-2.703842" Y="-2.703842" /> <PointFrame FrameIndex="15" X="1.759338" Y="1.759338" /> <PointFrame FrameIndex="16" X="-165.7106" Y="-165.7106" /> <PointFrame FrameIndex="17" X="-159.4669" Y="-159.4669" /> <PointFrame FrameIndex="18" X="-15.29462" Y="-15.29462" /> <PointFrame FrameIndex="19" X="-31.27415" Y="-31.27415" /> <PointFrame FrameIndex="21" Tween="False" X="-2.703842" Y="-2.703842" /> <PointFrame FrameIndex="22" Tween="False" X="-2.703842" Y="-2.703842" /> <PointFrame FrameIndex="23" Tween="False" X="0.5070648" Y="0.5070648" /> <PointFrame FrameIndex="24" Tween="False" X="7.279053" Y="7.279053" /> <PointFrame FrameIndex="26" Tween="False" X="3.106705" Y="3.106705" /> <PointFrame FrameIndex="28" Tween="False" X="-0.9056549" Y="-0.9056549" /> <PointFrame FrameIndex="29" Tween="False" X="-2.703842" Y="-2.703842" /> <PointFrame FrameIndex="30" X="-2.703842" Y="-2.703842" /> <PointFrame FrameIndex="40" X="56.91493" Y="56.91493" /> <PointFrame FrameIndex="51" X="36.79759" Y="36.79759" /> <PointFrame FrameIndex="53" X="-6.880417" Y="-6.880417" /> <PointFrame FrameIndex="54" X="-10.84752" Y="-10.84752" /> <PointFrame FrameIndex="56" X="34.27577" Y="34.27577" /> <PointFrame FrameIndex="58" X="-0.3733063" Y="-0.3733063" /> <PointFrame FrameIndex="60" X="-0.3733063" Y="-0.3733063" /> <PointFrame FrameIndex="63" X="-0.434494" Y="-0.434494" /> <PointFrame FrameIndex="67" Tween="False" X="-0.3733063" Y="-0.3733063" /> </Timeline> <Timeline ActionTag="123958724" FrameType="VisibleFrame"> <BoolFrame FrameIndex="0" Value="True" /> </Timeline> <Timeline ActionTag="123958724" FrameType="AnchorPointFrame"> <PointFrame FrameIndex="0" X="0.5" Y="0.5" /> <PointFrame FrameIndex="6" X="0.5" Y="0.5" /> <PointFrame FrameIndex="13" X="0.5" Y="0.5" /> <PointFrame FrameIndex="14" X="0.5" Y="0.5" /> <PointFrame FrameIndex="15" X="0.5" Y="0.5" /> <PointFrame FrameIndex="16" X="0.5" Y="0.5" /> <PointFrame FrameIndex="17" X="0.5" Y="0.5" /> <PointFrame FrameIndex="18" X="0.5" Y="0.5" /> <PointFrame FrameIndex="19" X="0.5" Y="0.5" /> <PointFrame FrameIndex="21" X="0.5" Y="0.5" /> <PointFrame FrameIndex="22" X="0.5" Y="0.5" /> <PointFrame FrameIndex="23" X="0.5" Y="0.5" /> <PointFrame FrameIndex="24" X="0.5" Y="0.5" /> <PointFrame FrameIndex="26" X="0.5" Y="0.5" /> <PointFrame FrameIndex="28" X="0.5" Y="0.5" /> <PointFrame FrameIndex="29" X="0.5" Y="0.5" /> <PointFrame FrameIndex="30" X="0.5" Y="0.5" /> <PointFrame FrameIndex="40" X="0.5" Y="0.5" /> <PointFrame FrameIndex="51" X="0.5" Y="0.5" /> <PointFrame FrameIndex="53" X="0.5" Y="0.5" /> <PointFrame FrameIndex="54" X="0.5" Y="0.5" /> <PointFrame FrameIndex="55" X="0.5" Y="0.5" /> <PointFrame FrameIndex="57" X="0.5" Y="0.5" /> <PointFrame FrameIndex="58" X="0.5" Y="0.5" /> <PointFrame FrameIndex="60" X="0.5" Y="0.5" /> <PointFrame FrameIndex="62" X="0.5" Y="0.5" /> <PointFrame FrameIndex="64" X="0.5" Y="0.5" /> <PointFrame FrameIndex="67" X="0.5" Y="0.5" /> </Timeline> <Timeline ActionTag="123958723" FrameType="PositionFrame"> <PointFrame FrameIndex="0" X="1.2" Y="149.15" /> <PointFrame FrameIndex="6" X="4.15" Y="142.35" /> <PointFrame FrameIndex="13" Tween="False" X="1.2" Y="149.15" /> <PointFrame FrameIndex="14" X="1.2" Y="149.15" /> <PointFrame FrameIndex="15" X="-1.55" Y="143.15" /> <PointFrame FrameIndex="16" X="65.6" Y="160.95" /> <PointFrame FrameIndex="17" X="69.4" Y="182.4" /> <PointFrame FrameIndex="18" X="-37.25" Y="136.1" /> <PointFrame FrameIndex="19" X="-25.2" Y="139.95" /> <PointFrame FrameIndex="21" Tween="False" X="1.2" Y="149.15" /> <PointFrame FrameIndex="22" Tween="False" X="1.2" Y="149.15" /> <PointFrame FrameIndex="23" Tween="False" X="5.85" Y="149" /> <PointFrame FrameIndex="24" Tween="False" X="-18.2" Y="145.05" /> <PointFrame FrameIndex="26" Tween="False" X="-10.2" Y="146.9" /> <PointFrame FrameIndex="28" Tween="False" X="-2.4" Y="148.4" /> <PointFrame FrameIndex="29" Tween="False" X="1.2" Y="149.15" /> <PointFrame FrameIndex="30" X="1.2" Y="149.15" /> <PointFrame FrameIndex="40" X="56.05" Y="177.85" /> <PointFrame FrameIndex="51" X="-12.1" Y="145.75" /> <PointFrame FrameIndex="53" X="-51.7" Y="132" /> <PointFrame FrameIndex="54" X="-32.85" Y="131.25" /> <PointFrame FrameIndex="55" X="-84.8" Y="26.05" /> <PointFrame FrameIndex="57" X="-85.6" Y="31.85" /> <PointFrame FrameIndex="58" X="-85.6" Y="48.6" /> <PointFrame FrameIndex="60" X="-84.8" Y="26.05" /> <PointFrame FrameIndex="62" X="-84.8" Y="27.95" /> <PointFrame FrameIndex="64" X="-84.8" Y="25.05" /> <PointFrame FrameIndex="67" Tween="False" X="-84.8" Y="23.15" /> </Timeline> <Timeline ActionTag="123958723" FrameType="ScaleFrame"> <PointFrame FrameIndex="0" X="0.7999878" Y="0.7999878" /> <PointFrame FrameIndex="6" X="0.8144073" Y="0.7999878" /> <PointFrame FrameIndex="13" Tween="False" X="0.7999878" Y="0.7999878" /> <PointFrame FrameIndex="14" X="0.7999878" Y="0.7999878" /> <PointFrame FrameIndex="15" X="0.7999878" Y="0.7999878" /> <PointFrame FrameIndex="16" X="0.7999725" Y="0.7999725" /> <PointFrame FrameIndex="17" X="0.7796936" Y="0.7999878" /> <PointFrame FrameIndex="18" X="0.8000031" Y="0.8000031" /> <PointFrame FrameIndex="19" X="0.7996368" Y="0.7996368" /> <PointFrame FrameIndex="21" Tween="False" X="0.7999878" Y="0.7999878" /> <PointFrame FrameIndex="22" Tween="False" X="0.7999878" Y="0.7999878" /> <PointFrame FrameIndex="23" Tween="False" X="0.8000183" Y="0.8000183" /> <PointFrame FrameIndex="24" Tween="False" X="0.8000031" Y="0.8000031" /> <PointFrame FrameIndex="26" Tween="False" X="0.7997742" Y="0.7997742" /> <PointFrame FrameIndex="28" Tween="False" X="0.7998505" Y="0.7998505" /> <PointFrame FrameIndex="29" Tween="False" X="0.7999878" Y="0.7999878" /> <PointFrame FrameIndex="30" X="0.7999878" Y="0.7999878" /> <PointFrame FrameIndex="40" X="0.7580566" Y="0.8000031" /> <PointFrame FrameIndex="51" X="0.8000031" Y="0.8000031" /> <PointFrame FrameIndex="53" X="0.7999878" Y="0.7999878" /> <PointFrame FrameIndex="54" X="0.7999725" Y="0.7999725" /> <PointFrame FrameIndex="55" X="0.7999878" Y="0.7999878" /> <PointFrame FrameIndex="57" X="0.7998047" Y="0.7998047" /> <PointFrame FrameIndex="58" X="0.799942" Y="0.799942" /> <PointFrame FrameIndex="60" X="0.7999878" Y="0.7999878" /> <PointFrame FrameIndex="62" X="0.7999878" Y="0.7999878" /> <PointFrame FrameIndex="64" X="0.7999878" Y="0.7999878" /> <PointFrame FrameIndex="67" Tween="False" X="0.7999878" Y="0.7999878" /> </Timeline> <Timeline ActionTag="123958723" FrameType="RotationSkewFrame"> <PointFrame FrameIndex="0" X="0" Y="0" /> <PointFrame FrameIndex="6" X="1.180084" Y="1.27272" /> <PointFrame FrameIndex="13" Tween="False" X="0" Y="0" /> <PointFrame FrameIndex="14" X="0" Y="0" /> <PointFrame FrameIndex="15" X="-1.733139" Y="-1.733139" /> <PointFrame FrameIndex="16" X="25.21008" Y="25.21008" /> <PointFrame FrameIndex="17" X="28.96175" Y="28.96175" /> <PointFrame FrameIndex="18" X="-16.09517" Y="-16.09517" /> <PointFrame FrameIndex="19" X="-10.95964" Y="-10.95964" /> <PointFrame FrameIndex="21" Tween="False" X="0" Y="0" /> <PointFrame FrameIndex="22" Tween="False" X="0" Y="0" /> <PointFrame FrameIndex="23" Tween="False" X="3.212173" Y="3.212173" /> <PointFrame FrameIndex="24" Tween="False" X="-8.660339" Y="-8.660339" /> <PointFrame FrameIndex="26" Tween="False" X="-5.049744" Y="-5.049744" /> <PointFrame FrameIndex="28" Tween="False" X="-1.546204" Y="-1.546204" /> <PointFrame FrameIndex="29" Tween="False" X="0" Y="0" /> <PointFrame FrameIndex="30" X="0" Y="0" /> <PointFrame FrameIndex="40" X="31.60129" Y="31.60129" /> <PointFrame FrameIndex="51" X="-1.224655" Y="-1.224655" /> <PointFrame FrameIndex="53" X="-27.92354" Y="-27.92354" /> <PointFrame FrameIndex="54" X="-9.604599" Y="-9.604599" /> <PointFrame FrameIndex="55" X="-99.05894" Y="-99.05894" /> <PointFrame FrameIndex="57" X="-93.54672" Y="-93.54672" /> <PointFrame FrameIndex="58" X="-88.31053" Y="-88.31053" /> <PointFrame FrameIndex="60" X="-99.05894" Y="-99.05894" /> <PointFrame FrameIndex="62" X="-99.05894" Y="-99.05894" /> <PointFrame FrameIndex="64" X="-99.05894" Y="-99.05894" /> <PointFrame FrameIndex="67" Tween="False" X="-99.05894" Y="-99.05894" /> </Timeline> <Timeline ActionTag="123958726" FrameType="VisibleFrame"> <BoolFrame FrameIndex="0" Value="True" /> </Timeline> <Timeline ActionTag="123958726" FrameType="AnchorPointFrame"> <PointFrame FrameIndex="0" X="0.5" Y="0.5" /> <PointFrame FrameIndex="6" X="0.5" Y="0.5" /> <PointFrame FrameIndex="13" X="0.5" Y="0.5" /> <PointFrame FrameIndex="14" X="0.5" Y="0.5" /> <PointFrame FrameIndex="15" X="0.5" Y="0.5" /> <PointFrame FrameIndex="16" X="0.5" Y="0.5" /> <PointFrame FrameIndex="17" X="0.5" Y="0.5" /> <PointFrame FrameIndex="18" X="0.5" Y="0.5" /> <PointFrame FrameIndex="19" X="0.5" Y="0.5" /> <PointFrame FrameIndex="21" X="0.5" Y="0.5" /> <PointFrame FrameIndex="22" X="0.5" Y="0.5" /> <PointFrame FrameIndex="23" X="0.5" Y="0.5" /> <PointFrame FrameIndex="24" X="0.5" Y="0.5" /> <PointFrame FrameIndex="26" X="0.5" Y="0.5" /> <PointFrame FrameIndex="28" X="0.5" Y="0.5" /> <PointFrame FrameIndex="29" X="0.5" Y="0.5" /> <PointFrame FrameIndex="30" X="0.5" Y="0.5" /> <PointFrame FrameIndex="40" X="0.5" Y="0.5" /> <PointFrame FrameIndex="51" X="0.5" Y="0.5" /> <PointFrame FrameIndex="53" X="0.5" Y="0.5" /> <PointFrame FrameIndex="54" X="0.5" Y="0.5" /> <PointFrame FrameIndex="55" X="0.5" Y="0.5" /> <PointFrame FrameIndex="57" X="0.5" Y="0.5" /> <PointFrame FrameIndex="58" X="0.5" Y="0.5" /> <PointFrame FrameIndex="60" X="0.5" Y="0.5" /> <PointFrame FrameIndex="62" X="0.5" Y="0.5" /> <PointFrame FrameIndex="67" X="0.5" Y="0.5" /> </Timeline> <Timeline ActionTag="123958725" FrameType="PositionFrame"> <PointFrame FrameIndex="0" X="94.8" Y="175.95" /> <PointFrame FrameIndex="6" X="95.1" Y="169.25" /> <PointFrame FrameIndex="13" Tween="False" X="94.8" Y="175.95" /> <PointFrame FrameIndex="14" X="94.8" Y="175.95" /> <PointFrame FrameIndex="15" X="84.75" Y="176.15" /> <PointFrame FrameIndex="16" X="157.45" Y="151.1" /> <PointFrame FrameIndex="17" X="148.9" Y="182.9" /> <PointFrame FrameIndex="18" X="33.6" Y="189" /> <PointFrame FrameIndex="19" X="46" Y="183.1" /> <PointFrame FrameIndex="21" Tween="False" X="94.8" Y="175.95" /> <PointFrame FrameIndex="22" Tween="False" X="94.8" Y="175.95" /> <PointFrame FrameIndex="23" Tween="False" X="100.8" Y="170.55" /> <PointFrame FrameIndex="24" Tween="False" X="60.55" Y="189.25" /> <PointFrame FrameIndex="26" Tween="False" X="74.65" Y="184.45" /> <PointFrame FrameIndex="28" Tween="False" X="88.15" Y="178.7" /> <PointFrame FrameIndex="29" Tween="False" X="94.8" Y="175.95" /> <PointFrame FrameIndex="30" X="94.8" Y="175.95" /> <PointFrame FrameIndex="40" X="137.85" Y="174.55" /> <PointFrame FrameIndex="51" X="57.95" Y="183.95" /> <PointFrame FrameIndex="53" X="46.45" Y="183.3" /> <PointFrame FrameIndex="54" X="3.85" Y="185.15" /> <PointFrame FrameIndex="55" X="-75.35" Y="145.1" /> <PointFrame FrameIndex="57" X="-74.5" Y="82.95" /> <PointFrame FrameIndex="58" X="-60.45" Y="-0.65" /> <PointFrame FrameIndex="60" X="-60.2" Y="23.05" /> <PointFrame FrameIndex="62" X="-60.55" Y="-2.05" /> <PointFrame FrameIndex="67" Tween="False" X="-60.65" Y="-7.8" /> </Timeline> <Timeline ActionTag="123958725" FrameType="ScaleFrame"> <PointFrame FrameIndex="0" X="0.7999878" Y="0.7999878" /> <PointFrame FrameIndex="6" X="0.7999878" Y="0.7999878" /> <PointFrame FrameIndex="13" Tween="False" X="0.7999878" Y="0.7999878" /> <PointFrame FrameIndex="14" X="0.7999878" Y="0.7999878" /> <PointFrame FrameIndex="15" X="0.7999878" Y="0.7999878" /> <PointFrame FrameIndex="16" X="0.7999725" Y="0.7999725" /> <PointFrame FrameIndex="17" X="0.8000031" Y="0.8000031" /> <PointFrame FrameIndex="18" X="0.8000031" Y="0.8000031" /> <PointFrame FrameIndex="19" X="0.7993164" Y="0.7993164" /> <PointFrame FrameIndex="21" Tween="False" X="0.7999878" Y="0.7999878" /> <PointFrame FrameIndex="22" Tween="False" X="0.7999878" Y="0.7999878" /> <PointFrame FrameIndex="23" Tween="False" X="0.8000183" Y="0.8000183" /> <PointFrame FrameIndex="24" Tween="False" X="0.8000031" Y="0.8000031" /> <PointFrame FrameIndex="26" Tween="False" X="0.7994843" Y="0.7994843" /> <PointFrame FrameIndex="28" Tween="False" X="0.7996368" Y="0.7996368" /> <PointFrame FrameIndex="29" Tween="False" X="0.7999878" Y="0.7999878" /> <PointFrame FrameIndex="30" X="0.7999878" Y="0.7999878" /> <PointFrame FrameIndex="40" X="0.8000031" Y="0.8000031" /> <PointFrame FrameIndex="51" X="0.7999573" Y="0.7999573" /> <PointFrame FrameIndex="53" X="0.7999878" Y="0.7999878" /> <PointFrame FrameIndex="54" X="0.7999725" Y="0.7999725" /> <PointFrame FrameIndex="55" X="0.7999878" Y="0.7999878" /> <PointFrame FrameIndex="57" X="0.7999878" Y="0.7999878" /> <PointFrame FrameIndex="58" X="0.7999573" Y="0.7999573" /> <PointFrame FrameIndex="60" X="0.7999725" Y="0.7999725" /> <PointFrame FrameIndex="62" X="0.7999573" Y="0.7999573" /> <PointFrame FrameIndex="67" Tween="False" X="0.7999573" Y="0.7999573" /> </Timeline> <Timeline ActionTag="123958725" FrameType="RotationSkewFrame"> <PointFrame FrameIndex="0" X="0" Y="0" /> <PointFrame FrameIndex="6" X="-2.490082" Y="-2.490082" /> <PointFrame FrameIndex="13" Tween="False" X="0" Y="0" /> <PointFrame FrameIndex="14" X="0" Y="0" /> <PointFrame FrameIndex="15" X="-8.72612" Y="-8.72612" /> <PointFrame FrameIndex="16" X="18.00243" Y="18.00243" /> <PointFrame FrameIndex="17" X="9.122879" Y="9.122879" /> <PointFrame FrameIndex="18" X="-23.13809" Y="-23.13809" /> <PointFrame FrameIndex="19" X="-18.72061" Y="-18.72061" /> <PointFrame FrameIndex="21" Tween="False" X="0" Y="0" /> <PointFrame FrameIndex="22" Tween="False" X="0" Y="0" /> <PointFrame FrameIndex="23" Tween="False" X="3.212173" Y="3.212173" /> <PointFrame FrameIndex="24" Tween="False" X="-18.87653" Y="-18.87653" /> <PointFrame FrameIndex="26" Tween="False" X="-11.27698" Y="-11.27698" /> <PointFrame FrameIndex="28" Tween="False" X="-3.752213" Y="-3.752213" /> <PointFrame FrameIndex="29" Tween="False" X="0" Y="0" /> <PointFrame FrameIndex="30" X="0" Y="0" /> <PointFrame FrameIndex="40" X="13.40755" Y="13.40755" /> <PointFrame FrameIndex="51" X="-23.61983" Y="-23.61983" /> <PointFrame FrameIndex="53" X="-29.25806" Y="-29.25806" /> <PointFrame FrameIndex="54" X="-46.15373" Y="-46.15373" /> <PointFrame FrameIndex="55" X="-94.14116" Y="-94.14116" /> <PointFrame FrameIndex="57" X="-118.8907" Y="-118.8907" /> <PointFrame FrameIndex="58" X="-127.8452" Y="-127.8452" /> <PointFrame FrameIndex="60" X="-115.3809" Y="-115.3809" /> <PointFrame FrameIndex="62" X="-120.6745" Y="-120.6745" /> <PointFrame FrameIndex="67" Tween="False" X="-124.6052" Y="-124.6052" /> </Timeline> <Timeline ActionTag="123958728" FrameType="VisibleFrame"> <BoolFrame FrameIndex="0" Value="True" /> <BoolFrame FrameIndex="14" Value="False" /> <BoolFrame FrameIndex="22" Value="True" /> </Timeline> <Timeline ActionTag="123958728" FrameType="AnchorPointFrame"> <PointFrame FrameIndex="0" X="0.5" Y="0.5" /> <PointFrame FrameIndex="6" X="0.5" Y="0.5" /> <PointFrame FrameIndex="13" X="0.5" Y="0.5" /> <PointFrame FrameIndex="22" X="0.5" Y="0.5" /> <PointFrame FrameIndex="23" X="0.5" Y="0.5" /> <PointFrame FrameIndex="24" X="0.5" Y="0.5" /> <PointFrame FrameIndex="26" X="0.5" Y="0.5" /> <PointFrame FrameIndex="28" X="0.5" Y="0.5" /> <PointFrame FrameIndex="29" X="0.5" Y="0.5" /> <PointFrame FrameIndex="30" X="0.5" Y="0.5" /> <PointFrame FrameIndex="40" X="0.5" Y="0.5" /> <PointFrame FrameIndex="51" X="0.5" Y="0.5" /> <PointFrame FrameIndex="53" X="0.5" Y="0.5" /> <PointFrame FrameIndex="54" X="0.5" Y="0.5" /> <PointFrame FrameIndex="55" X="0.5" Y="0.5" /> <PointFrame FrameIndex="57" X="0.5" Y="0.5" /> <PointFrame FrameIndex="58" X="0.5" Y="0.5" /> <PointFrame FrameIndex="60" X="0.5" Y="0.5" /> <PointFrame FrameIndex="62" X="0.5" Y="0.5" /> <PointFrame FrameIndex="63" X="0.5" Y="0.5" /> <PointFrame FrameIndex="64" X="0.5" Y="0.5" /> <PointFrame FrameIndex="67" X="0.5" Y="0.5" /> </Timeline> <Timeline ActionTag="123958727" FrameType="PositionFrame"> <PointFrame FrameIndex="0" X="-117.95" Y="92" /> <PointFrame FrameIndex="6" X="-121.65" Y="91.4" /> <PointFrame FrameIndex="13" Tween="False" X="-117.95" Y="92" /> <PointFrame FrameIndex="22" Tween="False" X="-117.95" Y="92" /> <PointFrame FrameIndex="23" Tween="False" X="-116.35" Y="98.6" /> <PointFrame FrameIndex="24" Tween="False" X="-149.7" Y="84.35" /> <PointFrame FrameIndex="26" Tween="False" X="-137" Y="87.35" /> <PointFrame FrameIndex="28" Tween="False" X="-124.4" Y="90.35" /> <PointFrame FrameIndex="29" Tween="False" X="-117.95" Y="92" /> <PointFrame FrameIndex="30" X="-117.95" Y="92" /> <PointFrame FrameIndex="40" X="-119.1" Y="242.75" /> <PointFrame FrameIndex="51" X="-191" Y="138.35" /> <PointFrame FrameIndex="53" X="-159.8" Y="68.85" /> <PointFrame FrameIndex="54" X="-188.85" Y="149.45" /> <PointFrame FrameIndex="55" X="-160.95" Y="51" /> <PointFrame FrameIndex="57" X="-117.5" Y="-58.45" /> <PointFrame FrameIndex="58" X="-115" Y="-57.25" /> <PointFrame FrameIndex="60" X="-115.95" Y="-40.15" /> <PointFrame FrameIndex="62" X="-115.15" Y="-54.3" /> <PointFrame FrameIndex="63" X="-115.2" Y="-51.85" /> <PointFrame FrameIndex="64" X="-115.2" Y="-52.85" /> <PointFrame FrameIndex="67" X="-115.2" Y="-55.65" /> </Timeline> <Timeline ActionTag="123958727" FrameType="ScaleFrame"> <PointFrame FrameIndex="0" X="0.7999878" Y="0.7999878" /> <PointFrame FrameIndex="6" X="0.8000183" Y="0.8000183" /> <PointFrame FrameIndex="13" Tween="False" X="0.7999878" Y="0.7999878" /> <PointFrame FrameIndex="22" Tween="False" X="0.7999878" Y="0.7999878" /> <PointFrame FrameIndex="23" Tween="False" X="0.8000183" Y="0.8000183" /> <PointFrame FrameIndex="24" Tween="False" X="0.7999878" Y="0.7999878" /> <PointFrame FrameIndex="26" Tween="False" X="0.7997437" Y="0.7997437" /> <PointFrame FrameIndex="28" Tween="False" X="0.7998505" Y="0.7998505" /> <PointFrame FrameIndex="29" Tween="False" X="0.7999878" Y="0.7999878" /> <PointFrame FrameIndex="30" X="0.7999878" Y="0.7999878" /> <PointFrame FrameIndex="40" X="0.7999725" Y="0.7999725" /> <PointFrame FrameIndex="51" X="0.8000031" Y="0.8000031" /> <PointFrame FrameIndex="53" X="0.8000031" Y="0.8000031" /> <PointFrame FrameIndex="54" X="0.7999878" Y="0.7999878" /> <PointFrame FrameIndex="55" X="0.7999878" Y="0.7999878" /> <PointFrame FrameIndex="57" X="0.7999725" Y="0.7999725" /> <PointFrame FrameIndex="58" X="0.8000183" Y="0.8000183" /> <PointFrame FrameIndex="60" X="0.7999878" Y="0.7999878" /> <PointFrame FrameIndex="62" X="0.8000031" Y="0.8000031" /> <PointFrame FrameIndex="63" X="0.7999725" Y="0.7999725" /> <PointFrame FrameIndex="64" X="0.8000031" Y="0.8000031" /> <PointFrame FrameIndex="67" X="0.8000031" Y="0.8000031" /> </Timeline> <Timeline ActionTag="123958727" FrameType="RotationSkewFrame"> <PointFrame FrameIndex="0" X="-2.703842" Y="-2.703842" /> <PointFrame FrameIndex="6" X="0.5070648" Y="0.5070648" /> <PointFrame FrameIndex="13" Tween="False" X="-2.703842" Y="-2.703842" /> <PointFrame FrameIndex="22" Tween="False" X="-2.703842" Y="-2.703842" /> <PointFrame FrameIndex="23" Tween="False" X="0.5070648" Y="0.5070648" /> <PointFrame FrameIndex="24" Tween="False" X="5.285614" Y="5.285614" /> <PointFrame FrameIndex="26" Tween="False" X="2.056259" Y="2.056259" /> <PointFrame FrameIndex="28" Tween="False" X="-1.183578" Y="-1.183578" /> <PointFrame FrameIndex="29" Tween="False" X="-2.703842" Y="-2.703842" /> <PointFrame FrameIndex="30" X="-2.703842" Y="-2.703842" /> <PointFrame FrameIndex="40" X="62.10786" Y="62.10786" /> <PointFrame FrameIndex="51" X="-10.91833" Y="-10.91833" /> <PointFrame FrameIndex="53" X="-68.08743" Y="-68.08743" /> <PointFrame FrameIndex="54" X="-152.811" Y="-152.811" /> <PointFrame FrameIndex="55" X="-143.0642" Y="-143.0642" /> <PointFrame FrameIndex="57" X="-115.8543" Y="-115.8543" /> <PointFrame FrameIndex="58" X="-108.6524" Y="-108.6524" /> <PointFrame FrameIndex="60" X="-112.6194" Y="-112.6194" /> <PointFrame FrameIndex="62" X="-109.4079" Y="-109.4079" /> <PointFrame FrameIndex="63" X="-109.9613" Y="-109.9613" /> <PointFrame FrameIndex="64" X="-109.7246" Y="-109.7246" /> <PointFrame FrameIndex="67" X="-109.0923" Y="-109.0923" /> </Timeline> <Timeline ActionTag="123958751" FrameType="VisibleFrame"> <BoolFrame FrameIndex="0" Value="True" /> <BoolFrame FrameIndex="14" Value="False" /> <BoolFrame FrameIndex="22" Value="True" /> </Timeline> <Timeline ActionTag="123958751" FrameType="AnchorPointFrame"> <PointFrame FrameIndex="0" X="0.5" Y="0.5" /> <PointFrame FrameIndex="6" X="0.5" Y="0.5" /> <PointFrame FrameIndex="13" X="0.5" Y="0.5" /> <PointFrame FrameIndex="22" X="0.5" Y="0.5" /> <PointFrame FrameIndex="23" X="0.5" Y="0.5" /> <PointFrame FrameIndex="24" X="0.5" Y="0.5" /> <PointFrame FrameIndex="26" X="0.5" Y="0.5" /> <PointFrame FrameIndex="28" X="0.5" Y="0.5" /> <PointFrame FrameIndex="29" X="0.5" Y="0.5" /> <PointFrame FrameIndex="30" X="0.5" Y="0.5" /> <PointFrame FrameIndex="40" X="0.5" Y="0.5" /> <PointFrame FrameIndex="51" X="0.5" Y="0.5" /> <PointFrame FrameIndex="53" X="0.5" Y="0.5" /> <PointFrame FrameIndex="54" X="0.5" Y="0.5" /> <PointFrame FrameIndex="55" X="0.5" Y="0.5" /> <PointFrame FrameIndex="57" X="0.5" Y="0.5" /> <PointFrame FrameIndex="58" X="0.5" Y="0.5" /> <PointFrame FrameIndex="60" X="0.5" Y="0.5" /> <PointFrame FrameIndex="62" X="0.5" Y="0.5" /> <PointFrame FrameIndex="63" X="0.5" Y="0.5" /> <PointFrame FrameIndex="64" X="0.5" Y="0.5" /> <PointFrame FrameIndex="67" X="0.5" Y="0.5" /> </Timeline> <Timeline ActionTag="123958729" FrameType="PositionFrame"> <PointFrame FrameIndex="0" X="-78.2" Y="194.7" /> <PointFrame FrameIndex="6" X="-74.45" Y="189.8" /> <PointFrame FrameIndex="13" Tween="False" X="-78.2" Y="194.7" /> <PointFrame FrameIndex="22" Tween="False" X="-78.2" Y="194.7" /> <PointFrame FrameIndex="23" Tween="False" X="-70.85" Y="198.9" /> <PointFrame FrameIndex="24" Tween="False" X="-101.9" Y="177.9" /> <PointFrame FrameIndex="26" Tween="False" X="-92.55" Y="184.8" /> <PointFrame FrameIndex="28" Tween="False" X="-83.05" Y="191.55" /> <PointFrame FrameIndex="29" Tween="False" X="-78.2" Y="194.7" /> <PointFrame FrameIndex="30" X="-78.2" Y="194.7" /> <PointFrame FrameIndex="40" X="-9.25" Y="250.4" /> <PointFrame FrameIndex="51" X="-168.45" Y="244.75" /> <PointFrame FrameIndex="53" X="-181.85" Y="92.15" /> <PointFrame FrameIndex="54" X="-214.05" Y="129.65" /> <PointFrame FrameIndex="55" X="-189.15" Y="35.75" /> <PointFrame FrameIndex="57" X="-149.55" Y="-59.05" /> <PointFrame FrameIndex="58" X="-146.9" Y="-53.85" /> <PointFrame FrameIndex="60" X="-148" Y="-39" /> <PointFrame FrameIndex="62" X="-147.1" Y="-51.35" /> <PointFrame FrameIndex="63" X="-147.15" Y="-49.3" /> <PointFrame FrameIndex="64" X="-147.15" Y="-50.1" /> <PointFrame FrameIndex="67" X="-147.05" Y="-52.55" /> </Timeline> <Timeline ActionTag="123958729" FrameType="ScaleFrame"> <PointFrame FrameIndex="0" X="0.7999878" Y="0.7999878" /> <PointFrame FrameIndex="6" X="0.8000183" Y="0.8000183" /> <PointFrame FrameIndex="13" Tween="False" X="0.7999878" Y="0.7999878" /> <PointFrame FrameIndex="22" Tween="False" X="0.7999878" Y="0.7999878" /> <PointFrame FrameIndex="23" Tween="False" X="0.8000031" Y="0.8000031" /> <PointFrame FrameIndex="24" Tween="False" X="0.7999725" Y="0.7999725" /> <PointFrame FrameIndex="26" Tween="False" X="0.7998352" Y="0.7998352" /> <PointFrame FrameIndex="28" Tween="False" X="0.799881" Y="0.799881" /> <PointFrame FrameIndex="29" Tween="False" X="0.7999878" Y="0.7999878" /> <PointFrame FrameIndex="30" X="0.7999878" Y="0.7999878" /> <PointFrame FrameIndex="40" X="0.7999878" Y="0.7999878" /> <PointFrame FrameIndex="51" X="0.7999878" Y="0.7999878" /> <PointFrame FrameIndex="53" X="0.7999725" Y="0.7999725" /> <PointFrame FrameIndex="54" X="0.7999878" Y="0.7999878" /> <PointFrame FrameIndex="55" X="0.7999878" Y="0.7999878" /> <PointFrame FrameIndex="57" X="0.7999878" Y="0.7999878" /> <PointFrame FrameIndex="58" X="0.8000031" Y="0.8000031" /> <PointFrame FrameIndex="60" X="0.7999878" Y="0.7999878" /> <PointFrame FrameIndex="62" X="0.8000031" Y="0.8000031" /> <PointFrame FrameIndex="63" X="0.7999573" Y="0.7999573" /> <PointFrame FrameIndex="64" X="0.8000031" Y="0.8000031" /> <PointFrame FrameIndex="67" X="0.7999725" Y="0.7999725" /> </Timeline> <Timeline ActionTag="123958729" FrameType="RotationSkewFrame"> <PointFrame FrameIndex="0" X="-1.688583" Y="-1.688583" /> <PointFrame FrameIndex="6" X="3.159882" Y="3.159882" /> <PointFrame FrameIndex="13" Tween="False" X="-1.688583" Y="-1.688583" /> <PointFrame FrameIndex="22" Tween="False" X="-1.688583" Y="-1.688583" /> <PointFrame FrameIndex="23" Tween="False" X="1.521729" Y="1.521729" /> <PointFrame FrameIndex="24" Tween="False" X="3.849701" Y="3.849701" /> <PointFrame FrameIndex="26" Tween="False" X="1.579391" Y="1.579391" /> <PointFrame FrameIndex="28" Tween="False" X="-0.666153" Y="-0.666153" /> <PointFrame FrameIndex="29" Tween="False" X="-1.688583" Y="-1.688583" /> <PointFrame FrameIndex="30" X="-1.688583" Y="-1.688583" /> <PointFrame FrameIndex="40" X="63.12456" Y="63.12456" /> <PointFrame FrameIndex="51" X="-9.90181" Y="-9.90181" /> <PointFrame FrameIndex="53" X="-67.07292" Y="-67.07292" /> <PointFrame FrameIndex="54" X="-151.7939" Y="-151.7939" /> <PointFrame FrameIndex="55" X="-142.0497" Y="-142.0497" /> <PointFrame FrameIndex="57" X="-114.8383" Y="-114.8383" /> <PointFrame FrameIndex="58" X="-107.6371" Y="-107.6371" /> <PointFrame FrameIndex="60" X="-111.6034" Y="-111.6034" /> <PointFrame FrameIndex="62" X="-108.3914" Y="-108.3914" /> <PointFrame FrameIndex="63" X="-108.9454" Y="-108.9454" /> <PointFrame FrameIndex="64" X="-108.7073" Y="-108.7073" /> <PointFrame FrameIndex="67" X="-108.0744" Y="-108.0744" /> </Timeline> <Timeline ActionTag="123958753" FrameType="VisibleFrame"> <BoolFrame FrameIndex="0" Value="True" /> <BoolFrame FrameIndex="14" Value="False" /> <BoolFrame FrameIndex="22" Value="True" /> </Timeline> <Timeline ActionTag="123958753" FrameType="AnchorPointFrame"> <PointFrame FrameIndex="0" X="0.5" Y="0.5" /> <PointFrame FrameIndex="6" X="0.5" Y="0.5" /> <PointFrame FrameIndex="13" X="0.5" Y="0.5" /> <PointFrame FrameIndex="22" X="0.5" Y="0.5" /> <PointFrame FrameIndex="23" X="0.5" Y="0.5" /> <PointFrame FrameIndex="24" X="0.5" Y="0.5" /> <PointFrame FrameIndex="26" X="0.5" Y="0.5" /> <PointFrame FrameIndex="28" X="0.5" Y="0.5" /> <PointFrame FrameIndex="29" X="0.5" Y="0.5" /> <PointFrame FrameIndex="30" X="0.5" Y="0.5" /> <PointFrame FrameIndex="40" X="0.5" Y="0.5" /> <PointFrame FrameIndex="51" X="0.5" Y="0.5" /> <PointFrame FrameIndex="53" X="0.5" Y="0.5" /> <PointFrame FrameIndex="54" X="0.5" Y="0.5" /> <PointFrame FrameIndex="55" X="0.5" Y="0.5" /> <PointFrame FrameIndex="57" X="0.5" Y="0.5" /> <PointFrame FrameIndex="58" X="0.5" Y="0.5" /> <PointFrame FrameIndex="60" X="0.5" Y="0.5" /> <PointFrame FrameIndex="62" X="0.5" Y="0.5" /> <PointFrame FrameIndex="63" X="0.5" Y="0.5" /> <PointFrame FrameIndex="64" X="0.5" Y="0.5" /> <PointFrame FrameIndex="67" X="0.5" Y="0.5" /> </Timeline> <Timeline ActionTag="123958752" FrameType="PositionFrame"> <PointFrame FrameIndex="0" X="-131.8" Y="105.85" /> <PointFrame FrameIndex="6" X="-136.6" Y="104.6" /> <PointFrame FrameIndex="13" Tween="False" X="-131.8" Y="105.85" /> <PointFrame FrameIndex="22" Tween="False" X="-131.8" Y="105.85" /> <PointFrame FrameIndex="23" Tween="False" X="-129.4" Y="113.25" /> <PointFrame FrameIndex="24" Tween="False" X="-163.8" Y="94.55" /> <PointFrame FrameIndex="26" Tween="False" X="-151" Y="98.95" /> <PointFrame FrameIndex="28" Tween="False" X="-138.2" Y="103.5" /> <PointFrame FrameIndex="29" Tween="False" X="-131.8" Y="105.85" /> <PointFrame FrameIndex="30" X="-131.8" Y="105.85" /> <PointFrame FrameIndex="40" X="-112.5" Y="261.05" /> <PointFrame FrameIndex="51" X="-206.75" Y="149.9" /> <PointFrame FrameIndex="53" X="-178.05" Y="61.9" /> <PointFrame FrameIndex="54" X="-183.65" Y="130.6" /> <PointFrame FrameIndex="55" X="-159" Y="31.55" /> <PointFrame FrameIndex="57" X="-124.7" Y="-76.7" /> <PointFrame FrameIndex="58" X="-124.45" Y="-74.35" /> <PointFrame FrameIndex="60" X="-124.2" Y="-57.9" /> <PointFrame FrameIndex="62" X="-124.35" Y="-71.6" /> <PointFrame FrameIndex="63" X="-124.25" Y="-69.3" /> <PointFrame FrameIndex="64" X="-124.25" Y="-70.15" /> <PointFrame FrameIndex="67" X="-124.45" Y="-72.9" /> </Timeline> <Timeline ActionTag="123958752" FrameType="ScaleFrame"> <PointFrame FrameIndex="0" X="0.7999878" Y="0.7999878" /> <PointFrame FrameIndex="6" X="0.7999878" Y="0.7999878" /> <PointFrame FrameIndex="13" Tween="False" X="0.7999878" Y="0.7999878" /> <PointFrame FrameIndex="22" Tween="False" X="0.7999878" Y="0.7999878" /> <PointFrame FrameIndex="23" Tween="False" X="0.8000183" Y="0.8000183" /> <PointFrame FrameIndex="24" Tween="False" X="0.7999878" Y="0.7999878" /> <PointFrame FrameIndex="26" Tween="False" X="0.7998505" Y="0.7998505" /> <PointFrame FrameIndex="28" Tween="False" X="0.799881" Y="0.799881" /> <PointFrame FrameIndex="29" Tween="False" X="0.7999878" Y="0.7999878" /> <PointFrame FrameIndex="30" X="0.7999878" Y="0.7999878" /> <PointFrame FrameIndex="40" X="0.7999725" Y="0.7999725" /> <PointFrame FrameIndex="51" X="0.8000031" Y="0.8000031" /> <PointFrame FrameIndex="53" X="0.8000031" Y="0.8000031" /> <PointFrame FrameIndex="54" X="0.7999878" Y="0.7999878" /> <PointFrame FrameIndex="55" X="0.7999878" Y="0.7999878" /> <PointFrame FrameIndex="57" X="0.7999725" Y="0.7999725" /> <PointFrame FrameIndex="58" X="0.8000183" Y="0.8000183" /> <PointFrame FrameIndex="60" X="0.7999878" Y="0.7999878" /> <PointFrame FrameIndex="62" X="0.8000031" Y="0.8000031" /> <PointFrame FrameIndex="63" X="0.7999725" Y="0.7999725" /> <PointFrame FrameIndex="64" X="0.8000031" Y="0.8000031" /> <PointFrame FrameIndex="67" X="0.8000031" Y="0.8000031" /> </Timeline> <Timeline ActionTag="123958752" FrameType="RotationSkewFrame"> <PointFrame FrameIndex="0" X="-2.703842" Y="-2.703842" /> <PointFrame FrameIndex="6" X="3.423035" Y="3.423035" /> <PointFrame FrameIndex="13" Tween="False" X="-2.703842" Y="-2.703842" /> <PointFrame FrameIndex="22" Tween="False" X="-2.703842" Y="-2.703842" /> <PointFrame FrameIndex="23" Tween="False" X="0.5070648" Y="0.5070648" /> <PointFrame FrameIndex="24" Tween="False" X="2.833801" Y="2.833801" /> <PointFrame FrameIndex="26" Tween="False" X="0.5638885" Y="0.5638885" /> <PointFrame FrameIndex="28" Tween="False" X="-1.681595" Y="-1.681595" /> <PointFrame FrameIndex="29" Tween="False" X="-2.703842" Y="-2.703842" /> <PointFrame FrameIndex="30" X="-2.703842" Y="-2.703842" /> <PointFrame FrameIndex="40" X="62.10786" Y="62.10786" /> <PointFrame FrameIndex="51" X="-10.91833" Y="-10.91833" /> <PointFrame FrameIndex="53" X="-68.08743" Y="-68.08743" /> <PointFrame FrameIndex="54" X="-152.811" Y="-152.811" /> <PointFrame FrameIndex="55" X="-143.0642" Y="-143.0642" /> <PointFrame FrameIndex="57" X="-115.8543" Y="-115.8543" /> <PointFrame FrameIndex="58" X="-108.6524" Y="-108.6524" /> <PointFrame FrameIndex="60" X="-112.6194" Y="-112.6194" /> <PointFrame FrameIndex="62" X="-109.4079" Y="-109.4079" /> <PointFrame FrameIndex="63" X="-109.9613" Y="-109.9613" /> <PointFrame FrameIndex="64" X="-109.7246" Y="-109.7246" /> <PointFrame FrameIndex="67" X="-109.0923" Y="-109.0923" /> </Timeline> <Timeline ActionTag="123958755" FrameType="VisibleFrame"> <BoolFrame FrameIndex="0" Value="False" /> <BoolFrame FrameIndex="14" Value="True" /> <BoolFrame FrameIndex="22" Value="False" /> </Timeline> <Timeline ActionTag="123958755" FrameType="AnchorPointFrame"> <PointFrame FrameIndex="14" X="0.5" Y="0.5" /> <PointFrame FrameIndex="15" X="0.5" Y="0.5" /> <PointFrame FrameIndex="16" X="0.5" Y="0.5" /> <PointFrame FrameIndex="17" X="0.5" Y="0.5" /> <PointFrame FrameIndex="18" X="0.5" Y="0.5" /> <PointFrame FrameIndex="19" X="0.5" Y="0.5" /> <PointFrame FrameIndex="21" X="0.5" Y="0.5" /> </Timeline> <Timeline ActionTag="123958754" FrameType="PositionFrame"> <PointFrame FrameIndex="14" X="-147.95" Y="97" /> <PointFrame FrameIndex="15" X="-155.75" Y="89.35" /> <PointFrame FrameIndex="16" X="-30.7" Y="310.6" /> <PointFrame FrameIndex="17" X="81.1" Y="357.55" /> <PointFrame FrameIndex="18" X="-178.9" Y="45.1" /> <PointFrame FrameIndex="19" X="-167.85" Y="46.65" /> <PointFrame FrameIndex="21" X="-166.3" Y="46.95" /> </Timeline> <Timeline ActionTag="123958754" FrameType="ScaleFrame"> <PointFrame FrameIndex="14" X="0.7999878" Y="0.7999878" /> <PointFrame FrameIndex="15" X="0.7999878" Y="0.7999878" /> <PointFrame FrameIndex="16" X="0.7999878" Y="0.7999878" /> <PointFrame FrameIndex="17" X="0.8000031" Y="0.8000031" /> <PointFrame FrameIndex="18" X="0.7999725" Y="0.7999725" /> <PointFrame FrameIndex="19" X="0.7999878" Y="0.7999878" /> <PointFrame FrameIndex="21" X="0.7999725" Y="0.7999725" /> </Timeline> <Timeline ActionTag="123958754" FrameType="RotationSkewFrame"> <PointFrame FrameIndex="14" X="0" Y="0" /> <PointFrame FrameIndex="15" X="6.196121" Y="6.196121" /> <PointFrame FrameIndex="16" X="26.05432" Y="26.05432" /> <PointFrame FrameIndex="17" X="80.20767" Y="80.20767" /> <PointFrame FrameIndex="18" X="-22.47842" Y="-22.47842" /> <PointFrame FrameIndex="19" X="-19.28256" Y="-19.28256" /> <PointFrame FrameIndex="21" X="-18.83582" Y="-18.83582" /> </Timeline> <Timeline ActionTag="123958757" FrameType="VisibleFrame"> <BoolFrame FrameIndex="0" Value="False" /> <BoolFrame FrameIndex="14" Value="True" /> <BoolFrame FrameIndex="22" Value="False" /> </Timeline> <Timeline ActionTag="123958757" FrameType="AnchorPointFrame"> <PointFrame FrameIndex="14" X="0.5" Y="0.5" /> <PointFrame FrameIndex="15" X="0.5" Y="0.5" /> <PointFrame FrameIndex="16" X="0.5" Y="0.5" /> <PointFrame FrameIndex="17" X="0.5" Y="0.5" /> <PointFrame FrameIndex="18" X="0.5" Y="0.5" /> <PointFrame FrameIndex="19" X="0.5" Y="0.5" /> <PointFrame FrameIndex="21" X="0.5" Y="0.5" /> </Timeline> <Timeline ActionTag="123958756" FrameType="PositionFrame"> <PointFrame FrameIndex="14" X="-164.75" Y="118.35" /> <PointFrame FrameIndex="15" X="-170.15" Y="112.4" /> <PointFrame FrameIndex="16" X="-40.1" Y="338.7" /> <PointFrame FrameIndex="17" X="108.85" Y="375.55" /> <PointFrame FrameIndex="18" X="-203.15" Y="61.2" /> <PointFrame FrameIndex="19" X="-191.15" Y="64.05" /> <PointFrame FrameIndex="21" X="-189.5" Y="64.45" /> </Timeline> <Timeline ActionTag="123958756" FrameType="ScaleFrame"> <PointFrame FrameIndex="14" X="0.7999878" Y="0.7999878" /> <PointFrame FrameIndex="15" X="0.7999878" Y="0.7999878" /> <PointFrame FrameIndex="16" X="0.8000031" Y="0.8000031" /> <PointFrame FrameIndex="17" X="0.8000183" Y="0.8000183" /> <PointFrame FrameIndex="18" X="0.7999725" Y="0.7999725" /> <PointFrame FrameIndex="19" X="0.7999878" Y="0.7999878" /> <PointFrame FrameIndex="21" X="0.7999725" Y="0.7999725" /> </Timeline> <Timeline ActionTag="123958756" FrameType="RotationSkewFrame"> <PointFrame FrameIndex="14" X="0" Y="0" /> <PointFrame FrameIndex="15" X="6.196121" Y="6.196121" /> <PointFrame FrameIndex="16" X="32.49876" Y="32.49876" /> <PointFrame FrameIndex="17" X="93.09276" Y="93.09276" /> <PointFrame FrameIndex="18" X="-22.47842" Y="-22.47842" /> <PointFrame FrameIndex="19" X="-19.28256" Y="-19.28256" /> <PointFrame FrameIndex="21" X="-18.83582" Y="-18.83582" /> </Timeline> <Timeline ActionTag="123958759" FrameType="VisibleFrame"> <BoolFrame FrameIndex="0" Value="False" /> <BoolFrame FrameIndex="14" Value="True" /> <BoolFrame FrameIndex="22" Value="False" /> </Timeline> <Timeline ActionTag="123958759" FrameType="AnchorPointFrame"> <PointFrame FrameIndex="14" X="0.5" Y="0.5" /> <PointFrame FrameIndex="15" X="0.5" Y="0.5" /> <PointFrame FrameIndex="16" X="0.5" Y="0.5" /> <PointFrame FrameIndex="17" X="0.5" Y="0.5" /> <PointFrame FrameIndex="18" X="0.5" Y="0.5" /> <PointFrame FrameIndex="19" X="0.5" Y="0.5" /> <PointFrame FrameIndex="21" X="0.5" Y="0.5" /> </Timeline> <Timeline ActionTag="123958758" FrameType="PositionFrame"> <PointFrame FrameIndex="14" X="-157.55" Y="100.85" /> <PointFrame FrameIndex="15" X="-164.9" Y="94.25" /> <PointFrame FrameIndex="16" X="-37.8" Y="319.6" /> <PointFrame FrameIndex="17" X="82.2" Y="363.7" /> <PointFrame FrameIndex="18" X="-189.35" Y="45" /> <PointFrame FrameIndex="19" X="-178.2" Y="47.1" /> <PointFrame FrameIndex="21" X="-176.6" Y="47.45" /> </Timeline> <Timeline ActionTag="123958758" FrameType="ScaleFrame"> <PointFrame FrameIndex="14" X="0.7999878" Y="0.7999878" /> <PointFrame FrameIndex="15" X="0.7999878" Y="0.7999878" /> <PointFrame FrameIndex="16" X="0.8000031" Y="0.8000031" /> <PointFrame FrameIndex="17" X="0.7999878" Y="0.7999878" /> <PointFrame FrameIndex="18" X="0.7999725" Y="0.7999725" /> <PointFrame FrameIndex="19" X="0.7999878" Y="0.7999878" /> <PointFrame FrameIndex="21" X="0.7999725" Y="0.7999725" /> </Timeline> <Timeline ActionTag="123958758" FrameType="RotationSkewFrame"> <PointFrame FrameIndex="14" X="0" Y="0" /> <PointFrame FrameIndex="15" X="6.196121" Y="6.196121" /> <PointFrame FrameIndex="16" X="32.78824" Y="32.78824" /> <PointFrame FrameIndex="17" X="95.91689" Y="95.91689" /> <PointFrame FrameIndex="18" X="-22.47842" Y="-22.47842" /> <PointFrame FrameIndex="19" X="-19.28256" Y="-19.28256" /> <PointFrame FrameIndex="21" X="-18.83582" Y="-18.83582" /> </Timeline> <Timeline ActionTag="123958782" FrameType="VisibleFrame"> <BoolFrame FrameIndex="0" Value="True" /> </Timeline> <Timeline ActionTag="123958782" FrameType="AnchorPointFrame"> <PointFrame FrameIndex="0" X="0.5" Y="0.5" /> <PointFrame FrameIndex="6" X="0.5" Y="0.5" /> <PointFrame FrameIndex="13" X="0.5" Y="0.5" /> <PointFrame FrameIndex="14" X="0.5" Y="0.5" /> <PointFrame FrameIndex="15" X="0.5" Y="0.5" /> <PointFrame FrameIndex="16" X="0.5" Y="0.5" /> <PointFrame FrameIndex="17" X="0.5" Y="0.5" /> <PointFrame FrameIndex="18" X="0.5" Y="0.5" /> <PointFrame FrameIndex="19" X="0.5" Y="0.5" /> <PointFrame FrameIndex="21" X="0.5" Y="0.5" /> <PointFrame FrameIndex="22" X="0.5" Y="0.5" /> <PointFrame FrameIndex="23" X="0.5" Y="0.5" /> <PointFrame FrameIndex="24" X="0.5" Y="0.5" /> <PointFrame FrameIndex="26" X="0.5" Y="0.5" /> <PointFrame FrameIndex="28" X="0.5" Y="0.5" /> <PointFrame FrameIndex="29" X="0.5" Y="0.5" /> <PointFrame FrameIndex="30" X="0.5" Y="0.5" /> <PointFrame FrameIndex="40" X="0.5" Y="0.5" /> <PointFrame FrameIndex="46" X="0.5" Y="0.5" /> <PointFrame FrameIndex="51" X="0.5" Y="0.5" /> <PointFrame FrameIndex="53" X="0.5" Y="0.5" /> <PointFrame FrameIndex="54" X="0.5" Y="0.5" /> <PointFrame FrameIndex="57" X="0.5" Y="0.5" /> <PointFrame FrameIndex="59" X="0.5" Y="0.5" /> <PointFrame FrameIndex="61" X="0.5" Y="0.5" /> <PointFrame FrameIndex="63" X="0.5" Y="0.5" /> <PointFrame FrameIndex="67" X="0.5" Y="0.5" /> </Timeline> <Timeline ActionTag="123958760" FrameType="PositionFrame"> <PointFrame FrameIndex="0" X="-31.85" Y="122.8" /> <PointFrame FrameIndex="6" X="-35.25" Y="119.05" /> <PointFrame FrameIndex="13" X="-31.85" Y="122.8" /> <PointFrame FrameIndex="14" X="-31.85" Y="122.8" /> <PointFrame FrameIndex="15" X="-31.6" Y="116.4" /> <PointFrame FrameIndex="16" X="21.35" Y="147.9" /> <PointFrame FrameIndex="17" X="20.6" Y="172.1" /> <PointFrame FrameIndex="18" X="-60.75" Y="106.35" /> <PointFrame FrameIndex="19" X="-44.7" Y="100.7" /> <PointFrame FrameIndex="21" Tween="False" X="-31.85" Y="122.8" /> <PointFrame FrameIndex="22" Tween="False" X="-31.85" Y="122.8" /> <PointFrame FrameIndex="23" Tween="False" X="-28.3" Y="123.6" /> <PointFrame FrameIndex="24" Tween="False" X="-35" Y="98.45" /> <PointFrame FrameIndex="26" Tween="False" X="-34.05" Y="107.95" /> <PointFrame FrameIndex="28" Tween="False" X="-32.7" Y="117.85" /> <PointFrame FrameIndex="29" Tween="False" X="-31.85" Y="122.8" /> <PointFrame FrameIndex="30" X="-31.85" Y="122.8" /> <PointFrame FrameIndex="40" X="-8.75" Y="180.45" /> <PointFrame FrameIndex="46" X="-38.55" Y="139.35" /> <PointFrame FrameIndex="51" X="-52.95" Y="102.95" /> <PointFrame FrameIndex="53" X="-94.65" Y="44.85" /> <PointFrame FrameIndex="54" X="-105.45" Y="-40.2" /> <PointFrame FrameIndex="57" X="-88.55" Y="-18.85" /> <PointFrame FrameIndex="59" X="-96.75" Y="-42.35" /> <PointFrame FrameIndex="61" X="-92.4" Y="-38.85" /> <PointFrame FrameIndex="63" X="-92.4" Y="-42.65" /> <PointFrame FrameIndex="67" X="-92.85" Y="-47.55" /> </Timeline> <Timeline ActionTag="123958760" FrameType="ScaleFrame"> <PointFrame FrameIndex="0" X="0.8000031" Y="0.8000031" /> <PointFrame FrameIndex="6" X="0.8191528" Y="0.765274" /> <PointFrame FrameIndex="13" X="0.8000031" Y="0.8000031" /> <PointFrame FrameIndex="14" X="0.8000031" Y="0.8000031" /> <PointFrame FrameIndex="15" X="0.799469" Y="0.7170715" /> <PointFrame FrameIndex="16" X="0.7978363" Y="1.073471" /> <PointFrame FrameIndex="17" X="0.7974854" Y="1.058044" /> <PointFrame FrameIndex="18" X="0.8030548" Y="0.7226715" /> <PointFrame FrameIndex="19" X="0.7999878" Y="0.7999878" /> <PointFrame FrameIndex="21" Tween="False" X="0.8000031" Y="0.8000031" /> <PointFrame FrameIndex="22" Tween="False" X="0.8000031" Y="0.8000031" /> <PointFrame FrameIndex="23" Tween="False" X="0.8000031" Y="0.8000031" /> <PointFrame FrameIndex="24" Tween="False" X="0.7999725" Y="0.7999725" /> <PointFrame FrameIndex="26" Tween="False" X="0.7994843" Y="0.7994843" /> <PointFrame FrameIndex="28" Tween="False" X="0.7996063" Y="0.7996063" /> <PointFrame FrameIndex="29" Tween="False" X="0.8000031" Y="0.8000031" /> <PointFrame FrameIndex="30" X="0.8000031" Y="0.8000031" /> <PointFrame FrameIndex="40" X="0.7996063" Y="0.7401428" /> <PointFrame FrameIndex="46" X="0.7990875" Y="0.7720947" /> <PointFrame FrameIndex="51" X="0.7999725" Y="0.7999725" /> <PointFrame FrameIndex="53" X="0.7999573" Y="0.7999573" /> <PointFrame FrameIndex="54" X="0.7999268" Y="0.7999268" /> <PointFrame FrameIndex="57" X="0.7999573" Y="0.7999573" /> <PointFrame FrameIndex="59" X="0.799942" Y="0.799942" /> <PointFrame FrameIndex="61" X="0.7999573" Y="0.7999573" /> <PointFrame FrameIndex="63" X="0.7999573" Y="0.7999573" /> <PointFrame FrameIndex="67" X="0.799942" Y="0.799942" /> </Timeline> <Timeline ActionTag="123958760" FrameType="RotationSkewFrame"> <PointFrame FrameIndex="0" X="4.652206" Y="4.652206" /> <PointFrame FrameIndex="6" X="10.21712" Y="9.574005" /> <PointFrame FrameIndex="13" X="4.652206" Y="4.652206" /> <PointFrame FrameIndex="14" X="4.652206" Y="4.652206" /> <PointFrame FrameIndex="15" X="-5.535172" Y="-6.558777" /> <PointFrame FrameIndex="16" X="25.64648" Y="30.8353" /> <PointFrame FrameIndex="17" X="25.53911" Y="28.22845" /> <PointFrame FrameIndex="18" X="-24.01932" Y="-21.51111" /> <PointFrame FrameIndex="19" X="-19.72844" Y="-19.72844" /> <PointFrame FrameIndex="21" Tween="False" X="4.652206" Y="4.652206" /> <PointFrame FrameIndex="22" Tween="False" X="4.652206" Y="4.652206" /> <PointFrame FrameIndex="23" Tween="False" X="5.878815" Y="5.878815" /> <PointFrame FrameIndex="24" Tween="False" X="-14.17194" Y="-14.17194" /> <PointFrame FrameIndex="26" Tween="False" X="-6.615723" Y="-6.615723" /> <PointFrame FrameIndex="28" Tween="False" X="0.9004211" Y="0.9004211" /> <PointFrame FrameIndex="29" Tween="False" X="4.652206" Y="4.652206" /> <PointFrame FrameIndex="30" X="4.652206" Y="4.652206" /> <PointFrame FrameIndex="40" X="30.25429" Y="29.5295" /> <PointFrame FrameIndex="46" X="16.10565" Y="15.78233" /> <PointFrame FrameIndex="51" X="-8.606506" Y="-8.606506" /> <PointFrame FrameIndex="53" X="-46.58659" Y="-46.58659" /> <PointFrame FrameIndex="54" X="-36.39978" Y="-36.39978" /> <PointFrame FrameIndex="57" X="-62.06007" Y="-62.06007" /> <PointFrame FrameIndex="59" X="-48.42821" Y="-48.42821" /> <PointFrame FrameIndex="61" X="-54.12766" Y="-54.12766" /> <PointFrame FrameIndex="63" X="-54.12766" Y="-54.12766" /> <PointFrame FrameIndex="67" X="-53.17775" Y="-53.17775" /> </Timeline> <Timeline ActionTag="123958784" FrameType="VisibleFrame"> <BoolFrame FrameIndex="0" Value="True" /> </Timeline> <Timeline ActionTag="123958784" FrameType="AnchorPointFrame"> <PointFrame FrameIndex="0" X="0.5" Y="0.5" /> <PointFrame FrameIndex="6" X="0.5" Y="0.5" /> <PointFrame FrameIndex="13" X="0.5" Y="0.5" /> <PointFrame FrameIndex="14" X="0.5" Y="0.5" /> <PointFrame FrameIndex="15" X="0.5" Y="0.5" /> <PointFrame FrameIndex="16" X="0.5" Y="0.5" /> <PointFrame FrameIndex="17" X="0.5" Y="0.5" /> <PointFrame FrameIndex="18" X="0.5" Y="0.5" /> <PointFrame FrameIndex="19" X="0.5" Y="0.5" /> <PointFrame FrameIndex="21" X="0.5" Y="0.5" /> <PointFrame FrameIndex="22" X="0.5" Y="0.5" /> <PointFrame FrameIndex="23" X="0.5" Y="0.5" /> <PointFrame FrameIndex="24" X="0.5" Y="0.5" /> <PointFrame FrameIndex="26" X="0.5" Y="0.5" /> <PointFrame FrameIndex="28" X="0.5" Y="0.5" /> <PointFrame FrameIndex="29" X="0.5" Y="0.5" /> <PointFrame FrameIndex="30" X="0.5" Y="0.5" /> <PointFrame FrameIndex="40" X="0.5" Y="0.5" /> <PointFrame FrameIndex="51" X="0.5" Y="0.5" /> <PointFrame FrameIndex="53" X="0.5" Y="0.5" /> <PointFrame FrameIndex="54" X="0.5" Y="0.5" /> <PointFrame FrameIndex="57" X="0.5" Y="0.5" /> <PointFrame FrameIndex="59" X="0.5" Y="0.5" /> <PointFrame FrameIndex="61" X="0.5" Y="0.5" /> <PointFrame FrameIndex="63" X="0.5" Y="0.5" /> <PointFrame FrameIndex="67" X="0.5" Y="0.5" /> </Timeline> <Timeline ActionTag="123958783" FrameType="PositionFrame"> <PointFrame FrameIndex="0" X="-32.4" Y="201.7" /> <PointFrame FrameIndex="6" X="-32.4" Y="191.2" /> <PointFrame FrameIndex="13" Tween="False" X="-32.4" Y="201.7" /> <PointFrame FrameIndex="14" X="-32.4" Y="201.7" /> <PointFrame FrameIndex="15" X="-50.05" Y="185.45" /> <PointFrame FrameIndex="16" X="54.95" Y="227.1" /> <PointFrame FrameIndex="17" X="70.55" Y="252.8" /> <PointFrame FrameIndex="18" X="-100.55" Y="155.75" /> <PointFrame FrameIndex="19" X="-76.7" Y="173.05" /> <PointFrame FrameIndex="21" Tween="False" X="-32.45" Y="201.8" /> <PointFrame FrameIndex="22" Tween="False" X="-32.4" Y="201.7" /> <PointFrame FrameIndex="23" Tween="False" X="-27.2" Y="201.7" /> <PointFrame FrameIndex="24" Tween="False" X="-61.05" Y="172.8" /> <PointFrame FrameIndex="26" Tween="False" X="-49.7" Y="184.75" /> <PointFrame FrameIndex="28" Tween="False" X="-38.2" Y="196.1" /> <PointFrame FrameIndex="29" Tween="False" X="-32.4" Y="201.7" /> <PointFrame FrameIndex="30" X="-32.4" Y="201.7" /> <PointFrame FrameIndex="40" X="20.55" Y="248.1" /> <PointFrame FrameIndex="51" X="-71.5" Y="179.8" /> <PointFrame FrameIndex="53" X="-156.55" Y="93.85" /> <PointFrame FrameIndex="54" X="-155.95" Y="-16.35" /> <PointFrame FrameIndex="57" X="-156" Y="0.8" /> <PointFrame FrameIndex="59" X="-155.95" Y="-16.35" /> <PointFrame FrameIndex="61" X="-155.95" Y="-12.55" /> <PointFrame FrameIndex="63" X="-155.95" Y="-16.35" /> <PointFrame FrameIndex="67" X="-155.95" Y="-20.15" /> </Timeline> <Timeline ActionTag="123958783" FrameType="ScaleFrame"> <PointFrame FrameIndex="0" X="0.7999878" Y="0.7999878" /> <PointFrame FrameIndex="6" X="0.8000031" Y="0.8000031" /> <PointFrame FrameIndex="13" Tween="False" X="0.7999878" Y="0.7999878" /> <PointFrame FrameIndex="14" X="0.7999878" Y="0.7999878" /> <PointFrame FrameIndex="15" X="0.7999725" Y="0.7999725" /> <PointFrame FrameIndex="16" X="0.7999268" Y="0.7999268" /> <PointFrame FrameIndex="17" X="0.7999725" Y="0.7999725" /> <PointFrame FrameIndex="18" X="0.8013763" Y="0.7749329" /> <PointFrame FrameIndex="19" X="0.7999573" Y="0.7999573" /> <PointFrame FrameIndex="21" Tween="False" X="0.799942" Y="0.799942" /> <PointFrame FrameIndex="22" Tween="False" X="0.7999878" Y="0.7999878" /> <PointFrame FrameIndex="23" Tween="False" X="0.7999268" Y="0.7999268" /> <PointFrame FrameIndex="24" Tween="False" X="0.8000031" Y="0.8000031" /> <PointFrame FrameIndex="26" Tween="False" X="0.7994843" Y="0.7994843" /> <PointFrame FrameIndex="28" Tween="False" X="0.7996368" Y="0.7996368" /> <PointFrame FrameIndex="29" Tween="False" X="0.7999878" Y="0.7999878" /> <PointFrame FrameIndex="30" X="0.7999878" Y="0.7999878" /> <PointFrame FrameIndex="40" X="0.8000031" Y="0.8000031" /> <PointFrame FrameIndex="51" X="0.7999725" Y="0.7999725" /> <PointFrame FrameIndex="53" X="0.7999725" Y="0.7999725" /> <PointFrame FrameIndex="54" X="0.799942" Y="0.799942" /> <PointFrame FrameIndex="57" X="0.7999573" Y="0.7999573" /> <PointFrame FrameIndex="59" X="0.799942" Y="0.799942" /> <PointFrame FrameIndex="61" X="0.799942" Y="0.799942" /> <PointFrame FrameIndex="63" X="0.799942" Y="0.799942" /> <PointFrame FrameIndex="67" X="0.7999573" Y="0.7999573" /> </Timeline> <Timeline ActionTag="123958783" FrameType="RotationSkewFrame"> <PointFrame FrameIndex="0" X="4.539276" Y="4.539276" /> <PointFrame FrameIndex="6" X="7.785141" Y="7.785141" /> <PointFrame FrameIndex="13" Tween="False" X="4.539276" Y="4.539276" /> <PointFrame FrameIndex="14" X="4.539276" Y="4.539276" /> <PointFrame FrameIndex="15" X="-9.876358" Y="-9.876358" /> <PointFrame FrameIndex="16" X="28.67047" Y="28.67047" /> <PointFrame FrameIndex="17" X="44.0493" Y="44.0493" /> <PointFrame FrameIndex="18" X="-32.62607" Y="-31.44565" /> <PointFrame FrameIndex="19" X="-18.65785" Y="-18.65785" /> <PointFrame FrameIndex="21" Tween="False" X="4.289856" Y="4.289856" /> <PointFrame FrameIndex="22" Tween="False" X="4.539276" Y="4.539276" /> <PointFrame FrameIndex="23" Tween="False" X="4.883148" Y="4.883148" /> <PointFrame FrameIndex="24" Tween="False" X="-14.28447" Y="-14.28447" /> <PointFrame FrameIndex="26" Tween="False" X="-6.729568" Y="-6.729568" /> <PointFrame FrameIndex="28" Tween="False" X="0.7867889" Y="0.7867889" /> <PointFrame FrameIndex="29" Tween="False" X="4.539276" Y="4.539276" /> <PointFrame FrameIndex="30" X="4.539276" Y="4.539276" /> <PointFrame FrameIndex="40" X="36.00987" Y="36.00987" /> <PointFrame FrameIndex="51" X="-8.719284" Y="-8.719284" /> <PointFrame FrameIndex="53" X="-46.69984" Y="-46.69984" /> <PointFrame FrameIndex="54" X="-61.95918" Y="-61.95918" /> <PointFrame FrameIndex="57" X="-67.91608" Y="-67.91608" /> <PointFrame FrameIndex="59" X="-61.95918" Y="-61.95918" /> <PointFrame FrameIndex="61" X="-61.95918" Y="-61.95918" /> <PointFrame FrameIndex="63" X="-61.95918" Y="-61.95918" /> <PointFrame FrameIndex="67" X="-61.01082" Y="-61.01082" /> </Timeline> <Timeline ActionTag="123958786" FrameType="VisibleFrame"> <BoolFrame FrameIndex="0" Value="False" /> <BoolFrame FrameIndex="18" Value="True" /> <BoolFrame FrameIndex="22" Value="False" /> </Timeline> <Timeline ActionTag="123958786" FrameType="AnchorPointFrame"> <PointFrame FrameIndex="18" X="0.5" Y="0.5" /> <PointFrame FrameIndex="19" X="0.5" Y="0.5" /> <PointFrame FrameIndex="21" X="0.5" Y="0.5" /> </Timeline> <Timeline ActionTag="123958785" FrameType="PositionFrame"> <PointFrame FrameIndex="18" X="-172.9" Y="76.05" /> <PointFrame FrameIndex="19" X="-161.9" Y="75" /> <PointFrame FrameIndex="21" X="-161.9" Y="75" /> </Timeline> <Timeline ActionTag="123958785" FrameType="ScaleFrame"> <PointFrame FrameIndex="18" X="1.000015" Y="1.000015" /> <PointFrame FrameIndex="19" X="1.000015" Y="1.000015" /> <PointFrame FrameIndex="21" X="1.000015" Y="1.000015" /> </Timeline> <Timeline ActionTag="123958785" FrameType="RotationSkewFrame"> <PointFrame FrameIndex="18" X="-8.694519" Y="-8.694519" /> <PointFrame FrameIndex="19" X="-4.79808" Y="-4.79808" /> <PointFrame FrameIndex="21" X="-4.79808" Y="-4.79808" /> </Timeline> <Timeline ActionTag="123958788" FrameType="VisibleFrame"> <BoolFrame FrameIndex="0" Value="False" /> <BoolFrame FrameIndex="18" Value="True" /> <BoolFrame FrameIndex="19" Value="False" /> </Timeline> <Timeline ActionTag="123958788" FrameType="AnchorPointFrame"> <PointFrame FrameIndex="18" X="0.5" Y="0.5" /> </Timeline> <Timeline ActionTag="123958789" FrameType="VisibleFrame"> <BoolFrame FrameIndex="0" Value="False" /> <BoolFrame FrameIndex="19" Value="True" /> <BoolFrame FrameIndex="20" Value="False" /> </Timeline> <Timeline ActionTag="123958789" FrameType="AnchorPointFrame"> <PointFrame FrameIndex="19" X="0.5" Y="0.5" /> </Timeline> <Timeline ActionTag="123958790" FrameType="VisibleFrame"> <BoolFrame FrameIndex="0" Value="False" /> <BoolFrame FrameIndex="20" Value="True" /> <BoolFrame FrameIndex="21" Value="False" /> </Timeline> <Timeline ActionTag="123958790" FrameType="AnchorPointFrame"> <PointFrame FrameIndex="20" X="0.5" Y="0.5" /> </Timeline> <Timeline ActionTag="123958791" FrameType="VisibleFrame"> <BoolFrame FrameIndex="0" Value="False" /> <BoolFrame FrameIndex="21" Value="True" /> <BoolFrame FrameIndex="22" Value="False" /> </Timeline> <Timeline ActionTag="123958791" FrameType="AnchorPointFrame"> <PointFrame FrameIndex="21" X="0.5" Y="0.5" /> </Timeline> <Timeline ActionTag="123958787" FrameType="PositionFrame"> <PointFrame FrameIndex="18" Tween="False" X="-220.15" Y="-71.45" /> <PointFrame FrameIndex="19" Tween="False" X="-220.15" Y="-71.45" /> <PointFrame FrameIndex="20" Tween="False" X="-220.15" Y="-71.45" /> <PointFrame FrameIndex="21" Tween="False" X="-220.15" Y="-71.45" /> </Timeline> <Timeline ActionTag="123958787" FrameType="ScaleFrame"> <PointFrame FrameIndex="18" Tween="False" X="2" Y="2" /> <PointFrame FrameIndex="19" Tween="False" X="2" Y="2" /> <PointFrame FrameIndex="20" Tween="False" X="2" Y="2" /> <PointFrame FrameIndex="21" Tween="False" X="2" Y="2" /> </Timeline> <Timeline ActionTag="123958787" FrameType="RotationSkewFrame"> <PointFrame FrameIndex="18" Tween="False" X="0" Y="0" /> <PointFrame FrameIndex="19" Tween="False" X="0" Y="0" /> <PointFrame FrameIndex="20" Tween="False" X="0" Y="0" /> <PointFrame FrameIndex="21" Tween="False" X="0" Y="0" /> </Timeline> <Timeline ActionTag="123958814" FrameType="VisibleFrame"> <BoolFrame FrameIndex="0" Value="False" /> </Timeline> <Timeline ActionTag="123958816" FrameType="VisibleFrame"> <BoolFrame FrameIndex="0" Value="False" /> </Timeline> <Timeline ActionTag="123958818" FrameType="VisibleFrame"> <BoolFrame FrameIndex="0" Value="False" /> </Timeline> <Timeline ActionTag="123958820" FrameType="VisibleFrame"> <BoolFrame FrameIndex="0" Value="False" /> </Timeline> <Timeline ActionTag="123958822" FrameType="VisibleFrame"> <BoolFrame FrameIndex="0" Value="False" /> </Timeline> <Timeline ActionTag="123958845" FrameType="VisibleFrame"> <BoolFrame FrameIndex="0" Value="False" /> </Timeline> <Timeline ActionTag="123958847" FrameType="VisibleFrame"> <BoolFrame FrameIndex="0" Value="False" /> </Timeline> <Timeline ActionTag="123958849" FrameType="VisibleFrame"> <BoolFrame FrameIndex="0" Value="False" /> </Timeline> <Timeline ActionTag="123958851" FrameType="VisibleFrame"> <BoolFrame FrameIndex="0" Value="False" /> </Timeline> <Timeline ActionTag="123958853" FrameType="VisibleFrame"> <BoolFrame FrameIndex="0" Value="False" /> </Timeline> <Timeline ActionTag="123958876" FrameType="VisibleFrame"> <BoolFrame FrameIndex="0" Value="False" /> </Timeline> <Timeline ActionTag="123958878" FrameType="VisibleFrame"> <BoolFrame FrameIndex="0" Value="False" /> </Timeline> <Timeline ActionTag="123958880" FrameType="VisibleFrame"> <BoolFrame FrameIndex="0" Value="False" /> </Timeline> <Timeline ActionTag="123958882" FrameType="VisibleFrame"> <BoolFrame FrameIndex="0" Value="False" /> </Timeline> <Timeline ActionTag="123958884" FrameType="VisibleFrame"> <BoolFrame FrameIndex="0" Value="False" /> </Timeline> <Timeline ActionTag="123958907" FrameType="VisibleFrame"> <BoolFrame FrameIndex="0" Value="False" /> </Timeline> <Timeline ActionTag="123958909" FrameType="VisibleFrame"> <BoolFrame FrameIndex="0" Value="False" /> </Timeline> <Timeline ActionTag="123958911" FrameType="VisibleFrame"> <BoolFrame FrameIndex="0" Value="False" /> </Timeline> </Animation> <ObjectData Name="generalshark" CanEdit="False" FrameEvent=""> <Position X="0" Y="0" /> <Scale ScaleX="1" ScaleY="1" /> <AnchorPoint ScaleX="0.5" ScaleY="0.5" /> <CColor A="255" R="255" G="255" B="255" /> <Size X="0" Y="0" /> <PrePosition X="0" Y="0" /> <PreSize X="0" Y="0" /> <Children> <NodeObjectData Name="generalshark_left_foot" ActionTag="1250924655" Rotation="132.6713" RotationSkewX="132.6713" RotationSkewY="121.4157" FrameEvent="enemy_down" ctype="SingleNodeObjectData"> <Position X="39.65" Y="-23.15" /> <Scale ScaleX="0.7999573" ScaleY="0.8156586" /> <AnchorPoint ScaleX="0.5" ScaleY="0.5" /> <CColor A="255" R="255" G="255" B="255" /> <Size X="0" Y="0" /> <PrePosition X="0" Y="0" /> <PreSize X="0" Y="0" /> <Children> <NodeObjectData Name="SpriteObject" ActionTag="1250924656" FrameEvent="" ctype="SpriteObjectData"> <Position X="0" Y="0" /> <Scale ScaleX="1" ScaleY="1" /> <AnchorPoint ScaleX="0.5" ScaleY="0.5" /> <CColor A="255" R="255" G="255" B="255" /> <Size X="79" Y="87" /> <PrePosition X="0" Y="0" /> <PreSize X="0" Y="0" /> <FileData Type="Normal" Path="generalshark_png/generalshark_left_foot.png" /> </NodeObjectData> </Children> </NodeObjectData> <NodeObjectData Name="generalshark_right_foot" ActionTag="1250924657" Rotation="-77.05577" RotationSkewX="-77.05577" RotationSkewY="-77.05577" FrameEvent="" ctype="SingleNodeObjectData"> <Position X="-47.7" Y="-10.85" /> <Scale ScaleX="0.7999573" ScaleY="0.7999573" /> <AnchorPoint ScaleX="0.5" ScaleY="0.5" /> <CColor A="255" R="255" G="255" B="255" /> <Size X="0" Y="0" /> <PrePosition X="0" Y="0" /> <PreSize X="0" Y="0" /> <Children> <NodeObjectData Name="SpriteObject" ActionTag="1250924658" FrameEvent="" ctype="SpriteObjectData"> <Position X="0" Y="0" /> <Scale ScaleX="1" ScaleY="1" /> <AnchorPoint ScaleX="0.5" ScaleY="0.5" /> <CColor A="255" R="255" G="255" B="255" /> <Size X="72" Y="78" /> <PrePosition X="0" Y="0" /> <PreSize X="0" Y="0" /> <FileData Type="Normal" Path="generalshark_png/generalshark_right_foot.png" /> </NodeObjectData> </Children> </NodeObjectData> <NodeObjectData Name="boss_body" ActionTag="1250924659" Rotation="-170.8814" RotationSkewX="-170.8814" RotationSkewY="-170.8814" FrameEvent="" ctype="SingleNodeObjectData"> <Position X="-5.6" Y="-3.6" /> <Scale ScaleX="0.7999725" ScaleY="0.7999725" /> <AnchorPoint ScaleX="0.5" ScaleY="0.5" /> <CColor A="255" R="255" G="255" B="255" /> <Size X="0" Y="0" /> <PrePosition X="0" Y="0" /> <PreSize X="0" Y="0" /> <Children> <NodeObjectData Name="SpriteObject" ActionTag="1250924660" FrameEvent="" ctype="SpriteObjectData"> <Position X="0" Y="0" /> <Scale ScaleX="1" ScaleY="1" /> <AnchorPoint ScaleX="0.5" ScaleY="0.5" /> <CColor A="255" R="255" G="255" B="255" /> <Size X="144" Y="72" /> <PrePosition X="0" Y="0" /> <PreSize X="0" Y="0" /> <FileData Type="Normal" Path="generalshark_png/boss_body.png" /> </NodeObjectData> </Children> </NodeObjectData> <NodeObjectData Name="generalshark_right_leg" ActionTag="1250924661" Rotation="41.27437" RotationSkewX="41.27437" RotationSkewY="48.06955" FrameEvent="" ctype="SingleNodeObjectData"> <Position X="-64.25" Y="-27.2" /> <Scale ScaleX="0.8669128" ScaleY="1.000244" /> <AnchorPoint ScaleX="0.5" ScaleY="0.5" /> <CColor A="255" R="255" G="255" B="255" /> <Size X="0" Y="0" /> <PrePosition X="0" Y="0" /> <PreSize X="0" Y="0" /> <Children> <NodeObjectData Name="SpriteObject" ActionTag="1250924662" FrameEvent="" ctype="SpriteObjectData"> <Position X="0" Y="0" /> <Scale ScaleX="1" ScaleY="1" /> <AnchorPoint ScaleX="0.5" ScaleY="0.5" /> <CColor A="255" R="255" G="255" B="255" /> <Size X="52" Y="34" /> <PrePosition X="0" Y="0" /> <PreSize X="0" Y="0" /> <FileData Type="Normal" Path="generalshark_png/generalshark_right_leg.png" /> </NodeObjectData> </Children> </NodeObjectData> <NodeObjectData Name="generalshark_left_leg1" ActionTag="1250924663" Rotation="-32.52364" RotationSkewX="-32.52364" RotationSkewY="-32.52364" FrameEvent="" ctype="SingleNodeObjectData"> <Position X="37.55" Y="-48" /> <Scale ScaleX="0.7999725" ScaleY="0.7999725" /> <AnchorPoint ScaleX="0.5" ScaleY="0.5" /> <CColor A="255" R="255" G="255" B="255" /> <Size X="0" Y="0" /> <PrePosition X="0" Y="0" /> <PreSize X="0" Y="0" /> <Children> <NodeObjectData Name="SpriteObject" ActionTag="123958689" FrameEvent="" ctype="SpriteObjectData"> <Position X="0" Y="0" /> <Scale ScaleX="1" ScaleY="1" /> <AnchorPoint ScaleX="0.5" ScaleY="0.5" /> <CColor A="255" R="255" G="255" B="255" /> <Size X="63" Y="60" /> <PrePosition X="0" Y="0" /> <PreSize X="0" Y="0" /> <FileData Type="Normal" Path="generalshark_png/generalshark_left_leg1.png" /> </NodeObjectData> </Children> </NodeObjectData> <NodeObjectData Name="generalshark_left_hand" ActionTag="123958690" Rotation="-134.0104" RotationSkewX="-134.0104" RotationSkewY="-134.0104" FrameEvent="" ctype="SingleNodeObjectData"> <Position X="112.45" Y="-41.75" /> <Scale ScaleX="0.7998962" ScaleY="0.7998962" /> <AnchorPoint ScaleX="0.5" ScaleY="0.5" /> <CColor A="255" R="255" G="255" B="255" /> <Size X="0" Y="0" /> <PrePosition X="0" Y="0" /> <PreSize X="0" Y="0" /> <Children> <NodeObjectData Name="SpriteObject" ActionTag="123958691" FrameEvent="" ctype="SpriteObjectData"> <Position X="0" Y="0" /> <Scale ScaleX="1" ScaleY="1" /> <AnchorPoint ScaleX="0.5" ScaleY="0.5" /> <CColor A="255" R="255" G="255" B="255" /> <Size X="133" Y="119" /> <PrePosition X="0" Y="0" /> <PreSize X="0" Y="0" /> <FileData Type="Normal" Path="generalshark_png/generalshark_left_hand.png" /> </NodeObjectData> </Children> </NodeObjectData> <NodeObjectData Name="generalshark_left_armbu" ActionTag="123958692" Rotation="-99.89163" RotationSkewX="-99.89163" RotationSkewY="-99.89163" FrameEvent="" ctype="SingleNodeObjectData"> <Position X="65.1" Y="-24.35" /> <Scale ScaleX="0.799942" ScaleY="0.799942" /> <AnchorPoint ScaleX="0.5" ScaleY="0.5" /> <CColor A="255" R="255" G="255" B="255" /> <Size X="0" Y="0" /> <PrePosition X="0" Y="0" /> <PreSize X="0" Y="0" /> <Children> <NodeObjectData Name="SpriteObject" ActionTag="123958693" FrameEvent="" ctype="SpriteObjectData"> <Position X="0" Y="0" /> <Scale ScaleX="1" ScaleY="1" /> <AnchorPoint ScaleX="0.5" ScaleY="0.5" /> <CColor A="255" R="255" G="255" B="255" /> <Size X="135" Y="145" /> <PrePosition X="0" Y="0" /> <PreSize X="0" Y="0" /> <FileData Type="Normal" Path="generalshark_png/generalshark_left_armbu.png" /> </NodeObjectData> </Children> </NodeObjectData> <NodeObjectData Name="generalshark_left_arm1" ActionTag="123958694" Rotation="-45.90558" RotationSkewX="-45.90558" RotationSkewY="-45.90558" FrameEvent="" ctype="SingleNodeObjectData"> <Position X="-0.3" Y="-15.55" /> <Scale ScaleX="0.7999268" ScaleY="0.7999268" /> <AnchorPoint ScaleX="0.5" ScaleY="0.5" /> <CColor A="255" R="255" G="255" B="255" /> <Size X="0" Y="0" /> <PrePosition X="0" Y="0" /> <PreSize X="0" Y="0" /> <Children> <NodeObjectData Name="SpriteObject" ActionTag="123958695" FrameEvent="" ctype="SpriteObjectData"> <Position X="0" Y="0" /> <Scale ScaleX="1" ScaleY="1" /> <AnchorPoint ScaleX="0.5" ScaleY="0.5" /> <CColor A="255" R="255" G="255" B="255" /> <Size X="115" Y="122" /> <PrePosition X="0" Y="0" /> <PreSize X="0" Y="0" /> <FileData Type="Normal" Path="generalshark_png/generalshark_left_arm1.png" /> </NodeObjectData> </Children> </NodeObjectData> <NodeObjectData Name="generalshark_left_arm2" ActionTag="123958696" Rotation="-99.70486" RotationSkewX="-99.70486" RotationSkewY="-99.70486" FrameEvent="" ctype="SingleNodeObjectData"> <Position X="78.8" Y="-21.95" /> <Scale ScaleX="0.7999573" ScaleY="0.7999573" /> <AnchorPoint ScaleX="0.5" ScaleY="0.5" /> <CColor A="255" R="255" G="255" B="255" /> <Size X="0" Y="0" /> <PrePosition X="0" Y="0" /> <PreSize X="0" Y="0" /> <Children> <NodeObjectData Name="SpriteObject" ActionTag="123958697" FrameEvent="" ctype="SpriteObjectData"> <Position X="0" Y="0" /> <Scale ScaleX="1" ScaleY="1" /> <AnchorPoint ScaleX="0.5" ScaleY="0.5" /> <CColor A="255" R="255" G="255" B="255" /> <Size X="135" Y="110" /> <PrePosition X="0" Y="0" /> <PreSize X="0" Y="0" /> <FileData Type="Normal" Path="generalshark_png/generalshark_left_arm2.png" /> </NodeObjectData> </Children> </NodeObjectData> <NodeObjectData Name="generalshark_right_arm4" ActionTag="123958698" Rotation="-16.14842" RotationSkewX="-16.14842" RotationSkewY="-16.14842" FrameEvent="" ctype="SingleNodeObjectData"> <Position X="-149.6" Y="-6.35" /> <Scale ScaleX="0.8000031" ScaleY="0.8000031" /> <AnchorPoint ScaleX="0.5" ScaleY="0.5" /> <CColor A="255" R="255" G="255" B="255" /> <Size X="0" Y="0" /> <PrePosition X="0" Y="0" /> <PreSize X="0" Y="0" /> <Children> <NodeObjectData Name="SpriteObject" ActionTag="123958720" FrameEvent="" ctype="SpriteObjectData"> <Position X="0" Y="0" /> <Scale ScaleX="1" ScaleY="1" /> <AnchorPoint ScaleX="0.5" ScaleY="0.5" /> <CColor A="255" R="255" G="255" B="255" /> <Size X="130" Y="150" /> <PrePosition X="0" Y="0" /> <PreSize X="0" Y="0" /> <FileData Type="Normal" Path="generalshark_png/generalshark_right_arm4.png" /> </NodeObjectData> </Children> </NodeObjectData> <NodeObjectData Name="generalshark_right_arm3" ActionTag="123958721" Rotation="-0.3733063" RotationSkewX="-0.3733063" RotationSkewY="-0.3733063" FrameEvent="" ctype="SingleNodeObjectData"> <Position X="-185.55" Y="-54.55" /> <Scale ScaleX="0.8000031" ScaleY="0.8000031" /> <AnchorPoint ScaleX="0.5" ScaleY="0.5" /> <CColor A="255" R="255" G="255" B="255" /> <Size X="0" Y="0" /> <PrePosition X="0" Y="0" /> <PreSize X="0" Y="0" /> <Children> <NodeObjectData Name="SpriteObject" ActionTag="123958722" FrameEvent="" ctype="SpriteObjectData"> <Position X="0" Y="0" /> <Scale ScaleX="1" ScaleY="1" /> <AnchorPoint ScaleX="0.5" ScaleY="0.5" /> <CColor A="255" R="255" G="255" B="255" /> <Size X="117" Y="97" /> <PrePosition X="0" Y="0" /> <PreSize X="0" Y="0" /> <FileData Type="Normal" Path="generalshark_png/generalshark_right_arm3.png" /> </NodeObjectData> </Children> </NodeObjectData> <NodeObjectData Name="generalshark_body_2" ActionTag="123958723" Rotation="-99.05894" RotationSkewX="-99.05894" RotationSkewY="-99.05894" FrameEvent="" ctype="SingleNodeObjectData"> <Position X="-84.8" Y="23.15" /> <Scale ScaleX="0.7999878" ScaleY="0.7999878" /> <AnchorPoint ScaleX="0.5" ScaleY="0.5" /> <CColor A="255" R="255" G="255" B="255" /> <Size X="0" Y="0" /> <PrePosition X="0" Y="0" /> <PreSize X="0" Y="0" /> <Children> <NodeObjectData Name="SpriteObject" ActionTag="123958724" FrameEvent="" ctype="SpriteObjectData"> <Position X="0" Y="0" /> <Scale ScaleX="1" ScaleY="1" /> <AnchorPoint ScaleX="0.5" ScaleY="0.5" /> <CColor A="255" R="255" G="255" B="255" /> <Size X="245" Y="250" /> <PrePosition X="0" Y="0" /> <PreSize X="0" Y="0" /> <FileData Type="Normal" Path="generalshark_png/generalshark_body_2.png" /> </NodeObjectData> </Children> </NodeObjectData> <NodeObjectData Name="generalshark_body_3" ActionTag="123958725" Rotation="-124.6052" RotationSkewX="-124.6052" RotationSkewY="-124.6052" FrameEvent="" ctype="SingleNodeObjectData"> <Position X="-60.65" Y="-7.8" /> <Scale ScaleX="0.7999573" ScaleY="0.7999573" /> <AnchorPoint ScaleX="0.5" ScaleY="0.5" /> <CColor A="255" R="255" G="255" B="255" /> <Size X="0" Y="0" /> <PrePosition X="0" Y="0" /> <PreSize X="0" Y="0" /> <Children> <NodeObjectData Name="SpriteObject" ActionTag="123958726" FrameEvent="" ctype="SpriteObjectData"> <Position X="0" Y="0" /> <Scale ScaleX="1" ScaleY="1" /> <AnchorPoint ScaleX="0.5" ScaleY="0.5" /> <CColor A="255" R="255" G="255" B="255" /> <Size X="135" Y="183" /> <PrePosition X="0" Y="0" /> <PreSize X="0" Y="0" /> <FileData Type="Normal" Path="generalshark_png/generalshark_body_3.png" /> </NodeObjectData> </Children> </NodeObjectData> <NodeObjectData Name="generalshark_right_arm2" ActionTag="123958727" Rotation="-109.0923" RotationSkewX="-109.0923" RotationSkewY="-109.0923" FrameEvent="" ctype="SingleNodeObjectData"> <Position X="-115.2" Y="-55.65" /> <Scale ScaleX="0.8000031" ScaleY="0.8000031" /> <AnchorPoint ScaleX="0.5" ScaleY="0.5" /> <CColor A="255" R="255" G="255" B="255" /> <Size X="0" Y="0" /> <PrePosition X="0" Y="0" /> <PreSize X="0" Y="0" /> <Children> <NodeObjectData Name="SpriteObject" ActionTag="123958728" FrameEvent="" ctype="SpriteObjectData"> <Position X="0" Y="0" /> <Scale ScaleX="1" ScaleY="1" /> <AnchorPoint ScaleX="0.5" ScaleY="0.5" /> <CColor A="255" R="255" G="255" B="255" /> <Size X="76" Y="131" /> <PrePosition X="0" Y="0" /> <PreSize X="0" Y="0" /> <FileData Type="Normal" Path="generalshark_png/generalshark_right_arm2.png" /> </NodeObjectData> </Children> </NodeObjectData> <NodeObjectData Name="generalshark_weapon" ActionTag="123958729" Rotation="-108.0744" RotationSkewX="-108.0744" RotationSkewY="-108.0744" FrameEvent="" ctype="SingleNodeObjectData"> <Position X="-147.05" Y="-52.55" /> <Scale ScaleX="0.7999725" ScaleY="0.7999725" /> <AnchorPoint ScaleX="0.5" ScaleY="0.5" /> <CColor A="255" R="255" G="255" B="255" /> <Size X="0" Y="0" /> <PrePosition X="0" Y="0" /> <PreSize X="0" Y="0" /> <Children> <NodeObjectData Name="SpriteObject" ActionTag="123958751" FrameEvent="" ctype="SpriteObjectData"> <Position X="0" Y="0" /> <Scale ScaleX="1" ScaleY="1" /> <AnchorPoint ScaleX="0.5" ScaleY="0.5" /> <CColor A="255" R="255" G="255" B="255" /> <Size X="223" Y="542" /> <PrePosition X="0" Y="0" /> <PreSize X="0" Y="0" /> <FileData Type="Normal" Path="generalshark_png/generalshark_weapon.png" /> </NodeObjectData> </Children> </NodeObjectData> <NodeObjectData Name="generalshark_right_arm_1" ActionTag="123958752" Rotation="-109.0923" RotationSkewX="-109.0923" RotationSkewY="-109.0923" FrameEvent="" ctype="SingleNodeObjectData"> <Position X="-124.45" Y="-72.9" /> <Scale ScaleX="0.8000031" ScaleY="0.8000031" /> <AnchorPoint ScaleX="0.5" ScaleY="0.5" /> <CColor A="255" R="255" G="255" B="255" /> <Size X="0" Y="0" /> <PrePosition X="0" Y="0" /> <PreSize X="0" Y="0" /> <Children> <NodeObjectData Name="SpriteObject" ActionTag="123958753" FrameEvent="" ctype="SpriteObjectData"> <Position X="0" Y="0" /> <Scale ScaleX="1" ScaleY="1" /> <AnchorPoint ScaleX="0.5" ScaleY="0.5" /> <CColor A="255" R="255" G="255" B="255" /> <Size X="75" Y="111" /> <PrePosition X="0" Y="0" /> <PreSize X="0" Y="0" /> <FileData Type="Normal" Path="generalshark_png/generalshark_right_arm_1.png" /> </NodeObjectData> </Children> </NodeObjectData> <NodeObjectData Name="generalshark_right_armbian2" ActionTag="123958754" Rotation="-18.83582" RotationSkewX="-18.83582" RotationSkewY="-18.83582" FrameEvent="" ctype="SingleNodeObjectData"> <Position X="-166.3" Y="46.95" /> <Scale ScaleX="0.7999725" ScaleY="0.7999725" /> <AnchorPoint ScaleX="0.5" ScaleY="0.5" /> <CColor A="255" R="255" G="255" B="255" /> <Size X="0" Y="0" /> <PrePosition X="0" Y="0" /> <PreSize X="0" Y="0" /> <Children> <NodeObjectData Name="SpriteObject" ActionTag="123958755" VisibleForFrame="False" FrameEvent="" ctype="SpriteObjectData"> <Position X="0" Y="0" /> <Scale ScaleX="1" ScaleY="1" /> <AnchorPoint ScaleX="0.5" ScaleY="0.5" /> <CColor A="255" R="255" G="255" B="255" /> <Size X="85" Y="126" /> <PrePosition X="0" Y="0" /> <PreSize X="0" Y="0" /> <FileData Type="Normal" Path="generalshark_png/generalshark_right_armbian2.png" /> </NodeObjectData> </Children> </NodeObjectData> <NodeObjectData Name="generalshark_weapon1" ActionTag="123958756" Rotation="-18.83582" RotationSkewX="-18.83582" RotationSkewY="-18.83582" FrameEvent="" ctype="SingleNodeObjectData"> <Position X="-189.5" Y="64.45" /> <Scale ScaleX="0.7999725" ScaleY="0.7999725" /> <AnchorPoint ScaleX="0.5" ScaleY="0.5" /> <CColor A="255" R="255" G="255" B="255" /> <Size X="0" Y="0" /> <PrePosition X="0" Y="0" /> <PreSize X="0" Y="0" /> <Children> <NodeObjectData Name="SpriteObject" ActionTag="123958757" VisibleForFrame="False" FrameEvent="" ctype="SpriteObjectData"> <Position X="0" Y="0" /> <Scale ScaleX="1" ScaleY="1" /> <AnchorPoint ScaleX="0.5" ScaleY="0.5" /> <CColor A="255" R="255" G="255" B="255" /> <Size X="218" Y="586" /> <PrePosition X="0" Y="0" /> <PreSize X="0" Y="0" /> <FileData Type="Normal" Path="generalshark_png/generalshark_weapon1.png" /> </NodeObjectData> </Children> </NodeObjectData> <NodeObjectData Name="generalshark_right_arm_bian1" ActionTag="123958758" Rotation="-18.83582" RotationSkewX="-18.83582" RotationSkewY="-18.83582" FrameEvent="" ctype="SingleNodeObjectData"> <Position X="-176.6" Y="47.45" /> <Scale ScaleX="0.7999725" ScaleY="0.7999725" /> <AnchorPoint ScaleX="0.5" ScaleY="0.5" /> <CColor A="255" R="255" G="255" B="255" /> <Size X="0" Y="0" /> <PrePosition X="0" Y="0" /> <PreSize X="0" Y="0" /> <Children> <NodeObjectData Name="SpriteObject" ActionTag="123958759" VisibleForFrame="False" FrameEvent="" ctype="SpriteObjectData"> <Position X="0" Y="0" /> <Scale ScaleX="1" ScaleY="1" /> <AnchorPoint ScaleX="0.5" ScaleY="0.5" /> <CColor A="255" R="255" G="255" B="255" /> <Size X="76" Y="114" /> <PrePosition X="0" Y="0" /> <PreSize X="0" Y="0" /> <FileData Type="Normal" Path="generalshark_png/generalshark_right_arm_bian1.png" /> </NodeObjectData> </Children> </NodeObjectData> <NodeObjectData Name="boss_mouth_2" ActionTag="123958760" Rotation="-53.17775" RotationSkewX="-53.17775" RotationSkewY="-53.17775" FrameEvent="" ctype="SingleNodeObjectData"> <Position X="-92.85" Y="-47.55" /> <Scale ScaleX="0.799942" ScaleY="0.799942" /> <AnchorPoint ScaleX="0.5" ScaleY="0.5" /> <CColor A="255" R="255" G="255" B="255" /> <Size X="0" Y="0" /> <PrePosition X="0" Y="0" /> <PreSize X="0" Y="0" /> <Children> <NodeObjectData Name="SpriteObject" ActionTag="123958782" FrameEvent="" ctype="SpriteObjectData"> <Position X="0" Y="0" /> <Scale ScaleX="1" ScaleY="1" /> <AnchorPoint ScaleX="0.5" ScaleY="0.5" /> <CColor A="255" R="255" G="255" B="255" /> <Size X="164" Y="114" /> <PrePosition X="0" Y="0" /> <PreSize X="0" Y="0" /> <FileData Type="Normal" Path="generalshark_png/boss_mouth_2.png" /> </NodeObjectData> </Children> </NodeObjectData> <NodeObjectData Name="boss_mouth_1" ActionTag="123958783" Rotation="-61.01082" RotationSkewX="-61.01082" RotationSkewY="-61.01082" FrameEvent="" ctype="SingleNodeObjectData"> <Position X="-155.95" Y="-20.15" /> <Scale ScaleX="0.7999573" ScaleY="0.7999573" /> <AnchorPoint ScaleX="0.5" ScaleY="0.5" /> <CColor A="255" R="255" G="255" B="255" /> <Size X="0" Y="0" /> <PrePosition X="0" Y="0" /> <PreSize X="0" Y="0" /> <Children> <NodeObjectData Name="SpriteObject" ActionTag="123958784" FrameEvent="" ctype="SpriteObjectData"> <Position X="0" Y="0" /> <Scale ScaleX="1" ScaleY="1" /> <AnchorPoint ScaleX="0.5" ScaleY="0.5" /> <CColor A="255" R="255" G="255" B="255" /> <Size X="267" Y="314" /> <PrePosition X="0" Y="0" /> <PreSize X="0" Y="0" /> <FileData Type="Normal" Path="generalshark_png/boss_mouth_1.png" /> </NodeObjectData> </Children> </NodeObjectData> <NodeObjectData Name="002" ActionTag="123958785" Rotation="-4.79808" RotationSkewX="-4.79808" RotationSkewY="-4.79808" FrameEvent="" ctype="SingleNodeObjectData"> <Position X="-161.9" Y="75" /> <Scale ScaleX="1.000015" ScaleY="1.000015" /> <AnchorPoint ScaleX="0.5" ScaleY="0.5" /> <CColor A="255" R="255" G="255" B="255" /> <Size X="0" Y="0" /> <PrePosition X="0" Y="0" /> <PreSize X="0" Y="0" /> <Children> <NodeObjectData Name="SpriteObject" ActionTag="123958786" VisibleForFrame="False" FrameEvent="" ctype="SpriteObjectData"> <Position X="0" Y="0" /> <Scale ScaleX="1" ScaleY="1" /> <AnchorPoint ScaleX="0.5" ScaleY="0.5" /> <CColor A="255" R="255" G="255" B="255" /> <Size X="250" Y="500" /> <PrePosition X="0" Y="0" /> <PreSize X="0" Y="0" /> <FileData Type="Normal" Path="generalshark_png/cha.png" /> </NodeObjectData> </Children> </NodeObjectData> <NodeObjectData Name="001" ActionTag="123958787" FrameEvent="" ctype="SingleNodeObjectData"> <Position X="-220.15" Y="-71.45" /> <Scale ScaleX="2" ScaleY="2" /> <AnchorPoint ScaleX="0.5" ScaleY="0.5" /> <CColor A="255" R="255" G="255" B="255" /> <Size X="0" Y="0" /> <PrePosition X="0" Y="0" /> <PreSize X="0" Y="0" /> <Children> <NodeObjectData Name="SpriteObject" ActionTag="123958788" VisibleForFrame="False" FrameEvent="" ctype="SpriteObjectData"> <Position X="0" Y="0" /> <Scale ScaleX="1" ScaleY="1" /> <AnchorPoint ScaleX="0.5" ScaleY="0.5" /> <CColor A="255" R="255" G="255" B="255" /> <Size X="275" Y="250" /> <PrePosition X="0" Y="0" /> <PreSize X="0" Y="0" /> <FileData Type="Normal" Path="generalshark_png/2_00000.png" /> </NodeObjectData> <NodeObjectData Name="SpriteObject" ActionTag="123958789" VisibleForFrame="False" FrameEvent="" ctype="SpriteObjectData"> <Position X="0" Y="0" /> <Scale ScaleX="1" ScaleY="1" /> <AnchorPoint ScaleX="0.5" ScaleY="0.5" /> <CColor A="255" R="255" G="255" B="255" /> <Size X="275" Y="250" /> <PrePosition X="0" Y="0" /> <PreSize X="0" Y="0" /> <FileData Type="Normal" Path="generalshark_png/2_00001.png" /> </NodeObjectData> <NodeObjectData Name="SpriteObject" ActionTag="123958790" VisibleForFrame="False" FrameEvent="" ctype="SpriteObjectData"> <Position X="0" Y="0" /> <Scale ScaleX="1" ScaleY="1" /> <AnchorPoint ScaleX="0.5" ScaleY="0.5" /> <CColor A="255" R="255" G="255" B="255" /> <Size X="275" Y="250" /> <PrePosition X="0" Y="0" /> <PreSize X="0" Y="0" /> <FileData Type="Normal" Path="generalshark_png/2_00003.png" /> </NodeObjectData> <NodeObjectData Name="SpriteObject" ActionTag="123958791" VisibleForFrame="False" FrameEvent="" ctype="SpriteObjectData"> <Position X="0" Y="0" /> <Scale ScaleX="1" ScaleY="1" /> <AnchorPoint ScaleX="0.5" ScaleY="0.5" /> <CColor A="255" R="255" G="255" B="255" /> <Size X="275" Y="250" /> <PrePosition X="0" Y="0" /> <PreSize X="0" Y="0" /> <FileData Type="Normal" Path="generalshark_png/2_00004.png" /> </NodeObjectData> </Children> </NodeObjectData> <NodeObjectData Name="003" ActionTag="123958813" FrameEvent="" ctype="SingleNodeObjectData"> <Position X="-68.35" Y="154.4" /> <Scale ScaleX="0.5" ScaleY="0.5" /> <AnchorPoint ScaleX="0.5" ScaleY="0.5" /> <CColor A="255" R="255" G="255" B="255" /> <Size X="0" Y="0" /> <PrePosition X="0" Y="0" /> <PreSize X="0" Y="0" /> <Children> <NodeObjectData Name="SpriteObject" ActionTag="123958814" VisibleForFrame="False" FrameEvent="" ctype="SpriteObjectData"> <Position X="0" Y="0" /> <Scale ScaleX="1" ScaleY="1" /> <AnchorPoint ScaleX="0.5" ScaleY="0.5" /> <CColor A="255" R="255" G="255" B="255" /> <Size X="150" Y="150" /> <PrePosition X="0" Y="0" /> <PreSize X="0" Y="0" /> <FileData Type="Normal" Path="generalshark_png/hong.png" /> </NodeObjectData> </Children> </NodeObjectData> <NodeObjectData Name="004" ActionTag="123958815" FrameEvent="" ctype="SingleNodeObjectData"> <Position X="48.45" Y="108.35" /> <Scale ScaleX="0.2059784" ScaleY="0.2059784" /> <AnchorPoint ScaleX="0.5" ScaleY="0.5" /> <CColor A="255" R="255" G="255" B="255" /> <Size X="0" Y="0" /> <PrePosition X="0" Y="0" /> <PreSize X="0" Y="0" /> <Children> <NodeObjectData Name="SpriteObject" ActionTag="123958816" VisibleForFrame="False" FrameEvent="" ctype="SpriteObjectData"> <Position X="0" Y="0" /> <Scale ScaleX="1" ScaleY="1" /> <AnchorPoint ScaleX="0.5" ScaleY="0.5" /> <CColor A="255" R="255" G="255" B="255" /> <Size X="150" Y="150" /> <PrePosition X="0" Y="0" /> <PreSize X="0" Y="0" /> <FileData Type="Normal" Path="generalshark_png/hong.png" /> </NodeObjectData> </Children> </NodeObjectData> <NodeObjectData Name="005" ActionTag="123958817" FrameEvent="" ctype="SingleNodeObjectData"> <Position X="152.55" Y="77.25" /> <Scale ScaleX="0.2059784" ScaleY="0.2059784" /> <AnchorPoint ScaleX="0.5" ScaleY="0.5" /> <CColor A="255" R="255" G="255" B="255" /> <Size X="0" Y="0" /> <PrePosition X="0" Y="0" /> <PreSize X="0" Y="0" /> <Children> <NodeObjectData Name="SpriteObject" ActionTag="123958818" VisibleForFrame="False" FrameEvent="" ctype="SpriteObjectData"> <Position X="0" Y="0" /> <Scale ScaleX="1" ScaleY="1" /> <AnchorPoint ScaleX="0.5" ScaleY="0.5" /> <CColor A="255" R="255" G="255" B="255" /> <Size X="150" Y="150" /> <PrePosition X="0" Y="0" /> <PreSize X="0" Y="0" /> <FileData Type="Normal" Path="generalshark_png/hong.png" /> </NodeObjectData> </Children> </NodeObjectData> <NodeObjectData Name="006" ActionTag="123958819" FrameEvent="" ctype="SingleNodeObjectData"> <Position X="14.4" Y="81.95" /> <Scale ScaleX="0.08239746" ScaleY="0.08239746" /> <AnchorPoint ScaleX="0.5" ScaleY="0.5" /> <CColor A="255" R="255" G="255" B="255" /> <Size X="0" Y="0" /> <PrePosition X="0" Y="0" /> <PreSize X="0" Y="0" /> <Children> <NodeObjectData Name="SpriteObject" ActionTag="123958820" VisibleForFrame="False" FrameEvent="" ctype="SpriteObjectData"> <Position X="0" Y="0" /> <Scale ScaleX="1" ScaleY="1" /> <AnchorPoint ScaleX="0.5016667" ScaleY="0.4983333" /> <CColor A="255" R="255" G="255" B="255" /> <Size X="150" Y="150" /> <PrePosition X="0" Y="0" /> <PreSize X="0" Y="0" /> <FileData Type="Normal" Path="generalshark_png/hong.png" /> </NodeObjectData> </Children> </NodeObjectData> <NodeObjectData Name="007" ActionTag="123958821" FrameEvent="" ctype="SingleNodeObjectData"> <Position X="-30.25" Y="65.05" /> <Scale ScaleX="0.08239746" ScaleY="0.08239746" /> <AnchorPoint ScaleX="0.5" ScaleY="0.5" /> <CColor A="255" R="255" G="255" B="255" /> <Size X="0" Y="0" /> <PrePosition X="0" Y="0" /> <PreSize X="0" Y="0" /> <Children> <NodeObjectData Name="SpriteObject" ActionTag="123958822" VisibleForFrame="False" FrameEvent="" ctype="SpriteObjectData"> <Position X="0" Y="0" /> <Scale ScaleX="1" ScaleY="1" /> <AnchorPoint ScaleX="0.5016667" ScaleY="0.4983333" /> <CColor A="255" R="255" G="255" B="255" /> <Size X="150" Y="150" /> <PrePosition X="0" Y="0" /> <PreSize X="0" Y="0" /> <FileData Type="Normal" Path="generalshark_png/hong.png" /> </NodeObjectData> </Children> </NodeObjectData> <NodeObjectData Name="008" ActionTag="123958844" FrameEvent="" ctype="SingleNodeObjectData"> <Position X="-49.65" Y="61.8" /> <Scale ScaleX="0.08239746" ScaleY="0.08239746" /> <AnchorPoint ScaleX="0.5" ScaleY="0.5" /> <CColor A="255" R="255" G="255" B="255" /> <Size X="0" Y="0" /> <PrePosition X="0" Y="0" /> <PreSize X="0" Y="0" /> <Children> <NodeObjectData Name="SpriteObject" ActionTag="123958845" VisibleForFrame="False" FrameEvent="" ctype="SpriteObjectData"> <Position X="0" Y="0" /> <Scale ScaleX="1" ScaleY="1" /> <AnchorPoint ScaleX="0.5016667" ScaleY="0.4983333" /> <CColor A="255" R="255" G="255" B="255" /> <Size X="150" Y="150" /> <PrePosition X="0" Y="0" /> <PreSize X="0" Y="0" /> <FileData Type="Normal" Path="generalshark_png/hong.png" /> </NodeObjectData> </Children> </NodeObjectData> <NodeObjectData Name="009" ActionTag="123958846" FrameEvent="" ctype="SingleNodeObjectData"> <Position X="-63.25" Y="59.65" /> <Scale ScaleX="0.08239746" ScaleY="0.08239746" /> <AnchorPoint ScaleX="0.5" ScaleY="0.5" /> <CColor A="255" R="255" G="255" B="255" /> <Size X="0" Y="0" /> <PrePosition X="0" Y="0" /> <PreSize X="0" Y="0" /> <Children> <NodeObjectData Name="SpriteObject" ActionTag="123958847" VisibleForFrame="False" FrameEvent="" ctype="SpriteObjectData"> <Position X="0" Y="0" /> <Scale ScaleX="1" ScaleY="1" /> <AnchorPoint ScaleX="0.5016667" ScaleY="0.4986667" /> <CColor A="255" R="255" G="255" B="255" /> <Size X="150" Y="150" /> <PrePosition X="0" Y="0" /> <PreSize X="0" Y="0" /> <FileData Type="Normal" Path="generalshark_png/hong.png" /> </NodeObjectData> </Children> </NodeObjectData> <NodeObjectData Name="010" ActionTag="123958848" FrameEvent="" ctype="SingleNodeObjectData"> <Position X="104.3" Y="63.45" /> <Scale ScaleX="0.08239746" ScaleY="0.08239746" /> <AnchorPoint ScaleX="0.5" ScaleY="0.5" /> <CColor A="255" R="255" G="255" B="255" /> <Size X="0" Y="0" /> <PrePosition X="0" Y="0" /> <PreSize X="0" Y="0" /> <Children> <NodeObjectData Name="SpriteObject" ActionTag="123958849" VisibleForFrame="False" FrameEvent="" ctype="SpriteObjectData"> <Position X="0" Y="0" /> <Scale ScaleX="1" ScaleY="1" /> <AnchorPoint ScaleX="0.5016667" ScaleY="0.4983333" /> <CColor A="255" R="255" G="255" B="255" /> <Size X="150" Y="150" /> <PrePosition X="0" Y="0" /> <PreSize X="0" Y="0" /> <FileData Type="Normal" Path="generalshark_png/hong.png" /> </NodeObjectData> </Children> </NodeObjectData> <NodeObjectData Name="011" ActionTag="123958850" FrameEvent="" ctype="SingleNodeObjectData"> <Position X="127.15" Y="62.9" /> <Scale ScaleX="0.08239746" ScaleY="0.08239746" /> <AnchorPoint ScaleX="0.5" ScaleY="0.5" /> <CColor A="255" R="255" G="255" B="255" /> <Size X="0" Y="0" /> <PrePosition X="0" Y="0" /> <PreSize X="0" Y="0" /> <Children> <NodeObjectData Name="SpriteObject" ActionTag="123958851" VisibleForFrame="False" FrameEvent="" ctype="SpriteObjectData"> <Position X="0" Y="0" /> <Scale ScaleX="1" ScaleY="1" /> <AnchorPoint ScaleX="0.5016667" ScaleY="0.4983333" /> <CColor A="255" R="255" G="255" B="255" /> <Size X="150" Y="150" /> <PrePosition X="0" Y="0" /> <PreSize X="0" Y="0" /> <FileData Type="Normal" Path="generalshark_png/hong.png" /> </NodeObjectData> </Children> </NodeObjectData> <NodeObjectData Name="012" ActionTag="123958852" FrameEvent="" ctype="SingleNodeObjectData"> <Position X="-12.85" Y="224.8" /> <Scale ScaleX="0.2639771" ScaleY="0.2639771" /> <AnchorPoint ScaleX="0.5" ScaleY="0.5" /> <CColor A="255" R="255" G="255" B="255" /> <Size X="0" Y="0" /> <PrePosition X="0" Y="0" /> <PreSize X="0" Y="0" /> <Children> <NodeObjectData Name="SpriteObject" ActionTag="123958853" VisibleForFrame="False" FrameEvent="" ctype="SpriteObjectData"> <Position X="0" Y="0" /> <Scale ScaleX="1" ScaleY="1" /> <AnchorPoint ScaleX="0.5" ScaleY="0.5" /> <CColor A="255" R="255" G="255" B="255" /> <Size X="150" Y="150" /> <PrePosition X="0" Y="0" /> <PreSize X="0" Y="0" /> <FileData Type="Normal" Path="generalshark_png/hong.png" /> </NodeObjectData> </Children> </NodeObjectData> <NodeObjectData Name="013" ActionTag="123958875" FrameEvent="" ctype="SingleNodeObjectData"> <Position X="-46.6" Y="-6.2" /> <Scale ScaleX="0.2639771" ScaleY="0.2639771" /> <AnchorPoint ScaleX="0.5" ScaleY="0.5" /> <CColor A="255" R="255" G="255" B="255" /> <Size X="0" Y="0" /> <PrePosition X="0" Y="0" /> <PreSize X="0" Y="0" /> <Children> <NodeObjectData Name="SpriteObject" ActionTag="123958876" VisibleForFrame="False" FrameEvent="" ctype="SpriteObjectData"> <Position X="0" Y="0" /> <Scale ScaleX="1" ScaleY="1" /> <AnchorPoint ScaleX="0.5" ScaleY="0.5" /> <CColor A="255" R="255" G="255" B="255" /> <Size X="150" Y="150" /> <PrePosition X="0" Y="0" /> <PreSize X="0" Y="0" /> <FileData Type="Normal" Path="generalshark_png/hong.png" /> </NodeObjectData> </Children> </NodeObjectData> <NodeObjectData Name="014" ActionTag="123958877" FrameEvent="" ctype="SingleNodeObjectData"> <Position X="52.55" Y="-9.45" /> <Scale ScaleX="0.2639771" ScaleY="0.2639771" /> <AnchorPoint ScaleX="0.5" ScaleY="0.5" /> <CColor A="255" R="255" G="255" B="255" /> <Size X="0" Y="0" /> <PrePosition X="0" Y="0" /> <PreSize X="0" Y="0" /> <Children> <NodeObjectData Name="SpriteObject" ActionTag="123958878" VisibleForFrame="False" FrameEvent="" ctype="SpriteObjectData"> <Position X="0" Y="0" /> <Scale ScaleX="1" ScaleY="1" /> <AnchorPoint ScaleX="0.5" ScaleY="0.5" /> <CColor A="255" R="255" G="255" B="255" /> <Size X="150" Y="150" /> <PrePosition X="0" Y="0" /> <PreSize X="0" Y="0" /> <FileData Type="Normal" Path="generalshark_png/hong.png" /> </NodeObjectData> </Children> </NodeObjectData> <NodeObjectData Name="015" ActionTag="123958879" FrameEvent="" ctype="SingleNodeObjectData"> <Position X="-83.3" Y="121.6" /> <Scale ScaleX="1.675629" ScaleY="1.675629" /> <AnchorPoint ScaleX="0.5" ScaleY="0.5" /> <CColor A="255" R="255" G="255" B="255" /> <Size X="0" Y="0" /> <PrePosition X="0" Y="0" /> <PreSize X="0" Y="0" /> <Children> <NodeObjectData Name="SpriteObject" ActionTag="123958880" VisibleForFrame="False" FrameEvent="" ctype="SpriteObjectData"> <Position X="0" Y="0" /> <Scale ScaleX="1" ScaleY="1" /> <AnchorPoint ScaleX="0.5" ScaleY="0.5" /> <CColor A="255" R="255" G="255" B="255" /> <Size X="300" Y="300" /> <PrePosition X="0" Y="0" /> <PreSize X="0" Y="0" /> <FileData Type="Normal" Path="generalshark_png/lala.png" /> </NodeObjectData> </Children> </NodeObjectData> <NodeObjectData Name="016" ActionTag="123958881" FrameEvent="" ctype="SingleNodeObjectData"> <Position X="-88.25" Y="104.9" /> <Scale ScaleX="3.911499" ScaleY="3.911499" /> <AnchorPoint ScaleX="0.5" ScaleY="0.5" /> <CColor A="255" R="255" G="255" B="255" /> <Size X="0" Y="0" /> <PrePosition X="0" Y="0" /> <PreSize X="0" Y="0" /> <Children> <NodeObjectData Name="SpriteObject" ActionTag="123958882" VisibleForFrame="False" FrameEvent="" ctype="SpriteObjectData"> <Position X="0" Y="0" /> <Scale ScaleX="1" ScaleY="1" /> <AnchorPoint ScaleX="0.5" ScaleY="0.5" /> <CColor A="255" R="255" G="255" B="255" /> <Size X="125" Y="125" /> <PrePosition X="0" Y="0" /> <PreSize X="0" Y="0" /> <FileData Type="Normal" Path="generalshark_png/guangya.png" /> </NodeObjectData> </Children> </NodeObjectData> <NodeObjectData Name="017" ActionTag="123958883" FrameEvent="" ctype="SingleNodeObjectData"> <Position X="-83.3" Y="121.6" /> <Scale ScaleX="1.675629" ScaleY="1.675629" /> <AnchorPoint ScaleX="0.5" ScaleY="0.5" /> <CColor A="255" R="255" G="255" B="255" /> <Size X="0" Y="0" /> <PrePosition X="0" Y="0" /> <PreSize X="0" Y="0" /> <Children> <NodeObjectData Name="SpriteObject" ActionTag="123958884" VisibleForFrame="False" FrameEvent="" ctype="SpriteObjectData"> <Position X="0" Y="0" /> <Scale ScaleX="1" ScaleY="1" /> <AnchorPoint ScaleX="0.5" ScaleY="0.5" /> <CColor A="255" R="255" G="255" B="255" /> <Size X="300" Y="300" /> <PrePosition X="0" Y="0" /> <PreSize X="0" Y="0" /> <FileData Type="Normal" Path="generalshark_png/lala.png" /> </NodeObjectData> </Children> </NodeObjectData> <NodeObjectData Name="018" ActionTag="123958906" FrameEvent="" ctype="SingleNodeObjectData"> <Position X="-88.25" Y="104.9" /> <Scale ScaleX="3.911499" ScaleY="3.911499" /> <AnchorPoint ScaleX="0.5" ScaleY="0.5" /> <CColor A="255" R="255" G="255" B="255" /> <Size X="0" Y="0" /> <PrePosition X="0" Y="0" /> <PreSize X="0" Y="0" /> <Children> <NodeObjectData Name="SpriteObject" ActionTag="123958907" VisibleForFrame="False" FrameEvent="" ctype="SpriteObjectData"> <Position X="0" Y="0" /> <Scale ScaleX="1" ScaleY="1" /> <AnchorPoint ScaleX="0.5" ScaleY="0.5" /> <CColor A="255" R="255" G="255" B="255" /> <Size X="125" Y="125" /> <PrePosition X="0" Y="0" /> <PreSize X="0" Y="0" /> <FileData Type="Normal" Path="generalshark_png/guangya.png" /> </NodeObjectData> </Children> </NodeObjectData> <NodeObjectData Name="019" ActionTag="123958908" FrameEvent="" ctype="SingleNodeObjectData"> <Position X="-83.3" Y="121.6" /> <Scale ScaleX="1.675629" ScaleY="1.675629" /> <AnchorPoint ScaleX="0.5" ScaleY="0.5" /> <CColor A="255" R="255" G="255" B="255" /> <Size X="0" Y="0" /> <PrePosition X="0" Y="0" /> <PreSize X="0" Y="0" /> <Children> <NodeObjectData Name="SpriteObject" ActionTag="123958909" VisibleForFrame="False" FrameEvent="" ctype="SpriteObjectData"> <Position X="0" Y="0" /> <Scale ScaleX="1" ScaleY="1" /> <AnchorPoint ScaleX="0.5" ScaleY="0.5" /> <CColor A="255" R="255" G="255" B="255" /> <Size X="300" Y="300" /> <PrePosition X="0" Y="0" /> <PreSize X="0" Y="0" /> <FileData Type="Normal" Path="generalshark_png/lala.png" /> </NodeObjectData> </Children> </NodeObjectData> <NodeObjectData Name="020" ActionTag="123958910" FrameEvent="" ctype="SingleNodeObjectData"> <Position X="-88.25" Y="104.9" /> <Scale ScaleX="3.911499" ScaleY="3.911499" /> <AnchorPoint ScaleX="0.5" ScaleY="0.5" /> <CColor A="255" R="255" G="255" B="255" /> <Size X="0" Y="0" /> <PrePosition X="0" Y="0" /> <PreSize X="0" Y="0" /> <Children> <NodeObjectData Name="SpriteObject" ActionTag="123958911" VisibleForFrame="False" FrameEvent="" ctype="SpriteObjectData"> <Position X="0" Y="0" /> <Scale ScaleX="1" ScaleY="1" /> <AnchorPoint ScaleX="0.5" ScaleY="0.5" /> <CColor A="255" R="255" G="255" B="255" /> <Size X="125" Y="125" /> <PrePosition X="0" Y="0" /> <PreSize X="0" Y="0" /> <FileData Type="Normal" Path="generalshark_png/guangya.png" /> </NodeObjectData> </Children> </NodeObjectData> <NodeObjectData Name="021" ActionTag="123958912" FrameEvent="" ctype="SingleNodeObjectData"> <Position X="0" Y="0" /> <Scale ScaleX="1" ScaleY="1" /> <AnchorPoint ScaleX="0.5" ScaleY="0.5" /> <CColor A="255" R="255" G="255" B="255" /> <Size X="0" Y="0" /> <PrePosition X="0" Y="0" /> <PreSize X="0" Y="0" /> </NodeObjectData> <NodeObjectData Name="lalbe" ActionTag="123958913" FrameEvent="" ctype="SingleNodeObjectData"> <Position X="0" Y="0" /> <Scale ScaleX="1" ScaleY="1" /> <AnchorPoint ScaleX="0.5" ScaleY="0.5" /> <CColor A="255" R="255" G="255" B="255" /> <Size X="0" Y="0" /> <PrePosition X="0" Y="0" /> <PreSize X="0" Y="0" /> </NodeObjectData> </Children> </ObjectData> </Content> </Content> </GameProjectFile>
Csound
3
chukong/CocosStudioSamples
DemoMicroCardGame/CocosStudioResources/cocosstudio/generalshark.csd
[ "MIT" ]
#pragma once #include "envoy/stats/scope.h" #include "envoy/stats/stats_macros.h" #include "source/common/common/thread.h" namespace Envoy { namespace Http { namespace Http1 { /** * All stats for the HTTP/1 codec. @see stats_macros.h */ #define ALL_HTTP1_CODEC_STATS(COUNTER) \ COUNTER(dropped_headers_with_underscores) \ COUNTER(metadata_not_supported_error) \ COUNTER(requests_rejected_with_underscores_in_headers) \ COUNTER(response_flood) /** * Wrapper struct for the HTTP/1 codec stats. @see stats_macros.h */ struct CodecStats { using AtomicPtr = Thread::AtomicPtr<CodecStats, Thread::AtomicPtrAllocMode::DeleteOnDestruct>; static CodecStats& atomicGet(AtomicPtr& ptr, Stats::Scope& scope) { return *ptr.get([&scope]() -> CodecStats* { return new CodecStats{ALL_HTTP1_CODEC_STATS(POOL_COUNTER_PREFIX(scope, "http1."))}; }); } ALL_HTTP1_CODEC_STATS(GENERATE_COUNTER_STRUCT) }; } // namespace Http1 } // namespace Http } // namespace Envoy
C
4
dcillera/envoy
source/common/http/http1/codec_stats.h
[ "Apache-2.0" ]
--TEST-- PDO Common: Bug #43663 (__call on classes derived from PDO) --EXTENSIONS-- pdo pdo_sqlite --SKIPIF-- <?php $dir = getenv('REDIR_TEST_DIR'); if (false == $dir) die('skip no driver'); require_once $dir . 'pdo_test.inc'; PDOTest::skip(); ?> --FILE-- <?php class test extends PDO{ function __call($name, array $args) { echo "Called $name in ".__CLASS__."\n"; } function foo() { echo "Called foo in ".__CLASS__."\n"; } } if (getenv('REDIR_TEST_DIR') === false) putenv('REDIR_TEST_DIR='.__DIR__ . '/../../pdo/tests/'); require_once getenv('REDIR_TEST_DIR') . 'pdo_test.inc'; $a = new test('sqlite::memory:'); $a->foo(); $a->bar(); ?> --EXPECT-- Called foo in test Called bar in test
PHP
3
NathanFreeman/php-src
ext/pdo/tests/bug_43663.phpt
[ "PHP-3.01" ]
// Declarations for MapQuick1/StreetNumberSet.java // Written Wed Jun 4 22:50:17 2003 VarComparability none ListImplementors java.util.List DECLARE MapQuick1.StreetNumberSet.StreetNumberSet(java.lang.String):::ENTER numbers java.lang.String # isParam=true hashcode 22 numbers.toString java.lang.String java.lang.String 22 DECLARE MapQuick1.StreetNumberSet.StreetNumberSet(java.lang.String):::EXIT68 numbers java.lang.String # isParam=true hashcode 22 numbers.toString java.lang.String java.lang.String 22 this MapQuick1.StreetNumberSet # isParam=true hashcode 22 this.begins int[] hashcode 22 this.begins[] int[] int[] 22 this.ends int[] hashcode 22 this.ends[] int[] int[] 22 DECLARE MapQuick1.StreetNumberSet.parityOf(int):::ENTER i int # isParam=true int 22 DECLARE MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 i int # isParam=true int 22 return int int 22 DECLARE MapQuick1.StreetNumberSet.checkRep():::ENTER this MapQuick1.StreetNumberSet # isParam=true hashcode 22 this.begins int[] hashcode 22 this.begins[] int[] int[] 22 this.ends int[] hashcode 22 this.ends[] int[] int[] 22 DECLARE MapQuick1.StreetNumberSet.checkRep():::EXIT104 this MapQuick1.StreetNumberSet # isParam=true hashcode 22 this.begins int[] hashcode 22 this.begins[] int[] int[] 22 this.ends int[] hashcode 22 this.ends[] int[] int[] 22 DECLARE MapQuick1.StreetNumberSet.contains(int):::ENTER n int # isParam=true int 22 this MapQuick1.StreetNumberSet # isParam=true hashcode 22 this.begins int[] hashcode 22 this.begins[] int[] int[] 22 this.ends int[] hashcode 22 this.ends[] int[] int[] 22 DECLARE MapQuick1.StreetNumberSet.contains(int):::EXIT118 n int # isParam=true int 22 return boolean boolean 22 this MapQuick1.StreetNumberSet # isParam=true hashcode 22 this.begins int[] hashcode 22 this.begins[] int[] int[] 22 this.ends int[] hashcode 22 this.ends[] int[] int[] 22 DECLARE MapQuick1.StreetNumberSet.contains(int):::EXIT123 n int # isParam=true int 22 return boolean boolean 22 this MapQuick1.StreetNumberSet # isParam=true hashcode 22 this.begins int[] hashcode 22 this.begins[] int[] int[] 22 this.ends int[] hashcode 22 this.ends[] int[] int[] 22 DECLARE MapQuick1.StreetNumberSet.orderStatistic(int):::ENTER n int # isParam=true int 22 this MapQuick1.StreetNumberSet # isParam=true hashcode 22 this.begins int[] hashcode 22 this.begins[] int[] int[] 22 this.ends int[] hashcode 22 this.ends[] int[] int[] 22 DECLARE MapQuick1.StreetNumberSet.orderStatistic(int):::EXIT162 n int # isParam=true int 22 return int int 22 this MapQuick1.StreetNumberSet # isParam=true hashcode 22 this.begins int[] hashcode 22 this.begins[] int[] int[] 22 this.ends int[] hashcode 22 this.ends[] int[] int[] 22 DECLARE MapQuick1.StreetNumberSet.size():::ENTER this MapQuick1.StreetNumberSet # isParam=true hashcode 22 this.begins int[] hashcode 22 this.begins[] int[] int[] 22 this.ends int[] hashcode 22 this.ends[] int[] int[] 22 DECLARE MapQuick1.StreetNumberSet.size():::EXIT181 return int int 22 this MapQuick1.StreetNumberSet # isParam=true hashcode 22 this.begins int[] hashcode 22 this.begins[] int[] int[] 22 this.ends int[] hashcode 22 this.ends[] int[] int[] 22 DECLARE MapQuick1.StreetNumberSet.isEmpty():::ENTER this MapQuick1.StreetNumberSet # isParam=true hashcode 22 this.begins int[] hashcode 22 this.begins[] int[] int[] 22 this.ends int[] hashcode 22 this.ends[] int[] int[] 22 DECLARE MapQuick1.StreetNumberSet.isEmpty():::EXIT190 return boolean boolean 22 this MapQuick1.StreetNumberSet # isParam=true hashcode 22 this.begins int[] hashcode 22 this.begins[] int[] int[] 22 this.ends int[] hashcode 22 this.ends[] int[] int[] 22 DECLARE MapQuick1.StreetNumberSet.min():::ENTER this MapQuick1.StreetNumberSet # isParam=true hashcode 22 this.begins int[] hashcode 22 this.begins[] int[] int[] 22 this.ends int[] hashcode 22 this.ends[] int[] int[] 22 DECLARE MapQuick1.StreetNumberSet.min():::EXIT210 return int int 22 this MapQuick1.StreetNumberSet # isParam=true hashcode 22 this.begins int[] hashcode 22 this.begins[] int[] int[] 22 this.ends int[] hashcode 22 this.ends[] int[] int[] 22 DECLARE MapQuick1.StreetNumberSet.max():::ENTER this MapQuick1.StreetNumberSet # isParam=true hashcode 22 this.begins int[] hashcode 22 this.begins[] int[] int[] 22 this.ends int[] hashcode 22 this.ends[] int[] int[] 22 DECLARE MapQuick1.StreetNumberSet.max():::EXIT230 return int int 22 this MapQuick1.StreetNumberSet # isParam=true hashcode 22 this.begins int[] hashcode 22 this.begins[] int[] int[] 22 this.ends int[] hashcode 22 this.ends[] int[] int[] 22 DECLARE MapQuick1.StreetNumberSet.intersects(MapQuick1.StreetNumberSet):::ENTER other MapQuick1.StreetNumberSet # isParam=true hashcode 22 other.begins int[] hashcode 22 other.begins[] int[] int[] 22 other.ends int[] hashcode 22 other.ends[] int[] int[] 22 this MapQuick1.StreetNumberSet # isParam=true hashcode 22 this.begins int[] hashcode 22 this.begins[] int[] int[] 22 this.ends int[] hashcode 22 this.ends[] int[] int[] 22 DECLARE MapQuick1.StreetNumberSet.intersects(MapQuick1.StreetNumberSet):::EXIT239 other MapQuick1.StreetNumberSet # isParam=true hashcode 22 other.begins int[] hashcode 22 other.begins[] int[] int[] 22 other.ends int[] hashcode 22 other.ends[] int[] int[] 22 return boolean boolean 22 this MapQuick1.StreetNumberSet # isParam=true hashcode 22 this.begins int[] hashcode 22 this.begins[] int[] int[] 22 this.ends int[] hashcode 22 this.ends[] int[] int[] 22 DECLARE MapQuick1.StreetNumberSet.intersects(MapQuick1.StreetNumberSet):::EXIT240 other MapQuick1.StreetNumberSet # isParam=true hashcode 22 other.begins int[] hashcode 22 other.begins[] int[] int[] 22 other.ends int[] hashcode 22 other.ends[] int[] int[] 22 return boolean boolean 22 this MapQuick1.StreetNumberSet # isParam=true hashcode 22 this.begins int[] hashcode 22 this.begins[] int[] int[] 22 this.ends int[] hashcode 22 this.ends[] int[] int[] 22 DECLARE MapQuick1.StreetNumberSet.intersects(MapQuick1.StreetNumberSet):::EXIT253 other MapQuick1.StreetNumberSet # isParam=true hashcode 22 other.begins int[] hashcode 22 other.begins[] int[] int[] 22 other.ends int[] hashcode 22 other.ends[] int[] int[] 22 return boolean boolean 22 this MapQuick1.StreetNumberSet # isParam=true hashcode 22 this.begins int[] hashcode 22 this.begins[] int[] int[] 22 this.ends int[] hashcode 22 this.ends[] int[] int[] 22 DECLARE MapQuick1.StreetNumberSet.intersects(MapQuick1.StreetNumberSet):::EXIT257 other MapQuick1.StreetNumberSet # isParam=true hashcode 22 other.begins int[] hashcode 22 other.begins[] int[] int[] 22 other.ends int[] hashcode 22 other.ends[] int[] int[] 22 return boolean boolean 22 this MapQuick1.StreetNumberSet # isParam=true hashcode 22 this.begins int[] hashcode 22 this.begins[] int[] int[] 22 this.ends int[] hashcode 22 this.ends[] int[] int[] 22 DECLARE MapQuick1.StreetNumberSet.equals(java.lang.Object):::ENTER o java.lang.Object # isParam=true hashcode 22 o.class java.lang.Class java.lang.String 22 this MapQuick1.StreetNumberSet # isParam=true hashcode 22 this.begins int[] hashcode 22 this.begins[] int[] int[] 22 this.ends int[] hashcode 22 this.ends[] int[] int[] 22 DECLARE MapQuick1.StreetNumberSet.equals(java.lang.Object):::EXIT266 o java.lang.Object # isParam=true hashcode 22 o.class java.lang.Class java.lang.String 22 return boolean boolean 22 this MapQuick1.StreetNumberSet # isParam=true hashcode 22 this.begins int[] hashcode 22 this.begins[] int[] int[] 22 this.ends int[] hashcode 22 this.ends[] int[] int[] 22 DECLARE MapQuick1.StreetNumberSet.equals(MapQuick1.StreetNumberSet):::ENTER other MapQuick1.StreetNumberSet # isParam=true hashcode 22 other.begins int[] hashcode 22 other.begins[] int[] int[] 22 other.ends int[] hashcode 22 other.ends[] int[] int[] 22 this MapQuick1.StreetNumberSet # isParam=true hashcode 22 this.begins int[] hashcode 22 this.begins[] int[] int[] 22 this.ends int[] hashcode 22 this.ends[] int[] int[] 22 DECLARE MapQuick1.StreetNumberSet.equals(MapQuick1.StreetNumberSet):::EXIT271 other MapQuick1.StreetNumberSet # isParam=true hashcode 22 other.begins int[] hashcode 22 other.begins[] int[] int[] 22 other.ends int[] hashcode 22 other.ends[] int[] int[] 22 return boolean boolean 22 this MapQuick1.StreetNumberSet # isParam=true hashcode 22 this.begins int[] hashcode 22 this.begins[] int[] int[] 22 this.ends int[] hashcode 22 this.ends[] int[] int[] 22 DECLARE MapQuick1.StreetNumberSet.equals(MapQuick1.StreetNumberSet):::EXIT272 other MapQuick1.StreetNumberSet # isParam=true hashcode 22 other.begins int[] hashcode 22 other.begins[] int[] int[] 22 other.ends int[] hashcode 22 other.ends[] int[] int[] 22 return boolean boolean 22 this MapQuick1.StreetNumberSet # isParam=true hashcode 22 this.begins int[] hashcode 22 this.begins[] int[] int[] 22 this.ends int[] hashcode 22 this.ends[] int[] int[] 22 DECLARE MapQuick1.StreetNumberSet.equals(MapQuick1.StreetNumberSet):::EXIT275 other MapQuick1.StreetNumberSet # isParam=true hashcode 22 other.begins int[] hashcode 22 other.begins[] int[] int[] 22 other.ends int[] hashcode 22 other.ends[] int[] int[] 22 return boolean boolean 22 this MapQuick1.StreetNumberSet # isParam=true hashcode 22 this.begins int[] hashcode 22 this.begins[] int[] int[] 22 this.ends int[] hashcode 22 this.ends[] int[] int[] 22 DECLARE MapQuick1.StreetNumberSet.equals(MapQuick1.StreetNumberSet):::EXIT281 other MapQuick1.StreetNumberSet # isParam=true hashcode 22 other.begins int[] hashcode 22 other.begins[] int[] int[] 22 other.ends int[] hashcode 22 other.ends[] int[] int[] 22 return boolean boolean 22 this MapQuick1.StreetNumberSet # isParam=true hashcode 22 this.begins int[] hashcode 22 this.begins[] int[] int[] 22 this.ends int[] hashcode 22 this.ends[] int[] int[] 22 DECLARE MapQuick1.StreetNumberSet.equals(MapQuick1.StreetNumberSet):::EXIT282 other MapQuick1.StreetNumberSet # isParam=true hashcode 22 other.begins int[] hashcode 22 other.begins[] int[] int[] 22 other.ends int[] hashcode 22 other.ends[] int[] int[] 22 return boolean boolean 22 this MapQuick1.StreetNumberSet # isParam=true hashcode 22 this.begins int[] hashcode 22 this.begins[] int[] int[] 22 this.ends int[] hashcode 22 this.ends[] int[] int[] 22 DECLARE MapQuick1.StreetNumberSet.equals(MapQuick1.StreetNumberSet):::EXIT286 other MapQuick1.StreetNumberSet # isParam=true hashcode 22 other.begins int[] hashcode 22 other.begins[] int[] int[] 22 other.ends int[] hashcode 22 other.ends[] int[] int[] 22 return boolean boolean 22 this MapQuick1.StreetNumberSet # isParam=true hashcode 22 this.begins int[] hashcode 22 this.begins[] int[] int[] 22 this.ends int[] hashcode 22 this.ends[] int[] int[] 22 DECLARE MapQuick1.StreetNumberSet.equals(MapQuick1.StreetNumberSet):::EXIT290 other MapQuick1.StreetNumberSet # isParam=true hashcode 22 other.begins int[] hashcode 22 other.begins[] int[] int[] 22 other.ends int[] hashcode 22 other.ends[] int[] int[] 22 return boolean boolean 22 this MapQuick1.StreetNumberSet # isParam=true hashcode 22 this.begins int[] hashcode 22 this.begins[] int[] int[] 22 this.ends int[] hashcode 22 this.ends[] int[] int[] 22 DECLARE MapQuick1.StreetNumberSet.hashCode():::ENTER this MapQuick1.StreetNumberSet # isParam=true hashcode 22 this.begins int[] hashcode 22 this.begins[] int[] int[] 22 this.ends int[] hashcode 22 this.ends[] int[] int[] 22 DECLARE MapQuick1.StreetNumberSet.hashCode():::EXIT295 return int int 22 this MapQuick1.StreetNumberSet # isParam=true hashcode 22 this.begins int[] hashcode 22 this.begins[] int[] int[] 22 this.ends int[] hashcode 22 this.ends[] int[] int[] 22 DECLARE MapQuick1.StreetNumberSet:::OBJECT this MapQuick1.StreetNumberSet # isParam=true hashcode 22 this.begins int[] hashcode 22 this.begins[] int[] int[] 22 this.ends int[] hashcode 22 this.ends[] int[] int[] 22
BlitzBasic
1
eurecom-s3/invscov
daikon/java/daikon/test/split/targets/StreetNumberSet.decls
[ "Apache-2.0" ]
PROGRAM_NAME='uri' /////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// // Include: uri // // Description: // // - This include file provides functions for working with URI's as defined RFC 3986 (see // https://tools.ietf.org/html/rfc3986). // // Implementation: // // - Any NetLinx program utilising the uri include file must use either the INCLUDE or #INCLUDE keywords to include // the uri include file within the program. While the INCLUDE and #INCLUDE keywords are both functionally // equivalent the #INCLUDE keyword is recommended only because it is the NetLinx keyword (the INCLUDE keyword is // from the earlier Axcess programming language and is included within the NetLinx programming language for // backwards compatibility). // // E.g: // // DEFINE_PROGRAM 'URI Demo' // // #INCLUDE 'uri' // // // // /////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// #if_not_defined __URI__ #define __URI__ #include 'string' DEFINE_TYPE STRUCT Uri { char scheme[30]; char user[50]; char password[50]; char host[200]; integer port; char path[200]; char query[200]; char fragment[200]; } DEFINE_CONSTANT char URI_RESERVED_CHARACTERS [] = {':','/','?','#','[',']','@','!','$','&',$27,'(',')','*','+',',',';','='}; char URI_UNRESERVED_CHARACTERS[] = 'abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789-._~'; /////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// // // Function: uriToString // // Parameters: // Uri u - A URI object // // Returns: // char[1500] - A character array containing the URI in string forms // // Description: // Takes a URI object and returns a URI formatted string. // /////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// DEFINE_FUNCTION char[1500] uriToString(Uri u) { char result[1500]; if(length_array(u.scheme)) { result = "result,u.scheme,':'"; } if(length_array(u.host)) { result = "result,'//'"; if(length_array(u.user) && length_array(u.password)) result = "result,u.user,':',u.password,'@'"; result = "result,u.host"; if(u.port) result = "result,':',itoa(u.port)"; if(find_string(u.path,"'/'",1) == 1) { result = "result,u.path"; } else { result = "result,'/',u.path"; } } else { result = "result,u.path"; } if(length_array(u.query)) { result = "result,'?',u.query" } if(length_array(u.fragment)) { result = "result,'#',u.fragment" } return result; } /////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// // // Function: uriFromString // // Parameters: // Uri u - A URI object // char str[] - A character array of undetermined length // // Returns: // nothing // // Description: // Takes a URI object and a character array assumed to be containing a URI string. Parses the URI string and updates // the values of the URI object to match the parsed results. // /////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// DEFINE_FUNCTION uriFromString(Uri u, char str[]) { stack_var char temp[200] stack_var integer idx; stack_var char scheme[20], authority[300], path[200], query[200], fragment[200]; stack_var char user[50], password[50], host[200]; integer port; temp = str; scheme = remove_string(temp,"':'",1); trim_string(scheme,0,1); if(find_string(temp,"'//'",1)) { // contains authority remove_string(temp,"'//'",1); if(find_string(temp,"'/'",1)) { // contains path idx = (find_string(temp,"'/'",1)-1) } else if(find_string(temp,"'?'",1)) { // contains query idx = (find_string(temp,"'?'",1)-1) } else if(find_string(temp,"'#'",1)) { // contains fragment idx = (find_string(temp,"'#'",1)-1) } else { idx = length_string(temp); } authority = mid_string(temp,1,idx); remove_string(temp,authority,1); } if(find_string(temp,"'/'",1)) { // contains path if(find_string(temp,"'?'",1)) { // contains query idx = (find_string(temp,"'?'",1)-1) } else if(find_string(temp,"'#'",1)) { // contains fragment idx = (find_string(temp,"'#'",1)-1) } else { idx = length_string(temp); } path = mid_string(temp,1,idx); remove_string(temp,path,1); } else { if(find_string(temp,"'?'",1)) { path = mid_string(temp,1,find_string(temp,"'?'",1)-1) remove_string(temp,path,1); } else if(find_string(temp,"'#'",1)) { path = mid_string(temp,1,find_string(temp,"'#'",1)-1) remove_string(temp,path,1); } } if(find_string(temp,"'?'",1)) { // contains query remove_string(temp,"'?'",1); if(find_string(temp,"'#'",1)) { // contains fragment idx = (find_string(temp,"'#'",1)-1) } else { idx = length_string(temp); } query = mid_string(temp,1,idx); remove_string(temp,query,1); } if(find_string(temp,"'#'",1)) { // contains fragment remove_string(temp,"'#'",1); idx = length_string(temp); fragment = mid_string(temp,1,idx); remove_string(temp,fragment,1); } // break-apart the authority [user:password@]host[:port] temp = authority; if(find_string(temp,"'@'",1)) { user = remove_string(temp,"':'",1) trim_string(user,0,1); password = remove_string(temp,"'@'",1) trim_string(password,0,1); } if(find_string(temp,"':'",1)) { host = remove_string(temp,"':'",1) trim_string(host,0,1); port = atoi(temp); } else { host = temp; } u.scheme = scheme; u.user = user u.password = password u.host = host; u.path = path; u.port = port u.query = query; u.fragment = fragment; } /////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// // // Function: uriPercentEncodeString // // Parameters: // char u[] - A character array of undetermined length // // Returns: // char[2048] - A character array containing a percent-encoded string // // Description: // Takes a character array (string) and returns a string containing a percent-encoded version of that string. // /////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// DEFINE_FUNCTION char[2048] uriPercentEncodeString(char u[]) { stack_var char i; stack_var char c; stack_var char encoded[2048]; for(i = 1; i <= length_string(u); i++) { c = u[i]; if(uriIsReservedChar(c) || uriIsUnreservedChar(c)) { append_string(encoded,"c"); } else { append_string(encoded,uriPercentEncodeChar(c)); } } return encoded; } /////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// // // Function: uriPercentEncodeChar // // Parameters: // char c - A char value // // Returns: // char[3] - A character array containing a percent-encoded string // // Description: // Takes a character and returns a string containing a percent-encoded version of that character. // /////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// DEFINE_FUNCTION char[3] uriPercentEncodeChar(char c) { return "'%',format('%02X',"c")"; } /////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// // // Function: uriIsReservedChar // // Parameters: // char c - A char value // // Returns: // integer - An integer containing either a true (1) or false (0) value // // Description: // Takes a character and returns a true|false result indicating whether the character would be a reserved character // in a URI. // /////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// DEFINE_FUNCTION integer uriIsReservedChar(char c) { return (find_string(URI_RESERVED_CHARACTERS,"c",1)) } /////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// // // Function: uriIsUnreservedChar // // Parameters: // char c - A char value // // Returns: // integer - An integer containing either a true (1) or false (0) value // // Description: // Takes a character and returns a true|false result indicating whether the character would not be a reserved // character in a URI (i.e., is it unreserved?) // /////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// DEFINE_FUNCTION integer uriIsUnreservedChar(char c) { return (find_string(URI_UNRESERVED_CHARACTERS,"c",1)) }
NetLinx
5
ajnavarro/language-dataset
data/github.com/avt-its-simple/amx-util-library/a6d1e8a7346dcfb82e7989835533000f25e46a20/uri.axi
[ "MIT" ]
#landcover { opacity:.5; }
CartoCSS
1
nimix/carto
test/rendering-mss/style-level-prop-only.mss
[ "Apache-2.0" ]
module audiostreamerscrobbler.scrobbler.ListenBrainzServer import audiostreamerscrobbler.scrobbler.ListenBrainzApiImpl import audiostreamerscrobbler.utils.UrlUtils let TRACKER_ID = "listenbrainz-server" let API_URL_PATH = "/1/submit-listens" function getListenBrainzServerId = -> TRACKER_ID function createListenBrainzServerTracker = |httpRequestFactory, apiUrl, websiteUrl, userToken| { let formattedApiPath = createApiUrl(apiUrl, websiteUrl) return createListenBrainzApiImpl(TRACKER_ID, httpRequestFactory, formattedApiPath, userToken) } function createListenBrainzServerAuthorizor = |websiteUrl| { let formattedWebsiteUrl = createWebsiteUrl(websiteUrl) return createListenBrainzApiAuthorizor(TRACKER_ID, formattedWebsiteUrl) } # Listen Brainz Server URL builder functions local function createApiUrl = |apiUrl, websiteUrl| { let baseUrl = match { when apiUrl isnt null and not apiUrl: isEmpty() then apiUrl otherwise websiteUrl } let url = createFormattedUrl(baseUrl, API_URL_PATH) return url: substring(0, url: length() - 1) } local function createWebsiteUrl = |websiteUrl| { return createFormattedUrl(websiteUrl) }
Golo
4
vvdleun/audiostreamerscrobbler
src/main/golo/include/scrobblers/ListenBrainzServer.golo
[ "MIT" ]
@############################################### @# @# PX4 ROS compatible message source code @# generation for C++ @# @# EmPy template for generating <msg>.h files @# Based on the original template for ROS @# @############################################### @# Start of Template @# @# Context: @# - file_name_in (String) Source file @# - spec (msggen.MsgSpec) Parsed specification of the .msg file @############################################### /**************************************************************************** * * Copyright (C) 2013-2021 PX4 Development Team. All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: * * 1. Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * 2. Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in * the documentation and/or other materials provided with the * distribution. * 3. Neither the name PX4 nor the names of its contributors may be * used to endorse or promote products derived from this software * without specific prior written permission. * * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE * COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS * OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN * ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE * POSSIBILITY OF SUCH DAMAGE. * ****************************************************************************/ /* Auto-generated by genmsg_cpp from file @file_name_in */ @{ import genmsg.msgs from px_generate_uorb_topic_helper import * # this is in Tools/ uorb_struct = '%s_s'%spec.short_name topic_name = spec.short_name }@ #pragma once @############################## @# Generic Includes @############################## #include <uORB/topics/@(topic_name).h> #include <uORB_microcdr/topics/@(topic_name).h> void serialize_@(topic_name)(ucdrBuffer *writer, const struct @(uorb_struct) *input, char *output, uint32_t *length); void deserialize_@(topic_name)(ucdrBuffer *reader, struct @(uorb_struct) *output, const char *input);
EmberScript
4
lgarciaos/Firmware
msg/templates/uorb_microcdr/msg.h.em
[ "BSD-3-Clause" ]
/*!40103 SET TIME_ZONE='+00:00' */; INSERT INTO `uk_auto_inc` (`pk`) VALUES (1), (2), (3);
SQL
2
cuishuang/tidb
br/tests/lightning_incremental/data/incr.uk_auto_inc.sql
[ "Apache-2.0" ]
# Copyright (c) Microsoft Corporation. # Licensed under the MIT License. Describe "Range Operator" -Tags CI { Context "Range integer operations" { It "Range operator generates arrays of integers" { $Range = 5..8 $Range.count | Should -Be 4 $Range[0] | Should -BeOfType int $Range[1] | Should -BeOfType int $Range[2] | Should -BeOfType int $Range[3] | Should -BeOfType int $Range[0] | Should -Be 5 $Range[1] | Should -Be 6 $Range[2] | Should -Be 7 $Range[3] | Should -Be 8 } It "Range operator accepts negative integer values" { $Range = -8..-5 $Range.count | Should -Be 4 $Range[0] | Should -Be -8 $Range[1] | Should -Be -7 $Range[2] | Should -Be -6 $Range[3] | Should -Be -5 } It "Range operator support single-item sequences" { $Range = 0..0 $Range.count | Should -Be 1 $Range[0] | Should -BeOfType int $Range[0] | Should -Be 0 } It "Range operator works in descending order" { $Range = 4..3 $Range.count | Should -Be 2 $Range[0] | Should -Be 4 $Range[1] | Should -Be 3 } It "Range operator works for sequences of both negative and positive numbers" { $Range = -2..2 $Range.count | Should -Be 5 $Range[0] | Should -Be -2 $Range[1] | Should -Be -1 $Range[2] | Should -Be 0 $Range[3] | Should -Be 1 $Range[4] | Should -Be 2 } It "Range operator enumerator works" { $Range = -2..2 | ForEach-Object { $_ } $Range.count | Should -Be 5 $Range[0] | Should -Be -2 $Range[1] | Should -Be -1 $Range[2] | Should -Be 0 $Range[3] | Should -Be 1 $Range[4] | Should -Be 2 } It "Range operator works with variables" { $var1 = -1 $var2 = 1 $Range = $var1..$var2 $Range.count | Should -Be 3 $Range[0] | Should -Be -1 $Range[1] | Should -Be 0 $Range[2] | Should -Be 1 $Range = [int]$var2..[int]$var1 $Range.count | Should -Be 3 $Range[0] | Should -Be 1 $Range[1] | Should -Be 0 $Range[2] | Should -Be -1 $Range = $var1..$var2 | ForEach-Object { $_ } $Range.count | Should -Be 3 $Range[0] | Should -Be -1 $Range[1] | Should -Be 0 $Range[2] | Should -Be 1 $Range = [int]$var2..[int]$var1 | ForEach-Object { $_ } $Range.count | Should -Be 3 $Range[0] | Should -Be 1 $Range[1] | Should -Be 0 $Range[2] | Should -Be -1 } } Context "Character expansion" { It "Range operator generates an array of [char] from single-character operands" { $CharRange = 'A'..'E' $CharRange.count | Should -Be 5 $CharRange[0] | Should -BeOfType char $CharRange[1] | Should -BeOfType char $CharRange[2] | Should -BeOfType char $CharRange[3] | Should -BeOfType char $CharRange[4] | Should -BeOfType char } It "Range operator enumerator generates an array of [string] from single-character operands" { $CharRange = 'A'..'E' | ForEach-Object { $_ } $CharRange.count | Should -Be 5 $CharRange[0] | Should -BeOfType char $CharRange[1] | Should -BeOfType char $CharRange[2] | Should -BeOfType char $CharRange[3] | Should -BeOfType char $CharRange[4] | Should -BeOfType char } It "Range operator works in ascending and descending order" { $CharRange = 'a'..'c' $CharRange.count | Should -Be 3 $CharRange[0] | Should -BeExactly ([char]'a') $CharRange[1] | Should -BeExactly ([char]'b') $CharRange[2] | Should -BeExactly ([char]'c') $CharRange = 'C'..'A' $CharRange.count | Should -Be 3 $CharRange[0] | Should -BeExactly ([char]'C') $CharRange[1] | Should -BeExactly ([char]'B') $CharRange[2] | Should -BeExactly ([char]'A') } It "Range operator works in ascending and descending order with [char] cast" { $CharRange = [char]'a'..[char]'c' $CharRange.count | Should -Be 3 $CharRange[0] | Should -BeExactly ([char]'a') $CharRange[1] | Should -BeExactly ([char]'b') $CharRange[2] | Should -BeExactly ([char]'c') $CharRange = [char]"a".."c" $CharRange.count | Should -Be 3 $CharRange[0] | Should -BeExactly ([char]'a') $CharRange[1] | Should -BeExactly ([char]'b') $CharRange[2] | Should -BeExactly ([char]'c') $CharRange = "a"..[char]"c" $CharRange.count | Should -Be 3 $CharRange[0] | Should -BeExactly ([char]'a') $CharRange[1] | Should -BeExactly ([char]'b') $CharRange[2] | Should -BeExactly ([char]'c') # The same works in reverse order. $CharRange = [char]'C'..[char]'A' $CharRange.count | Should -Be 3 $CharRange[0] | Should -BeExactly ([char]'C') $CharRange[1] | Should -BeExactly ([char]'B') $CharRange[2] | Should -BeExactly ([char]'A') $CharRange = [char]"C".."A" $CharRange.count | Should -Be 3 $CharRange[0] | Should -BeExactly ([char]'C') $CharRange[1] | Should -BeExactly ([char]'B') $CharRange[2] | Should -BeExactly ([char]'A') $CharRange = "C"..[char]"A" $CharRange.count | Should -Be 3 $CharRange[0] | Should -BeExactly ([char]'C') $CharRange[1] | Should -BeExactly ([char]'B') $CharRange[2] | Should -BeExactly ([char]'A') } It "Range operator enumerator works in ascending and descending order" { $CharRange = 'a'..'c' | ForEach-Object { $_ } $CharRange.count | Should -Be 3 $CharRange[0] | Should -BeExactly "a" $CharRange[1] | Should -BeExactly "b" $CharRange[2] | Should -BeExactly "c" $CharRange = 'C'..'A' | ForEach-Object { $_ } $CharRange.count | Should -Be 3 $CharRange[0] | Should -BeExactly "C" $CharRange[1] | Should -BeExactly "B" $CharRange[2] | Should -BeExactly "A" } It "Range operator enumerator works in ascending and descending order with [char] cast" { $CharRange = [char]'a'..[char]'c' | ForEach-Object { $_ } $CharRange.count | Should -Be 3 $CharRange[0] | Should -BeExactly "a" $CharRange[1] | Should -BeExactly "b" $CharRange[2] | Should -BeExactly "c" $CharRange = [char]'C'..[char]'A' | ForEach-Object { $_ } $CharRange.count | Should -Be 3 $CharRange[0] | Should -BeExactly "C" $CharRange[1] | Should -BeExactly "B" $CharRange[2] | Should -BeExactly "A" } It "Range operator works with variables" { $var1 = 'a' $var2 = 'c' $CharRange = $var1..$var2 $CharRange.count | Should -Be 3 $CharRange[0] | Should -BeExactly "a" $CharRange[1] | Should -BeExactly "b" $CharRange[2] | Should -BeExactly "c" $CharRange = [char]$var2..[char]$var1 $CharRange.count | Should -Be 3 $CharRange[0] | Should -BeExactly "c" $CharRange[1] | Should -BeExactly "b" $CharRange[2] | Should -BeExactly "a" $CharRange = $var1..$var2 | ForEach-Object { $_ } $CharRange.count | Should -Be 3 $CharRange[0] | Should -BeExactly "a" $CharRange[1] | Should -BeExactly "b" $CharRange[2] | Should -BeExactly "c" $CharRange = [char]$var2..[char]$var1 | ForEach-Object { $_ } $CharRange.count | Should -Be 3 $CharRange[0] | Should -BeExactly "c" $CharRange[1] | Should -BeExactly "b" $CharRange[2] | Should -BeExactly "a" } It "Range operator works with 16-bit unicode characters" { $UnicodeRange = "`u{0110}".."`u{0114}" $UnicodeRange.count | Should -Be 5 $UnicodeRange[0] | Should -Be "`u{0110}"[0] $UnicodeRange[1] | Should -Be "`u{0111}"[0] $UnicodeRange[2] | Should -Be "`u{0112}"[0] $UnicodeRange[3] | Should -Be "`u{0113}"[0] $UnicodeRange[4] | Should -Be "`u{0114}"[0] $UnicodeRange.Where({$_ -is [char]}).count | Should -Be 5 } It "Range operator with special ranges" { $SpecRange = "0".."9" $SpecRange.count | Should -Be 10 $SpecRange.Where({$_ -is [int]}).count | Should -Be 10 $SpecRange = '0'..'9' $SpecRange.count | Should -Be 10 $SpecRange.Where({$_ -is [int]}).count | Should -Be 10 $SpecRange = [char]'0'..[char]'9' $SpecRange.count | Should -Be 10 $SpecRange.Where({$_ -is [char]}).count | Should -Be 10 } } Context "Range operator operand types" { It "Range operator works on [decimal]" { $Range = 1.1d..3.9d $Range.count | Should -Be 4 $Range[0] | Should -Be 1 $Range[1] | Should -Be 2 $Range[2] | Should -Be 3 $Range[3] | Should -Be 4 $Range.Where({$_ -is [int]}).count | Should -Be 4 } } }
PowerShell
5
rdtechie/PowerShell
test/powershell/Language/Operators/RangeOperator.Tests.ps1
[ "MIT" ]
// check-pass fn main() {} #[cfg(FALSE)] fn f1_1(x: isize, ...) {} #[cfg(FALSE)] fn f1_2(...) {} #[cfg(FALSE)] extern "C" fn f2_1(x: isize, ...) {} #[cfg(FALSE)] extern "C" fn f2_2(...) {} #[cfg(FALSE)] extern "C" fn f2_3(..., x: isize) {} #[cfg(FALSE)] extern fn f3_1(x: isize, ...) {} #[cfg(FALSE)] extern fn f3_2(...) {} #[cfg(FALSE)] extern fn f3_3(..., x: isize) {} #[cfg(FALSE)] extern { fn e_f1(...); fn e_f2(..., x: isize); } struct X; #[cfg(FALSE)] impl X { fn i_f1(x: isize, ...) {} fn i_f2(...) {} fn i_f3(..., x: isize, ...) {} fn i_f4(..., x: isize, ...) {} } #[cfg(FALSE)] trait T { fn t_f1(x: isize, ...) {} fn t_f2(x: isize, ...); fn t_f3(...) {} fn t_f4(...); fn t_f5(..., x: isize) {} fn t_f6(..., x: isize); }
Rust
1
Eric-Arellano/rust
src/test/ui/parser/variadic-ffi-syntactic-pass.rs
[ "ECL-2.0", "Apache-2.0", "MIT-0", "MIT" ]
"""The sql component.""" from __future__ import annotations from homeassistant.config_entries import ConfigEntry from homeassistant.core import HomeAssistant from .const import PLATFORMS async def async_update_listener(hass: HomeAssistant, entry: ConfigEntry) -> None: """Update listener for options.""" await hass.config_entries.async_reload(entry.entry_id) async def async_setup_entry(hass: HomeAssistant, entry: ConfigEntry) -> bool: """Set up SQL from a config entry.""" entry.async_on_unload(entry.add_update_listener(async_update_listener)) hass.config_entries.async_setup_platforms(entry, PLATFORMS) return True async def async_unload_entry(hass: HomeAssistant, entry: ConfigEntry) -> bool: """Unload SQL config entry.""" return await hass.config_entries.async_unload_platforms(entry, PLATFORMS)
Python
4
liangleslie/core
homeassistant/components/sql/__init__.py
[ "Apache-2.0" ]
version https://git-lfs.github.com/spec/v1 oid sha256:30d18d521325f80ec1f2ff4f06d7ef1ddd03ae8193d7585b203c4d45eeb6f47b size 576
Nit
0
JGCRI/lds
indata/WaterFootprint/Report47-App-IV-RasterMaps/Oilpalm/info/arc0007.nit
[ "BSD-3-Clause-LBNL" ]
<!-- Licensed to the Apache Software Foundation (ASF) under one or more contributor license agreements. See the NOTICE file distributed with this work for additional information regarding copyright ownership. The ASF licenses this file to you under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. --> <html> <head> <meta charset="utf-8"> <script src="lib/simpleRequire.js"></script> <script src="lib/config.js"></script> <script src="lib/jquery.min.js"></script> <script src="lib/facePrint.js"></script> <script src="lib/testHelper.js"></script> <link rel="stylesheet" href="lib/reset.css" /> <meta name="viewport" content="user-scalable=no,width=device-width,height=device-height"> </head> <body> <style> .test-title { background: #146402; color: #fff; } </style> <div id="main0"></div> <div id="main1"></div> <div id="main2"></div> <script> require([ 'echarts' ], function (echarts) { var chart = echarts.init(document.getElementById('main0')); var xAxisData = []; var data1 = []; var data2 = []; var data3 = []; var data4 = []; var data5 = []; var data6 = []; xAxisData.push('类目' + -1); data1.push('-'); data2.push('-'); data3.push('-'); data4.push('-'); data5.push('-'); data6.push('-'); for (var i = 0; i < 5; i++) { xAxisData.push('类目' + i); data1.push((-Math.random() - 0.2).toFixed(3)); data2.push((Math.random() + 0.3).toFixed(3)); data3.push((Math.random() + 0.2).toFixed(3)); data4.push((-Math.random() - 0.2).toFixed(3)); data5.push((-Math.random() - 0.2).toFixed(3)); data6.push((Math.random() + 0.2).toFixed(3)); } xAxisData.push('类目' + i); data1.push('-'); data2.push('-'); data3.push('-'); data4.push('-'); data5.push('-'); data6.push('-'); for (; i < 10; i++) { xAxisData.push('类目' + i); data1.push((-Math.random() - 0.2).toFixed(3)); data2.push((Math.random() + 0.3).toFixed(3)); data3.push((Math.random() + 0.2).toFixed(3)); data4.push((-Math.random() - 0.2).toFixed(3)); data5.push((-Math.random() - 0.2).toFixed(3)); data6.push((Math.random() + 0.2).toFixed(3)); } xAxisData.push('类目' + i); data1.push('-'); data2.push('-'); data3.push('-'); data4.push('-'); data5.push('-'); data6.push('-'); var itemStyle = { normal: { // borderColor: 'white', // borderWidth: 3, // shadowBlur: 10, // shadowOffsetX: 0, // shadowOffsetY: 5, // shadowColor: 'rgba(0, 0, 0, 0.4)', lineStyle: { width: 2 // shadowBlur: 10, // shadowOffsetX: 0, // shadowOffsetY: 5, // shadowColor: 'rgba(0, 0, 0, 0.4)' }, areaStyle: { } } }; var option = { legend: { }, toolbox: { feature: { magicType: { type: ['line', 'bar', 'stack', 'tiled'] } } }, tooltip: { trigger: 'axis', position: function (point) { return [point[0], '10%']; }, axisPointer: { type: 'line' } }, xAxis: { // data: ['类目1', '类目2', '类目3', '类目4', '类目5',] data: xAxisData, boundaryGap: false, // inverse: true, splitArea: { show: true } }, yAxis: { splitLine: { // show: false } }, dataZoom: [{ type: 'inside' }, { type: 'slider' }], series: [{ name: 'line', type: 'line', stack: 'all', symbolSize: 10, data: data1, itemStyle: itemStyle, smooth: true, connectNulls: true }, { name: 'line2', type: 'line', stack: 'all', symbolSize: 10, data: data2, itemStyle: itemStyle, connectNulls: true, smooth: true }, { name: '+connectNulls:true', type: 'line', stack: 'all', symbolSize: 10, data: data3, itemStyle: itemStyle, label: { normal: { show: true } }, connectNulls: true, smooth: true }, { name: '-connectNulls:false', type: 'line', stack: 'all', symbolSize: 10, data: data4, itemStyle: itemStyle, label: { normal: { show: true } }, connectNulls: false, smooth: true }, { name: '-connectNulls:true', type: 'line', stack: 'all', symbolSize: 10, data: data5, itemStyle: itemStyle, label: { normal: { show: true } }, connectNulls: true, smooth: true }, { name: '+connectNulls:false', type: 'line', stack: 'all', symbolSize: 10, data: data6, itemStyle: itemStyle, label: { normal: { show: true } }, connectNulls: false, smooth: true }] }; testHelper.create(echarts, 'main0', { title: 'line break', option: option, height: 600 }); }) </script> <script> require([ 'echarts'/*, 'map/js/china' */ ], function (echarts) { var xAxisData = ["2018-04-11 13:30:00","2018-04-11 13:45:00","2018-04-11 14:00:00","2018-04-11 14:30:00","2018-04-11 14:45:00","2018-04-11 15:00:00","2018-04-11 15:15:00","2018-04-11 15:30:00","2018-04-11 15:45:00","2018-04-12 09:30:00","2018-04-12 09:45:00","2018-04-12 10:00:00","2018-04-12 10:15:00","2018-04-12 10:30:00","2018-04-12 10:45:00","2018-04-12 11:00:00","2018-04-12 11:15:00","2018-04-12 11:30:00","2018-04-12 11:45:00","2018-04-12 12:00:00","2018-04-12 12:15:00","2018-04-12 12:30:00","2018-04-12 12:45:00","2018-04-12 13:00:00","2018-04-12 13:15:00","2018-04-12 13:30:00","2018-04-12 13:45:00","2018-04-12 14:00:00","2018-04-12 14:15:00","2018-04-12 14:30:00","2018-04-12 14:45:00","2018-04-12 15:00:00","2018-04-12 15:15:00","2018-04-12 15:30:00","2018-04-12 15:45:00","2018-04-13 09:30:00","2018-04-13 09:45:00","2018-04-13 10:00:00","2018-04-13 10:15:00","2018-04-13 10:30:00","2018-04-13 10:45:00","2018-04-13 11:00:00","2018-04-13 11:15:00","2018-04-13 11:45:00","2018-04-13 12:00:00","2018-04-13 12:15:00","2018-04-13 12:45:00","2018-04-13 13:00:00","2018-04-13 13:30:00","2018-04-13 13:45:00","2018-04-13 14:00:00","2018-04-13 14:30:00","2018-04-13 14:45:00","2018-04-13 15:00:00","2018-04-13 15:15:00","2018-04-13 15:30:00","2018-04-13 15:45:00","2018-04-16 09:30:00","2018-04-16 09:45:00","2018-04-16 10:00:00","2018-04-16 10:15:00","2018-04-16 10:30:00","2018-04-16 10:45:00","2018-04-16 11:00:00","2018-04-16 11:15:00","2018-04-16 11:45:00","2018-04-16 12:00:00","2018-04-16 12:15:00","2018-04-16 12:30:00","2018-04-16 12:45:00","2018-04-16 13:00:00","2018-04-16 13:15:00","2018-04-16 13:30:00","2018-04-16 13:45:00","2018-04-16 14:00:00","2018-04-16 14:15:00","2018-04-16 14:30:00","2018-04-16 14:45:00","2018-04-16 15:00:00","2018-04-16 15:15:00","2018-04-16 15:30:00","2018-04-16 15:45:00","2018-04-17 09:30:00","2018-04-17 09:45:00","2018-04-17 10:00:00","2018-04-17 10:15:00","2018-04-17 10:30:00","2018-04-17 10:45:00","2018-04-17 11:00:00","2018-04-17 11:15:00","2018-04-17 11:30:00","2018-04-17 11:45:00","2018-04-17 12:00:00","2018-04-17 12:30:00","2018-04-17 13:00:00","2018-04-17 13:15:00","2018-04-17 13:30:00","2018-04-17 13:45:00","2018-04-17 14:15:00","2018-04-17 14:30:00","2018-04-17 14:45:00","2018-04-17 15:00:00","2018-04-17 15:15:00","2018-04-17 15:30:00","2018-04-17 15:45:00","2018-04-18 09:30:00","2018-04-18 09:45:00","2018-04-18 10:00:00","2018-04-18 10:15:00","2018-04-18 10:30:00","2018-04-18 10:45:00","2018-04-18 11:00:00","2018-04-18 11:15:00","2018-04-18 11:30:00","2018-04-18 11:45:00","2018-04-18 12:00:00","2018-04-18 12:15:00","2018-04-18 12:30:00","2018-04-18 12:45:00","2018-04-18 13:00:00","2018-04-18 13:15:00","2018-04-18 13:30:00","2018-04-18 13:45:00","2018-04-18 14:00:00","2018-04-18 14:15:00","2018-04-18 14:45:00","2018-04-18 15:00:00","2018-04-18 15:15:00","2018-04-18 15:30:00","2018-04-18 15:45:00"]; var dataUpper = [6.89,6.9,6.9,6.9,6.89,6.87,6.86,6.83,6.8,6.78,6.75,6.71,6.67,6.65,6.64,6.62,6.61,6.6,6.6,6.61,6.65,6.67,6.68,6.69,6.72,6.74,6.79,6.83,6.87,6.9,6.93,6.95,6.98,6.99,7.01,7.01,7.02,7.02,7,7,7.02,7.01,7.01,7,6.98,6.97,6.97,6.97,6.97,6.97,6.97,6.97,6.98,6.98,6.98,6.99,6.99,6.99,6.99,6.99,6.98,6.97,6.97,6.97,6.97,6.99]; var dataMiddle = [6.7,6.69,6.67,6.66,6.64,6.63,6.61,6.6,6.59,6.58,6.57,6.56,6.55,6.54,6.54,6.53,6.53,6.53,6.52,6.53,6.53,6.54,6.55,6.56,6.58,6.59,6.61,6.62,6.64,6.65,6.67,6.68,6.7,6.72,6.73,6.75,6.77,6.78,6.81,6.82,6.84,6.85,6.86,6.87,6.88,6.89,6.89,6.89,6.89,6.89,6.89,6.89,6.89,6.9,6.9,6.9,6.91,6.91,6.91,6.91,6.9,6.91,6.9,6.9,6.9,6.89]; var dataLower = [6.51,6.48,6.45,6.42,6.4,6.38,6.37,6.37,6.38,6.38,6.39,6.4,6.43,6.43,6.44,6.44,6.45,6.45,6.45,6.44,6.42,6.42,6.42,6.43,6.44,6.44,6.42,6.41,6.4,6.4,6.4,6.41,6.42,6.44,6.46,6.49,6.52,6.54,6.61,6.65,6.66,6.68,6.71,6.75,6.77,6.8,6.81,6.81,6.81,6.81,6.81,6.81,6.81,6.81,6.82,6.82,6.82,6.82,6.82,6.82,6.83,6.84,6.84,6.83,6.83,6.79]; dataUpper = dataUpper.map(function (value, index) { return value - dataMiddle[index]; }); dataMiddle = dataMiddle.map(function (value, index) { return value - dataLower[index]; }); var option = { "series": [ { "smooth": true, "lineStyle": { "normal": { "opacity": 0.5, "width": 1 } }, "name": "range", "id": "lower", "stack": "range", "data": dataLower, "type": "line", "showSymbol": false }, { "smooth": true, "lineStyle": { "normal": { "opacity": 0.5, "width": 1 } }, "name": "range", "id": "middle", "stack": "range", "data": dataMiddle, "areaStyle": { "normal": { "color": "rgba(102, 202, 196, .3)" } }, "type": "line", "showSymbol": false }, { "smooth": true, "lineStyle": { "normal": { "opacity": 0.5, "width": 1 } }, "name": "range", "id": "upper", "stack": "range", "data": dataUpper, "areaStyle": { "normal": { "color": "rgba(102, 202, 196, .3)" } }, "type": "line", "showSymbol": false } ], "tooltip": { "trigger": "axis" }, "grid": [ { "containLabel": false, "show": false } ], "xAxis": [ { "type": "category", "boundaryGap": true, "max": "dataMax", "axisLabel": { "show": false }, "axisLine": { "show": false }, "axisTick": { "show": false }, "splitLine": { "show": true, "lineStyle": { "color": "#edeff2" } }, "data": xAxisData } ], "yAxis": [ { "scale": true, "boundaryGap": [ "5%", "5%" ], "splitArea": { "show": false }, "axisLabel": { "color": "#32325d", "fontFamily": "rubiklight", "fontSize": 14, "showMinLabel": false, "showMaxLabel": false }, "axisLine": { "lineStyle": { "color": "#32325d" } }, "splitLine": { "lineStyle": { "color": "#edeff2" } }, "position": "right" } ], "axisPointer": { "link": { "xAxis": "all" }, "lineStyle": { "color": "#c3c6c9", "type": "dotted" } } }; testHelper.create(echarts, 'main1', { title: 'yAxis extent should not contain 0 (should about [5, 8])', option: option }); }); </script> <script> var chart; var myChart; var option; require(['echarts'], function (echarts) { var data = [ [["2016-10-4",44],["2016-10-5",54],["2016-10-6",47],["2016-10-7",37],["2016-10-8",36],["2016-10-9",30],["2016-10-10",20],["2016-10-11",21],["2016-10-12",29]], [["2016-10-4",28],["2016-10-5",38],["2016-10-6",44],["2016-10-7",40],["2016-10-8",42],["2016-10-9",39],["2016-10-10",46],["2016-10-11",50],["2016-10-12",46]] ]; var option = { legend: { }, tooltip: { triggerOn: 'none', position: function (pt) { return [pt[0], 130]; } }, toolbox: { left: 'center', itemSize: 25, top: 55, feature: { dataZoom: { yAxisIndex: 'none' }, restore: {} } }, xAxis: { type: 'time', axisPointer: { value: '2016-10-7', snap: true, lineStyle: { color: '#004E52', opacity: 0.5, width: 2 }, label: { show: true, formatter: function (params) { return echarts.format.formatTime('yyyy-MM-dd', params.value); }, backgroundColor: '#004E52' }, handle: { show: true, color: '#004E52' } }, splitLine: { show: false } }, yAxis: { type: 'value', axisTick: { inside: true }, splitLine: { show: false }, axisLabel: { inside: true, formatter: '{value}\n' }, z: 10 }, grid: { top: 110, left: 15, right: 15, height: 160 }, dataZoom: [{ type: 'inside', throttle: 50 }], series: [ { name:'line1', type:'line', smooth: true, symbol: 'circle', symbolSize: 5, sampling: 'average', itemStyle: { normal: { color: '#8ec6ad' } }, stack: 'a', areaStyle: { normal: { color: new echarts.graphic.LinearGradient(0, 0, 0, 1, [{ offset: 0, color: '#8ec6ad' }, { offset: 1, color: '#ffe' }]) } }, data: data[0] }, { name:'line2', type:'line', smooth:true, stack: 'a', symbol: 'circle', symbolSize: 5, sampling: 'average', itemStyle: { normal: { color: '#d68262' } }, areaStyle: { normal: { color: new echarts.graphic.LinearGradient(0, 0, 0, 1, [{ offset: 0, color: '#d68262' }, { offset: 1, color: '#ffe' }]) } }, data: data[1] } ] }; testHelper.create(echarts, 'main2', { title: 'Stack on time axis (byIndex)', option: option }); }); </script> </body> </html>
HTML
4
DominiqueDeCordova/echarts
test/area-stack.html
[ "Apache-2.0" ]
sleep 1 t cal -de 3
AGS Script
0
waltersgrey/autoexechack
Video-Effects/Negative/Hero3PlusBlack/autoexec.ash
[ "MIT" ]
parser grammar F5BigipStructured_sys; import F5BigipStructured_common; options { tokenVocab = F5BigipStructuredLexer; } sgs_hostname : HOSTNAME hostname = word NEWLINE ; sgs_null : ( GUI_SECURITY_BANNER_TEXT | GUI_SETUP ) ignored ; sys_dns : DNS ignored ; sys_global_settings : GLOBAL_SETTINGS BRACE_LEFT ( NEWLINE ( sgs_hostname | sgs_null | unrecognized )* )? BRACE_RIGHT NEWLINE ; sys_ha_group : HA_GROUP name = structure_name BRACE_LEFT ( NEWLINE ( sh_active_bonus | sh_pools | sh_trunks | unrecognized )* )? BRACE_RIGHT NEWLINE ; sh_active_bonus : ACTIVE_BONUS bonus = uint16 NEWLINE ; sh_pools : POOLS BRACE_LEFT ( NEWLINE shp_pool* )? BRACE_RIGHT NEWLINE ; shp_pool : name = structure_name BRACE_LEFT ( NEWLINE ( shpp_weight | unrecognized )* )? BRACE_RIGHT NEWLINE ; shpp_weight : WEIGHT weight = uint16 NEWLINE ; sh_trunks : TRUNKS BRACE_LEFT ( NEWLINE sht_trunk* )? BRACE_RIGHT NEWLINE ; sht_trunk : name = structure_name BRACE_LEFT ( NEWLINE ( shtt_weight | unrecognized )* )? BRACE_RIGHT NEWLINE ; shtt_weight : WEIGHT weight = uint16 NEWLINE ; sys_management_ip : MANAGEMENT_IP ignored ; sys_management_route : MANAGEMENT_ROUTE ignored ; sys_ntp : NTP BRACE_LEFT ( NEWLINE ( ntp_null | ntp_servers | unrecognized )* )? BRACE_RIGHT NEWLINE ; ntp_null : TIMEZONE ignored ; ntp_servers : SERVERS BRACE_LEFT servers += word* BRACE_RIGHT NEWLINE ; sys_null : ( DYNAD | FEATURE_MODULE | FOLDER | FPGA | HTTPD | MANAGEMENT_DHCP | PROVISION | SFLOW | TURBOFLEX ) ignored ; sys_snmp : SNMP ignored ; s_sys : SYS ( sys_dns | sys_global_settings | sys_ha_group | sys_management_ip | sys_management_route | sys_ntp | sys_null | sys_snmp | unrecognized ) ;
ANTLR
3
zabrewer/batfish
projects/batfish/src/main/antlr4/org/batfish/grammar/f5_bigip_structured/F5BigipStructured_sys.g4
[ "Apache-2.0" ]
\require "j@>=0.3"
LilyPond
0
HolgerPeters/lyp
spec/package_setups/big/h@0.3.2/package.ly
[ "MIT" ]
FORLOOP NEW I,J FOR I=1:1:5 DO .FOR J=1:1:I DO ..WRITE "*" .WRITE ! QUIT
M
3
LaudateCorpus1/RosettaCodeData
Task/Loops-For/MUMPS/loops-for-1.mumps
[ "Info-ZIP" ]
module openconfig-relay-agent { yang-version "1"; // namespace namespace "http://openconfig.net/yang/relay-agent"; prefix "oc-relay"; // import some basic types import ietf-inet-types { prefix inet; } import ietf-yang-types { prefix yang; } import openconfig-interfaces { prefix oc-if; } import openconfig-extensions { prefix oc-ext; } // meta organization "OpenConfig working group"; contact "OpenConfig working group www.openconfig.net"; description "This module describes a model for configuration and operational state related to relay agents typically used for DHCP and BOOTP packets. The supports both DHCP and DHCPv6 and device-wide and per-interface settings."; oc-ext:openconfig-version "0.1.0"; revision "2016-05-16" { description "Initial public release"; reference "0.1.0"; } // grouping statements grouping agent-information-ipv4-common-config { description "Common configuration data for DHCP relay option"; leaf enable { type boolean; default false; description "Enable sending the DHCP option for Relay Agent information -- option 82."; reference "RFC 3046 - DHCP Relay Agent Information Option"; } } grouping agent-information-ipv4-common-state { description "Common operational state data for DHCP relay option"; } grouping agent-information-ipv4-global-top { description "Top-level grouping for agent information data at global level"; container agent-information-option { description "Top-level container for relay agent information option data"; container config { description "Configuration data for the relay agent information option"; uses agent-information-ipv4-common-config; } container state { config false; description "Operational state data for agent information at global level"; uses agent-information-ipv4-common-config; uses agent-information-ipv4-common-state; } } } grouping agent-information-ipv4-interface-config { description "Configuration data for DCHP relay option on interfaces"; leaf circuit-id { type string; description "Encodes an agent-local identifier of the circuit from which a DHCP client-to-server packet was received. It is intended for use by agents in relaying DHCP responses back to the proper circuit. The circuit id is an opaque value"; reference "RFC 3046 - DHCP Relay Agent Information Option"; } leaf remote-id { type string; description "Provides a mechanism to identify the remote host end of the circuit. The remote-id should be thought of as an opaque value, but must be globally unique."; reference "RFC 3046 - DHCP Relay Agent Information Option"; } } grouping agent-information-ipv4-interface-state { description "Operational state data for DHCP relay option on interfaces"; leaf sent-circuit-id { type string; description "Reports the circuit-id sent by the system to the DHCP server."; } leaf sent-remote-id { type string; description "Reports the remote-id value sent by the system to the DHCP server"; } } grouping agent-information-ipv4-interface-top { description "Top-level grouping for relay agent information option data"; container agent-information-option { description "Top-level container for relay agent information option data"; container config { description "Configuration data for the relay agent information option"; uses agent-information-ipv4-common-config; uses agent-information-ipv4-interface-config; } container state { config false; description "Operational state data "; uses agent-information-ipv4-common-config; uses agent-information-ipv4-interface-config; uses agent-information-ipv4-common-state; uses agent-information-ipv4-interface-state; } } } grouping agent-options-ipv6-common-config { description "Configuration data for DHCPv6 options"; leaf enable-interface-id { type boolean; default false; description "Enables DHCPv6 OPTION_INTERFACE_ID (18) to identify the interface on which the client message was received."; reference "IETF RFC 3315 - Dynamic Host Configuration Protocol for IPv6 (DHCPv6)"; } leaf enable-remote-id { type boolean; default false; description "Sets DHCPv6 OPTION_REMOTE_ID (37). This option is the DHCPv6 equivalent for the IPv4 (DHCPv4) Relay Agent Option's Remote-ID suboption as specified in RFC 3046. The remote-id field may be used to encode a user name, remote IP address, interface/port identifier, etc."; reference "IETF RFC 4649 - Dynamic Host Configuration Protocol for IPv6 (DHCPv6) Relay Agent Remote-ID Option"; } } grouping agent-options-ipv6-common-state { description "Operational state data for DHCPv6 options"; } grouping agent-options-ipv6-interface-config { description "Configuration data for DHCPv6 options"; leaf interface-id { type string; description "Sets DHCPv6 OPTION_INTERFACE_ID (18) to identify the interface on which the client message was received."; reference "IETF RFC 3315 - Dynamic Host Configuration Protocol for IPv6 (DHCPv6)"; } leaf remote-id { type string; description "Sets DHCPv6 OPTION_REMOTE_ID (37). This option is the DHCPv6 equivalent for the IPv4 (DHCPv4) Relay Agent Option's Remote-ID suboption as specified in RFC 3046. The remote-id field may be used to encode a user name, remote IP address, interface/port identifier, etc."; reference "IETF RFC 4649 - Dynamic Host Configuration Protocol for IPv6 (DHCPv6) Relay Agent Remote-ID Option"; } } grouping agent-options-ipv6-interface-state { description "Operational state data for DHCPv6 options"; leaf sent-interface-id { type string; description "Reflects the DHCPv6 OPTION_INTERFACE_ID (18) sent to the server by the system."; reference "IETF RFC 3315 - Dynamic Host Configuration Protocol for IPv6 (DHCPv6)"; } leaf sent-remote-id { type string; description "Reflects the DHCPv6 OPTION_REMOTE_ID (37) sent to the server by the system."; reference "IETF RFC 4649 - Dynamic Host Configuration Protocol for IPv6 (DHCPv6) Relay Agent Remote-ID Option"; } } grouping agent-options-ipv6-global-top { description "Top-level grouping for DHCPv6 options on interfaces"; container options { description "Top-level container for DHCPv6 agent options on interfaces"; container config { description "Configuration data "; uses agent-options-ipv6-common-config; } container state { config false; description "Operational state data for DHCPv6 agent option on an interface"; uses agent-options-ipv6-common-config; uses agent-options-ipv6-common-state; } } } grouping agent-options-ipv6-interface-top { description "Top-level grouping for DHCPv6 options on interfaces"; container options { description "Top-level container for DHCPv6 agent options on interfaces"; container config { description "Configuration data "; uses agent-options-ipv6-common-config; uses agent-options-ipv6-interface-config; } container state { config false; description "Operational state data for DHCPv6 agent option on an interface"; uses agent-options-ipv6-common-config; uses agent-options-ipv6-interface-config; uses agent-options-ipv6-common-state; uses agent-options-ipv6-interface-state; } } } grouping relay-agent-common-config { description "Configuration data for global level relay agent options, common across address families"; leaf enable-relay-agent { type boolean; default false; description "Enables DHCP/BOOTP relay agent on all interfaces"; } } grouping relay-agent-common-state { description "Operational state data for global level relay agent, common across address families"; } grouping relay-agent-ipv4-config { description "Configuration data for DHCPv4 relay agents"; uses relay-agent-common-config; } grouping relay-agent-ipv4-state { description "Configuration data for DHCPv4 relay agents"; uses relay-agent-common-state; } grouping relay-agent-ipv4-top { description "Top-level grouping for global relay agent data"; container dhcp { description "Top-level container for global relay agent data"; container config { description "Configuration data for global DHCPv4"; uses relay-agent-ipv4-config; } container state { config false; description "Operational state data global DHCPv4"; uses relay-agent-ipv4-config; uses relay-agent-ipv4-state; } uses agent-information-ipv4-global-top; uses relay-agent-ipv4-interfaces-top; } } grouping relay-agent-ipv6-config { description "Configuration data for DHCPv6 relay agents"; uses relay-agent-common-config; } grouping relay-agent-ipv6-state { description "Configuration data for DHCPv6 relay agents"; uses relay-agent-common-state; } grouping relay-agent-ipv6-top { description "Top-level grouping for global relay agent data"; container dhcpv6 { description "Top-level container for global relay agent data"; container config { description "Configuration data for global DHCPv6"; uses relay-agent-ipv6-config; } container state { config false; description "Operational state data global DHCPv6"; uses relay-agent-ipv6-config; uses relay-agent-ipv6-state; } uses agent-options-ipv6-global-top; uses relay-agent-ipv6-interfaces-top; } } grouping relay-agent-common-stats { description "Common DHCP / BOOTP message statistics for DHCPv4 and DHCPv6"; leaf total-dropped { type yang:counter64; description "Total number of DHCP packets dropped by the relay agent"; } leaf invalid-opcode { type yang:counter64; description "Number of DHCP packets dropped due to an invalid opcode"; } leaf invalid-options { type yang:counter64; description "Number of DHCP packets dropped due to an invalid option"; } } grouping relay-agent-ipv4-stats { description "DHCPv4 relay agent message statistics"; leaf bootrequest-received { type yang:counter64; description "BOOTREQUEST messages received by the relay agent"; } leaf dhcp-decline-received { type yang:counter64; description "DHCP DECLINE messages received by the relay agent"; } leaf dhcp-discover-received { type yang:counter64; description "DHCP DISCOVER messages received by the relay agent"; } leaf dhcp-inform-received { type yang:counter64; description "DHCP INFORM messages received by the relay agent"; } leaf dhcp-release-received { type yang:counter64; description "DHCP RELEASE messages received by the relay agent"; } leaf dhcp-request-received { type yang:counter64; description "DHCP REQUEST messages received by the relay agent"; } leaf bootrequest-sent { type yang:counter64; description "BOOTREQUEST messages forwarded by the relay agent"; } leaf bootreply-sent { type yang:counter64; description "BOOTREPLY messages forwarded by the relay agent"; } leaf dhcp-offer-sent { type yang:counter64; description "DHCP OFFER messages sent by the relay agent"; } leaf dhcp-ack-sent { type yang:counter64; description "DHCP ACK messages sent by the relay agent"; } leaf dhcp-nack-sent { type yang:counter64; description "DHCP NACK messages sent by the relay agent"; } } grouping relay-agent-ipv6-stats { description "DHCPv4 relay agent message statistics"; leaf dhcpv6-solicit-received { type yang:counter64; description "Number of DHCPv6 SOLICIT messages received from clients by the relay agent"; } leaf dhcpv6-decline-received { type yang:counter64; description "Number of DHCPv6 DECLINE messages received from clients by the relay agent"; } leaf dhcpv6-request-received { type yang:counter64; description "Number of DHCPv6 request messages received from clients by the relay agent"; } leaf dhcpv6-release-received { type yang:counter64; description "Number of DHCPv6 release messages received from clients by the relay agent"; } leaf dhcpv6-confirm-received { type yang:counter64; description "Number of DHCPv6 confirm messages received from clients by the relay agent"; } leaf dhcpv6-rebind-received { type yang:counter64; description "Number of DHCPv6 rebind messages received from clients by the relay agent"; } leaf dhcpv6-info-request-received { type yang:counter64; description "Number of DHCPv6 information requests messages received from clients by the relay agent"; } leaf dhcpv6-relay-reply-received { type yang:counter64; description "Number of DHCPv6 relay reply messages received from servers by the relay agent"; } leaf dhcpv6-adverstise-sent { type yang:counter64; description "Number of DHCPv6 adverstise messages sent to clients by the relay agent"; } leaf dhcpv6-reply-sent { type yang:counter64; description "Number of DHCPv6 reply messages sent to clients by the relay agent"; } leaf dhcpv6-reconfigure-sent { type yang:counter64; description "Number of DHCPv6 reconfigure messages sent to clients by the relay agent"; } leaf dhcpv6-relay-forw-sent { type yang:counter64; description "Number of DHCPv6 relay-forward messages sent to servers by the relay agent"; } } grouping relay-agent-ipv4-interfaces-config { description "Configuration data for interfaces enabled for relaying"; leaf id { type oc-if:interface-id; description "Name of the interface on which relay agent is active"; } leaf enable { type boolean; description "Enables the relay agent on the referenced interface. At least one helper address should also be configured for forwarding requested."; } leaf-list helper-address { type inet:ip-address; description "List of IPv4 or IPv6 addresses of DHCP servers to which the relay agent should forward DHCPv4 requests. The relay agent is expected to forward DHCPv4/BOOTP requests to all listed server addresses when DHCPv4 relaying is enabled globally, or on the interface."; } } grouping relay-agent-ipv4-interfaces-state { description "Operational state data for interfaces enabled for relaying"; container counters { description "Counters and statistics for relay agent operation."; uses relay-agent-common-stats; uses relay-agent-ipv4-stats; } } grouping relay-agent-ipv4-interfaces-top { description "Top-level grouping for DHCPv4 relays on interfaces"; container interfaces { description "Enclosing container for the list of interface references."; list interface { key "id"; description "List of interfaces on which the relay agent is configured."; leaf id { type leafref { path "../config/id"; } description "Reference to the interface list key"; } container config { description "Configuration data for relay agent interfaces."; uses relay-agent-ipv4-interfaces-config; } container state { config false; description "Operational state data for relay agent interfaces."; uses relay-agent-ipv4-interfaces-config; uses relay-agent-ipv4-interfaces-state; } uses oc-if:interface-ref; uses agent-information-ipv4-interface-top; } } } grouping relay-agent-ipv6-interfaces-config { description "Configuration data for interfaces enabled for relaying"; leaf id { type oc-if:interface-id; description "Name of the interface on which relay agent is active"; } leaf enable { type boolean; description "Enables the relay agent on the referenced interface. At least one helper address should also be configured for forwarding requested."; } leaf-list helper-address { type inet:ipv6-address; description "List of IPv6 addresses of DHCP servers to which the relay agent should forward DHCPv6 requests. The relay agent is expected to forward DHCPv4/BOOTP requests to all listed server addresses when DHCPv6 relaying is enabled globally, or on the interface."; } } grouping relay-agent-ipv6-interfaces-state { description "Operational state data for interfaces enabled for relaying"; container counters { description "Counters and statistics for relay agent operation."; uses relay-agent-common-stats; uses relay-agent-ipv6-stats; } } grouping relay-agent-ipv6-interfaces-top { description "Top-level grouping for DHCPv4 relays on interfaces"; container interfaces { description "Enclosing container for the list of interface references."; list interface { key "id"; description "List of interfaces on which the relay agent is configured."; leaf id { type leafref { path "../config/id"; } description "Reference to the interface list key"; } container config { description "Configuration data for relay agent interfaces."; uses relay-agent-ipv6-interfaces-config; } container state { config false; description "Operational state data for relay agent interfaces."; uses relay-agent-ipv6-interfaces-config; uses relay-agent-ipv6-interfaces-state; } uses oc-if:interface-ref; uses agent-options-ipv6-interface-top; } } } grouping relay-agent-top { description "Top-level container for relay agent configuration and opstate data."; container relay-agent { description "Top level container for relay-agent configuration and operational state data"; uses relay-agent-ipv4-top; uses relay-agent-ipv6-top; } } // data definition statements uses relay-agent-top; // augment statements }
YANG
5
dorado18/public
release/models/relay-agent/openconfig-relay-agent.yang
[ "Apache-2.0" ]
print "Hello world!"
Nit
0
rachelktyjohnson/hello-worlds
examples/n/Nit.nit
[ "Unlicense" ]
insert into EMPLOYEES values(1, 'Harsha', 'Developer'); insert into EMPLOYEES values(2, 'John', 'Tester'); insert into EMPLOYEES values(3, 'Ram', 'Manager');
SQL
2
DBatOWL/tutorials
persistence-modules/spring-boot-persistence/src/test/resources/import_employees.sql
[ "MIT" ]
# import Partial from './partial.graphql' query Viewer { viewer { ...Partial status } } mutation UpdateName($name: String!) { updateName(name: $name) { id name status } }
GraphQL
3
blomqma/next.js
examples/with-typescript-graphql/lib/viewer.graphql
[ "MIT" ]
; Originally based on ; Efficient evaluation of pointer predicates with Z3 SMT Solver in SLAM2 ; Ball, Bounimova, Levin, and Moura ; March 2010 ; Any errors found in the code reflect on myself only ; Definitions ; Predicate evaluation needs pointer variables and memory objects/locations ; Locations are represented as simple variables (x, y, z) and terms ; a term can be a direct or indirect field access, array element access, or dereference ; Direct ; x.f ; Indirect ; x->f ; Array element access ; x[1] ; Dereference ; *x *(x.f) ; Location: An element of the abstract domain L ; Each location X has a unique address represented by a function from ; locations to integers ; A : L -> INT ; Values stored in a location are represented by a function from L to V (values) ; V : L -> V ; L is partitioned into L_1 and L_2, normal and abnormal locations respectively ; Normal Locations (L_1) are partitioned into 3 disjoint sets ; Basic Locations L_B, field locations L_F, and implicit locations L_I ; Access term (field access or array element access) denotes a field location ; Dereference could denote a location which is also denoted by another variable or an access term ; Ex: ; x == *y ; x and dereference *y denote the same basic location ; this means that this dereference is aliased with corresponding variable or access term ; A dereference that cannot be aliased with a variable or access term is thought of ; as denoting an implicit location ; thus implicit location can only be referenced through dereferences ; A predicate can contain dereference terms that cannot yeild any normal location ; Ex ; *p in the predicate (p==0 AND *p==N) ; cannot denote any normal location that would make this predicate ; satisfiable for any value of N, these go into abnormal locations ; abnormal location could signal a bug in the program, e.g. ; { p = 0; *p = N;} ; structures and arrays are considered aggregate location ; by replacing field names with integers from the interval [0, ..., N-1] ; where N is the number of fields in the structure ; preserving the order of fields ; Access terms of the form x[f] are replaced with access terms of the for x.f where f is a non-negative integer ; field names and constant indicies are referred to as field indices ; Finite interval [0, ..., N-1], N is the number of fields in the largest aggregate defined in the program ; aggregate parent has children locations accessed by field indices or dereference links ; Constructor S(X, C) X parent, C field index ([0,...,N-1]) or a dereference link D ; D is introduced as a unique abstract object to represent a pointer dereference location *X as S(X,D) ; S(X, C) is polymorphic in the second argument ; Entire domain of links is the union of [0, ... , N-1] and D, D is not in [0, ..., N-1] ; all non-basic locations (normal and abnormal) are generated by applying location constructor to basic locations from the set L_B. ; Following axioms defines valid terms generated by this constructor at the same time defining dependencies between this constructor ; and the address and value functions (A, V) ; F, G, X, Y semantic objects ; field indices F, G; locations X,Y ; D stands for the integer -1 (dereference link encoding) ; the integer interval [0, ..., N-1] encodes field indices (S X C Z) means X is parent, C field index, Z location (V X Y) means at X Location the value is Y (L_B LOC) means that LOC is a basic location (A L Z) means the location X has integer representation value Z ; forall X in L_N A(X) > 0 (define-rel A (LOCATION Int) ) (rule (=> (A X Y) (> Y 0))) ; forall X,Y : A(X) = A(Y) => X = Y ; (rule (=> (and (A X Z) (A Y Z)) (= X Y))) ; forall X, F, F in [0, ..., N-1] : S(X, F) not in L_B (define-rel (S_Field LOC FIELD LOC)) (define-rel (S_Connection LOC DEREF LOC)) ; NOTE not quite sure how to define L_B, it should mean something to the effect of LOC in L_B, so (define-rel L_B (LOC)) (rule (=> (S_Field LOC FIELD A) (not (L_B A)))) ; forall X : A(S(X,D)) = V(X) (rule (=> (and (S X D Z) (A Z L)) (V X L))) ; Forall X, Y, F in [0,...,N-1], G in [0,...,N-1] S(X,F) = S(Y, G) => X =Y and F = G (rule (=> (and (S X F Z) (S Y G Z)) (and (= X Y) (= F G)))) ; Forall X,Y,F in [0,..., N-1], V(X) = V(Y) => (V(S(X,F)) = V(S(Y,F)) (rule (=> (V X V_1) (V Y V_1)) (S X F Z) (S Y F W) (V Z V_2) (V W V_2)) ; Translation, f, v, x are syntactic objects, f in fields, v in variables, x in locations ; x' result of translation for a term x by applying the translation rules recursively ; 1) Basic location encoding: each variable v is replaced by a unique positive integer n, n < B ; 2) Dereference *x becomes S(x', D) ; 3) Direct field access x.f becomes S(x', f'), where f' is a nonnegative integer n, n < N ; 4) Indirect field access x->f becomes S(S(x', D), f') ; *x becomes (S x! D B_i) (i for whatever basic location we're at ; Implementation ; 1) forall X > 0: A(X) > 0 (define-rel (A Int Loc)) (rule (=> (A X Z) (> Z 0))) ; 2) forall X, Y : A(X) = A(Y) => X = Y (rule (=> (and (A X Z) (A Y Z))(= X Y))) ; 3) forall X, F>=0: S(X,F) > B (rule (=> (and (S X F Z) (>= F 0)) (> Z B))) ; 4) forall X: A(S(X,D)) = V(X) (rule (=> (and (S X D Y) (A Y Z)) (V X Z))) ; 5) forall X,Y,F >= 0, G>= 0 : S(X,F) = S(Y,G) => X = Y and F = G (rule (=> (and (S X F Z) (S Y G Z)) (and (= X Y) (= F G)))) ; 6) forall X,Y,F>=0 : V(X) = V(Y) => V(S(X,F)) = V(S(Y, F)) (V X Z) (V Y Z) => (and (and (S X F Q) (S Y F R)) (and (V Q L) (V R L) ;Axioms Change A_INV is the inverse of A, S_INV1 is the inverse of S first componenet, S_INV2 is the inverse of S second component ;2 becomes 2a, 5 becomes 5a, 5b (define-rel A_INV Int LOC) (define-rel S_INV1 LOC X) ; X parent (define-rel S_INV2 LOC C) ; X field index ;2a: forall X : A_INV(A(X)) = X (rule (=> (and (A X Z) (A_INV Z Y)) (= Y X))) ;5a: forall X, F>=0: S_INV1(S(X,F)) = X (rule (=> (S X F Z) (S_INV1 Z X))) ;5b: forall X, F>=0: S_INV2(S(X,F)) = F (rule (=> (S X F Z) (S_INV2 Z F))) ;merging address of aggregate with address of its first field ;removes the optimization changes ;2a) forall X > B, A(X) = A(S(X,0)) (rule (=> (and (> X B) (A X Z)) (S X 0 Z)) ;2b) forall X > B, Y: Y != S(X,0) => A(X) == A(Y) => X = Y (=> (and (not (S X 0 Y)) (and (A X Q) (A Y Q)) (= X Y))) ; physical memory model, no unions ;T(X,F) gets the address shift between F and F+1 ; (T X F Z) Z is the address shift ;7) forall F, 0<=F<N-1: A(X,F+1) = A(X,F) + T(X,F)) (define-rel T LOC Int Int) ; location field , address shift amount (rule (=> (A X (+ F 1) Q) (A X F Q1) (T X F Q2) (= (+ Q1 Q2) Q))) ; Array elements ; Translation rule ; x[k] k variable or location term, If k isa variable, k' is an integer that encodes k as a basic location ; if k is a location term, k' becomes S(x',V(n')) ; new axiom ; forall X > 0, V(X) != D (rule (=> (V X Z) (distinct D Z))) ; 2a_2 : ;2a) forall X A_INV(A(X)) = X ; ; forall ; forall X in L_n : A (x) > 0
SMT
4
ouankou/rose
projects/SMTPathFeasibility/docs/PointerSMT2.smt2
[ "BSD-3-Clause" ]
<select><option>Blue</option><option>Green</option><optgroup label="Darker"><option>Dark Blue</option><option>Dark Green</option></optgroup></select> <input list=colors> <datalist id=colors><option>Blue</option><option>Green</option></datalist>
HTML
3
tumido/prettier
tests/format/html/tags/option.html
[ "MIT" ]
package gw.specContrib.classes.property_Declarations.gosuClassGosuEnh enhancement Errant_GosuEnh_32: Errant_GosuClass_32 { //Error Expected property get NormalProperty() : String { return null } //## issuekeys: THE METHOD 'GETNORMALPROPERTY()' IS ALREADY DEFINED IN THE TYPE 'GW.SPECCONTRIB.AAA.PARSERVSOPENSOURCE.PROPERTIES.PREPARINGFORPUSH.GOSUCLASSGOSUENH.ERRANT_GOSUCLASS_32'. ENHANCEMENTS CANNOT OVERRIDE METHODS. property set NormalProperty(s: String) {} //## issuekeys: THE METHOD 'SETNORMALPROPERTY(STRING)' IS ALREADY DEFINED IN THE TYPE 'GW.SPECCONTRIB.AAA.PARSERVSOPENSOURCE.PROPERTIES.PREPARINGFORPUSH.GOSUCLASSGOSUENH.ERRANT_GOSUCLASS_32'. ENHANCEMENTS CANNOT OVERRIDE METHODS. //IDE-1833 - Parser issue - Should not show error here property get smallCaseProperty1() : String { return null } property set smallCaseProperty1(s: String) {} //IDE-1814 - Parser issue. Should show error property get smallCaseProperty2() : String { return null } //## issuekeys: CONFLICT property set smallCaseProperty2(s: String) {} //## issuekeys: CONFLICT property get SmallCaseProperty3() : String { return null } property set SmallCaseProperty3(s: String) {} property get OnlyGetter1() : String { return null } //## issuekeys: THE METHOD 'GETONLYGETTER1()' IS ALREADY DEFINED IN THE TYPE 'GW.SPECCONTRIB.AAA.PARSERVSOPENSOURCE.PROPERTIES.PREPARINGFORPUSH.GOSUCLASSGOSUENH.ERRANT_GOSUCLASS_32'. ENHANCEMENTS CANNOT OVERRIDE METHODS. property set OnlySetter1(s : String) {} //## issuekeys: THE METHOD 'SETONLYSETTER1(STRING)' IS ALREADY DEFINED IN THE TYPE 'GW.SPECCONTRIB.AAA.PARSERVSOPENSOURCE.PROPERTIES.PREPARINGFORPUSH.GOSUCLASSGOSUENH.ERRANT_GOSUCLASS_32'. ENHANCEMENTS CANNOT OVERRIDE METHODS. }
Gosu
4
tcmoore32/sheer-madness
gosu-test/src/test/gosu/gw/specContrib/classes/property_Declarations/gosuClassGosuEnh/Errant_GosuEnh_32.gsx
[ "Apache-2.0" ]
load "durable_common.gnu" data = "../data/durable_sequential_read_amplification.csv" set output dir."durable_sequential_read".ext set title "sequential read amplification" set ylabel "read amplification factor" set format y "%.2fx" plot data using 1:2, for [i=3:21] '' using 1:i
Gnuplot
4
zajac/bifurcan
benchmarks/gnuplot/durable_sequential_read.gnu
[ "MIT" ]
# Copyright (c) 2018-2021, Carnegie Mellon University # See LICENSE for details # ========================================================================== # Conjugate(<spl>, <perm>) # perm^-1 * spl * perm # ========================================================================== Class(Conjugate, BaseOperation, rec( new := (self, spl, conj) >> Checked(IsSPL(spl), IsSPL(conj), When(Dimensions(conj) = [1,1], spl, SPL(WithBases( self, rec( _children := [spl, conj], dimensions := spl.dimensions ))))), #----------------------------------------------------------------------- isPermutation := False, #----------------------------------------------------------------------- dims := self >> self.dimensions, #----------------------------------------------------------------------- toAMat := self >> ConjugateAMat(AMatSPL(self._children[1]), AMatSPL(self._children[2])), #----------------------------------------------------------------------- print := (self, i, is) >> Print("(", self.child(1).print(i, is), ") ^ (", self.child(2).print(i+is, is), ")", self.printA()), #----------------------------------------------------------------------- transpose := self >> Inherit(self, rec(_children := [ TransposedSPL(self._children[1]), self._children[2] ], dimensions := Reversed(self.dimensions))), #----------------------------------------------------------------------- arithmeticCost := (self, costMul, costAddMul) >> self._children[1].arithmeticCost(costMul, costAddMul) ));
GAP
5
sr7cb/spiral-software
namespaces/spiral/spl/Conjugate.gi
[ "BSD-2-Clause-FreeBSD" ]
--- title: "Running the DQD on a Cohort" author: "Clair Blacketer" date: "`r Sys.Date()`" header-includes: - \usepackage{fancyhdr} - \pagestyle{fancy} - \fancyhead{} - \fancyhead[CO,CE]{Running the DQD on a Cohort} - \fancyfoot[CO,CE]{DataQualityDashboard Package Version `r utils::packageVersion("DataQualityDashboard")`} - \fancyfoot[LE,RO]{\thepage} - \renewcommand{\headrulewidth}{0.4pt} - \renewcommand{\footrulewidth}{0.4pt} output: html_document: number_sections: yes toc: yes --- <!-- %\VignetteEngine{knitr::knitr} %\VignetteIndexEntry{Running the DQD on a Cohort} --> # DQD Cohort Functionality Running the Data Quality Dashboard for a cohort is fairly straightforward. There are two options in the `executeDqChecks` function, `cohortDefinitionId` and `cohortDatabaseSchema`. These options will point the DQD to the schema where the cohort table is located and provide the id of the cohort on which the DQD will be run. The tool assumes that the table being referenced is the standard OHDSI cohort table named **COHORT** with at least the columns **cohort_definition_id** and **subject_id**. For example, if I have a cohort number 123 and the cohort is in the *results* schema of the *IBM_CCAE* database, the `executeDqChecks` function would look like this: ```r DataQualityDashboard::executeDqChecks(connectionDetails = connectionDetails, cdmDatabaseSchema = cdmDatabaseSchema, resultsDatabaseSchema = resultsDatabaseSchema, cdmSourceName = "IBM_CCAE_cohort_123", cohortDefinitionId = 123, cohortDatabaseSchema = "IBM_CCAE.results" numThreads = numThreads, sqlOnly = sqlOnly, outputFolder = outputFolder, verboseMode = verboseMode, writeToTable = writeToTable, writeTableName = "dqdashboard_results_123", checkLevels = checkLevels, tablesToExclude = tablesToExclude, checkNames = checkNames) ``` As a note, it is good practice to have the `cdmSourceName` option and the `writeTableName` option reflect the name of the cohort so that the results don't get confused with those of the entire database.
RMarkdown
4
aandryc/DataQualityDashboard
vignettes/DqdForCohorts.rmd
[ "Apache-2.0" ]
vector copySize: 100
Self
0
LaudateCorpus1/RosettaCodeData
Task/Arrays/Self/arrays-1.self
[ "Info-ZIP" ]
<?php /** @var \PhpBench\Expression\Ast\BooleanNode $object */ ?> <span style="font-weight: bold; color: <?php echo $object->value() ? 'blue':'red' ?>"><?php echo $this->nodePrinter->print($object) ?></span>
HTML+PHP
3
rustamwin/phpbench
templates/html/node/BooleanNode.phtml
[ "MIT" ]
-- -- Licensed to the Apache Software Foundation (ASF) under one or more -- contributor license agreements. See the NOTICE file distributed with -- this work for additional information regarding copyright ownership. -- The ASF licenses this file to You under the Apache License, Version 2.0 -- (the "License"); you may not use this file except in compliance with -- the License. You may obtain a copy of the License at -- -- http://www.apache.org/licenses/LICENSE-2.0 -- -- Unless required by applicable law or agreed to in writing, software -- distributed under the License is distributed on an "AS IS" BASIS, -- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -- See the License for the specific language governing permissions and -- limitations under the License. -- CREATE TEMPORARY VIEW t AS SELECT 1; SELECT cast(1 as tinyint) in (cast(1 as tinyint)) FROM t; SELECT cast(1 as tinyint) in (cast(1 as smallint)) FROM t; SELECT cast(1 as tinyint) in (cast(1 as int)) FROM t; SELECT cast(1 as tinyint) in (cast(1 as bigint)) FROM t; SELECT cast(1 as tinyint) in (cast(1 as float)) FROM t; SELECT cast(1 as tinyint) in (cast(1 as double)) FROM t; SELECT cast(1 as tinyint) in (cast(1 as decimal(10, 0))) FROM t; SELECT cast(1 as tinyint) in (cast(1 as string)) FROM t; SELECT cast(1 as tinyint) in (cast('1' as binary)) FROM t; SELECT cast(1 as tinyint) in (cast(1 as boolean)) FROM t; SELECT cast(1 as tinyint) in (cast('2017-12-11 09:30:00.0' as timestamp)) FROM t; SELECT cast(1 as tinyint) in (cast('2017-12-11 09:30:00' as date)) FROM t; SELECT cast(1 as smallint) in (cast(1 as tinyint)) FROM t; SELECT cast(1 as smallint) in (cast(1 as smallint)) FROM t; SELECT cast(1 as smallint) in (cast(1 as int)) FROM t; SELECT cast(1 as smallint) in (cast(1 as bigint)) FROM t; SELECT cast(1 as smallint) in (cast(1 as float)) FROM t; SELECT cast(1 as smallint) in (cast(1 as double)) FROM t; SELECT cast(1 as smallint) in (cast(1 as decimal(10, 0))) FROM t; SELECT cast(1 as smallint) in (cast(1 as string)) FROM t; SELECT cast(1 as smallint) in (cast('1' as binary)) FROM t; SELECT cast(1 as smallint) in (cast(1 as boolean)) FROM t; SELECT cast(1 as smallint) in (cast('2017-12-11 09:30:00.0' as timestamp)) FROM t; SELECT cast(1 as smallint) in (cast('2017-12-11 09:30:00' as date)) FROM t; SELECT cast(1 as int) in (cast(1 as tinyint)) FROM t; SELECT cast(1 as int) in (cast(1 as smallint)) FROM t; SELECT cast(1 as int) in (cast(1 as int)) FROM t; SELECT cast(1 as int) in (cast(1 as bigint)) FROM t; SELECT cast(1 as int) in (cast(1 as float)) FROM t; SELECT cast(1 as int) in (cast(1 as double)) FROM t; SELECT cast(1 as int) in (cast(1 as decimal(10, 0))) FROM t; SELECT cast(1 as int) in (cast(1 as string)) FROM t; SELECT cast(1 as int) in (cast('1' as binary)) FROM t; SELECT cast(1 as int) in (cast(1 as boolean)) FROM t; SELECT cast(1 as int) in (cast('2017-12-11 09:30:00.0' as timestamp)) FROM t; SELECT cast(1 as int) in (cast('2017-12-11 09:30:00' as date)) FROM t; SELECT cast(1 as bigint) in (cast(1 as tinyint)) FROM t; SELECT cast(1 as bigint) in (cast(1 as smallint)) FROM t; SELECT cast(1 as bigint) in (cast(1 as int)) FROM t; SELECT cast(1 as bigint) in (cast(1 as bigint)) FROM t; SELECT cast(1 as bigint) in (cast(1 as float)) FROM t; SELECT cast(1 as bigint) in (cast(1 as double)) FROM t; SELECT cast(1 as bigint) in (cast(1 as decimal(10, 0))) FROM t; SELECT cast(1 as bigint) in (cast(1 as string)) FROM t; SELECT cast(1 as bigint) in (cast('1' as binary)) FROM t; SELECT cast(1 as bigint) in (cast(1 as boolean)) FROM t; SELECT cast(1 as bigint) in (cast('2017-12-11 09:30:00.0' as timestamp)) FROM t; SELECT cast(1 as bigint) in (cast('2017-12-11 09:30:00' as date)) FROM t; SELECT cast(1 as float) in (cast(1 as tinyint)) FROM t; SELECT cast(1 as float) in (cast(1 as smallint)) FROM t; SELECT cast(1 as float) in (cast(1 as int)) FROM t; SELECT cast(1 as float) in (cast(1 as bigint)) FROM t; SELECT cast(1 as float) in (cast(1 as float)) FROM t; SELECT cast(1 as float) in (cast(1 as double)) FROM t; SELECT cast(1 as float) in (cast(1 as decimal(10, 0))) FROM t; SELECT cast(1 as float) in (cast(1 as string)) FROM t; SELECT cast(1 as float) in (cast('1' as binary)) FROM t; SELECT cast(1 as float) in (cast(1 as boolean)) FROM t; SELECT cast(1 as float) in (cast('2017-12-11 09:30:00.0' as timestamp)) FROM t; SELECT cast(1 as float) in (cast('2017-12-11 09:30:00' as date)) FROM t; SELECT cast(1 as double) in (cast(1 as tinyint)) FROM t; SELECT cast(1 as double) in (cast(1 as smallint)) FROM t; SELECT cast(1 as double) in (cast(1 as int)) FROM t; SELECT cast(1 as double) in (cast(1 as bigint)) FROM t; SELECT cast(1 as double) in (cast(1 as float)) FROM t; SELECT cast(1 as double) in (cast(1 as double)) FROM t; SELECT cast(1 as double) in (cast(1 as decimal(10, 0))) FROM t; SELECT cast(1 as double) in (cast(1 as string)) FROM t; SELECT cast(1 as double) in (cast('1' as binary)) FROM t; SELECT cast(1 as double) in (cast(1 as boolean)) FROM t; SELECT cast(1 as double) in (cast('2017-12-11 09:30:00.0' as timestamp)) FROM t; SELECT cast(1 as double) in (cast('2017-12-11 09:30:00' as date)) FROM t; SELECT cast(1 as decimal(10, 0)) in (cast(1 as tinyint)) FROM t; SELECT cast(1 as decimal(10, 0)) in (cast(1 as smallint)) FROM t; SELECT cast(1 as decimal(10, 0)) in (cast(1 as int)) FROM t; SELECT cast(1 as decimal(10, 0)) in (cast(1 as bigint)) FROM t; SELECT cast(1 as decimal(10, 0)) in (cast(1 as float)) FROM t; SELECT cast(1 as decimal(10, 0)) in (cast(1 as double)) FROM t; SELECT cast(1 as decimal(10, 0)) in (cast(1 as decimal(10, 0))) FROM t; SELECT cast(1 as decimal(10, 0)) in (cast(1 as string)) FROM t; SELECT cast(1 as decimal(10, 0)) in (cast('1' as binary)) FROM t; SELECT cast(1 as decimal(10, 0)) in (cast(1 as boolean)) FROM t; SELECT cast(1 as decimal(10, 0)) in (cast('2017-12-11 09:30:00.0' as timestamp)) FROM t; SELECT cast(1 as decimal(10, 0)) in (cast('2017-12-11 09:30:00' as date)) FROM t; SELECT cast(1 as string) in (cast(1 as tinyint)) FROM t; SELECT cast(1 as string) in (cast(1 as smallint)) FROM t; SELECT cast(1 as string) in (cast(1 as int)) FROM t; SELECT cast(1 as string) in (cast(1 as bigint)) FROM t; SELECT cast(1 as string) in (cast(1 as float)) FROM t; SELECT cast(1 as string) in (cast(1 as double)) FROM t; SELECT cast(1 as string) in (cast(1 as decimal(10, 0))) FROM t; SELECT cast(1 as string) in (cast(1 as string)) FROM t; SELECT cast(1 as string) in (cast('1' as binary)) FROM t; SELECT cast(1 as string) in (cast(1 as boolean)) FROM t; SELECT cast(1 as string) in (cast('2017-12-11 09:30:00.0' as timestamp)) FROM t; SELECT cast(1 as string) in (cast('2017-12-11 09:30:00' as date)) FROM t; SELECT cast('1' as binary) in (cast(1 as tinyint)) FROM t; SELECT cast('1' as binary) in (cast(1 as smallint)) FROM t; SELECT cast('1' as binary) in (cast(1 as int)) FROM t; SELECT cast('1' as binary) in (cast(1 as bigint)) FROM t; SELECT cast('1' as binary) in (cast(1 as float)) FROM t; SELECT cast('1' as binary) in (cast(1 as double)) FROM t; SELECT cast('1' as binary) in (cast(1 as decimal(10, 0))) FROM t; SELECT cast('1' as binary) in (cast(1 as string)) FROM t; SELECT cast('1' as binary) in (cast('1' as binary)) FROM t; SELECT cast('1' as binary) in (cast(1 as boolean)) FROM t; SELECT cast('1' as binary) in (cast('2017-12-11 09:30:00.0' as timestamp)) FROM t; SELECT cast('1' as binary) in (cast('2017-12-11 09:30:00' as date)) FROM t; SELECT true in (cast(1 as tinyint)) FROM t; SELECT true in (cast(1 as smallint)) FROM t; SELECT true in (cast(1 as int)) FROM t; SELECT true in (cast(1 as bigint)) FROM t; SELECT true in (cast(1 as float)) FROM t; SELECT true in (cast(1 as double)) FROM t; SELECT true in (cast(1 as decimal(10, 0))) FROM t; SELECT true in (cast(1 as string)) FROM t; SELECT true in (cast('1' as binary)) FROM t; SELECT true in (cast(1 as boolean)) FROM t; SELECT true in (cast('2017-12-11 09:30:00.0' as timestamp)) FROM t; SELECT true in (cast('2017-12-11 09:30:00' as date)) FROM t; SELECT cast('2017-12-12 09:30:00.0' as timestamp) in (cast(2 as tinyint)) FROM t; SELECT cast('2017-12-12 09:30:00.0' as timestamp) in (cast(2 as smallint)) FROM t; SELECT cast('2017-12-12 09:30:00.0' as timestamp) in (cast(2 as int)) FROM t; SELECT cast('2017-12-12 09:30:00.0' as timestamp) in (cast(2 as bigint)) FROM t; SELECT cast('2017-12-12 09:30:00.0' as timestamp) in (cast(2 as float)) FROM t; SELECT cast('2017-12-12 09:30:00.0' as timestamp) in (cast(2 as double)) FROM t; SELECT cast('2017-12-12 09:30:00.0' as timestamp) in (cast(2 as decimal(10, 0))) FROM t; SELECT cast('2017-12-12 09:30:00.0' as timestamp) in (cast(2 as string)) FROM t; SELECT cast('2017-12-12 09:30:00.0' as timestamp) in (cast('2' as binary)) FROM t; SELECT cast('2017-12-12 09:30:00.0' as timestamp) in (cast(2 as boolean)) FROM t; SELECT cast('2017-12-12 09:30:00.0' as timestamp) in (cast('2017-12-11 09:30:00.0' as timestamp)) FROM t; SELECT cast('2017-12-12 09:30:00.0' as timestamp) in (cast('2017-12-11 09:30:00' as date)) FROM t; SELECT cast('2017-12-12 09:30:00' as date) in (cast(2 as tinyint)) FROM t; SELECT cast('2017-12-12 09:30:00' as date) in (cast(2 as smallint)) FROM t; SELECT cast('2017-12-12 09:30:00' as date) in (cast(2 as int)) FROM t; SELECT cast('2017-12-12 09:30:00' as date) in (cast(2 as bigint)) FROM t; SELECT cast('2017-12-12 09:30:00' as date) in (cast(2 as float)) FROM t; SELECT cast('2017-12-12 09:30:00' as date) in (cast(2 as double)) FROM t; SELECT cast('2017-12-12 09:30:00' as date) in (cast(2 as decimal(10, 0))) FROM t; SELECT cast('2017-12-12 09:30:00' as date) in (cast(2 as string)) FROM t; SELECT cast('2017-12-12 09:30:00' as date) in (cast('2' as binary)) FROM t; SELECT cast('2017-12-12 09:30:00' as date) in (cast(2 as boolean)) FROM t; SELECT cast('2017-12-12 09:30:00' as date) in (cast('2017-12-11 09:30:00.0' as timestamp)) FROM t; SELECT cast('2017-12-12 09:30:00' as date) in (cast('2017-12-11 09:30:00' as date)) FROM t; SELECT cast(1 as tinyint) in (cast(1 as tinyint), cast(1 as tinyint)) FROM t; SELECT cast(1 as tinyint) in (cast(1 as tinyint), cast(1 as smallint)) FROM t; SELECT cast(1 as tinyint) in (cast(1 as tinyint), cast(1 as int)) FROM t; SELECT cast(1 as tinyint) in (cast(1 as tinyint), cast(1 as bigint)) FROM t; SELECT cast(1 as tinyint) in (cast(1 as tinyint), cast(1 as float)) FROM t; SELECT cast(1 as tinyint) in (cast(1 as tinyint), cast(1 as double)) FROM t; SELECT cast(1 as tinyint) in (cast(1 as tinyint), cast(1 as decimal(10, 0))) FROM t; SELECT cast(1 as tinyint) in (cast(1 as tinyint), cast(1 as string)) FROM t; SELECT cast(1 as tinyint) in (cast(1 as tinyint), cast('1' as binary)) FROM t; SELECT cast(1 as tinyint) in (cast(1 as tinyint), cast(1 as boolean)) FROM t; SELECT cast(1 as tinyint) in (cast(1 as tinyint), cast('2017-12-11 09:30:00.0' as timestamp)) FROM t; SELECT cast(1 as tinyint) in (cast(1 as tinyint), cast('2017-12-11 09:30:00' as date)) FROM t; SELECT cast(1 as smallint) in (cast(1 as smallint), cast(1 as tinyint)) FROM t; SELECT cast(1 as smallint) in (cast(1 as smallint), cast(1 as smallint)) FROM t; SELECT cast(1 as smallint) in (cast(1 as smallint), cast(1 as int)) FROM t; SELECT cast(1 as smallint) in (cast(1 as smallint), cast(1 as bigint)) FROM t; SELECT cast(1 as smallint) in (cast(1 as smallint), cast(1 as float)) FROM t; SELECT cast(1 as smallint) in (cast(1 as smallint), cast(1 as double)) FROM t; SELECT cast(1 as smallint) in (cast(1 as smallint), cast(1 as decimal(10, 0))) FROM t; SELECT cast(1 as smallint) in (cast(1 as smallint), cast(1 as string)) FROM t; SELECT cast(1 as smallint) in (cast(1 as smallint), cast('1' as binary)) FROM t; SELECT cast(1 as smallint) in (cast(1 as smallint), cast(1 as boolean)) FROM t; SELECT cast(1 as smallint) in (cast(1 as smallint), cast('2017-12-11 09:30:00.0' as timestamp)) FROM t; SELECT cast(1 as smallint) in (cast(1 as smallint), cast('2017-12-11 09:30:00' as date)) FROM t; SELECT cast(1 as int) in (cast(1 as int), cast(1 as tinyint)) FROM t; SELECT cast(1 as int) in (cast(1 as int), cast(1 as smallint)) FROM t; SELECT cast(1 as int) in (cast(1 as int), cast(1 as int)) FROM t; SELECT cast(1 as int) in (cast(1 as int), cast(1 as bigint)) FROM t; SELECT cast(1 as int) in (cast(1 as int), cast(1 as float)) FROM t; SELECT cast(1 as int) in (cast(1 as int), cast(1 as double)) FROM t; SELECT cast(1 as int) in (cast(1 as int), cast(1 as decimal(10, 0))) FROM t; SELECT cast(1 as int) in (cast(1 as int), cast(1 as string)) FROM t; SELECT cast(1 as int) in (cast(1 as int), cast('1' as binary)) FROM t; SELECT cast(1 as int) in (cast(1 as int), cast(1 as boolean)) FROM t; SELECT cast(1 as int) in (cast(1 as int), cast('2017-12-11 09:30:00.0' as timestamp)) FROM t; SELECT cast(1 as int) in (cast(1 as int), cast('2017-12-11 09:30:00' as date)) FROM t; SELECT cast(1 as bigint) in (cast(1 as bigint), cast(1 as tinyint)) FROM t; SELECT cast(1 as bigint) in (cast(1 as bigint), cast(1 as smallint)) FROM t; SELECT cast(1 as bigint) in (cast(1 as bigint), cast(1 as int)) FROM t; SELECT cast(1 as bigint) in (cast(1 as bigint), cast(1 as bigint)) FROM t; SELECT cast(1 as bigint) in (cast(1 as bigint), cast(1 as float)) FROM t; SELECT cast(1 as bigint) in (cast(1 as bigint), cast(1 as double)) FROM t; SELECT cast(1 as bigint) in (cast(1 as bigint), cast(1 as decimal(10, 0))) FROM t; SELECT cast(1 as bigint) in (cast(1 as bigint), cast(1 as string)) FROM t; SELECT cast(1 as bigint) in (cast(1 as bigint), cast('1' as binary)) FROM t; SELECT cast(1 as bigint) in (cast(1 as bigint), cast(1 as boolean)) FROM t; SELECT cast(1 as bigint) in (cast(1 as bigint), cast('2017-12-11 09:30:00.0' as timestamp)) FROM t; SELECT cast(1 as bigint) in (cast(1 as bigint), cast('2017-12-11 09:30:00' as date)) FROM t; SELECT cast(1 as float) in (cast(1 as float), cast(1 as tinyint)) FROM t; SELECT cast(1 as float) in (cast(1 as float), cast(1 as smallint)) FROM t; SELECT cast(1 as float) in (cast(1 as float), cast(1 as int)) FROM t; SELECT cast(1 as float) in (cast(1 as float), cast(1 as bigint)) FROM t; SELECT cast(1 as float) in (cast(1 as float), cast(1 as float)) FROM t; SELECT cast(1 as float) in (cast(1 as float), cast(1 as double)) FROM t; SELECT cast(1 as float) in (cast(1 as float), cast(1 as decimal(10, 0))) FROM t; SELECT cast(1 as float) in (cast(1 as float), cast(1 as string)) FROM t; SELECT cast(1 as float) in (cast(1 as float), cast('1' as binary)) FROM t; SELECT cast(1 as float) in (cast(1 as float), cast(1 as boolean)) FROM t; SELECT cast(1 as float) in (cast(1 as float), cast('2017-12-11 09:30:00.0' as timestamp)) FROM t; SELECT cast(1 as float) in (cast(1 as float), cast('2017-12-11 09:30:00' as date)) FROM t; SELECT cast(1 as double) in (cast(1 as double), cast(1 as tinyint)) FROM t; SELECT cast(1 as double) in (cast(1 as double), cast(1 as smallint)) FROM t; SELECT cast(1 as double) in (cast(1 as double), cast(1 as int)) FROM t; SELECT cast(1 as double) in (cast(1 as double), cast(1 as bigint)) FROM t; SELECT cast(1 as double) in (cast(1 as double), cast(1 as float)) FROM t; SELECT cast(1 as double) in (cast(1 as double), cast(1 as double)) FROM t; SELECT cast(1 as double) in (cast(1 as double), cast(1 as decimal(10, 0))) FROM t; SELECT cast(1 as double) in (cast(1 as double), cast(1 as string)) FROM t; SELECT cast(1 as double) in (cast(1 as double), cast('1' as binary)) FROM t; SELECT cast(1 as double) in (cast(1 as double), cast(1 as boolean)) FROM t; SELECT cast(1 as double) in (cast(1 as double), cast('2017-12-11 09:30:00.0' as timestamp)) FROM t; SELECT cast(1 as double) in (cast(1 as double), cast('2017-12-11 09:30:00' as date)) FROM t; SELECT cast(1 as decimal(10, 0)) in (cast(1 as decimal(10, 0)), cast(1 as tinyint)) FROM t; SELECT cast(1 as decimal(10, 0)) in (cast(1 as decimal(10, 0)), cast(1 as smallint)) FROM t; SELECT cast(1 as decimal(10, 0)) in (cast(1 as decimal(10, 0)), cast(1 as int)) FROM t; SELECT cast(1 as decimal(10, 0)) in (cast(1 as decimal(10, 0)), cast(1 as bigint)) FROM t; SELECT cast(1 as decimal(10, 0)) in (cast(1 as decimal(10, 0)), cast(1 as float)) FROM t; SELECT cast(1 as decimal(10, 0)) in (cast(1 as decimal(10, 0)), cast(1 as double)) FROM t; SELECT cast(1 as decimal(10, 0)) in (cast(1 as decimal(10, 0)), cast(1 as decimal(10, 0))) FROM t; SELECT cast(1 as decimal(10, 0)) in (cast(1 as decimal(10, 0)), cast(1 as string)) FROM t; SELECT cast(1 as decimal(10, 0)) in (cast(1 as decimal(10, 0)), cast('1' as binary)) FROM t; SELECT cast(1 as decimal(10, 0)) in (cast(1 as decimal(10, 0)), cast(1 as boolean)) FROM t; SELECT cast(1 as decimal(10, 0)) in (cast(1 as decimal(10, 0)), cast('2017-12-11 09:30:00.0' as timestamp)) FROM t; SELECT cast(1 as decimal(10, 0)) in (cast(1 as decimal(10, 0)), cast('2017-12-11 09:30:00' as date)) FROM t; SELECT cast(1 as string) in (cast(1 as string), cast(1 as tinyint)) FROM t; SELECT cast(1 as string) in (cast(1 as string), cast(1 as smallint)) FROM t; SELECT cast(1 as string) in (cast(1 as string), cast(1 as int)) FROM t; SELECT cast(1 as string) in (cast(1 as string), cast(1 as bigint)) FROM t; SELECT cast(1 as string) in (cast(1 as string), cast(1 as float)) FROM t; SELECT cast(1 as string) in (cast(1 as string), cast(1 as double)) FROM t; SELECT cast(1 as string) in (cast(1 as string), cast(1 as decimal(10, 0))) FROM t; SELECT cast(1 as string) in (cast(1 as string), cast(1 as string)) FROM t; SELECT cast(1 as string) in (cast(1 as string), cast('1' as binary)) FROM t; SELECT cast(1 as string) in (cast(1 as string), cast(1 as boolean)) FROM t; SELECT cast(1 as string) in (cast(1 as string), cast('2017-12-11 09:30:00.0' as timestamp)) FROM t; SELECT cast(1 as string) in (cast(1 as string), cast('2017-12-11 09:30:00' as date)) FROM t; SELECT cast('1' as binary) in (cast('1' as binary), cast(1 as tinyint)) FROM t; SELECT cast('1' as binary) in (cast('1' as binary), cast(1 as smallint)) FROM t; SELECT cast('1' as binary) in (cast('1' as binary), cast(1 as int)) FROM t; SELECT cast('1' as binary) in (cast('1' as binary), cast(1 as bigint)) FROM t; SELECT cast('1' as binary) in (cast('1' as binary), cast(1 as float)) FROM t; SELECT cast('1' as binary) in (cast('1' as binary), cast(1 as double)) FROM t; SELECT cast('1' as binary) in (cast('1' as binary), cast(1 as decimal(10, 0))) FROM t; SELECT cast('1' as binary) in (cast('1' as binary), cast(1 as string)) FROM t; SELECT cast('1' as binary) in (cast('1' as binary), cast('1' as binary)) FROM t; SELECT cast('1' as binary) in (cast('1' as binary), cast(1 as boolean)) FROM t; SELECT cast('1' as binary) in (cast('1' as binary), cast('2017-12-11 09:30:00.0' as timestamp)) FROM t; SELECT cast('1' as binary) in (cast('1' as binary), cast('2017-12-11 09:30:00' as date)) FROM t; SELECT cast('1' as boolean) in (cast('1' as boolean), cast(1 as tinyint)) FROM t; SELECT cast('1' as boolean) in (cast('1' as boolean), cast(1 as smallint)) FROM t; SELECT cast('1' as boolean) in (cast('1' as boolean), cast(1 as int)) FROM t; SELECT cast('1' as boolean) in (cast('1' as boolean), cast(1 as bigint)) FROM t; SELECT cast('1' as boolean) in (cast('1' as boolean), cast(1 as float)) FROM t; SELECT cast('1' as boolean) in (cast('1' as boolean), cast(1 as double)) FROM t; SELECT cast('1' as boolean) in (cast('1' as boolean), cast(1 as decimal(10, 0))) FROM t; SELECT cast('1' as boolean) in (cast('1' as boolean), cast(1 as string)) FROM t; SELECT cast('1' as boolean) in (cast('1' as boolean), cast('1' as binary)) FROM t; SELECT cast('1' as boolean) in (cast('1' as boolean), cast(1 as boolean)) FROM t; SELECT cast('1' as boolean) in (cast('1' as boolean), cast('2017-12-11 09:30:00.0' as timestamp)) FROM t; SELECT cast('1' as boolean) in (cast('1' as boolean), cast('2017-12-11 09:30:00' as date)) FROM t; SELECT cast('2017-12-12 09:30:00.0' as timestamp) in (cast('2017-12-12 09:30:00.0' as timestamp), cast(1 as tinyint)) FROM t; SELECT cast('2017-12-12 09:30:00.0' as timestamp) in (cast('2017-12-12 09:30:00.0' as timestamp), cast(1 as smallint)) FROM t; SELECT cast('2017-12-12 09:30:00.0' as timestamp) in (cast('2017-12-12 09:30:00.0' as timestamp), cast(1 as int)) FROM t; SELECT cast('2017-12-12 09:30:00.0' as timestamp) in (cast('2017-12-12 09:30:00.0' as timestamp), cast(1 as bigint)) FROM t; SELECT cast('2017-12-12 09:30:00.0' as timestamp) in (cast('2017-12-12 09:30:00.0' as timestamp), cast(1 as float)) FROM t; SELECT cast('2017-12-12 09:30:00.0' as timestamp) in (cast('2017-12-12 09:30:00.0' as timestamp), cast(1 as double)) FROM t; SELECT cast('2017-12-12 09:30:00.0' as timestamp) in (cast('2017-12-12 09:30:00.0' as timestamp), cast(1 as decimal(10, 0))) FROM t; SELECT cast('2017-12-12 09:30:00.0' as timestamp) in (cast('2017-12-12 09:30:00.0' as timestamp), cast(1 as string)) FROM t; SELECT cast('2017-12-12 09:30:00.0' as timestamp) in (cast('2017-12-12 09:30:00.0' as timestamp), cast('1' as binary)) FROM t; SELECT cast('2017-12-12 09:30:00.0' as timestamp) in (cast('2017-12-12 09:30:00.0' as timestamp), cast(1 as boolean)) FROM t; SELECT cast('2017-12-12 09:30:00.0' as timestamp) in (cast('2017-12-12 09:30:00.0' as timestamp), cast('2017-12-11 09:30:00.0' as timestamp)) FROM t; SELECT cast('2017-12-12 09:30:00.0' as timestamp) in (cast('2017-12-12 09:30:00.0' as timestamp), cast('2017-12-11 09:30:00' as date)) FROM t; SELECT cast('2017-12-12 09:30:00' as date) in (cast('2017-12-12 09:30:00' as date), cast(1 as tinyint)) FROM t; SELECT cast('2017-12-12 09:30:00' as date) in (cast('2017-12-12 09:30:00' as date), cast(1 as smallint)) FROM t; SELECT cast('2017-12-12 09:30:00' as date) in (cast('2017-12-12 09:30:00' as date), cast(1 as int)) FROM t; SELECT cast('2017-12-12 09:30:00' as date) in (cast('2017-12-12 09:30:00' as date), cast(1 as bigint)) FROM t; SELECT cast('2017-12-12 09:30:00' as date) in (cast('2017-12-12 09:30:00' as date), cast(1 as float)) FROM t; SELECT cast('2017-12-12 09:30:00' as date) in (cast('2017-12-12 09:30:00' as date), cast(1 as double)) FROM t; SELECT cast('2017-12-12 09:30:00' as date) in (cast('2017-12-12 09:30:00' as date), cast(1 as decimal(10, 0))) FROM t; SELECT cast('2017-12-12 09:30:00' as date) in (cast('2017-12-12 09:30:00' as date), cast(1 as string)) FROM t; SELECT cast('2017-12-12 09:30:00' as date) in (cast('2017-12-12 09:30:00' as date), cast('1' as binary)) FROM t; SELECT cast('2017-12-12 09:30:00' as date) in (cast('2017-12-12 09:30:00' as date), cast(1 as boolean)) FROM t; SELECT cast('2017-12-12 09:30:00' as date) in (cast('2017-12-12 09:30:00' as date), cast('2017-12-11 09:30:00.0' as timestamp)) FROM t; SELECT cast('2017-12-12 09:30:00' as date) in (cast('2017-12-12 09:30:00' as date), cast('2017-12-11 09:30:00' as date)) FROM t;
SQL
3
OlegPt/spark
sql/core/src/test/resources/sql-tests/inputs/typeCoercion/native/inConversion.sql
[ "Apache-2.0" ]
$localize `:␟82ec661067f503a3357ecc159b2128325e9208cd␟2908931752694090721:Some & attribute`; … $localize `:␟10adaf0ad7b8ba40200cd3c0e7c8d0f13280d522␟4700340487900776701:Some & message`; … $localize `:␟57ebd20267116c04cc1dbd7be0b73bf56484f45d␟2334195497629636162:Some & ${"\uFFFD0\uFFFD"}:INTERPOLATION: attribute`; … $localize `:␟28d558ca32556f1da67a333e3dada321a97212cd␟3204054277547499090:Some & ${"\uFFFD0\uFFFD"}:INTERPOLATION: message`; … $localize `:␟0b3dff7b9382b6217ac97c99f9b04df04381bfdd␟2406634758623728945:&`; … $localize `:␟25b7cbf210e59a931423097cb7f2e1b72991a687␟4156372478368653226:&"`;
JavaScript
2
John-Cassidy/angular
packages/compiler-cli/test/compliance/test_cases/r3_view_compiler_i18n/localize_legacy_message_ids/legacy_enabled.js
[ "MIT" ]
"use strict"; var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); Object.defineProperty(exports, "__esModule", { value: true }); exports.default = void 0; var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); var _jsxRuntime = require("react/jsx-runtime"); var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M21.49 17.34 15.5 20l-4.92-1.96 4.18-.88-4.3-9.7c-.11-.25 0-.55.25-.66.25-.11.55 0 .66.25l2.5 5.65 1.61-.71 4.65.01 1.36 5.34z", opacity: ".3" }, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m20.22 10-4.15.01c-.16-.01-.31.02-.45.08l-.59.26-1.83-4.1c-.56-1.26-2.04-1.83-3.3-1.27s-1.83 2.04-1.27 3.3l3.3 7.45-1.87.39c-.19.05-.99.27-1.36 1.21L8 19.19l6.78 2.67c.49.19 1.05.18 1.53-.04l5.99-2.65c.89-.4 1.37-1.38 1.13-2.32l-1.36-5.34c-.22-.86-.97-1.47-1.85-1.51zm1.27 7.34L15.5 20l-4.92-1.96 4.18-.88-4.3-9.7c-.11-.25 0-.55.25-.66.25-.11.55 0 .66.25l2.5 5.65 1.61-.71 4.65.01 1.36 5.34zM2.06 5.56 1 4.5 4.5 1 8 4.5 6.94 5.56 5.32 3.94C5.11 4.76 5 5.62 5 6.5c0 2.42.82 4.65 2.2 6.43L6.13 14C4.49 11.95 3.5 9.34 3.5 6.5c0-.92.1-1.82.3-2.68L2.06 5.56z" }, "1")], 'SwipeUpTwoTone'); exports.default = _default;
JavaScript
4
dany-freeman/material-ui
packages/mui-icons-material/lib/SwipeUpTwoTone.js
[ "MIT" ]
/home/spinalvm/hdl/riscv-compliance/work//I-MISALIGN_JMP-01.elf: file format elf32-littleriscv Disassembly of section .text.init: 80000000 <_start>: 80000000: 00000097 auipc ra,0x0 80000004: 20808093 addi ra,ra,520 # 80000208 <_trap_handler> 80000008: 30509ff3 csrrw t6,mtvec,ra 8000000c: 30127073 csrci misa,4 80000010: 00001097 auipc ra,0x1 80000014: ff008093 addi ra,ra,-16 # 80001000 <codasip_signature_start> 80000018: 11111137 lui sp,0x11111 8000001c: 11110113 addi sp,sp,273 # 11111111 <_start-0x6eeeeeef> 80000020: 00a0006f j 8000002a <_start+0x2a> 80000024: 00000113 li sp,0 80000028: 00001097 auipc ra,0x1 8000002c: fe408093 addi ra,ra,-28 # 8000100c <test_A2_res> 80000030: 22222137 lui sp,0x22222 80000034: 22210113 addi sp,sp,546 # 22222222 <_start-0x5dddddde> 80000038: 00000217 auipc tp,0x0 8000003c: 01120213 addi tp,tp,17 # 80000049 <_start+0x49> 80000040: 00020067 jr tp 80000044: 00000113 li sp,0 80000048: 0020a023 sw sp,0(ra) 8000004c: 00408093 addi ra,ra,4 80000050: 33333137 lui sp,0x33333 80000054: 33310113 addi sp,sp,819 # 33333333 <_start-0x4ccccccd> 80000058: 00000217 auipc tp,0x0 8000005c: 01020213 addi tp,tp,16 # 80000068 <_start+0x68> 80000060: 00120067 jr 1(tp) # 1 <_start-0x7fffffff> 80000064: 00000113 li sp,0 80000068: 0020a023 sw sp,0(ra) 8000006c: 00408093 addi ra,ra,4 80000070: 44444137 lui sp,0x44444 80000074: 44410113 addi sp,sp,1092 # 44444444 <_start-0x3bbbbbbc> 80000078: 00000217 auipc tp,0x0 8000007c: 01420213 addi tp,tp,20 # 8000008c <_start+0x8c> 80000080: ffd20067 jr -3(tp) # fffffffd <_end+0x7fffef6d> 80000084: 00000113 li sp,0 80000088: 0020a023 sw sp,0(ra) 8000008c: 00408093 addi ra,ra,4 80000090: 00001097 auipc ra,0x1 80000094: f8808093 addi ra,ra,-120 # 80001018 <test_A3_res_exc> 80000098: 55555137 lui sp,0x55555 8000009c: 55510113 addi sp,sp,1365 # 55555555 <_start-0x2aaaaaab> 800000a0: 00000217 auipc tp,0x0 800000a4: 01220213 addi tp,tp,18 # 800000b2 <_start+0xb2> 800000a8: 00020067 jr tp 800000ac: 00000113 li sp,0 800000b0: 66666137 lui sp,0x66666 800000b4: 66610113 addi sp,sp,1638 # 66666666 <_start-0x1999999a> 800000b8: 00000217 auipc tp,0x0 800000bc: 01320213 addi tp,tp,19 # 800000cb <_start+0xcb> 800000c0: 00020067 jr tp 800000c4: 00000113 li sp,0 800000c8: 77777137 lui sp,0x77777 800000cc: 77710113 addi sp,sp,1911 # 77777777 <_start-0x8888889> 800000d0: 00000217 auipc tp,0x0 800000d4: 01020213 addi tp,tp,16 # 800000e0 <_start+0xe0> 800000d8: 00220067 jr 2(tp) # 2 <_start-0x7ffffffe> 800000dc: 00000113 li sp,0 800000e0: 88889137 lui sp,0x88889 800000e4: 88810113 addi sp,sp,-1912 # 88888888 <_end+0x88877f8> 800000e8: 00000217 auipc tp,0x0 800000ec: 01020213 addi tp,tp,16 # 800000f8 <_start+0xf8> 800000f0: 00320067 jr 3(tp) # 3 <_start-0x7ffffffd> 800000f4: 00000113 li sp,0 800000f8: 00001097 auipc ra,0x1 800000fc: f5008093 addi ra,ra,-176 # 80001048 <test_B1_res_exc> 80000100: 00500293 li t0,5 80000104: 00600313 li t1,6 80000108: 00628763 beq t0,t1,80000116 <_start+0x116> 8000010c: 9999a137 lui sp,0x9999a 80000110: 99910113 addi sp,sp,-1639 # 99999999 <_end+0x19998909> 80000114: 00000013 nop 80000118: 00000013 nop 8000011c: 00528563 beq t0,t0,80000126 <_start+0x126> 80000120: 00000113 li sp,0 80000124: 00001097 auipc ra,0x1 80000128: f3008093 addi ra,ra,-208 # 80001054 <test_B2_res_exc> 8000012c: 00500293 li t0,5 80000130: 00600313 li t1,6 80000134: 00529763 bne t0,t0,80000142 <_start+0x142> 80000138: aaaab137 lui sp,0xaaaab 8000013c: aaa10113 addi sp,sp,-1366 # aaaaaaaa <_end+0x2aaa9a1a> 80000140: 00000013 nop 80000144: 00000013 nop 80000148: 00629563 bne t0,t1,80000152 <_start+0x152> 8000014c: 00000113 li sp,0 80000150: 00001097 auipc ra,0x1 80000154: f1008093 addi ra,ra,-240 # 80001060 <test_B3_res_exc> 80000158: 00500293 li t0,5 8000015c: 00600313 li t1,6 80000160: 00534763 blt t1,t0,8000016e <_start+0x16e> 80000164: bbbbc137 lui sp,0xbbbbc 80000168: bbb10113 addi sp,sp,-1093 # bbbbbbbb <_end+0x3bbbab2b> 8000016c: 00000013 nop 80000170: 00000013 nop 80000174: 0062c563 blt t0,t1,8000017e <_start+0x17e> 80000178: 00000113 li sp,0 8000017c: 00001097 auipc ra,0x1 80000180: ef008093 addi ra,ra,-272 # 8000106c <test_B4_res_exc> 80000184: 00500293 li t0,5 80000188: 00600313 li t1,6 8000018c: 00536763 bltu t1,t0,8000019a <_start+0x19a> 80000190: ccccd137 lui sp,0xccccd 80000194: ccc10113 addi sp,sp,-820 # cccccccc <_end+0x4cccbc3c> 80000198: 00000013 nop 8000019c: 00000013 nop 800001a0: 0062e563 bltu t0,t1,800001aa <_start+0x1aa> 800001a4: 00000113 li sp,0 800001a8: 00001097 auipc ra,0x1 800001ac: ed008093 addi ra,ra,-304 # 80001078 <test_B5_res_exc> 800001b0: 00500293 li t0,5 800001b4: 00600313 li t1,6 800001b8: 0062d763 ble t1,t0,800001c6 <_start+0x1c6> 800001bc: dddde137 lui sp,0xdddde 800001c0: ddd10113 addi sp,sp,-547 # dddddddd <_end+0x5dddcd4d> 800001c4: 00000013 nop 800001c8: 00000013 nop 800001cc: 00535563 ble t0,t1,800001d6 <_start+0x1d6> 800001d0: 00000113 li sp,0 800001d4: 00001097 auipc ra,0x1 800001d8: eb008093 addi ra,ra,-336 # 80001084 <test_B6_res_exc> 800001dc: 00500293 li t0,5 800001e0: 00600313 li t1,6 800001e4: 0062f763 bleu t1,t0,800001f2 <_start+0x1f2> 800001e8: eeeef137 lui sp,0xeeeef 800001ec: eee10113 addi sp,sp,-274 # eeeeeeee <_end+0x6eeede5e> 800001f0: 00000013 nop 800001f4: 00000013 nop 800001f8: 00537563 bleu t0,t1,80000202 <_start+0x202> 800001fc: 00000113 li sp,0 80000200: 305f9073 csrw mtvec,t6 80000204: 0300006f j 80000234 <test_end> 80000208 <_trap_handler>: 80000208: 34302f73 csrr t5,mbadaddr 8000020c: ffef0f13 addi t5,t5,-2 80000210: 341f1073 csrw mepc,t5 80000214: 34302f73 csrr t5,mbadaddr 80000218: 003f7f13 andi t5,t5,3 8000021c: 01e0a023 sw t5,0(ra) 80000220: 34202f73 csrr t5,mcause 80000224: 01e0a223 sw t5,4(ra) 80000228: 0020a423 sw sp,8(ra) 8000022c: 00c08093 addi ra,ra,12 80000230: 30200073 mret 80000234 <test_end>: 80000234: 00001517 auipc a0,0x1 80000238: dcc50513 addi a0,a0,-564 # 80001000 <codasip_signature_start> 8000023c: 00001597 auipc a1,0x1 80000240: e5458593 addi a1,a1,-428 # 80001090 <_end> 80000244: f0100637 lui a2,0xf0100 80000248: f2c60613 addi a2,a2,-212 # f00fff2c <_end+0x700fee9c> 8000024c <complience_halt_loop>: 8000024c: 02b50663 beq a0,a1,80000278 <complience_halt_break> 80000250: 00c52683 lw a3,12(a0) 80000254: 00d62023 sw a3,0(a2) 80000258: 00852683 lw a3,8(a0) 8000025c: 00d62023 sw a3,0(a2) 80000260: 00452683 lw a3,4(a0) 80000264: 00d62023 sw a3,0(a2) 80000268: 00052683 lw a3,0(a0) 8000026c: 00d62023 sw a3,0(a2) 80000270: 01050513 addi a0,a0,16 80000274: fd9ff06f j 8000024c <complience_halt_loop> 80000278 <complience_halt_break>: 80000278: f0100537 lui a0,0xf0100 8000027c: f2050513 addi a0,a0,-224 # f00fff20 <_end+0x700fee90> 80000280: 00052023 sw zero,0(a0) Disassembly of section .data: 80001000 <codasip_signature_start>: 80001000: ffff 0xffff 80001002: ffff 0xffff 80001004: ffff 0xffff 80001006: ffff 0xffff 80001008: ffff 0xffff 8000100a: ffff 0xffff 8000100c <test_A2_res>: 8000100c: ffff 0xffff 8000100e: ffff 0xffff 80001010: ffff 0xffff 80001012: ffff 0xffff 80001014: ffff 0xffff 80001016: ffff 0xffff 80001018 <test_A3_res_exc>: 80001018: ffff 0xffff 8000101a: ffff 0xffff 8000101c: ffff 0xffff 8000101e: ffff 0xffff 80001020: ffff 0xffff 80001022: ffff 0xffff 80001024: ffff 0xffff 80001026: ffff 0xffff 80001028: ffff 0xffff 8000102a: ffff 0xffff 8000102c: ffff 0xffff 8000102e: ffff 0xffff 80001030: ffff 0xffff 80001032: ffff 0xffff 80001034: ffff 0xffff 80001036: ffff 0xffff 80001038: ffff 0xffff 8000103a: ffff 0xffff 8000103c: ffff 0xffff 8000103e: ffff 0xffff 80001040: ffff 0xffff 80001042: ffff 0xffff 80001044: ffff 0xffff 80001046: ffff 0xffff 80001048 <test_B1_res_exc>: 80001048: ffff 0xffff 8000104a: ffff 0xffff 8000104c: ffff 0xffff 8000104e: ffff 0xffff 80001050: ffff 0xffff 80001052: ffff 0xffff 80001054 <test_B2_res_exc>: 80001054: ffff 0xffff 80001056: ffff 0xffff 80001058: ffff 0xffff 8000105a: ffff 0xffff 8000105c: ffff 0xffff 8000105e: ffff 0xffff 80001060 <test_B3_res_exc>: 80001060: ffff 0xffff 80001062: ffff 0xffff 80001064: ffff 0xffff 80001066: ffff 0xffff 80001068: ffff 0xffff 8000106a: ffff 0xffff 8000106c <test_B4_res_exc>: 8000106c: ffff 0xffff 8000106e: ffff 0xffff 80001070: ffff 0xffff 80001072: ffff 0xffff 80001074: ffff 0xffff 80001076: ffff 0xffff 80001078 <test_B5_res_exc>: 80001078: ffff 0xffff 8000107a: ffff 0xffff 8000107c: ffff 0xffff 8000107e: ffff 0xffff 80001080: ffff 0xffff 80001082: ffff 0xffff 80001084 <test_B6_res_exc>: 80001084: ffff 0xffff 80001086: ffff 0xffff 80001088: ffff 0xffff 8000108a: ffff 0xffff 8000108c: ffff 0xffff 8000108e: ffff 0xffff
ObjDump
3
cbrune/VexRiscv
src/test/resources/asm/I-MISALIGN_JMP-01.elf.objdump
[ "MIT" ]
// https://svgwg.org/svg2-draft/types.html#InterfaceSVGAnimatedString [Exposed=Window] interface SVGAnimatedString { attribute DOMString baseVal; readonly attribute DOMString animVal; };
WebIDL
3
Unique184/jsdom
lib/jsdom/living/svg/SVGAnimatedString.webidl
[ "MIT" ]
module Views.NavBar.Views exposing (navBar) import Html exposing (Html, a, div, header, li, nav, text, ul) import Html.Attributes exposing (class, href, style, title) import Types exposing (Route(..)) import Views.NavBar.Types exposing (Tab, alertsTab, noneTab, silencesTab, statusTab, tabs) navBar : Route -> Html msg navBar currentRoute = header [ class "navbar navbar-toggleable-md navbar-light bg-faded mb-5 pt-3 pb-3" , style "border-bottom" "1px solid rgba(0, 0, 0, .125)" ] [ nav [ class "container" ] [ a [ class "navbar-brand", href "#" ] [ text "Alertmanager" ] , ul [ class "navbar-nav" ] (navBarItems currentRoute) , case currentRoute of SilenceFormEditRoute _ -> text "" SilenceFormNewRoute _ -> text "" _ -> div [ class "form-inline ml-auto" ] [ a [ class "btn btn-outline-info" , href "#/silences/new" ] [ text "New Silence" ] ] ] ] navBarItems : Route -> List (Html msg) navBarItems currentRoute = List.map (navBarItem currentRoute) tabs navBarItem : Route -> Tab -> Html msg navBarItem currentRoute tab = li [ class <| "nav-item" ++ isActive currentRoute tab ] [ a [ class "nav-link", href tab.link, title tab.name ] [ text tab.name ] ] isActive : Route -> Tab -> String isActive currentRoute tab = if routeToTab currentRoute == tab then " active" else "" routeToTab : Route -> Tab routeToTab currentRoute = case currentRoute of AlertsRoute _ -> alertsTab NotFoundRoute -> noneTab SilenceFormEditRoute _ -> silencesTab SilenceFormNewRoute _ -> silencesTab SilenceListRoute _ -> silencesTab SilenceViewRoute _ -> silencesTab StatusRoute -> statusTab TopLevelRoute -> noneTab
Elm
4
jtlisi/alertmanager
ui/app/src/Views/NavBar/Views.elm
[ "ECL-2.0", "Apache-2.0" ]
// Copyright 2018 The Go Authors. All rights reserved. // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. #include "textflag.h" #define B0 V0 #define B1 V1 #define B2 V2 #define B3 V3 #define B4 V4 #define B5 V5 #define B6 V6 #define B7 V7 #define ACC0 V8 #define ACC1 V9 #define ACCM V10 #define T0 V11 #define T1 V12 #define T2 V13 #define T3 V14 #define POLY V15 #define ZERO V16 #define INC V17 #define CTR V18 #define K0 V19 #define K1 V20 #define K2 V21 #define K3 V22 #define K4 V23 #define K5 V24 #define K6 V25 #define K7 V26 #define K8 V27 #define K9 V28 #define K10 V29 #define K11 V30 #define KLAST V31 #define reduce() \ VEOR ACC0.B16, ACCM.B16, ACCM.B16 \ VEOR ACC1.B16, ACCM.B16, ACCM.B16 \ VEXT $8, ZERO.B16, ACCM.B16, T0.B16 \ VEXT $8, ACCM.B16, ZERO.B16, ACCM.B16 \ VEOR ACCM.B16, ACC0.B16, ACC0.B16 \ VEOR T0.B16, ACC1.B16, ACC1.B16 \ VPMULL POLY.D1, ACC0.D1, T0.Q1 \ VEXT $8, ACC0.B16, ACC0.B16, ACC0.B16 \ VEOR T0.B16, ACC0.B16, ACC0.B16 \ VPMULL POLY.D1, ACC0.D1, T0.Q1 \ VEOR T0.B16, ACC1.B16, ACC1.B16 \ VEXT $8, ACC1.B16, ACC1.B16, ACC1.B16 \ VEOR ACC1.B16, ACC0.B16, ACC0.B16 \ // func gcmAesFinish(productTable *[256]byte, tagMask, T *[16]byte, pLen, dLen uint64) TEXT ·gcmAesFinish(SB),NOSPLIT,$0 #define pTbl R0 #define tMsk R1 #define tPtr R2 #define plen R3 #define dlen R4 MOVD $0xC2, R1 LSL $56, R1 MOVD $1, R0 VMOV R1, POLY.D[0] VMOV R0, POLY.D[1] VEOR ZERO.B16, ZERO.B16, ZERO.B16 MOVD productTable+0(FP), pTbl MOVD tagMask+8(FP), tMsk MOVD T+16(FP), tPtr MOVD pLen+24(FP), plen MOVD dLen+32(FP), dlen VLD1 (tPtr), [ACC0.B16] VLD1 (tMsk), [B1.B16] LSL $3, plen LSL $3, dlen VMOV dlen, B0.D[0] VMOV plen, B0.D[1] ADD $14*16, pTbl VLD1.P (pTbl), [T1.B16, T2.B16] VEOR ACC0.B16, B0.B16, B0.B16 VEXT $8, B0.B16, B0.B16, T0.B16 VEOR B0.B16, T0.B16, T0.B16 VPMULL B0.D1, T1.D1, ACC1.Q1 VPMULL2 B0.D2, T1.D2, ACC0.Q1 VPMULL T0.D1, T2.D1, ACCM.Q1 reduce() VREV64 ACC0.B16, ACC0.B16 VEOR B1.B16, ACC0.B16, ACC0.B16 VST1 [ACC0.B16], (tPtr) RET #undef pTbl #undef tMsk #undef tPtr #undef plen #undef dlen // func gcmAesInit(productTable *[256]byte, ks []uint32) TEXT ·gcmAesInit(SB),NOSPLIT,$0 #define pTbl R0 #define KS R1 #define NR R2 #define I R3 MOVD productTable+0(FP), pTbl MOVD ks_base+8(FP), KS MOVD ks_len+16(FP), NR MOVD $0xC2, I LSL $56, I VMOV I, POLY.D[0] MOVD $1, I VMOV I, POLY.D[1] VEOR ZERO.B16, ZERO.B16, ZERO.B16 // Encrypt block 0 with the AES key to generate the hash key H VLD1.P 64(KS), [T0.B16, T1.B16, T2.B16, T3.B16] VEOR B0.B16, B0.B16, B0.B16 AESE T0.B16, B0.B16 AESMC B0.B16, B0.B16 AESE T1.B16, B0.B16 AESMC B0.B16, B0.B16 AESE T2.B16, B0.B16 AESMC B0.B16, B0.B16 AESE T3.B16, B0.B16 AESMC B0.B16, B0.B16 VLD1.P 64(KS), [T0.B16, T1.B16, T2.B16, T3.B16] AESE T0.B16, B0.B16 AESMC B0.B16, B0.B16 AESE T1.B16, B0.B16 AESMC B0.B16, B0.B16 AESE T2.B16, B0.B16 AESMC B0.B16, B0.B16 AESE T3.B16, B0.B16 AESMC B0.B16, B0.B16 TBZ $4, NR, initEncFinish VLD1.P 32(KS), [T0.B16, T1.B16] AESE T0.B16, B0.B16 AESMC B0.B16, B0.B16 AESE T1.B16, B0.B16 AESMC B0.B16, B0.B16 TBZ $3, NR, initEncFinish VLD1.P 32(KS), [T0.B16, T1.B16] AESE T0.B16, B0.B16 AESMC B0.B16, B0.B16 AESE T1.B16, B0.B16 AESMC B0.B16, B0.B16 initEncFinish: VLD1 (KS), [T0.B16, T1.B16, T2.B16] AESE T0.B16, B0.B16 AESMC B0.B16, B0.B16 AESE T1.B16, B0.B16 VEOR T2.B16, B0.B16, B0.B16 VREV64 B0.B16, B0.B16 // Multiply by 2 modulo P VMOV B0.D[0], I ASR $63, I VMOV I, T1.D[0] VMOV I, T1.D[1] VAND POLY.B16, T1.B16, T1.B16 VUSHR $63, B0.D2, T2.D2 VEXT $8, ZERO.B16, T2.B16, T2.B16 VSHL $1, B0.D2, B0.D2 VEOR T1.B16, B0.B16, B0.B16 VEOR T2.B16, B0.B16, B0.B16 // Can avoid this when VSLI is available // Karatsuba pre-computation VEXT $8, B0.B16, B0.B16, B1.B16 VEOR B0.B16, B1.B16, B1.B16 ADD $14*16, pTbl VST1 [B0.B16, B1.B16], (pTbl) SUB $2*16, pTbl VMOV B0.B16, B2.B16 VMOV B1.B16, B3.B16 MOVD $7, I initLoop: // Compute powers of H SUBS $1, I VPMULL B0.D1, B2.D1, T1.Q1 VPMULL2 B0.D2, B2.D2, T0.Q1 VPMULL B1.D1, B3.D1, T2.Q1 VEOR T0.B16, T2.B16, T2.B16 VEOR T1.B16, T2.B16, T2.B16 VEXT $8, ZERO.B16, T2.B16, T3.B16 VEXT $8, T2.B16, ZERO.B16, T2.B16 VEOR T2.B16, T0.B16, T0.B16 VEOR T3.B16, T1.B16, T1.B16 VPMULL POLY.D1, T0.D1, T2.Q1 VEXT $8, T0.B16, T0.B16, T0.B16 VEOR T2.B16, T0.B16, T0.B16 VPMULL POLY.D1, T0.D1, T2.Q1 VEXT $8, T0.B16, T0.B16, T0.B16 VEOR T2.B16, T0.B16, T0.B16 VEOR T1.B16, T0.B16, B2.B16 VMOV B2.B16, B3.B16 VEXT $8, B2.B16, B2.B16, B2.B16 VEOR B2.B16, B3.B16, B3.B16 VST1 [B2.B16, B3.B16], (pTbl) SUB $2*16, pTbl BNE initLoop RET #undef I #undef NR #undef KS #undef pTbl // func gcmAesData(productTable *[256]byte, data []byte, T *[16]byte) TEXT ·gcmAesData(SB),NOSPLIT,$0 #define pTbl R0 #define aut R1 #define tPtr R2 #define autLen R3 #define H0 R4 #define pTblSave R5 #define mulRound(X) \ VLD1.P 32(pTbl), [T1.B16, T2.B16] \ VREV64 X.B16, X.B16 \ VEXT $8, X.B16, X.B16, T0.B16 \ VEOR X.B16, T0.B16, T0.B16 \ VPMULL X.D1, T1.D1, T3.Q1 \ VEOR T3.B16, ACC1.B16, ACC1.B16 \ VPMULL2 X.D2, T1.D2, T3.Q1 \ VEOR T3.B16, ACC0.B16, ACC0.B16 \ VPMULL T0.D1, T2.D1, T3.Q1 \ VEOR T3.B16, ACCM.B16, ACCM.B16 MOVD productTable+0(FP), pTbl MOVD data_base+8(FP), aut MOVD data_len+16(FP), autLen MOVD T+32(FP), tPtr VEOR ACC0.B16, ACC0.B16, ACC0.B16 CBZ autLen, dataBail MOVD $0xC2, H0 LSL $56, H0 VMOV H0, POLY.D[0] MOVD $1, H0 VMOV H0, POLY.D[1] VEOR ZERO.B16, ZERO.B16, ZERO.B16 MOVD pTbl, pTblSave CMP $13, autLen BEQ dataTLS CMP $128, autLen BLT startSinglesLoop B octetsLoop dataTLS: ADD $14*16, pTbl VLD1.P (pTbl), [T1.B16, T2.B16] VEOR B0.B16, B0.B16, B0.B16 MOVD (aut), H0 VMOV H0, B0.D[0] MOVW 8(aut), H0 VMOV H0, B0.S[2] MOVB 12(aut), H0 VMOV H0, B0.B[12] MOVD $0, autLen B dataMul octetsLoop: CMP $128, autLen BLT startSinglesLoop SUB $128, autLen VLD1.P 32(aut), [B0.B16, B1.B16] VLD1.P 32(pTbl), [T1.B16, T2.B16] VREV64 B0.B16, B0.B16 VEOR ACC0.B16, B0.B16, B0.B16 VEXT $8, B0.B16, B0.B16, T0.B16 VEOR B0.B16, T0.B16, T0.B16 VPMULL B0.D1, T1.D1, ACC1.Q1 VPMULL2 B0.D2, T1.D2, ACC0.Q1 VPMULL T0.D1, T2.D1, ACCM.Q1 mulRound(B1) VLD1.P 32(aut), [B2.B16, B3.B16] mulRound(B2) mulRound(B3) VLD1.P 32(aut), [B4.B16, B5.B16] mulRound(B4) mulRound(B5) VLD1.P 32(aut), [B6.B16, B7.B16] mulRound(B6) mulRound(B7) MOVD pTblSave, pTbl reduce() B octetsLoop startSinglesLoop: ADD $14*16, pTbl VLD1.P (pTbl), [T1.B16, T2.B16] singlesLoop: CMP $16, autLen BLT dataEnd SUB $16, autLen VLD1.P 16(aut), [B0.B16] dataMul: VREV64 B0.B16, B0.B16 VEOR ACC0.B16, B0.B16, B0.B16 VEXT $8, B0.B16, B0.B16, T0.B16 VEOR B0.B16, T0.B16, T0.B16 VPMULL B0.D1, T1.D1, ACC1.Q1 VPMULL2 B0.D2, T1.D2, ACC0.Q1 VPMULL T0.D1, T2.D1, ACCM.Q1 reduce() B singlesLoop dataEnd: CBZ autLen, dataBail VEOR B0.B16, B0.B16, B0.B16 ADD autLen, aut dataLoadLoop: MOVB.W -1(aut), H0 VEXT $15, B0.B16, ZERO.B16, B0.B16 VMOV H0, B0.B[0] SUBS $1, autLen BNE dataLoadLoop B dataMul dataBail: VST1 [ACC0.B16], (tPtr) RET #undef pTbl #undef aut #undef tPtr #undef autLen #undef H0 #undef pTblSave // func gcmAesEnc(productTable *[256]byte, dst, src []byte, ctr, T *[16]byte, ks []uint32) TEXT ·gcmAesEnc(SB),NOSPLIT,$0 #define pTbl R0 #define dstPtr R1 #define ctrPtr R2 #define srcPtr R3 #define ks R4 #define tPtr R5 #define srcPtrLen R6 #define aluCTR R7 #define aluTMP R8 #define aluK R9 #define NR R10 #define H0 R11 #define H1 R12 #define curK R13 #define pTblSave R14 #define aesrndx8(K) \ AESE K.B16, B0.B16 \ AESMC B0.B16, B0.B16 \ AESE K.B16, B1.B16 \ AESMC B1.B16, B1.B16 \ AESE K.B16, B2.B16 \ AESMC B2.B16, B2.B16 \ AESE K.B16, B3.B16 \ AESMC B3.B16, B3.B16 \ AESE K.B16, B4.B16 \ AESMC B4.B16, B4.B16 \ AESE K.B16, B5.B16 \ AESMC B5.B16, B5.B16 \ AESE K.B16, B6.B16 \ AESMC B6.B16, B6.B16 \ AESE K.B16, B7.B16 \ AESMC B7.B16, B7.B16 #define aesrndlastx8(K) \ AESE K.B16, B0.B16 \ AESE K.B16, B1.B16 \ AESE K.B16, B2.B16 \ AESE K.B16, B3.B16 \ AESE K.B16, B4.B16 \ AESE K.B16, B5.B16 \ AESE K.B16, B6.B16 \ AESE K.B16, B7.B16 MOVD productTable+0(FP), pTbl MOVD dst+8(FP), dstPtr MOVD src_base+32(FP), srcPtr MOVD src_len+40(FP), srcPtrLen MOVD ctr+56(FP), ctrPtr MOVD T+64(FP), tPtr MOVD ks_base+72(FP), ks MOVD ks_len+80(FP), NR MOVD $0xC2, H1 LSL $56, H1 MOVD $1, H0 VMOV H1, POLY.D[0] VMOV H0, POLY.D[1] VEOR ZERO.B16, ZERO.B16, ZERO.B16 // Compute NR from len(ks) MOVD pTbl, pTblSave // Current tag, after AAD VLD1 (tPtr), [ACC0.B16] VEOR ACC1.B16, ACC1.B16, ACC1.B16 VEOR ACCM.B16, ACCM.B16, ACCM.B16 // Prepare initial counter, and the increment vector VLD1 (ctrPtr), [CTR.B16] VEOR INC.B16, INC.B16, INC.B16 MOVD $1, H0 VMOV H0, INC.S[3] VREV32 CTR.B16, CTR.B16 VADD CTR.S4, INC.S4, CTR.S4 // Skip to <8 blocks loop CMP $128, srcPtrLen MOVD ks, H0 // For AES-128 round keys are stored in: K0 .. K10, KLAST VLD1.P 64(H0), [K0.B16, K1.B16, K2.B16, K3.B16] VLD1.P 64(H0), [K4.B16, K5.B16, K6.B16, K7.B16] VLD1.P 48(H0), [K8.B16, K9.B16, K10.B16] VMOV K10.B16, KLAST.B16 BLT startSingles // There are at least 8 blocks to encrypt TBZ $4, NR, octetsLoop // For AES-192 round keys occupy: K0 .. K7, K10, K11, K8, K9, KLAST VMOV K8.B16, K10.B16 VMOV K9.B16, K11.B16 VMOV KLAST.B16, K8.B16 VLD1.P 16(H0), [K9.B16] VLD1.P 16(H0), [KLAST.B16] TBZ $3, NR, octetsLoop // For AES-256 round keys occupy: K0 .. K7, K10, K11, mem, mem, K8, K9, KLAST VMOV KLAST.B16, K8.B16 VLD1.P 16(H0), [K9.B16] VLD1.P 16(H0), [KLAST.B16] ADD $10*16, ks, H0 MOVD H0, curK octetsLoop: SUB $128, srcPtrLen VMOV CTR.B16, B0.B16 VADD B0.S4, INC.S4, B1.S4 VREV32 B0.B16, B0.B16 VADD B1.S4, INC.S4, B2.S4 VREV32 B1.B16, B1.B16 VADD B2.S4, INC.S4, B3.S4 VREV32 B2.B16, B2.B16 VADD B3.S4, INC.S4, B4.S4 VREV32 B3.B16, B3.B16 VADD B4.S4, INC.S4, B5.S4 VREV32 B4.B16, B4.B16 VADD B5.S4, INC.S4, B6.S4 VREV32 B5.B16, B5.B16 VADD B6.S4, INC.S4, B7.S4 VREV32 B6.B16, B6.B16 VADD B7.S4, INC.S4, CTR.S4 VREV32 B7.B16, B7.B16 aesrndx8(K0) aesrndx8(K1) aesrndx8(K2) aesrndx8(K3) aesrndx8(K4) aesrndx8(K5) aesrndx8(K6) aesrndx8(K7) TBZ $4, NR, octetsFinish aesrndx8(K10) aesrndx8(K11) TBZ $3, NR, octetsFinish VLD1.P 32(curK), [T1.B16, T2.B16] aesrndx8(T1) aesrndx8(T2) MOVD H0, curK octetsFinish: aesrndx8(K8) aesrndlastx8(K9) VEOR KLAST.B16, B0.B16, B0.B16 VEOR KLAST.B16, B1.B16, B1.B16 VEOR KLAST.B16, B2.B16, B2.B16 VEOR KLAST.B16, B3.B16, B3.B16 VEOR KLAST.B16, B4.B16, B4.B16 VEOR KLAST.B16, B5.B16, B5.B16 VEOR KLAST.B16, B6.B16, B6.B16 VEOR KLAST.B16, B7.B16, B7.B16 VLD1.P 32(srcPtr), [T1.B16, T2.B16] VEOR B0.B16, T1.B16, B0.B16 VEOR B1.B16, T2.B16, B1.B16 VST1.P [B0.B16, B1.B16], 32(dstPtr) VLD1.P 32(srcPtr), [T1.B16, T2.B16] VEOR B2.B16, T1.B16, B2.B16 VEOR B3.B16, T2.B16, B3.B16 VST1.P [B2.B16, B3.B16], 32(dstPtr) VLD1.P 32(srcPtr), [T1.B16, T2.B16] VEOR B4.B16, T1.B16, B4.B16 VEOR B5.B16, T2.B16, B5.B16 VST1.P [B4.B16, B5.B16], 32(dstPtr) VLD1.P 32(srcPtr), [T1.B16, T2.B16] VEOR B6.B16, T1.B16, B6.B16 VEOR B7.B16, T2.B16, B7.B16 VST1.P [B6.B16, B7.B16], 32(dstPtr) VLD1.P 32(pTbl), [T1.B16, T2.B16] VREV64 B0.B16, B0.B16 VEOR ACC0.B16, B0.B16, B0.B16 VEXT $8, B0.B16, B0.B16, T0.B16 VEOR B0.B16, T0.B16, T0.B16 VPMULL B0.D1, T1.D1, ACC1.Q1 VPMULL2 B0.D2, T1.D2, ACC0.Q1 VPMULL T0.D1, T2.D1, ACCM.Q1 mulRound(B1) mulRound(B2) mulRound(B3) mulRound(B4) mulRound(B5) mulRound(B6) mulRound(B7) MOVD pTblSave, pTbl reduce() CMP $128, srcPtrLen BGE octetsLoop startSingles: CBZ srcPtrLen, done ADD $14*16, pTbl // Preload H and its Karatsuba precomp VLD1.P (pTbl), [T1.B16, T2.B16] // Preload AES round keys ADD $128, ks VLD1.P 48(ks), [K8.B16, K9.B16, K10.B16] VMOV K10.B16, KLAST.B16 TBZ $4, NR, singlesLoop VLD1.P 32(ks), [B1.B16, B2.B16] VMOV B2.B16, KLAST.B16 TBZ $3, NR, singlesLoop VLD1.P 32(ks), [B3.B16, B4.B16] VMOV B4.B16, KLAST.B16 singlesLoop: CMP $16, srcPtrLen BLT tail SUB $16, srcPtrLen VLD1.P 16(srcPtr), [T0.B16] VEOR KLAST.B16, T0.B16, T0.B16 VREV32 CTR.B16, B0.B16 VADD CTR.S4, INC.S4, CTR.S4 AESE K0.B16, B0.B16 AESMC B0.B16, B0.B16 AESE K1.B16, B0.B16 AESMC B0.B16, B0.B16 AESE K2.B16, B0.B16 AESMC B0.B16, B0.B16 AESE K3.B16, B0.B16 AESMC B0.B16, B0.B16 AESE K4.B16, B0.B16 AESMC B0.B16, B0.B16 AESE K5.B16, B0.B16 AESMC B0.B16, B0.B16 AESE K6.B16, B0.B16 AESMC B0.B16, B0.B16 AESE K7.B16, B0.B16 AESMC B0.B16, B0.B16 AESE K8.B16, B0.B16 AESMC B0.B16, B0.B16 AESE K9.B16, B0.B16 TBZ $4, NR, singlesLast AESMC B0.B16, B0.B16 AESE K10.B16, B0.B16 AESMC B0.B16, B0.B16 AESE B1.B16, B0.B16 TBZ $3, NR, singlesLast AESMC B0.B16, B0.B16 AESE B2.B16, B0.B16 AESMC B0.B16, B0.B16 AESE B3.B16, B0.B16 singlesLast: VEOR T0.B16, B0.B16, B0.B16 encReduce: VST1.P [B0.B16], 16(dstPtr) VREV64 B0.B16, B0.B16 VEOR ACC0.B16, B0.B16, B0.B16 VEXT $8, B0.B16, B0.B16, T0.B16 VEOR B0.B16, T0.B16, T0.B16 VPMULL B0.D1, T1.D1, ACC1.Q1 VPMULL2 B0.D2, T1.D2, ACC0.Q1 VPMULL T0.D1, T2.D1, ACCM.Q1 reduce() B singlesLoop tail: CBZ srcPtrLen, done VEOR T0.B16, T0.B16, T0.B16 VEOR T3.B16, T3.B16, T3.B16 MOVD $0, H1 SUB $1, H1 ADD srcPtrLen, srcPtr TBZ $3, srcPtrLen, ld4 MOVD.W -8(srcPtr), H0 VMOV H0, T0.D[0] VMOV H1, T3.D[0] ld4: TBZ $2, srcPtrLen, ld2 MOVW.W -4(srcPtr), H0 VEXT $12, T0.B16, ZERO.B16, T0.B16 VEXT $12, T3.B16, ZERO.B16, T3.B16 VMOV H0, T0.S[0] VMOV H1, T3.S[0] ld2: TBZ $1, srcPtrLen, ld1 MOVH.W -2(srcPtr), H0 VEXT $14, T0.B16, ZERO.B16, T0.B16 VEXT $14, T3.B16, ZERO.B16, T3.B16 VMOV H0, T0.H[0] VMOV H1, T3.H[0] ld1: TBZ $0, srcPtrLen, ld0 MOVB.W -1(srcPtr), H0 VEXT $15, T0.B16, ZERO.B16, T0.B16 VEXT $15, T3.B16, ZERO.B16, T3.B16 VMOV H0, T0.B[0] VMOV H1, T3.B[0] ld0: MOVD ZR, srcPtrLen VEOR KLAST.B16, T0.B16, T0.B16 VREV32 CTR.B16, B0.B16 AESE K0.B16, B0.B16 AESMC B0.B16, B0.B16 AESE K1.B16, B0.B16 AESMC B0.B16, B0.B16 AESE K2.B16, B0.B16 AESMC B0.B16, B0.B16 AESE K3.B16, B0.B16 AESMC B0.B16, B0.B16 AESE K4.B16, B0.B16 AESMC B0.B16, B0.B16 AESE K5.B16, B0.B16 AESMC B0.B16, B0.B16 AESE K6.B16, B0.B16 AESMC B0.B16, B0.B16 AESE K7.B16, B0.B16 AESMC B0.B16, B0.B16 AESE K8.B16, B0.B16 AESMC B0.B16, B0.B16 AESE K9.B16, B0.B16 TBZ $4, NR, tailLast AESMC B0.B16, B0.B16 AESE K10.B16, B0.B16 AESMC B0.B16, B0.B16 AESE B1.B16, B0.B16 TBZ $3, NR, tailLast AESMC B0.B16, B0.B16 AESE B2.B16, B0.B16 AESMC B0.B16, B0.B16 AESE B3.B16, B0.B16 tailLast: VEOR T0.B16, B0.B16, B0.B16 VAND T3.B16, B0.B16, B0.B16 B encReduce done: VST1 [ACC0.B16], (tPtr) RET // func gcmAesDec(productTable *[256]byte, dst, src []byte, ctr, T *[16]byte, ks []uint32) TEXT ·gcmAesDec(SB),NOSPLIT,$0 MOVD productTable+0(FP), pTbl MOVD dst+8(FP), dstPtr MOVD src_base+32(FP), srcPtr MOVD src_len+40(FP), srcPtrLen MOVD ctr+56(FP), ctrPtr MOVD T+64(FP), tPtr MOVD ks_base+72(FP), ks MOVD ks_len+80(FP), NR MOVD $0xC2, H1 LSL $56, H1 MOVD $1, H0 VMOV H1, POLY.D[0] VMOV H0, POLY.D[1] VEOR ZERO.B16, ZERO.B16, ZERO.B16 // Compute NR from len(ks) MOVD pTbl, pTblSave // Current tag, after AAD VLD1 (tPtr), [ACC0.B16] VEOR ACC1.B16, ACC1.B16, ACC1.B16 VEOR ACCM.B16, ACCM.B16, ACCM.B16 // Prepare initial counter, and the increment vector VLD1 (ctrPtr), [CTR.B16] VEOR INC.B16, INC.B16, INC.B16 MOVD $1, H0 VMOV H0, INC.S[3] VREV32 CTR.B16, CTR.B16 VADD CTR.S4, INC.S4, CTR.S4 MOVD ks, H0 // For AES-128 round keys are stored in: K0 .. K10, KLAST VLD1.P 64(H0), [K0.B16, K1.B16, K2.B16, K3.B16] VLD1.P 64(H0), [K4.B16, K5.B16, K6.B16, K7.B16] VLD1.P 48(H0), [K8.B16, K9.B16, K10.B16] VMOV K10.B16, KLAST.B16 // Skip to <8 blocks loop CMP $128, srcPtrLen BLT startSingles // There are at least 8 blocks to encrypt TBZ $4, NR, octetsLoop // For AES-192 round keys occupy: K0 .. K7, K10, K11, K8, K9, KLAST VMOV K8.B16, K10.B16 VMOV K9.B16, K11.B16 VMOV KLAST.B16, K8.B16 VLD1.P 16(H0), [K9.B16] VLD1.P 16(H0), [KLAST.B16] TBZ $3, NR, octetsLoop // For AES-256 round keys occupy: K0 .. K7, K10, K11, mem, mem, K8, K9, KLAST VMOV KLAST.B16, K8.B16 VLD1.P 16(H0), [K9.B16] VLD1.P 16(H0), [KLAST.B16] ADD $10*16, ks, H0 MOVD H0, curK octetsLoop: SUB $128, srcPtrLen VMOV CTR.B16, B0.B16 VADD B0.S4, INC.S4, B1.S4 VREV32 B0.B16, B0.B16 VADD B1.S4, INC.S4, B2.S4 VREV32 B1.B16, B1.B16 VADD B2.S4, INC.S4, B3.S4 VREV32 B2.B16, B2.B16 VADD B3.S4, INC.S4, B4.S4 VREV32 B3.B16, B3.B16 VADD B4.S4, INC.S4, B5.S4 VREV32 B4.B16, B4.B16 VADD B5.S4, INC.S4, B6.S4 VREV32 B5.B16, B5.B16 VADD B6.S4, INC.S4, B7.S4 VREV32 B6.B16, B6.B16 VADD B7.S4, INC.S4, CTR.S4 VREV32 B7.B16, B7.B16 aesrndx8(K0) aesrndx8(K1) aesrndx8(K2) aesrndx8(K3) aesrndx8(K4) aesrndx8(K5) aesrndx8(K6) aesrndx8(K7) TBZ $4, NR, octetsFinish aesrndx8(K10) aesrndx8(K11) TBZ $3, NR, octetsFinish VLD1.P 32(curK), [T1.B16, T2.B16] aesrndx8(T1) aesrndx8(T2) MOVD H0, curK octetsFinish: aesrndx8(K8) aesrndlastx8(K9) VEOR KLAST.B16, B0.B16, T1.B16 VEOR KLAST.B16, B1.B16, T2.B16 VEOR KLAST.B16, B2.B16, B2.B16 VEOR KLAST.B16, B3.B16, B3.B16 VEOR KLAST.B16, B4.B16, B4.B16 VEOR KLAST.B16, B5.B16, B5.B16 VEOR KLAST.B16, B6.B16, B6.B16 VEOR KLAST.B16, B7.B16, B7.B16 VLD1.P 32(srcPtr), [B0.B16, B1.B16] VEOR B0.B16, T1.B16, T1.B16 VEOR B1.B16, T2.B16, T2.B16 VST1.P [T1.B16, T2.B16], 32(dstPtr) VLD1.P 32(pTbl), [T1.B16, T2.B16] VREV64 B0.B16, B0.B16 VEOR ACC0.B16, B0.B16, B0.B16 VEXT $8, B0.B16, B0.B16, T0.B16 VEOR B0.B16, T0.B16, T0.B16 VPMULL B0.D1, T1.D1, ACC1.Q1 VPMULL2 B0.D2, T1.D2, ACC0.Q1 VPMULL T0.D1, T2.D1, ACCM.Q1 mulRound(B1) VLD1.P 32(srcPtr), [B0.B16, B1.B16] VEOR B2.B16, B0.B16, T1.B16 VEOR B3.B16, B1.B16, T2.B16 VST1.P [T1.B16, T2.B16], 32(dstPtr) mulRound(B0) mulRound(B1) VLD1.P 32(srcPtr), [B0.B16, B1.B16] VEOR B4.B16, B0.B16, T1.B16 VEOR B5.B16, B1.B16, T2.B16 VST1.P [T1.B16, T2.B16], 32(dstPtr) mulRound(B0) mulRound(B1) VLD1.P 32(srcPtr), [B0.B16, B1.B16] VEOR B6.B16, B0.B16, T1.B16 VEOR B7.B16, B1.B16, T2.B16 VST1.P [T1.B16, T2.B16], 32(dstPtr) mulRound(B0) mulRound(B1) MOVD pTblSave, pTbl reduce() CMP $128, srcPtrLen BGE octetsLoop startSingles: CBZ srcPtrLen, done ADD $14*16, pTbl // Preload H and its Karatsuba precomp VLD1.P (pTbl), [T1.B16, T2.B16] // Preload AES round keys ADD $128, ks VLD1.P 48(ks), [K8.B16, K9.B16, K10.B16] VMOV K10.B16, KLAST.B16 TBZ $4, NR, singlesLoop VLD1.P 32(ks), [B1.B16, B2.B16] VMOV B2.B16, KLAST.B16 TBZ $3, NR, singlesLoop VLD1.P 32(ks), [B3.B16, B4.B16] VMOV B4.B16, KLAST.B16 singlesLoop: CMP $16, srcPtrLen BLT tail SUB $16, srcPtrLen VLD1.P 16(srcPtr), [T0.B16] VREV64 T0.B16, B5.B16 VEOR KLAST.B16, T0.B16, T0.B16 VREV32 CTR.B16, B0.B16 VADD CTR.S4, INC.S4, CTR.S4 AESE K0.B16, B0.B16 AESMC B0.B16, B0.B16 AESE K1.B16, B0.B16 AESMC B0.B16, B0.B16 AESE K2.B16, B0.B16 AESMC B0.B16, B0.B16 AESE K3.B16, B0.B16 AESMC B0.B16, B0.B16 AESE K4.B16, B0.B16 AESMC B0.B16, B0.B16 AESE K5.B16, B0.B16 AESMC B0.B16, B0.B16 AESE K6.B16, B0.B16 AESMC B0.B16, B0.B16 AESE K7.B16, B0.B16 AESMC B0.B16, B0.B16 AESE K8.B16, B0.B16 AESMC B0.B16, B0.B16 AESE K9.B16, B0.B16 TBZ $4, NR, singlesLast AESMC B0.B16, B0.B16 AESE K10.B16, B0.B16 AESMC B0.B16, B0.B16 AESE B1.B16, B0.B16 TBZ $3, NR, singlesLast AESMC B0.B16, B0.B16 AESE B2.B16, B0.B16 AESMC B0.B16, B0.B16 AESE B3.B16, B0.B16 singlesLast: VEOR T0.B16, B0.B16, B0.B16 VST1.P [B0.B16], 16(dstPtr) VEOR ACC0.B16, B5.B16, B5.B16 VEXT $8, B5.B16, B5.B16, T0.B16 VEOR B5.B16, T0.B16, T0.B16 VPMULL B5.D1, T1.D1, ACC1.Q1 VPMULL2 B5.D2, T1.D2, ACC0.Q1 VPMULL T0.D1, T2.D1, ACCM.Q1 reduce() B singlesLoop tail: CBZ srcPtrLen, done VREV32 CTR.B16, B0.B16 VADD CTR.S4, INC.S4, CTR.S4 AESE K0.B16, B0.B16 AESMC B0.B16, B0.B16 AESE K1.B16, B0.B16 AESMC B0.B16, B0.B16 AESE K2.B16, B0.B16 AESMC B0.B16, B0.B16 AESE K3.B16, B0.B16 AESMC B0.B16, B0.B16 AESE K4.B16, B0.B16 AESMC B0.B16, B0.B16 AESE K5.B16, B0.B16 AESMC B0.B16, B0.B16 AESE K6.B16, B0.B16 AESMC B0.B16, B0.B16 AESE K7.B16, B0.B16 AESMC B0.B16, B0.B16 AESE K8.B16, B0.B16 AESMC B0.B16, B0.B16 AESE K9.B16, B0.B16 TBZ $4, NR, tailLast AESMC B0.B16, B0.B16 AESE K10.B16, B0.B16 AESMC B0.B16, B0.B16 AESE B1.B16, B0.B16 TBZ $3, NR, tailLast AESMC B0.B16, B0.B16 AESE B2.B16, B0.B16 AESMC B0.B16, B0.B16 AESE B3.B16, B0.B16 tailLast: VEOR KLAST.B16, B0.B16, B0.B16 // Assuming it is safe to load past dstPtr due to the presence of the tag VLD1 (srcPtr), [B5.B16] VEOR B5.B16, B0.B16, B0.B16 VEOR T3.B16, T3.B16, T3.B16 MOVD $0, H1 SUB $1, H1 TBZ $3, srcPtrLen, ld4 VMOV B0.D[0], H0 MOVD.P H0, 8(dstPtr) VMOV H1, T3.D[0] VEXT $8, ZERO.B16, B0.B16, B0.B16 ld4: TBZ $2, srcPtrLen, ld2 VMOV B0.S[0], H0 MOVW.P H0, 4(dstPtr) VEXT $12, T3.B16, ZERO.B16, T3.B16 VMOV H1, T3.S[0] VEXT $4, ZERO.B16, B0.B16, B0.B16 ld2: TBZ $1, srcPtrLen, ld1 VMOV B0.H[0], H0 MOVH.P H0, 2(dstPtr) VEXT $14, T3.B16, ZERO.B16, T3.B16 VMOV H1, T3.H[0] VEXT $2, ZERO.B16, B0.B16, B0.B16 ld1: TBZ $0, srcPtrLen, ld0 VMOV B0.B[0], H0 MOVB.P H0, 1(dstPtr) VEXT $15, T3.B16, ZERO.B16, T3.B16 VMOV H1, T3.B[0] ld0: VAND T3.B16, B5.B16, B5.B16 VREV64 B5.B16, B5.B16 VEOR ACC0.B16, B5.B16, B5.B16 VEXT $8, B5.B16, B5.B16, T0.B16 VEOR B5.B16, T0.B16, T0.B16 VPMULL B5.D1, T1.D1, ACC1.Q1 VPMULL2 B5.D2, T1.D2, ACC0.Q1 VPMULL T0.D1, T2.D1, ACCM.Q1 reduce() done: VST1 [ACC0.B16], (tPtr) RET
GAS
3
Havoc-OS/androidprebuilts_go_linux-x86
src/crypto/aes/gcm_arm64.s
[ "BSD-3-Clause" ]
package com.baeldung.properties.json.factory; import com.fasterxml.jackson.databind.ObjectMapper; import org.springframework.core.env.MapPropertySource; import org.springframework.core.env.PropertySource; import org.springframework.core.io.support.EncodedResource; import org.springframework.core.io.support.PropertySourceFactory; import java.io.IOException; import java.util.Map; public class JsonPropertySourceFactory implements PropertySourceFactory { @Override public PropertySource<?> createPropertySource(String name, EncodedResource resource) throws IOException { Map readValue = new ObjectMapper().readValue(resource.getInputStream(), Map.class); return new MapPropertySource("json-property", readValue); } }
Java
4
DBatOWL/tutorials
spring-boot-modules/spring-boot-properties-3/src/main/java/com/baeldung/properties/json/factory/JsonPropertySourceFactory.java
[ "MIT" ]
using Uno.IO; using Uno.UX; using Uno; namespace Fuse.Scripting { static class EventEmitterModule { static Scripting.Function _instance; public static Scripting.Function GetConstructor(Context c) { if (_instance == null) { var fileSource = Bundle.Get("Fuse.Scripting.JavaScript").GetFile("FuseJS/EventEmitter.js"); var exports = new FileModule(fileSource).EvaluateExports(c, "FuseJS/EventEmitter"); _instance = exports as Scripting.Function; if (_instance == null) throw new Exception("Unable to get a FuseJS/EventEmitter instance"); } return _instance; } } }
Uno
3
helilabs/fuselibs
Source/Fuse.Scripting/EventEmitterModule.uno
[ "MIT" ]
/* Copyright 2017 The TensorFlow Authors. All Rights Reserved. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. ==============================================================================*/ #ifndef TENSORFLOW_CORE_KERNELS_LOOKUP_TABLE_INIT_OP_H_ #define TENSORFLOW_CORE_KERNELS_LOOKUP_TABLE_INIT_OP_H_ #include "tensorflow/core/kernels/initializable_lookup_table.h" namespace tensorflow { namespace lookup { // Helper function to initialize an InitializableLookupTable from a text file. Status InitializeTableFromTextFile(const string& filename, int64_t vocab_size, char delimiter, int32_t key_index, int32_t value_index, Env* env, InitializableLookupTable* table); } // namespace lookup } // namespace tensorflow #endif // TENSORFLOW_CORE_KERNELS_LOOKUP_TABLE_INIT_OP_H_
C
4
EricRemmerswaal/tensorflow
tensorflow/core/kernels/lookup_table_init_op.h
[ "Apache-2.0" ]
.class public stack_var9 .super java/lang/Object .field private static n I .method public <init>()V .limit stack 5 aload_0 invokenonvirtual java/lang/Object/<init>()V iconst_0 putstatic stack_var9/n I return .end method .method public f()I .limit stack 8 .limit locals 5 getstatic stack_var9/n I iconst_1 putstatic stack_var9/n I ireturn .end method
Jasmin
3
mauguignard/cbmc
jbmc/regression/jbmc/stack_var9/stack_var9.j
[ "BSD-4-Clause" ]
/* Copyright 2021 The TensorFlow Authors. All Rights Reserved. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. ==============================================================================*/ #include "tensorflow/lite/experimental/acceleration/mini_benchmark/libc_handle.h" #include <gmock/gmock.h> #include <gtest/gtest.h> namespace tflite { namespace acceleration { namespace decode_jpeg_kernel { namespace { TEST(LibCHandleTest, LoadingSucceedsAndroidPlatforms) { Status status; LibCHandle handle = LibCHandle::Create(status); EXPECT_EQ(status.error_message, ""); EXPECT_EQ(status.code, kTfLiteOk); } } // namespace } // namespace decode_jpeg_kernel } // namespace acceleration } // namespace tflite
C++
4
EricRemmerswaal/tensorflow
tensorflow/lite/experimental/acceleration/mini_benchmark/libc_handle_test.cc
[ "Apache-2.0" ]
:orphan: pb2_ppo_example ~~~~~~~~~~~~~~~ .. literalinclude:: /../../python/ray/tune/examples/pb2_ppo_example.py
reStructuredText
1
firebolt55439/ray
doc/source/tune/examples/pb2_ppo_example.rst
[ "Apache-2.0" ]
||| A Idris port of the prettyprinter library [1] and ||| the ANSI terminal backend [2]. ||| ||| [1] https://hackage.haskell.org/package/prettyprinter ||| [2] https://hackage.haskell.org/package/prettyprinter-ansi-terminal module Text.PrettyPrint.Prettyprinter import public Text.PrettyPrint.Prettyprinter.Doc import public Text.PrettyPrint.Prettyprinter.Symbols %default total
Idris
3
Qqwy/Idris2-Erlang
idris2/libs/contrib/Text/PrettyPrint/Prettyprinter.idr
[ "BSD-3-Clause" ]
// run-pass // compile-flags: --test #[test] pub fn foo() {}
Rust
2
Eric-Arellano/rust
src/test/ui/issues/issue-20823.rs
[ "ECL-2.0", "Apache-2.0", "MIT-0", "MIT" ]
use("fib_iter") use("benchmark") Benchmark report(fib(300000))
Ioke
1
olabini/ioke
test/scripts/bench_fib_iter.ik
[ "ICU", "MIT" ]
*TfLite* *tflite* *TFL_*
Linker Script
0
abhaikollara/tensorflow
tensorflow/lite/tflite_exported_symbols.lds
[ "Apache-2.0" ]
use clippy_utils::diagnostics::{span_lint_and_help, span_lint_and_sugg, span_lint_and_then}; use clippy_utils::source::{snippet, snippet_with_applicability}; use clippy_utils::ty::is_non_aggregate_primitive_type; use clippy_utils::{is_default_equivalent, is_lang_ctor, match_def_path, meets_msrv, msrvs, paths}; use if_chain::if_chain; use rustc_errors::Applicability; use rustc_hir::LangItem::OptionNone; use rustc_hir::{BorrowKind, Expr, ExprKind, Mutability, QPath}; use rustc_lint::{LateContext, LateLintPass, LintContext}; use rustc_middle::lint::in_external_macro; use rustc_semver::RustcVersion; use rustc_session::{declare_tool_lint, impl_lint_pass}; use rustc_span::source_map::Span; use rustc_span::symbol::sym; declare_clippy_lint! { /// ### What it does /// Checks for `mem::replace()` on an `Option` with /// `None`. /// /// ### Why is this bad? /// `Option` already has the method `take()` for /// taking its current value (Some(..) or None) and replacing it with /// `None`. /// /// ### Example /// ```rust /// use std::mem; /// /// let mut an_option = Some(0); /// let replaced = mem::replace(&mut an_option, None); /// ``` /// Is better expressed with: /// ```rust /// let mut an_option = Some(0); /// let taken = an_option.take(); /// ``` #[clippy::version = "1.31.0"] pub MEM_REPLACE_OPTION_WITH_NONE, style, "replacing an `Option` with `None` instead of `take()`" } declare_clippy_lint! { /// ### What it does /// Checks for `mem::replace(&mut _, mem::uninitialized())` /// and `mem::replace(&mut _, mem::zeroed())`. /// /// ### Why is this bad? /// This will lead to undefined behavior even if the /// value is overwritten later, because the uninitialized value may be /// observed in the case of a panic. /// /// ### Example /// ``` /// use std::mem; ///# fn may_panic(v: Vec<i32>) -> Vec<i32> { v } /// /// #[allow(deprecated, invalid_value)] /// fn myfunc (v: &mut Vec<i32>) { /// let taken_v = unsafe { mem::replace(v, mem::uninitialized()) }; /// let new_v = may_panic(taken_v); // undefined behavior on panic /// mem::forget(mem::replace(v, new_v)); /// } /// ``` /// /// The [take_mut](https://docs.rs/take_mut) crate offers a sound solution, /// at the cost of either lazily creating a replacement value or aborting /// on panic, to ensure that the uninitialized value cannot be observed. #[clippy::version = "1.39.0"] pub MEM_REPLACE_WITH_UNINIT, correctness, "`mem::replace(&mut _, mem::uninitialized())` or `mem::replace(&mut _, mem::zeroed())`" } declare_clippy_lint! { /// ### What it does /// Checks for `std::mem::replace` on a value of type /// `T` with `T::default()`. /// /// ### Why is this bad? /// `std::mem` module already has the method `take` to /// take the current value and replace it with the default value of that type. /// /// ### Example /// ```rust /// let mut text = String::from("foo"); /// let replaced = std::mem::replace(&mut text, String::default()); /// ``` /// Is better expressed with: /// ```rust /// let mut text = String::from("foo"); /// let taken = std::mem::take(&mut text); /// ``` #[clippy::version = "1.42.0"] pub MEM_REPLACE_WITH_DEFAULT, style, "replacing a value of type `T` with `T::default()` instead of using `std::mem::take`" } impl_lint_pass!(MemReplace => [MEM_REPLACE_OPTION_WITH_NONE, MEM_REPLACE_WITH_UNINIT, MEM_REPLACE_WITH_DEFAULT]); fn check_replace_option_with_none(cx: &LateContext<'_>, src: &Expr<'_>, dest: &Expr<'_>, expr_span: Span) { if let ExprKind::Path(ref replacement_qpath) = src.kind { // Check that second argument is `Option::None` if is_lang_ctor(cx, replacement_qpath, OptionNone) { // Since this is a late pass (already type-checked), // and we already know that the second argument is an // `Option`, we do not need to check the first // argument's type. All that's left is to get // replacee's path. let replaced_path = match dest.kind { ExprKind::AddrOf(BorrowKind::Ref, Mutability::Mut, replaced) => { if let ExprKind::Path(QPath::Resolved(None, replaced_path)) = replaced.kind { replaced_path } else { return; } }, ExprKind::Path(QPath::Resolved(None, replaced_path)) => replaced_path, _ => return, }; let mut applicability = Applicability::MachineApplicable; span_lint_and_sugg( cx, MEM_REPLACE_OPTION_WITH_NONE, expr_span, "replacing an `Option` with `None`", "consider `Option::take()` instead", format!( "{}.take()", snippet_with_applicability(cx, replaced_path.span, "", &mut applicability) ), applicability, ); } } } fn check_replace_with_uninit(cx: &LateContext<'_>, src: &Expr<'_>, dest: &Expr<'_>, expr_span: Span) { if_chain! { // check if replacement is mem::MaybeUninit::uninit().assume_init() if let Some(method_def_id) = cx.typeck_results().type_dependent_def_id(src.hir_id); if cx.tcx.is_diagnostic_item(sym::assume_init, method_def_id); then { let mut applicability = Applicability::MachineApplicable; span_lint_and_sugg( cx, MEM_REPLACE_WITH_UNINIT, expr_span, "replacing with `mem::MaybeUninit::uninit().assume_init()`", "consider using", format!( "std::ptr::read({})", snippet_with_applicability(cx, dest.span, "", &mut applicability) ), applicability, ); return; } } if_chain! { if let ExprKind::Call(repl_func, repl_args) = src.kind; if repl_args.is_empty(); if let ExprKind::Path(ref repl_func_qpath) = repl_func.kind; if let Some(repl_def_id) = cx.qpath_res(repl_func_qpath, repl_func.hir_id).opt_def_id(); then { if cx.tcx.is_diagnostic_item(sym::mem_uninitialized, repl_def_id) { let mut applicability = Applicability::MachineApplicable; span_lint_and_sugg( cx, MEM_REPLACE_WITH_UNINIT, expr_span, "replacing with `mem::uninitialized()`", "consider using", format!( "std::ptr::read({})", snippet_with_applicability(cx, dest.span, "", &mut applicability) ), applicability, ); } else if cx.tcx.is_diagnostic_item(sym::mem_zeroed, repl_def_id) && !cx.typeck_results().expr_ty(src).is_primitive() { span_lint_and_help( cx, MEM_REPLACE_WITH_UNINIT, expr_span, "replacing with `mem::zeroed()`", None, "consider using a default value or the `take_mut` crate instead", ); } } } } fn check_replace_with_default(cx: &LateContext<'_>, src: &Expr<'_>, dest: &Expr<'_>, expr_span: Span) { // disable lint for primitives let expr_type = cx.typeck_results().expr_ty_adjusted(src); if is_non_aggregate_primitive_type(expr_type) { return; } // disable lint for Option since it is covered in another lint if let ExprKind::Path(q) = &src.kind { if is_lang_ctor(cx, q, OptionNone) { return; } } if is_default_equivalent(cx, src) && !in_external_macro(cx.tcx.sess, expr_span) { span_lint_and_then( cx, MEM_REPLACE_WITH_DEFAULT, expr_span, "replacing a value of type `T` with `T::default()` is better expressed using `std::mem::take`", |diag| { if !expr_span.from_expansion() { let suggestion = format!("std::mem::take({})", snippet(cx, dest.span, "")); diag.span_suggestion( expr_span, "consider using", suggestion, Applicability::MachineApplicable, ); } }, ); } } pub struct MemReplace { msrv: Option<RustcVersion>, } impl MemReplace { #[must_use] pub fn new(msrv: Option<RustcVersion>) -> Self { Self { msrv } } } impl<'tcx> LateLintPass<'tcx> for MemReplace { fn check_expr(&mut self, cx: &LateContext<'tcx>, expr: &'tcx Expr<'_>) { if_chain! { // Check that `expr` is a call to `mem::replace()` if let ExprKind::Call(func, func_args) = expr.kind; if let ExprKind::Path(ref func_qpath) = func.kind; if let Some(def_id) = cx.qpath_res(func_qpath, func.hir_id).opt_def_id(); if match_def_path(cx, def_id, &paths::MEM_REPLACE); if let [dest, src] = func_args; then { check_replace_option_with_none(cx, src, dest, expr.span); check_replace_with_uninit(cx, src, dest, expr.span); if meets_msrv(self.msrv.as_ref(), &msrvs::MEM_TAKE) { check_replace_with_default(cx, src, dest, expr.span); } } } } extract_msrv_attr!(LateContext); }
Rust
5
david-perez/rust
src/tools/clippy/clippy_lints/src/mem_replace.rs
[ "ECL-2.0", "Apache-2.0", "MIT-0", "MIT" ]
#version 3.6; // Right-handed coordinate system in which the z-axis points upwards camera { location <20,-50,30> sky z right -0.3*x*image_width/image_height up 0.3*z look_at <0,0,3> } // White background background{rgb 1} // Two lights with slightly different colors light_source{<-8,-20,30> color rgb <0.77,0.75,0.75>} light_source{<20,-15,5> color rgb <0.38,0.40,0.40>} // Radius of the Voronoi cell network, and the particle radius #declare r=0.025; #declare s=0.1; // Particles union{ #include "frustum_p.pov" scale 10 pigment{rgb <0.4,0.85,0.95>} finish{reflection 0.1 specular 0.3 ambient 0.42 metallic} } // Voronoi cells union{ #include "frustum_v.pov" scale 10 pigment{rgb <0.5,0.5,0.51>} finish{specular 0.3 ambient 0.42 reflection 0.4 metallic} }
POV-Ray SDL
4
wgq-iapcm/Parvoro-
3rdparty/voro++-0.4.6/examples/walls/frustum.pov
[ "BSD-3-Clause" ]
// Generated by the protocol buffer compiler. DO NOT EDIT! // source: compiler/ir/serialization.common/src/KotlinIr.proto package org.jetbrains.kotlin.backend.common.serialization.proto; public interface IrErrorDeclarationOrBuilder extends // @@protoc_insertion_point(interface_extends:org.jetbrains.kotlin.backend.common.serialization.proto.IrErrorDeclaration) org.jetbrains.kotlin.protobuf.MessageLiteOrBuilder { /** * <code>required int64 coordinates = 1;</code> */ boolean hasCoordinates(); /** * <code>required int64 coordinates = 1;</code> */ long getCoordinates(); }
Java
3
Mu-L/kotlin
compiler/ir/serialization.common/src/org/jetbrains/kotlin/backend/common/serialization/proto/IrErrorDeclarationOrBuilder.java
[ "ECL-2.0", "Apache-2.0" ]
<?xml version="1.0" encoding="UTF-8"?> <!-- ******************************************************************* --> <!-- --> <!-- Copyright IBM Corp. 2010, 2014 --> <!-- --> <!-- Licensed under the Apache License, Version 2.0 (the "License"); --> <!-- you may not use this file except in compliance with the License. --> <!-- You may obtain a copy of the License at: --> <!-- --> <!-- http://www.apache.org/licenses/LICENSE-2.0 --> <!-- --> <!-- Unless required by applicable law or agreed to in writing, software --> <!-- distributed under the License is distributed on an "AS IS" BASIS, --> <!-- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or --> <!-- implied. See the License for the specific language governing --> <!-- permissions and limitations under the License. --> <!-- --> <!-- ******************************************************************* --> <!-- DO NOT EDIT. THIS FILE IS GENERATED. --> <faces-config> <faces-config-extension> <namespace-uri>http://www.ibm.com/xsp/coreex</namespace-uri> <default-prefix>xe</default-prefix> </faces-config-extension> <group> <group-type>com.ibm.xsp.extlib.group.databaseNameProp</group-type> <property> <description>%property.databaseName.descr%</description> <display-name>%property.databaseName.name%</display-name> <property-name>databaseName</property-name> <property-class>java.lang.String</property-class> <property-extension/> </property> <group-extension> <designer-extension> <tags> group-in-complex </tags> </designer-extension> </group-extension> </group> <group> <group-type>com.ibm.xsp.extlib.group.viewNameProp</group-type> <property> <description>%property.viewName.group.viewNameProp.descr%</description> <display-name>%property.viewName.group.viewNameProp.name%</display-name> <property-name>viewName</property-name> <property-class>java.lang.String</property-class> <property-extension> <required>true</required> <designer-extension> <editor>com.ibm.xsp.extlib.designer.tooling.editor.ViewNameEditor</editor> </designer-extension> </property-extension> </property> <group-extension> <designer-extension> <tags> group-in-complex </tags> </designer-extension> </group-extension> </group> <group> <group-type>com.ibm.xsp.extlib.group.viewFolderNameProp</group-type> <property> <description>%property.viewName.group.viewFolderNameProp.descr%</description> <display-name>%property.viewName.group.viewFolderNameProp.name%</display-name> <property-name>viewName</property-name> <property-class>java.lang.String</property-class> <property-extension> <required>true</required> <designer-extension> <editor>com.ibm.xsp.extlib.designer.tooling.editor.ViewAndFolderNameEditor</editor> </designer-extension> </property-extension> </property> <group-extension> <designer-extension> <tags> group-in-complex </tags> </designer-extension> </group-extension> </group> <group> <group-type>com.ibm.xsp.extlib.group.aria_role</group-type> <property> <description>%/com.ibm.xsp.group.aria.role/role/descr%</description> <display-name>%/com.ibm.xsp.group.aria.role/role/name%</display-name> <property-name>role</property-name> <property-class>java.lang.String</property-class> <property-extension> <designer-extension> <category>accessibility</category> </designer-extension> </property-extension> </property> <group-extension> <designer-extension> <tags> group-in-control </tags> </designer-extension> </group-extension> </group> <group> <group-type>com.ibm.xsp.extlib.group.aria.role.deprecated</group-type> <property> <description>%property.role.group.ariaRole.deprecated.descr%</description> <display-name>%property.role.group.ariaRole.deprecated.name%</display-name> <property-name>role</property-name> <property-class>java.lang.String</property-class> <property-extension> <designer-extension> <category>accessibility</category> <is-deprecated>true</is-deprecated> </designer-extension> </property-extension> </property> <group-extension> <designer-extension> <tags> group-in-control </tags> </designer-extension> </group-extension> </group> <group> <group-type>com.ibm.xsp.extlib.group.aria_label</group-type> <property> <description>%property.ariaLabel.descr%</description> <display-name>%property.ariaLabel.name%</display-name> <property-name>ariaLabel</property-name> <property-class>java.lang.String</property-class> <property-extension> <since>9.0.0.v00_03</since> <localizable>true</localizable> <designer-extension> <category>accessibility</category> </designer-extension> </property-extension> </property> <group-extension> <designer-extension> <tags> group-in-control </tags> </designer-extension> </group-extension> </group> <group> <group-type>com.ibm.xsp.extlib.group.FacesDojoComponent.prop.dojoType</group-type> <property> <description>%/com.ibm.xsp.group.FacesDojoComponent.prop.dojoType/dojoType/descr%</description> <display-name>%/com.ibm.xsp.group.FacesDojoComponent.prop.dojoType/dojoType/name%</display-name> <property-name>dojoType</property-name> <property-class>java.lang.String</property-class> <property-extension> <pass-through>true</pass-through> <designer-extension> <category>dojo</category> </designer-extension> </property-extension> </property> <group-extension> <designer-extension> <tags> group-in-control </tags> </designer-extension> </group-extension> </group> <group> <group-type>com.ibm.xsp.extlib.group.FacesDojoComponent.prop.dojoAttributes</group-type> <property> <description>%/com.ibm.xsp.group.FacesDojoComponent.prop.dojoAttributes/dojoAttributes/descr%</description> <display-name>%/com.ibm.xsp.group.FacesDojoComponent.prop.dojoAttributes/dojoAttributes/name%</display-name> <property-name>dojoAttributes</property-name> <property-class>java.util.ArrayList</property-class> <property-extension> <collection-property>true</collection-property> <property-item-class>com.ibm.xsp.dojo.DojoAttribute</property-item-class> <property-add-method>addDojoAttribute</property-add-method> <allow-run-time-binding>false</allow-run-time-binding> <designer-extension> <category>dojo</category> </designer-extension> </property-extension> </property> <group-extension> <designer-extension> <tags> group-in-control </tags> </designer-extension> </group-extension> </group> <group> <group-type>com.ibm.xsp.extlib.group.FacesDojoComponent</group-type> <group-type-ref>com.ibm.xsp.extlib.group.FacesDojoComponent.prop.dojoType</group-type-ref> <group-type-ref>com.ibm.xsp.extlib.group.FacesDojoComponent.prop.dojoAttributes</group-type-ref> <group-extension> <designer-extension> <tags> group-in-control </tags> </designer-extension> </group-extension> </group> <group> <group-type>com.ibm.xsp.extlib.group.core_complex.prop.style</group-type> <property> <description>%/com.ibm.xsp.group.core.prop.style/style/descr%</description> <display-name>%/com.ibm.xsp.group.core.prop.style/style/name%</display-name> <property-name>style</property-name> <property-class>java.lang.String</property-class> <property-extension> <javadoc-description> <p>XPages Styling Category - style </p> </javadoc-description> <pass-through>true</pass-through> <designer-extension> <editor>com.ibm.workplace.designer.property.editors.StylesEditor</editor> </designer-extension> </property-extension> </property> <group-extension> <designer-extension> <tags> group-in-complex </tags> </designer-extension> </group-extension> </group> <group> <group-type>com.ibm.xsp.extlib.group.core_complex.prop.styleClass</group-type> <property> <description>%/com.ibm.xsp.group.core.prop.styleClass/styleClass/descr%</description> <display-name>%/com.ibm.xsp.group.core.prop.styleClass/styleClass/name%</display-name> <property-name>styleClass</property-name> <property-class>java.lang.String</property-class> <property-extension> <pass-through>false</pass-through> <designer-extension> <editor>com.ibm.workplace.designer.property.editors.StyleClassEditor</editor> </designer-extension> </property-extension> </property> <group-extension> <designer-extension> <tags> group-in-complex </tags> </designer-extension> </group-extension> </group> <group> <group-type>com.ibm.xsp.extlib.group.core_complex.prop.title</group-type> <property> <description>%/com.ibm.xsp.group.core.prop.title/title/descr%</description> <display-name>%/com.ibm.xsp.group.core.prop.title/title/name%</display-name> <property-name>title</property-name> <property-class>java.lang.String</property-class> <property-extension> <pass-through>true</pass-through> <localizable>true</localizable> <designer-extension> <tags>is-accessibility-title</tags> </designer-extension> </property-extension> </property> <group-extension> <designer-extension> <tags> group-in-complex </tags> </designer-extension> </group-extension> </group> <group> <group-type>com.ibm.xsp.extlib.group.ValueHolder_complex.prop.value</group-type> <property> <description>%/javax.faces.component.group.ValueHolder.prop.value/value/descr%</description> <display-name>%/javax.faces.component.group.ValueHolder.prop.value/value/name%</display-name> <property-name>value</property-name> <property-class>java.lang.Object</property-class> <property-extension> <designer-extension> <editor>com.ibm.property.editors.DataEditor</editor> </designer-extension> </property-extension> </property> <group-extension> <designer-extension> <tags> group-in-complex </tags> </designer-extension> </group-extension> </group> <group> <group-type>com.ibm.xsp.extlib.group.ValueHolder_complex.prop.converter</group-type> <property> <description>%/javax.faces.component.group.ValueHolder.prop.converter/converter/descr%</description> <display-name>%/javax.faces.component.group.ValueHolder.prop.converter/converter/name%</display-name> <property-name>converter</property-name> <property-class>javax.faces.convert.Converter</property-class> <property-extension> <allow-run-time-binding>false</allow-run-time-binding> <designer-extension/> </property-extension> </property> <group-extension> <designer-extension> <tags> group-in-complex </tags> </designer-extension> </group-extension> </group> <group> <group-type>com.ibm.xsp.extlib.group.FacesAttrsObject.component.since900v_00_03</group-type> <property> <description>%/com.ibm.xsp.group.FacesAttrsObject.component/attrs/descr%</description> <display-name>%/com.ibm.xsp.group.FacesAttrsObject.component/attrs/name%</display-name> <property-name>attrs</property-name> <property-class>java.util.List</property-class> <property-extension> <collection-property>true</collection-property> <property-item-class>com.ibm.xsp.complex.Attr</property-item-class> <property-add-method>addAttr</property-add-method> <allow-run-time-binding>false</allow-run-time-binding> <allow-load-time-binding>false</allow-load-time-binding> <since>9.0.0.v00_03</since> <designer-extension> <category>basics</category> </designer-extension> </property-extension> </property> <group-extension> <designer-extension> <tags>group-in-control</tags> </designer-extension> </group-extension> </group> </faces-config>
XPages
2
jesse-gallagher/XPagesExtensionLibrary
extlib/lwp/product/runtime/eclipse/plugins/com.ibm.xsp.extlib.controls/src/com/ibm/xsp/extlib/config/extlib-common.xsp-config
[ "Apache-2.0" ]
import "logoDialect" as LD import "gUnit" as gU import "math" as mt def logoTest = object { class forMethod(m){ inherits gU.testCaseNamed(m) method accessorTest{ assert(LD.location) shouldBe(250@250) assert(LD.heading) shouldBe(0) } method hasLocationandHeading{ LD.moveForward(0) assert(LD.location) shouldBe(250@250) assert(LD.heading) shouldBe (0) deny(LD.notInitialized==LD.heading) } method testGrapicsWork{ LD.show deny(LD.notInitialized==LD.GA) } method testMoveForward{ assert(LD.location) shouldBe(250@250) LD.heading:=(270) LD.moveForward(10) assert(LD.location) shouldBe(250@240) } method testDrawLine{ assert(LD.location) shouldBe(250@240) LD.nib:=true LD.moveForward(10) assert(LD.location) shouldBe(250@230) assert(LD.nib) shouldBe(true) } method testManualNib{ LD.nib:=(true) assert(LD.nib) shouldBe(true) LD.nib:=(false) assert(LD.nib) shouldBe(false) } method testToRadians{ assert(LD.toRadians(45))shouldBe(π/4) assert(LD.toRadians(360+45))shouldBe(π/4) } method testToDegrees{ assert(LD.toDegrees(π/4))shouldBe(45) assert(LD.toDegrees(2*π))shouldBe(0) } method testWhileSquare{ def currentLocation=LD.location var i := 0 LD.nib:=(true) while{(i < 4)}do{ LD.right(90) LD.moveForward(40) i := i+1 } assert(LD.location)shouldBe(currentLocation) } } } gU.testSuite.fromTestMethodsIn(logoTest).runAndPrintResults
Grace
4
smola/language-dataset
data/github.com/ishoshani/GraceLogo/03ac60d730407f58cbdcf6ca9c1191a22843f463/logoTests.grace
[ "MIT" ]
KIDS Distribution saved on Mar 13, 2021@10:49:05 Fixes to hl7 message building to preserve not formatting **KIDS**:SAMI*18.0*8^ **INSTALL NAME** SAMI*18.0*8 "BLD",11505,0) SAMI*18.0*8^SAMI^0^3210313^y "BLD",11505,1,0) ^^1^1^3210203^ "BLD",11505,1,1,0) Corrections to the Intake notes generation "BLD",11505,4,0) ^9.64PA^^ "BLD",11505,6.3) 4 "BLD",11505,"KRN",0) ^9.67PA^1.5^25 "BLD",11505,"KRN",.4,0) .4 "BLD",11505,"KRN",.401,0) .401 "BLD",11505,"KRN",.402,0) .402 "BLD",11505,"KRN",.403,0) .403 "BLD",11505,"KRN",.5,0) .5 "BLD",11505,"KRN",.84,0) .84 "BLD",11505,"KRN",1.5,0) 1.5 "BLD",11505,"KRN",1.6,0) 1.6 "BLD",11505,"KRN",1.61,0) 1.61 "BLD",11505,"KRN",1.62,0) 1.62 "BLD",11505,"KRN",3.6,0) 3.6 "BLD",11505,"KRN",3.8,0) 3.8 "BLD",11505,"KRN",9.2,0) 9.2 "BLD",11505,"KRN",9.8,0) 9.8 "BLD",11505,"KRN",9.8,"NM",0) ^9.68A^3^3 "BLD",11505,"KRN",9.8,"NM",1,0) SAMINOT1^^0^B305417363 "BLD",11505,"KRN",9.8,"NM",2,0) SAMIJS1^^0^B2451 "BLD",11505,"KRN",9.8,"NM",3,0) SAMIORU^^0^B117254881 "BLD",11505,"KRN",9.8,"NM","B","SAMIJS1",2) "BLD",11505,"KRN",9.8,"NM","B","SAMINOT1",1) "BLD",11505,"KRN",9.8,"NM","B","SAMIORU",3) "BLD",11505,"KRN",19,0) 19 "BLD",11505,"KRN",19.1,0) 19.1 "BLD",11505,"KRN",101,0) 101 "BLD",11505,"KRN",409.61,0) 409.61 "BLD",11505,"KRN",771,0) 771 "BLD",11505,"KRN",779.2,0) 779.2 "BLD",11505,"KRN",870,0) 870 "BLD",11505,"KRN",8989.51,0) 8989.51 "BLD",11505,"KRN",8989.52,0) 8989.52 "BLD",11505,"KRN",8993,0) 8993 "BLD",11505,"KRN",8994,0) 8994 "BLD",11505,"KRN","B",.4,.4) "BLD",11505,"KRN","B",.401,.401) "BLD",11505,"KRN","B",.402,.402) "BLD",11505,"KRN","B",.403,.403) "BLD",11505,"KRN","B",.5,.5) "BLD",11505,"KRN","B",.84,.84) "BLD",11505,"KRN","B",1.5,1.5) "BLD",11505,"KRN","B",1.6,1.6) "BLD",11505,"KRN","B",1.61,1.61) "BLD",11505,"KRN","B",1.62,1.62) "BLD",11505,"KRN","B",3.6,3.6) "BLD",11505,"KRN","B",3.8,3.8) "BLD",11505,"KRN","B",9.2,9.2) "BLD",11505,"KRN","B",9.8,9.8) "BLD",11505,"KRN","B",19,19) "BLD",11505,"KRN","B",19.1,19.1) "BLD",11505,"KRN","B",101,101) "BLD",11505,"KRN","B",409.61,409.61) "BLD",11505,"KRN","B",771,771) "BLD",11505,"KRN","B",779.2,779.2) "BLD",11505,"KRN","B",870,870) "BLD",11505,"KRN","B",8989.51,8989.51) "BLD",11505,"KRN","B",8989.52,8989.52) "BLD",11505,"KRN","B",8993,8993) "BLD",11505,"KRN","B",8994,8994) "MBREQ") 0 "PKG",230,-1) 1^1 "PKG",230,0) SAMI^SAMI^SCREENING APPLICATIONS MANAGEMENT - IELCAP "PKG",230,22,0) ^9.49I^1^1 "PKG",230,22,1,0) 18.0^3191203 "PKG",230,22,1,"PAH",1,0) 8^3210313 "PKG",230,22,1,"PAH",1,1,0) ^^1^1^3210313 "PKG",230,22,1,"PAH",1,1,1,0) Corrections to the Intake notes generation "QUES","XPF1",0) Y "QUES","XPF1","??") ^D REP^XPDH "QUES","XPF1","A") Shall I write over your |FLAG| File "QUES","XPF1","B") YES "QUES","XPF1","M") D XPF1^XPDIQ "QUES","XPF2",0) Y "QUES","XPF2","??") ^D DTA^XPDH "QUES","XPF2","A") Want my data |FLAG| yours "QUES","XPF2","B") YES "QUES","XPF2","M") D XPF2^XPDIQ "QUES","XPI1",0) YO "QUES","XPI1","??") ^D INHIBIT^XPDH "QUES","XPI1","A") Want KIDS to INHIBIT LOGONs during the install "QUES","XPI1","B") NO "QUES","XPI1","M") D XPI1^XPDIQ "QUES","XPM1",0) PO^VA(200,:EM "QUES","XPM1","??") ^D MG^XPDH "QUES","XPM1","A") Enter the Coordinator for Mail Group '|FLAG|' "QUES","XPM1","B") "QUES","XPM1","M") D XPM1^XPDIQ "QUES","XPO1",0) Y "QUES","XPO1","??") ^D MENU^XPDH "QUES","XPO1","A") Want KIDS to Rebuild Menu Trees Upon Completion of Install "QUES","XPO1","B") NO "QUES","XPO1","M") D XPO1^XPDIQ "QUES","XPZ1",0) Y "QUES","XPZ1","??") ^D OPT^XPDH "QUES","XPZ1","A") Want to DISABLE Scheduled Options, Menu Options, and Protocols "QUES","XPZ1","B") NO "QUES","XPZ1","M") D XPZ1^XPDIQ "QUES","XPZ2",0) Y "QUES","XPZ2","??") ^D RTN^XPDH "QUES","XPZ2","A") Want to MOVE routines to other CPUs "QUES","XPZ2","B") NO "QUES","XPZ2","M") D XPZ2^XPDIQ "RTN") 3 "RTN","SAMIJS1") 0^2^B2451 "RTN","SAMIJS1",1,0) SAMIJS1 ;ven/gpl - json archive routine ; 1/22/19 1:24pm "RTN","SAMIJS1",2,0) ;;18.0;SAMI;;;Build 4 "RTN","SAMIJS1",3,0) ; "RTN","SAMIJS1",4,0) ;@license: see routine SAMIUL "RTN","SAMIJS1",5,0) ; "RTN","SAMIJS1",6,0) ; "RTN","SAMIJS1",7,0) EN "RTN","SAMIJS1",8,0) n site,dfn,pat "RTN","SAMIJS1",9,0) s site=$$PICSITE^SAMIMOV() "RTN","SAMIJS1",10,0) q:site="^" "RTN","SAMIJS1",11,0) d PICPAT^SAMIMOV(.pat,site) "RTN","SAMIJS1",12,0) w " ",$g(pat("name")) "RTN","SAMIJS1",13,0) s dfn=$g(pat("dfn")) "RTN","SAMIJS1",14,0) w !,"dfn=",dfn "RTN","SAMIJS1",15,0) d mkarch(dfn) "RTN","SAMIJS1",16,0) d outarch(dfn) "RTN","SAMIJS1",17,0) q "RTN","SAMIJS1",18,0) ; "RTN","SAMIJS1",19,0) dfn2lien(dfn) ; extrinsic return the lookup ien of patient dfn "RTN","SAMIJS1",20,0) n lroot,lien "RTN","SAMIJS1",21,0) s lroot=$$setroot^%wd("patient-lookup") "RTN","SAMIJS1",22,0) s lien=$o(@lroot@("dfn",dfn,"")) "RTN","SAMIJS1",23,0) q lien "RTN","SAMIJS1",24,0) ; "RTN","SAMIJS1",25,0) dfn2pien(dfn) ; extrinsic return the patient graph ien of patient dfn "RTN","SAMIJS1",26,0) n proot,pien "RTN","SAMIJS1",27,0) s proot=$$setroot^%wd("vapals-patients") "RTN","SAMIJS1",28,0) s pien=$o(@proot@("dfn",dfn,"")) "RTN","SAMIJS1",29,0) q pien "RTN","SAMIJS1",30,0) ; "RTN","SAMIJS1",31,0) getaien(dfn) ; returns the ien for patient dfn in vapals-archive "RTN","SAMIJS1",32,0) ; is laygo "RTN","SAMIJS1",33,0) n aroot s aroot=$$setroot^%wd("vapals-archive") "RTN","SAMIJS1",34,0) n aien "RTN","SAMIJS1",35,0) s aien=$o(@aroot@(" "),-1)+1 "RTN","SAMIJS1",36,0) q aien "RTN","SAMIJS1",37,0) ; "RTN","SAMIJS1",38,0) mkarch(dfn) ; create an archive record for patient dfn "RTN","SAMIJS1",39,0) n lroot,proot,aroot "RTN","SAMIJS1",40,0) n lien,pien,aien "RTN","SAMIJS1",41,0) s lroot=$$setroot^%wd("patient-lookup") "RTN","SAMIJS1",42,0) w !,"patient-lookup: ",lroot "RTN","SAMIJS1",43,0) s proot=$$setroot^%wd("vapals-patients") "RTN","SAMIJS1",44,0) w !,"vapals-patients: ",proot "RTN","SAMIJS1",45,0) s aroot=$$setroot^%wd("vapals-archive") "RTN","SAMIJS1",46,0) w !,"vapals-archive: ",aroot "RTN","SAMIJS1",47,0) ; "RTN","SAMIJS1",48,0) s lien=$$dfn2lien(dfn) "RTN","SAMIJS1",49,0) w !,"lien=",lien "RTN","SAMIJS1",50,0) s pien=$$dfn2pien(dfn) "RTN","SAMIJS1",51,0) w !,"pien=",pien "RTN","SAMIJS1",52,0) ; "RTN","SAMIJS1",53,0) i lien="" d q ; "RTN","SAMIJS1",54,0) . w !,"error, lookup ien not found for patient dfn=",dfn "RTN","SAMIJS1",55,0) ; "RTN","SAMIJS1",56,0) s aien=$o(@aroot@("dfn",dfn,"")) "RTN","SAMIJS1",57,0) i aien'="" d ; "RTN","SAMIJS1",58,0) . k @aroot@(aien) "RTN","SAMIJS1",59,0) i aien="" s aien=$$getaien(dfn) "RTN","SAMIJS1",60,0) w !,"aien=",aien "RTN","SAMIJS1",61,0) ; "RTN","SAMIJS1",62,0) m @aroot@(aien,"patient","lookup")=@lroot@(lien) "RTN","SAMIJS1",63,0) s @aroot@("dfn",dfn,aien)="" "RTN","SAMIJS1",64,0) ; "RTN","SAMIJS1",65,0) n sid s sid="" "RTN","SAMIJS1",66,0) d:pien'="" "RTN","SAMIJS1",67,0) . m @aroot@(aien,"patient","demos")=@proot@(pien) "RTN","SAMIJS1",68,0) . s sid=$g(@proot@(pien,"studyid")) "RTN","SAMIJS1",69,0) . i sid="" s sid=$g(@proot@(pien,"sisid")) "RTN","SAMIJS1",70,0) . q:sid="" "RTN","SAMIJS1",71,0) . m @aroot@(aien,"patient","graph")=@proot@("graph",sid) "RTN","SAMIJS1",72,0) ; "RTN","SAMIJS1",73,0) q "RTN","SAMIJS1",74,0) ; "RTN","SAMIJS1",75,0) outarch(dfn) ; write out an archive record to an external file "RTN","SAMIJS1",76,0) n aroot s aroot=$$setroot^%wd("vapals-archive") "RTN","SAMIJS1",77,0) n aien s aien=$o(@aroot@("dfn",dfn,""),-1) "RTN","SAMIJS1",78,0) q:aien="" "RTN","SAMIJS1",79,0) ; "RTN","SAMIJS1",80,0) n tmpout s tmpout=$na(^TMP("VAPALS-ARCH",$J)) "RTN","SAMIJS1",81,0) k @tmpout "RTN","SAMIJS1",82,0) n arec s arec=$na(@aroot@(aien)) "RTN","SAMIJS1",83,0) d encode^%webjson(arec,tmpout) "RTN","SAMIJS1",84,0) ; "RTN","SAMIJS1",85,0) n adir,fname "RTN","SAMIJS1",86,0) s adir="/home/osehra/www/archive" "RTN","SAMIJS1",87,0) s fname="vapals-"_dfn_"-"_DT_".json" "RTN","SAMIJS1",88,0) i $$GTF^%ZISH($NA(@tmpout@(1)),3,adir,fname) d ; "RTN","SAMIJS1",89,0) . w !,"file "_fname_" written to "_adir "RTN","SAMIJS1",90,0) ; "RTN","SAMIJS1",91,0) q "RTN","SAMIJS1",92,0) ; "RTN","SAMIJS1",93,0) DETAIL() ; displays the archive record for a patient "RTN","SAMIJS1",94,0) ; "RTN","SAMIJS1",95,0) n site,dfn,pat "RTN","SAMIJS1",96,0) s site=$$PICSITE^SAMIMOV() "RTN","SAMIJS1",97,0) q:site="^" "RTN","SAMIJS1",98,0) d PICPAT^SAMIMOV(.pat,site) "RTN","SAMIJS1",99,0) w " ",$g(pat("name")) "RTN","SAMIJS1",100,0) s dfn=$g(pat("dfn")) "RTN","SAMIJS1",101,0) w !,"dfn=",dfn "RTN","SAMIJS1",102,0) q:dfn="" "RTN","SAMIJS1",103,0) n aroot ; archive root "RTN","SAMIJS1",104,0) s aroot=$$setroot^%wd("vapals-archive") "RTN","SAMIJS1",105,0) d mkarch(dfn) "RTN","SAMIJS1",106,0) n aien "RTN","SAMIJS1",107,0) s aien=$o(@aroot@("dfn",dfn,"")) "RTN","SAMIJS1",108,0) i aien="" d q ; "RTN","SAMIJS1",109,0) . w !,"patient not found in archive" "RTN","SAMIJS1",110,0) n groot "RTN","SAMIJS1",111,0) s groot=$na(@aroot@(aien)) "RTN","SAMIJS1",112,0) n OUT s OUT=$na(^TMP("SAMIOUT",$J)) "RTN","SAMIJS1",113,0) k @OUT "RTN","SAMIJS1",114,0) D GTREE^SYNVPR(groot,9,,,OUT) "RTN","SAMIJS1",115,0) D BROWSE^DDBR(OUT,"N","Patient") "RTN","SAMIJS1",116,0) k @OUT "RTN","SAMIJS1",117,0) q "RTN","SAMIJS1",118,0) ; "RTN","SAMINOT1") 0^1^B305417363 "RTN","SAMINOT1",1,0) SAMINOT1 ;ven/gpl - ielcap: forms ; 5/7/19 4:48pm "RTN","SAMINOT1",2,0) ;;18.0;SAMI;;;Build 4 "RTN","SAMINOT1",3,0) ; "RTN","SAMINOT1",4,0) ;@license: see routine SAMIUL "RTN","SAMINOT1",5,0) ; "RTN","SAMINOT1",6,0) quit ; no entry from top "RTN","SAMINOT1",7,0) ; "RTN","SAMINOT1",8,0) EXISTCE(SID,FORM) ; extrinsic returns "true" or "false" "RTN","SAMINOT1",9,0) ; if a Chart Eligibility Note exists "RTN","SAMINOT1",10,0) n root s root=$$setroot^%wd("vapals-patients") "RTN","SAMINOT1",11,0) n gvals s gvals=$na(@root@("graph",SID,FORM)) "RTN","SAMINOT1",12,0) ;i $g(@root@("graph",SID,FORM,"sicechrt"))="y" q "true" "RTN","SAMINOT1",13,0) i $g(@gvals@("chart-eligibility-complete"))="true" q "true" "RTN","SAMINOT1",14,0) q "false" "RTN","SAMINOT1",15,0) ; "RTN","SAMINOT1",16,0) EXISTPRE(SID,FORM) ; extrinsic returns "true" or "false" "RTN","SAMINOT1",17,0) ; if a Pre-enrollment Note exists "RTN","SAMINOT1",18,0) n root s root=$$setroot^%wd("vapals-patients") "RTN","SAMINOT1",19,0) n gvals s gvals=$na(@root@("graph",SID,FORM)) "RTN","SAMINOT1",20,0) ;i $g(@root@("graph",SID,FORM,"sipedisc"))="y" q "true" "RTN","SAMINOT1",21,0) i $g(@gvals@("pre-note-complete"))="true" i $g(@gvals@("siperslt"))="y" q "true" "RTN","SAMINOT1",22,0) q "false" "RTN","SAMINOT1",23,0) ; "RTN","SAMINOT1",24,0) EXISTINT(SID,FORM) ; extrinsic returns "true" or "false" "RTN","SAMINOT1",25,0) ; if an Intake Note exists "RTN","SAMINOT1",26,0) n root s root=$$setroot^%wd("vapals-patients") "RTN","SAMINOT1",27,0) i $g(@root@("graph",SID,FORM,"sistatus"))="y" q "true" "RTN","SAMINOT1",28,0) q "false" "RTN","SAMINOT1",29,0) ; "RTN","SAMINOT1",30,0) WSNOTE(return,filter) ; web service which returns a text note "RTN","SAMINOT1",31,0) ; "RTN","SAMINOT1",32,0) n debug s debug=0 "RTN","SAMINOT1",33,0) i $g(filter("debug"))=1 s debug=1 "RTN","SAMINOT1",34,0) ; "RTN","SAMINOT1",35,0) k return "RTN","SAMINOT1",36,0) s HTTPRSP("mime")="text/html" "RTN","SAMINOT1",37,0) ; "RTN","SAMINOT1",38,0) n si "RTN","SAMINOT1",39,0) s si=$g(filter("studyid")) "RTN","SAMINOT1",40,0) i si="" d ; "RTN","SAMINOT1",41,0) . s si="XXX00333" "RTN","SAMINOT1",42,0) q:si="" "RTN","SAMINOT1",43,0) ; "RTN","SAMINOT1",44,0) n samikey "RTN","SAMINOT1",45,0) s samikey=$g(filter("form")) "RTN","SAMINOT1",46,0) n root s root=$$setroot^%wd("vapals-patients") "RTN","SAMINOT1",47,0) i samikey="" d ; "RTN","SAMINOT1",48,0) . s samikey=$o(@root@("graph",si,"siform")) "RTN","SAMINOT1",49,0) . ;w !,samikey "RTN","SAMINOT1",50,0) . ;b "RTN","SAMINOT1",51,0) ; "RTN","SAMINOT1",52,0) n vals "RTN","SAMINOT1",53,0) m vals=@root@("graph",si,samikey) "RTN","SAMINOT1",54,0) ; "RTN","SAMINOT1",55,0) n note,nien,ntype "RTN","SAMINOT1",56,0) s ntype="" "RTN","SAMINOT1",57,0) s note="" "RTN","SAMINOT1",58,0) s nien=$g(filter("nien")) "RTN","SAMINOT1",59,0) i nien="" d "RTN","SAMINOT1",60,0) . s:$g(vals("samistatus"))="complete" ntype="intake" "RTN","SAMINOT1",61,0) . s:$g(vals("samistatus"))="chart-eligibility" ntype="eligibility" "RTN","SAMINOT1",62,0) . s:$g(vals("samistatus"))="pre-enrollment-discussion" ntype="pre-note" "RTN","SAMINOT1",63,0) . q:ntype="" "RTN","SAMINOT1",64,0) . ;d nien=$$NTTYPE add code to pull the latest note by type "RTN","SAMINOT1",65,0) q:nien="" "RTN","SAMINOT1",66,0) n notebase "RTN","SAMINOT1",67,0) s notebase=$$NTLOCN(si,samikey,nien) ; global location for the note "RTN","SAMINOT1",68,0) s note=$na(@notebase@("text")) "RTN","SAMINOT1",69,0) i '$d(@note) q "RTN","SAMINOT1",70,0) ; "RTN","SAMINOT1",71,0) new temp,tout "RTN","SAMINOT1",72,0) do GETTMPL^SAMICASE("temp","vapals:note") "RTN","SAMINOT1",73,0) quit:'$data(temp) "RTN","SAMINOT1",74,0) ; "RTN","SAMINOT1",75,0) n cnt s cnt=0 "RTN","SAMINOT1",76,0) n zi s zi="" "RTN","SAMINOT1",77,0) ; "RTN","SAMINOT1",78,0) f s zi=$o(temp(zi)) q:zi="" d ; "RTN","SAMINOT1",79,0) . ; "RTN","SAMINOT1",80,0) . n line s line=temp(zi) "RTN","SAMINOT1",81,0) . D LOAD^SAMIFORM(.line,samikey,si,.filter,.vals) "RTN","SAMINOT1",82,0) . s temp(zi)=line "RTN","SAMINOT1",83,0) . ; "RTN","SAMINOT1",84,0) . s cnt=cnt+1 "RTN","SAMINOT1",85,0) . s tout(cnt)=temp(zi) "RTN","SAMINOT1",86,0) . ; "RTN","SAMINOT1",87,0) . i temp(zi)["report-text" d ; "RTN","SAMINOT1",88,0) . . i temp(zi)["#" q ; "RTN","SAMINOT1",89,0) . . n zj s zj="" "RTN","SAMINOT1",90,0) . . f s zj=$o(@note@(zj)) q:zj="" d ; "RTN","SAMINOT1",91,0) . . . s cnt=cnt+1 "RTN","SAMINOT1",92,0) . . . ;s tout(cnt)=@note@(zj)_"<br>" "RTN","SAMINOT1",93,0) . . . s tout(cnt)=@note@(zj)_$char(13,10) "RTN","SAMINOT1",94,0) m return=tout "RTN","SAMINOT1",95,0) q "RTN","SAMINOT1",96,0) ; "RTN","SAMINOT1",97,0) NOTE(filter) ; extrnisic which creates a note "RTN","SAMINOT1",98,0) ; returns 1 if successful, 0 if not "RTN","SAMINOT1",99,0) ; "RTN","SAMINOT1",100,0) ; "RTN","SAMINOT1",101,0) ; "RTN","SAMINOT1",102,0) ; set up patient values "RTN","SAMINOT1",103,0) ; "RTN","SAMINOT1",104,0) n vals "RTN","SAMINOT1",105,0) ; "RTN","SAMINOT1",106,0) n si "RTN","SAMINOT1",107,0) s si=$g(filter("studyid")) "RTN","SAMINOT1",108,0) i si="" d ; "RTN","SAMINOT1",109,0) . s si="XXX00333" "RTN","SAMINOT1",110,0) q:si="" "RTN","SAMINOT1",111,0) ; "RTN","SAMINOT1",112,0) n samikey "RTN","SAMINOT1",113,0) s samikey=$g(filter("form")) "RTN","SAMINOT1",114,0) n root s root=$$setroot^%wd("vapals-patients") "RTN","SAMINOT1",115,0) i samikey="" d ; "RTN","SAMINOT1",116,0) . s samikey=$o(@root@("graph",si,"siform")) "RTN","SAMINOT1",117,0) . ;w !,samikey "RTN","SAMINOT1",118,0) . ;b "RTN","SAMINOT1",119,0) ; "RTN","SAMINOT1",120,0) s vals=$na(@root@("graph",si,samikey)) "RTN","SAMINOT1",121,0) ; "RTN","SAMINOT1",122,0) i '$d(@vals) d q 0 ; "RTN","SAMINOT1",123,0) . ;w !,"error, patient values not found" "RTN","SAMINOT1",124,0) ;zwr @vals@(*) "RTN","SAMINOT1",125,0) ; "RTN","SAMINOT1",126,0) k ^SAMIUL("NOTE") "RTN","SAMINOT1",127,0) m ^SAMIUL("NOTE","vals")=@vals "RTN","SAMINOT1",128,0) m ^SAMIUL("NOTE","filter")=filter "RTN","SAMINOT1",129,0) ; "RTN","SAMINOT1",130,0) n didnote s didnote=0 "RTN","SAMINOT1",131,0) ; "RTN","SAMINOT1",132,0) i $g(@vals@("samistatus"))="chart-eligibility" d ; "RTN","SAMINOT1",133,0) . q:$g(@vals@("chart-eligibility-complete"))="true" "RTN","SAMINOT1",134,0) . d MKEL(si,samikey,vals,.filter) ; "RTN","SAMINOT1",135,0) . s didnote=1 "RTN","SAMINOT1",136,0) ; "RTN","SAMINOT1",137,0) i $g(@vals@("samistatus"))="pre-enrollment-discussion" d ; "RTN","SAMINOT1",138,0) . q:$g(@vals@("pre-note-complete"))="true" "RTN","SAMINOT1",139,0) . d MKPRE(si,samikey,vals,.filter) ; "RTN","SAMINOT1",140,0) . s didnote=1 "RTN","SAMINOT1",141,0) ; "RTN","SAMINOT1",142,0) i $g(@vals@("samistatus"))="complete" d ; "RTN","SAMINOT1",143,0) . q:$$HASINNT(vals) "RTN","SAMINOT1",144,0) . d MKIN(si,samikey,vals,.filter) ; "RTN","SAMINOT1",145,0) . s didnote=1 "RTN","SAMINOT1",146,0) ; "RTN","SAMINOT1",147,0) n nien s nien=0 "RTN","SAMINOT1",148,0) i didnote=1 s nien=$$NTIEN(si,samikey) "RTN","SAMINOT1",149,0) ; "RTN","SAMINOT1",150,0) q nien "RTN","SAMINOT1",151,0) ; "RTN","SAMINOT1",152,0) HASINNT(vals) ; extrinsic returns 1 if intake note is present "RTN","SAMINOT1",153,0) ; else returns 0 "RTN","SAMINOT1",154,0) n zzi,zzrtn s (zzi,zzrtn)=0 "RTN","SAMINOT1",155,0) q:'$d(@vals) "RTN","SAMINOT1",156,0) f s zzi=$o(@vals@("notes",zzi)) q:+zzi=0 d ; "RTN","SAMINOT1",157,0) . i $g(@vals@("notes",zzi,"name"))["Intake" s zzrtn=1 "RTN","SAMINOT1",158,0) q zzrtn "RTN","SAMINOT1",159,0) ; "RTN","SAMINOT1",160,0) MKEL(sid,form,vals,filter) ; "RTN","SAMINOT1",161,0) n cnt s cnt=0 "RTN","SAMINOT1",162,0) ;n dest s dest=$na(@vals@("eligibility-note")) "RTN","SAMINOT1",163,0) n dest s dest=$$MKNT(vals,"Eligibility Note","eligibility",.filter) "RTN","SAMINOT1",164,0) k @dest "RTN","SAMINOT1",165,0) d OUT("Lung Screening Program Chart Eligibility Note") "RTN","SAMINOT1",166,0) d OUT("") "RTN","SAMINOT1",167,0) d ELNOTE(vals,dest,cnt) "RTN","SAMINOT1",168,0) q "RTN","SAMINOT1",169,0) ; "RTN","SAMINOT1",170,0) MKPRE(sid,form,vals,filter) ; "RTN","SAMINOT1",171,0) n cnt s cnt=0 "RTN","SAMINOT1",172,0) ;n dest s dest=$na(@vals@("pre-note")) "RTN","SAMINOT1",173,0) n dest s dest=$$MKNT(vals,"Pre-enrollment Discussion Note","prenote",.filter) "RTN","SAMINOT1",174,0) k @dest "RTN","SAMINOT1",175,0) i $g(@vals@("chart-eligibility-complete"))'="true" d ; "RTN","SAMINOT1",176,0) . d OUT("Lung Screening Program Chart Eligibility and Pre-enrollment Discussion Note") "RTN","SAMINOT1",177,0) . d OUT("") "RTN","SAMINOT1",178,0) . d ELNOTE(vals,dest,cnt) "RTN","SAMINOT1",179,0) i $g(@vals@("chart-eligibility-complete"))="true" d ; "RTN","SAMINOT1",180,0) . d OUT("Lung Screening Program Pre-enrollment Discussion Note") "RTN","SAMINOT1",181,0) . d OUT("") "RTN","SAMINOT1",182,0) d PRENOTE(vals,dest,cnt) "RTN","SAMINOT1",183,0) q "RTN","SAMINOT1",184,0) ; "RTN","SAMINOT1",185,0) MKIN(sid,form,vals,filter) ; "RTN","SAMINOT1",186,0) n cnt s cnt=0 "RTN","SAMINOT1",187,0) ;n dest s dest=$na(@vals@("intake-note")) "RTN","SAMINOT1",188,0) n dest s dest=$$MKNT(vals,"Intake Note","intake",.filter) "RTN","SAMINOT1",189,0) k @dest "RTN","SAMINOT1",190,0) d OUT("Lung Screening Program Intake Note") "RTN","SAMINOT1",191,0) d OUT("") "RTN","SAMINOT1",192,0) i $g(@vals@("chart-eligibility-complete"))'="true" d ; "RTN","SAMINOT1",193,0) . d ELNOTE(vals,dest,cnt) "RTN","SAMINOT1",194,0) i $g(@vals@("pre-note-complete"))'="true" d ; "RTN","SAMINOT1",195,0) . d PRENOTE(vals,dest,cnt) "RTN","SAMINOT1",196,0) d INNOTE(vals,dest,cnt) "RTN","SAMINOT1",197,0) q "RTN","SAMINOT1",198,0) ; "RTN","SAMINOT1",199,0) MKNT(vals,title,ntype,filter) ; extrinsic makes a note date=now returns "RTN","SAMINOT1",200,0) ; global addr. filter must be passed by reference "RTN","SAMINOT1",201,0) n ntdt s ntdt=$$NTDTTM($$NOW^XLFDT) "RTN","SAMINOT1",202,0) n ntptr "RTN","SAMINOT1",203,0) s ntptr=$$MKNTLOC(vals,title,ntdt,$g(ntype),.filter) "RTN","SAMINOT1",204,0) q ntptr "RTN","SAMINOT1",205,0) ; "RTN","SAMINOT1",206,0) MKNTLOC(vals,title,ndate,ntype,filter) ; extrinsic returns the "RTN","SAMINOT1",207,0) ;location for the note "RTN","SAMINOT1",208,0) n nien "RTN","SAMINOT1",209,0) s nien=$o(@vals@("notes",""),-1)+1 "RTN","SAMINOT1",210,0) s filter("nien")=nien "RTN","SAMINOT1",211,0) n nloc s nloc=$na(@vals@("notes",nien)) "RTN","SAMINOT1",212,0) s @nloc@("name")=title_" "_$g(ndate) "RTN","SAMINOT1",213,0) s @nloc@("date")=$g(ndate) "RTN","SAMINOT1",214,0) s @nloc@("type")=$g(ntype) "RTN","SAMINOT1",215,0) q $na(@nloc@("text")) "RTN","SAMINOT1",216,0) ; "RTN","SAMINOT1",217,0) NTDTTM(ZFMDT) ; extrinsic returns the date and time in Note format "RTN","SAMINOT1",218,0) ; ZFMDT is the fileman date/time to translate "RTN","SAMINOT1",219,0) q $$FMTE^XLFDT(ZFMDT,"5") "RTN","SAMINOT1",220,0) ; "RTN","SAMINOT1",221,0) NTLOCN(sid,form,nien) ; extrinsic returns the location of the Nth note "RTN","SAMINOT1",222,0) n root s root=$$setroot^%wd("vapals-patients") "RTN","SAMINOT1",223,0) q $na(@root@("graph",sid,form,"notes",nien)) "RTN","SAMINOT1",224,0) ; "RTN","SAMINOT1",225,0) NTLAST(sid,form,ntype) ; extrinsic returns the location of the latest note "RTN","SAMINOT1",226,0) ; of the type ntype "RTN","SAMINOT1",227,0) q "RTN","SAMINOT1",228,0) ; "RTN","SAMINOT1",229,0) NTIEN(sid,form) ; extrinsic which returns the latest note for this form "RTN","SAMINOT1",230,0) n root s root=$$setroot^%wd("vapals-patients") "RTN","SAMINOT1",231,0) n rtn s rtn=$o(@root@("graph",sid,form,"notes"," "),-1) "RTN","SAMINOT1",232,0) q rtn "RTN","SAMINOT1",233,0) ; "RTN","SAMINOT1",234,0) NTLIST(nlist,sid,form) ; returns the note list in nlist, passed by ref "RTN","SAMINOT1",235,0) ; "RTN","SAMINOT1",236,0) n zn,root,gn "RTN","SAMINOT1",237,0) s root=$$setroot^%wd("vapals-patients") "RTN","SAMINOT1",238,0) s zn=0 "RTN","SAMINOT1",239,0) s gn=$na(@root@("graph",sid,form,"notes")) "RTN","SAMINOT1",240,0) q:'$d(@gn) "RTN","SAMINOT1",241,0) f s zn=$o(@gn@(zn)) q:+zn=0 d ; "RTN","SAMINOT1",242,0) . s @nlist@(zn,"name")=@gn@(zn,"name") "RTN","SAMINOT1",243,0) . s @nlist@(zn,"nien")=zn "RTN","SAMINOT1",244,0) ; "RTN","SAMINOT1",245,0) q "RTN","SAMINOT1",246,0) ; "RTN","SAMINOT1",247,0) TLST ; "RTN","SAMINOT1",248,0) S SID="XXX00677" "RTN","SAMINOT1",249,0) S FORM="siform-2019-04-23" "RTN","SAMINOT1",250,0) D NTLIST("G",SID,FORM) "RTN","SAMINOT1",251,0) ;ZWR G "RTN","SAMINOT1",252,0) Q "RTN","SAMINOT1",253,0) ; "RTN","SAMINOT1",254,0) ELNOTE(vals,dest,cnt) ; eligibility NOTE TEXT "RTN","SAMINOT1",255,0) D OUT("") "RTN","SAMINOT1",256,0) D OUT("Date of chart review: "_$$XVAL("sidc",vals)) "RTN","SAMINOT1",257,0) D GLOUT("The participant was identified as a potential lung screening candidate by: ") "RTN","SAMINOT1",258,0) D GLOUT($$XVAL("siceiden",vals),4) "RTN","SAMINOT1",259,0) if $$XVAL("siceiden",vals)="referral" d ; "RTN","SAMINOT1",260,0) . D OUT("Date of Referral: "_$$XVAL("sicerfdt",vals)) "RTN","SAMINOT1",261,0) . n spec s spec="" "RTN","SAMINOT1",262,0) . s:$$XVAL("sicerfpc",vals)="y" spec=spec_" Primary Care" "RTN","SAMINOT1",263,0) . s:$$XVAL("sicerfwh",vals)="y" spec=spec_" Women's Health" "RTN","SAMINOT1",264,0) . s:$$XVAL("sicerfge",vals)="y" spec=spec_" Geriatrics" "RTN","SAMINOT1",265,0) . s:$$XVAL("sicerfpu",vals)="y" spec=spec_" Pulmonology" "RTN","SAMINOT1",266,0) . s:$$XVAL("sicerfon",vals)="y" spec=spec_" Oncology" "RTN","SAMINOT1",267,0) . s:$$XVAL("sicerfsc",vals)="y" spec=spec_" Smoking Cessation" "RTN","SAMINOT1",268,0) . s:$$XVAL("sicerfot",vals)="y" spec=spec_" "_$$XVAL("sicerfoo",vals) "RTN","SAMINOT1",269,0) . D GLOUT("Specialty of referring provider: ") "RTN","SAMINOT1",270,0) . D GLOUT(spec,4) "RTN","SAMINOT1",271,0) n elig "RTN","SAMINOT1",272,0) s elig=$$XVAL("sicechrt",vals) "RTN","SAMINOT1",273,0) D OUT("The participant is eligible based on chart review: "_$s(elig="y":"Yes",1:"no")) "RTN","SAMINOT1",274,0) D OUT("") "RTN","SAMINOT1",275,0) s @vals@("chart-eligibility-complete")="true" "RTN","SAMINOT1",276,0) q "RTN","SAMINOT1",277,0) ; "RTN","SAMINOT1",278,0) PRENOTE(vals,dest,cnt) ; "RTN","SAMINOT1",279,0) ; "RTN","SAMINOT1",280,0) i $g(@vals@("sipedisc"))'="y" q ; no prelim discussion "RTN","SAMINOT1",281,0) D OUT("") "RTN","SAMINOT1",282,0) ;d OUT("A pre-enrollment discussion was held.") "RTN","SAMINOT1",283,0) ;[If Yes is selected then add the following 5 lines] "RTN","SAMINOT1",284,0) D OUT("The program attempted to reach the Veteran to discuss lung screening.") "RTN","SAMINOT1",285,0) D OUT("Date of pre-enrollment discussion: "_$$XVAL("sipedc",vals)) "RTN","SAMINOT1",286,0) n via s via="" "RTN","SAMINOT1",287,0) s:$$XVAL("sipecnip",vals)="1" via=via_" In person" "RTN","SAMINOT1",288,0) s:$$XVAL("sipecnte",vals)="1" via=via_" Telephone" "RTN","SAMINOT1",289,0) s:$$XVAL("sipecnth",vals)="1" via=via_" TeleHealth" "RTN","SAMINOT1",290,0) s:$$XVAL("sipecnml",vals)="1" via=via_" Mailed Letter" "RTN","SAMINOT1",291,0) s:$$XVAL("sipecnpp",vals)="1" via=via_" Message in patient portal" "RTN","SAMINOT1",292,0) s:$$XVAL("sipecnvd",vals)="1" via=via_" Video-on-Demand (VOD)" "RTN","SAMINOT1",293,0) s:$$XVAL("sipecnot",vals)="1" via=via_" "_$$XVAL("sipecnoo",vals) "RTN","SAMINOT1",294,0) ;D OUT("The lung screening program reached the potential candidate or was contacted via:"_via) "RTN","SAMINOT1",295,0) D GLOUT("The lung screening program reached the potential candidate or was contacted via:") "RTN","SAMINOT1",296,0) D GLOUT(via,4) "RTN","SAMINOT1",297,0) ;D OUT("The pre-enrollment discussion with the participant resulted in: "_$$SUBRSLT($$XVAL("siperslt",vals))) "RTN","SAMINOT1",298,0) D OUT("The pre-enrollment discussion with the participant resulted in: ") "RTN","SAMINOT1",299,0) D GLOUT($$SUBRSLT($$XVAL("siperslt",vals)),4) "RTN","SAMINOT1",300,0) D OUT("Comments: ") "RTN","SAMINOT1",301,0) D GLOUT($$XVAL("sipecmnt",vals),4) "RTN","SAMINOT1",302,0) ; "RTN","SAMINOT1",303,0) s @vals@("pre-note-complete")="true" "RTN","SAMINOT1",304,0) q "RTN","SAMINOT1",305,0) ; "RTN","SAMINOT1",306,0) SUBRSLT(XVAL) ; translation of discussion result "RTN","SAMINOT1",307,0) q:XVAL="y" "Participant is interested in discussing lung screening. The program will proceed with enrollment process." "RTN","SAMINOT1",308,0) q:XVAL="u" "Participant is unsure of lung screening. Ok to contact in the future." "RTN","SAMINOT1",309,0) q:XVAL="nn" "Participant is not interested in discussing lung screening at this time. Ok to contact in the future." "RTN","SAMINOT1",310,0) q:XVAL="nf" "Participant is not interested in discussing lung screening in the future." "RTN","SAMINOT1",311,0) q:XVAL="na" "Unable to reach participant at this time" "RTN","SAMINOT1",312,0) q "" "RTN","SAMINOT1",313,0) ; "RTN","SAMINOT1",314,0) INNOTE(vals,dest,cnt) ; "RTN","SAMINOT1",315,0) ; "RTN","SAMINOT1",316,0) ;Lung Screening Program Intake Note "RTN","SAMINOT1",317,0) ; "RTN","SAMINOT1",318,0) ;Date of intake discussion contact: [Date] "RTN","SAMINOT1",319,0) ;How did you learn about the Lung Screening Program?: [Selection] "RTN","SAMINOT1",320,0) ;Primary address verified: [Yes/No] "RTN","SAMINOT1",321,0) ;Rural status: [Urban/Rural/Unknown] "RTN","SAMINOT1",322,0) ;Preferred address and contact number: "RTN","SAMINOT1",323,0) ; [Address 1] "RTN","SAMINOT1",324,0) ; [Address 2] "RTN","SAMINOT1",325,0) ; [Address] "RTN","SAMINOT1",326,0) ; "RTN","SAMINOT1",327,0) ;Ever smoked?: [Ever Smoked Text] "RTN","SAMINOT1",328,0) ;Smoking Status: [Never Smoked/Past/Current/Willing to Quit] "RTN","SAMINOT1",329,0) ;CIGs per day: [Input Number] "RTN","SAMINOT1",330,0) ;PPD: [Computed Number] "RTN","SAMINOT1",331,0) ;# of years: [Input Number] "RTN","SAMINOT1",332,0) ;Pack Years: [Computed Number] "RTN","SAMINOT1",333,0) ; "RTN","SAMINOT1",334,0) ;[If a Quit Date is entered add the following line] "RTN","SAMINOT1",335,0) ;Quit smoking on: [Date] "RTN","SAMINOT1",336,0) ; "RTN","SAMINOT1",337,0) ;[If Smoking Cessation education text is entered add the following line] "RTN","SAMINOT1",338,0) ;Smoking cessation education provided: [Show Input Text] "RTN","SAMINOT1",339,0) ; "RTN","SAMINOT1",340,0) ;[If a Lung Cancer Dx date is entered show the following 1 to 2 lines] "RTN","SAMINOT1",341,0) ;Prior lung cancer diagnosis date: [Date] "RTN","SAMINOT1",342,0) ;[If a location not in the VA is specified show the next line] "RTN","SAMINOT1",343,0) ;Location where prior lung cancer diagnosis was made: [Location Text] "RTN","SAMINOT1",344,0) ; "RTN","SAMINOT1",345,0) ;[If Any Prior CT Date is entered show the following 1 to 2 lines] "RTN","SAMINOT1",346,0) ;Prior CT: [Date] "RTN","SAMINOT1",347,0) ;[If a location not in the VA is specified show the next line] "RTN","SAMINOT1",348,0) ;Location where prior lung cancer diagnosis was made: [Location Text] "RTN","SAMINOT1",349,0) ; "RTN","SAMINOT1",350,0) ;Shared Decision Making: "RTN","SAMINOT1",351,0) ; "RTN","SAMINOT1",352,0) d OUT(" ") "RTN","SAMINOT1",353,0) d OUT(" "_"Date of intake discussion contact: "_$$XVAL("sidc",vals)) "RTN","SAMINOT1",354,0) n learn s learn="" "RTN","SAMINOT1",355,0) s:$$XVAL("silnip",vals) learn=learn_" In person" "RTN","SAMINOT1",356,0) s:$$XVAL("silnph",vals) learn=learn_" Telephone" "RTN","SAMINOT1",357,0) s:$$XVAL("silnth",vals) learn=learn_" TeleHealth" "RTN","SAMINOT1",358,0) s:$$XVAL("silnml",vals) learn=learn_" Mailed letter" "RTN","SAMINOT1",359,0) s:$$XVAL("silnpp",vals) learn=learn_" Message in patient portal" "RTN","SAMINOT1",360,0) s:$$XVAL("silnvd",vals) learn=learn_" Video-on-Demand (VOD)" "RTN","SAMINOT1",361,0) s:$$XVAL("silnot",vals) learn=learn_" "_$$XVAL("silnoo",vals) "RTN","SAMINOT1",362,0) ;d GLOUT(" "_"How did you learn about the Lung Screening Program?: "_learn,4) "RTN","SAMINOT1",363,0) d GLOUT("How did you learn about the Lung Screening Program?: ",4) "RTN","SAMINOT1",364,0) d GLOUT(learn,6) "RTN","SAMINOT1",365,0) n verified s verified="" "RTN","SAMINOT1",366,0) s:$$XVAL("sipav",vals)="y" verified="Yes" "RTN","SAMINOT1",367,0) s:$$XVAL("sipav",vals)="n" verified="No" "RTN","SAMINOT1",368,0) d OUT(" "_"Primary address verified: "_verified) "RTN","SAMINOT1",369,0) n rural s rural="" "RTN","SAMINOT1",370,0) s:$$XVAL("sirs",vals)="r" rural="rural" "RTN","SAMINOT1",371,0) s:$$XVAL("sirs",vals)="u" rural="urban" "RTN","SAMINOT1",372,0) d OUT(" "_""_"Rural status: "_rural) "RTN","SAMINOT1",373,0) d OUT(" "_"Preferred address and contact number: ") "RTN","SAMINOT1",374,0) n pa s pa="" "RTN","SAMINOT1",375,0) i $$XVAL("sipsa",vals)'="" d ; "RTN","SAMINOT1",376,0) . d OUT(" "_$$XVAL("sipsa",vals)) "RTN","SAMINOT1",377,0) . n csz s csz="" "RTN","SAMINOT1",378,0) . s:$$XVAL("sipc",vals)'="" csz=$$XVAL("sipc",vals) "RTN","SAMINOT1",379,0) . s:$$XVAL("sips",vals)'="" csz=csz_", "_$$XVAL("sips",vals) "RTN","SAMINOT1",380,0) . s:$$XVAL("sipz",vals)'="" csz=csz_" "_$$XVAL("sipz",vals) "RTN","SAMINOT1",381,0) . d OUT(" "_csz) "RTN","SAMINOT1",382,0) d:$$XVAL("sippn",vals)'="" OUT(" "_$$XVAL("sippn",vals)) "RTN","SAMINOT1",383,0) d OUT(" "_"Ever smoked?: ") "RTN","SAMINOT1",384,0) d GLOUT($$XVAL("sies",vals),6) "RTN","SAMINOT1",385,0) n sstatus s sstatus="" "RTN","SAMINOT1",386,0) s:$$XVAL("siesm",vals)="n" sstatus=sstatus_" Never smoked" "RTN","SAMINOT1",387,0) s:$$XVAL("siesm",vals)="p" sstatus=sstatus_" Past" "RTN","SAMINOT1",388,0) s:$$XVAL("siesm",vals)="c" sstatus=sstatus_" Current" "RTN","SAMINOT1",389,0) s:$$XVAL("siesq",vals)=1 sstatus=sstatus_" Willing to quit" "RTN","SAMINOT1",390,0) d OUT(" Smoking Status: "_sstatus) "RTN","SAMINOT1",391,0) d OUT(" "_"CIGs per day: ") "RTN","SAMINOT1",392,0) d OUT(" "_$$XVAL("sicpd",vals)) "RTN","SAMINOT1",393,0) d OUT(" "_"PPD: ") "RTN","SAMINOT1",394,0) d OUT(" "_$$XVAL("sippd",vals)) "RTN","SAMINOT1",395,0) d OUT(" "_"# of years: ") "RTN","SAMINOT1",396,0) d OUT(" "_$$XVAL("sisny",vals)) "RTN","SAMINOT1",397,0) d OUT(" "_"PPY: ") "RTN","SAMINOT1",398,0) d OUT(" "_$$XVAL("sippy",vals)) "RTN","SAMINOT1",399,0) d OUT("") "RTN","SAMINOT1",400,0) i $$XVAL("siq",vals)'="" d ; "RTN","SAMINOT1",401,0) . d OUT("Quit smoking on: "_$$XVAL("siq",vals)) "RTN","SAMINOT1",402,0) . d OUT("") "RTN","SAMINOT1",403,0) i $$XVAL("sicep",vals)'="" d ; "RTN","SAMINOT1",404,0) . d OUT("Smoking cessation education provided:") "RTN","SAMINOT1",405,0) . d GLOUT(" "_$$XVAL("sicep",vals),4) "RTN","SAMINOT1",406,0) i $$XVAL("sicadx",vals)'="" d "RTN","SAMINOT1",407,0) . d OUT("Prior lung cancer diagnosis date: "_$$XVAL("sicadx",vals)) "RTN","SAMINOT1",408,0) . i $$XVAL("sicadxl",vals)'="" d ; "RTN","SAMINOT1",409,0) . . d OUT("Location where prior lung cancer diagnosis was made:") "RTN","SAMINOT1",410,0) . . d GLOUT(" "_$$XVAL("sicadxl",vals),4) "RTN","SAMINOT1",411,0) i $$XVAL("siptct",vals)'="" d "RTN","SAMINOT1",412,0) . d OUT("Prior CT: "_$$XVAL("siptct",vals)) "RTN","SAMINOT1",413,0) . i $$XVAL("siptctl",vals)'="" d ; "RTN","SAMINOT1",414,0) . . d OUT("Location where prior CT was made:") "RTN","SAMINOT1",415,0) . . d GLOUT(" "_$$XVAL("siptctl",vals),4) "RTN","SAMINOT1",416,0) d OUT(" ") "RTN","SAMINOT1",417,0) d OUT("Shared Decision Making: ") "RTN","SAMINOT1",418,0) d OUT(" ") "RTN","SAMINOT1",419,0) d SDM(dest) "RTN","SAMINOT1",420,0) d OUT(" ") "RTN","SAMINOT1",421,0) n ldct s ldct="" "RTN","SAMINOT1",422,0) s:$$XVAL("sildct",vals)="n" ldct="No" "RTN","SAMINOT1",423,0) s:$$XVAL("sildct",vals)="l" ldct="No" "RTN","SAMINOT1",424,0) s:$$XVAL("sildct",vals)="y" ldct="Yes" "RTN","SAMINOT1",425,0) d GLOUT("The veteran has decided to enroll in the Lung Screening Program: "_ldct) "RTN","SAMINOT1",426,0) i $$XVAL("sildct",vals)="l" d ; "RTN","SAMINOT1",427,0) . d GLOUT("The veteran has indicated it is okay to contact in the future to discuss enrolling in the Lung Screening Program.",4) "RTN","SAMINOT1",428,0) i ldct="Yes" d ; "RTN","SAMINOT1",429,0) . d OUT("LDCT ordered: "_ldct) "RTN","SAMINOT1",430,0) . d OUT(" "_"Veteran enrolled in the LSS program. Results and coordination of care ") "RTN","SAMINOT1",431,0) . d OUT(" "_"will be made by the LSS team. ") "RTN","SAMINOT1",432,0) . i $$XVAL("siclin",vals)'="" d ; "RTN","SAMINOT1",433,0) n tmpclin s tmpclin=$$XVAL("siclin",vals) "RTN","SAMINOT1",434,0) i tmpclin'="" d ; "RTN","SAMINOT1",435,0) . d OUT("Clinical Indications for Initial Screening CT:") "RTN","SAMINOT1",436,0) . d GLOUT(" "_tmpclin,4) "RTN","SAMINOT1",437,0) ; "RTN","SAMINOT1",438,0) ;The veteran has decided to enroll in the Lung Screening Program: [Yes/No] "RTN","SAMINOT1",439,0) ; "RTN","SAMINOT1",440,0) ;[If Not enroll at this time but okay to contact in the future, add the following line] "RTN","SAMINOT1",441,0) ;The veteran has indicated it is okay to contact in the future to discuss enrolling in the Lung Screening Program. "RTN","SAMINOT1",442,0) ; "RTN","SAMINOT1",443,0) ;[If Yes is answered for enrollment add the following two lines] "RTN","SAMINOT1",444,0) ;LDCT ordered: Yes "RTN","SAMINOT1",445,0) ;Veteran enrolled in the Lung Screening Program. Results and coordination of care will be made by the Lung Screening Program team. "RTN","SAMINOT1",446,0) ; "RTN","SAMINOT1",447,0) ;[If Clinical Indication text is provided add them to the note] "RTN","SAMINOT1",448,0) ;Clinical Indications: [Show Input Text] "RTN","SAMINOT1",449,0) ; "RTN","SAMINOT1",450,0) ; "RTN","SAMINOT1",451,0) q "RTN","SAMINOT1",452,0) ; "RTN","SAMINOT1",453,0) SDM(ary) ; adds Shared Decision Making text to array ary, passed by name "RTN","SAMINOT1",454,0) n ii s ii=$o(@ary@(" "),-1) "RTN","SAMINOT1",455,0) s ii=ii+1 "RTN","SAMINOT1",456,0) s @ary@(ii)="Veteran of age and exposure to cigarette smoke as described above, and " "RTN","SAMINOT1",457,0) s ii=ii+1 "RTN","SAMINOT1",458,0) s @ary@(ii)="without a current diagnosis or obvious symptoms suggestive of lung cancer, " "RTN","SAMINOT1",459,0) s ii=ii+1 "RTN","SAMINOT1",460,0) s @ary@(ii)="has been educated today about the estimated risk for lung cancer, the " "RTN","SAMINOT1",461,0) s ii=ii+1 "RTN","SAMINOT1",462,0) s @ary@(ii)="possibility of cure or life prolonging if an early lung cancer were to be " "RTN","SAMINOT1",463,0) s ii=ii+1 "RTN","SAMINOT1",464,0) s @ary@(ii)="found during screening, the possibility of imaging abnormalities not being " "RTN","SAMINOT1",465,0) s ii=ii+1 "RTN","SAMINOT1",466,0) s @ary@(ii)="lung cancer, the possibility of complications from additional diagnostic " "RTN","SAMINOT1",467,0) s ii=ii+1 "RTN","SAMINOT1",468,0) s @ary@(ii)="procedures, and the approximate amount of radiation exposure associated " "RTN","SAMINOT1",469,0) s ii=ii+1 "RTN","SAMINOT1",470,0) s @ary@(ii)="with each screening procedure. In addition, the Veteran has been educated " "RTN","SAMINOT1",471,0) s ii=ii+1 "RTN","SAMINOT1",472,0) s @ary@(ii)="today about the importance of adhering to annual lung screening, the " "RTN","SAMINOT1",473,0) s ii=ii+1 "RTN","SAMINOT1",474,0) s @ary@(ii)="possible impact of other medical conditions on the overall health status, " "RTN","SAMINOT1",475,0) s ii=ii+1 "RTN","SAMINOT1",476,0) s @ary@(ii)="the importance of avoiding exposure to cigarette smoke, available tobacco " "RTN","SAMINOT1",477,0) s ii=ii+1 "RTN","SAMINOT1",478,0) s @ary@(ii)="cessation programs and available lung screening services at this site. " "RTN","SAMINOT1",479,0) s ii=ii+1 "RTN","SAMINOT1",480,0) s @ary@(ii)="Education material was provided to the veteran. " "RTN","SAMINOT1",481,0) s ii=ii+1 "RTN","SAMINOT1",482,0) ;s @ary@(ii)="Based on this information, the Veteran has opted for " "RTN","SAMINOT1",483,0) q "RTN","SAMINOT1",484,0) ; "RTN","SAMINOT1",485,0) GLOUT(ln,indent) ; glob out first wrap ln then put it in dest "RTN","SAMINOT1",486,0) n arytmp "RTN","SAMINOT1",487,0) s arytmp(1)=ln "RTN","SAMINOT1",488,0) i $g(indent)="" s indent=1 "RTN","SAMINOT1",489,0) d wrap^%tt("arytmp",indent_":80") "RTN","SAMINOT1",490,0) n ii s ii="" "RTN","SAMINOT1",491,0) f s ii=$o(arytmp(ii)) q:ii="" d ; "RTN","SAMINOT1",492,0) . d OUT(arytmp(ii)) "RTN","SAMINOT1",493,0) q "RTN","SAMINOT1",494,0) ; "RTN","SAMINOT1",495,0) OUT(ln) ; "RTN","SAMINOT1",496,0) s cnt=cnt+1 "RTN","SAMINOT1",497,0) n lnn "RTN","SAMINOT1",498,0) ;s debug=1 "RTN","SAMINOT1",499,0) s lnn=$o(@dest@(" "),-1)+1 "RTN","SAMINOT1",500,0) s @dest@(lnn)=ln "RTN","SAMINOT1",501,0) ;i $g(debug)=1 d ; "RTN","SAMINOT1",502,0) ;. i ln["<" q ; no markup "RTN","SAMINOT1",503,0) ;. n zs s zs=$STACK "RTN","SAMINOT1",504,0) ;. n zp s zp=$STACK(zs-2,"PLACE") "RTN","SAMINOT1",505,0) ;. s @dest@(lnn)=zp_":"_ln "RTN","SAMINOT1",506,0) q "RTN","SAMINOT1",507,0) ; "RTN","SAMINOT1",508,0) XVAL(var,vals) ; extrinsic returns the patient value for var "RTN","SAMINOT1",509,0) ; vals is passed by name "RTN","SAMINOT1",510,0) n zr "RTN","SAMINOT1",511,0) s zr=$g(@vals@(var)) "RTN","SAMINOT1",512,0) ;i zr="" s zr="["_var_"]" "RTN","SAMINOT1",513,0) q zr "RTN","SAMINOT1",514,0) ; "RTN","SAMINOT1",515,0) ; "RTN","SAMIORU") 0^3^B117254881 "RTN","SAMIORU",1,0) SAMIORU ;ven/lgc/arc - SEND ORU ENROLLMENT RESPONSE ;Mar 12, 2021@13:43 "RTN","SAMIORU",2,0) ;;18.0;SAMI;;;Build 4 "RTN","SAMIORU",3,0) ; "RTN","SAMIORU",4,0) ;NOTE: We will only be sending ORU messages out for patients "RTN","SAMIORU",5,0) ; for whom at least one ORM has been received. Thus, "RTN","SAMIORU",6,0) ; we can trust the information stored in the patient-lookup "RTN","SAMIORU",7,0) ; graph through an incoming ORM to fill in fields of "RTN","SAMIORU",8,0) ; any ORU generated messages. "RTN","SAMIORU",9,0) ; "RTN","SAMIORU",10,0) quit ; no entry from top "RTN","SAMIORU",11,0) ; "RTN","SAMIORU",12,0) TESTALL kill filter "RTN","SAMIORU",13,0) kill OUTHL "RTN","SAMIORU",14,0) ;set filter("sendprotocol")="PHX ENROLL ORU EVN" "RTN","SAMIORU",15,0) set filter("sid")="PHO00008" "RTN","SAMIORU",16,0) set filter("key")="siform-2021-03-12" "RTN","SAMIORU",17,0) set filter("notenmbr")=1 "RTN","SAMIORU",18,0) new poopoo set poopoo=$$EN^SAMIORU(.filter) "RTN","SAMIORU",19,0) quit "RTN","SAMIORU",20,0) ; "RTN","SAMIORU",21,0) ; "RTN","SAMIORU",22,0) EN(filter) ; Build and send ORU enrollment response "RTN","SAMIORU",23,0) ;@input "RTN","SAMIORU",24,0) ; filter = array by reference "RTN","SAMIORU",25,0) ; [filter("sendprotocol")] defaults to Phoenix "RTN","SAMIORU",26,0) ; filter("sid")=sid (e.g.PHO00015) "RTN","SAMIORU",27,0) ; filter("key")=sid (e.g. "siform-2020-07-30") "RTN","SAMIORU",28,0) ; [filter("notenmbr")= e.g. 2 ] "RTN","SAMIORU",29,0) ; number of note in vapals-patients graph "RTN","SAMIORU",30,0) ; [filter("climit")] defaults to 66 "RTN","SAMIORU",31,0) ; limit to number of characters per line "RTN","SAMIORU",32,0) ; for text to display in CPRS "RTN","SAMIORU",33,0) ; "RTN","SAMIORU",34,0) ;@output "RTN","SAMIORU",35,0) ; filter("rslt") = contains either "RTN","SAMIORU",36,0) ; msgid - message generated "RTN","SAMIORU",37,0) ; 0 - error "RTN","SAMIORU",38,0) ; HL7 ORU message built and sent "RTN","SAMIORU",39,0) ; NOTE: if called as function contents of filter("rslt") is "RTN","SAMIORU",40,0) ; returned directly "RTN","SAMIORU",41,0) ; "RTN","SAMIORU",42,0) ;debug "RTN","SAMIORU",43,0) ;kill ^KBAP("SAMIORU") "RTN","SAMIORU",44,0) ;merge ^KBAP("SAMIORU","filter")=filter "RTN","SAMIORU",45,0) ; "RTN","SAMIORU",46,0) set filter("rslt")=0 "RTN","SAMIORU",47,0) ; "RTN","SAMIORU",48,0) new rootpl,rootvp,sid,key,SNDPROT,climit,notenmbr "RTN","SAMIORU",49,0) set (rootpl,filter("rootpl"))=$$setroot^%wd("patient-lookup") "RTN","SAMIORU",50,0) set (rootvp,filter("rootvp"))=$$setroot^%wd("vapals-patients") "RTN","SAMIORU",51,0) ; "RTN","SAMIORU",52,0) set sid=$get(filter("sid")) if sid="" do quit:$Q filter("rslt") quit "RTN","SAMIORU",53,0) . set filter("rlst")="0^no sid provided" "RTN","SAMIORU",54,0) set key=$get(filter("key")) if key="" do quit:$Q filter("rslt") quit "RTN","SAMIORU",55,0) . set filter("rslt")="0^no key provided" "RTN","SAMIORU",56,0) set SNDPROT=$get(filter("sendprotocol")) if SNDPROT="" do "RTN","SAMIORU",57,0) . set (SNDPROT,filter("sendprotocol"))="PHX ENROLL ORU EVN" "RTN","SAMIORU",58,0) set notenmbr=+$get(filter("notenmbr")) "RTN","SAMIORU",59,0) if notenmbr=0 do quit:$Q filter("rslt") quit "RTN","SAMIORU",60,0) . set filter("rslt")="0^no note number provided" "RTN","SAMIORU",61,0) ; "RTN","SAMIORU",62,0) ; merge ^KBAP("SAMIORU","filter2")=filter "RTN","SAMIORU",63,0) ; "RTN","SAMIORU",64,0) DFN ; find vpien and plien "RTN","SAMIORU",65,0) new dfn,vpien,plien "RTN","SAMIORU",66,0) set (dfn,vpien,filter("vpien"),filter("dfn"))=@rootvp@("graph",sid,key,"dfn") "RTN","SAMIORU",67,0) set (plien,filter("plien"))=$order(@rootpl@("dfn",vpien,0)) "RTN","SAMIORU",68,0) ; "RTN","SAMIORU",69,0) ; Pull data from entry in patient-lookup graph "RTN","SAMIORU",70,0) merge filter=@rootpl@(plien) "RTN","SAMIORU",71,0) FINDORM ; Return error if no ORM found "RTN","SAMIORU",72,0) if '$data(filter("ORM")) do quit:$Q filter("rslt") quit "RTN","SAMIORU",73,0) . set filter("rslt")="0^Patient does not have previous ORM" "RTN","SAMIORU",74,0) ; "RTN","SAMIORU",75,0) kill filter("ORM") "RTN","SAMIORU",76,0) do ORMVARS^SAMIORU(plien,.filter) "RTN","SAMIORU",77,0) ; "RTN","SAMIORU",78,0) ; merge ^KBAP("SAMIORU","filter","ORM")=filter "RTN","SAMIORU",79,0) ; "RTN","SAMIORU",80,0) ;Pull HL7 vars and escape sequences for building a message "RTN","SAMIORU",81,0) HL7VARS new HL,HLA,HLECH,HLQ,OUTHL,HLFS,HLCC "RTN","SAMIORU",82,0) D HLENV(SNDPROT) "RTN","SAMIORU",83,0) ; "RTN","SAMIORU",84,0) ; BUILD ; build segements in OUTHL "RTN","SAMIORU",85,0) D PID(HLFS,HLCC,.filter,.OUTHL) "RTN","SAMIORU",86,0) D OBR(HLFS,HLCC,.filter,.OUTHL) "RTN","SAMIORU",87,0) D OBX(HLFS,HLCC,.filter,.OUTHL) "RTN","SAMIORU",88,0) ; "RTN","SAMIORU",89,0) new msgid "RTN","SAMIORU",90,0) set (filter("rslt"),msgid)=$$SENDHL7(SNDPROT,.OUTHL) "RTN","SAMIORU",91,0) ; "RTN","SAMIORU",92,0) ; if a message id is returned, preface it with 1^ "RTN","SAMIORU",93,0) set:+$get(filter("rslt")) filter("rslt")=1_"^"_filter("rslt") "RTN","SAMIORU",94,0) ; "RTN","SAMIORU",95,0) quit:$Q $get(filter("rslt")) quit "RTN","SAMIORU",96,0) ; "RTN","SAMIORU",97,0) ; "RTN","SAMIORU",98,0) ; "RTN","SAMIORU",99,0) PID(HLFS,HLCC,filter,OUTHL) ; "RTN","SAMIORU",100,0) ; "RTN","SAMIORU",101,0) new vpien,plien,rootvp,rootpl,pid,name,address1,address2,address3 "RTN","SAMIORU",102,0) new ssn,sex,city,state,zip,str,fulladdress,dob "RTN","SAMIORU",103,0) set rootpl=$get(filter("rootpl")) "RTN","SAMIORU",104,0) set plien=$get(filter("plien")) "RTN","SAMIORU",105,0) set outcnt=$order(OUTHL("A"),-1) "RTN","SAMIORU",106,0) PID1 set $piece(pid,HLFS,1)=1 "RTN","SAMIORU",107,0) ; "RTN","SAMIORU",108,0) PID3 set ssn=$get(@rootpl@(plien,"ssn")) "RTN","SAMIORU",109,0) set $piece(pid,HLFS,3)=$get(ssn) "RTN","SAMIORU",110,0) ; "RTN","SAMIORU",111,0) PID5 set name=$get(@rootpl@(plien,"saminame")) "RTN","SAMIORU",112,0) set name=$translate($$UP^XLFSTR(name),",",HLCC) "RTN","SAMIORU",113,0) set $piece(name,HLCC,7)="L" "RTN","SAMIORU",114,0) set $piece(pid,HLFS,5)=$get(name) "RTN","SAMIORU",115,0) ; "RTN","SAMIORU",116,0) PID7 set dob=$get(filter("sbdob")) "RTN","SAMIORU",117,0) set $piece(pid,HLFS,7)=$get(dob) "RTN","SAMIORU",118,0) ; "RTN","SAMIORU",119,0) PID8 set sex=$get(filter("sex")) "RTN","SAMIORU",120,0) set $piece(pid,HLFS,8)=$get(sex) "RTN","SAMIORU",121,0) ; "RTN","SAMIORU",122,0) PID11 set fulladdress=$get(filter("fulladdress")) "RTN","SAMIORU",123,0) set $piece(pid,HLFS,11)=$get(fulladdress) "RTN","SAMIORU",124,0) ; "RTN","SAMIORU",125,0) PID18 set $piece(pid,HLFS,13)="" "RTN","SAMIORU",126,0) ; "RTN","SAMIORU",127,0) PID19 set $piece(pid,HLFS,19)=$get(@rootpl@(plien,"ssn")) "RTN","SAMIORU",128,0) ; "RTN","SAMIORU",129,0) set pid="PID"_HLFS_pid "RTN","SAMIORU",130,0) ; "RTN","SAMIORU",131,0) do ADD2MSG(pid) "RTN","SAMIORU",132,0) quit "RTN","SAMIORU",133,0) ; "RTN","SAMIORU",134,0) ; "RTN","SAMIORU",135,0) ; "RTN","SAMIORU",136,0) ; OBR is built from variables gleaned from the initiating ORM "RTN","SAMIORU",137,0) ; message "RTN","SAMIORU",138,0) OBR(HLFS,HLCC,filter,OUTHL) ; Build ORU OBR "RTN","SAMIORU",139,0) new obr,ordpvd "RTN","SAMIORU",140,0) ; "RTN","SAMIORU",141,0) OBR1 set $piece(obr,HLFS,1)=1 "RTN","SAMIORU",142,0) ; "RTN","SAMIORU",143,0) OBR3 set $piece(obr,HLFS,3)=$get(filter("ordernumber")) ;universal identifier "RTN","SAMIORU",144,0) ; "RTN","SAMIORU",145,0) OBR4 set $piece(obr,HLFS,4)=$get(filter("order"))_HLCC_$get(filter("order2")) "RTN","SAMIORU",146,0) ; "RTN","SAMIORU",147,0) OBR7 set $piece(obr,HLFS,7)=$$FMTHL7^XLFDT($$HTFM^XLFDT($H)) ; our obsv date "RTN","SAMIORU",148,0) ; "RTN","SAMIORU",149,0) OBR16 set ordpvd=$get(filter("providerien"))_HLCC_$get(filter("providernm")) "RTN","SAMIORU",150,0) set ordpvd=$translate(ordpvd,",",HLCC) "RTN","SAMIORU",151,0) set $piece(obr,HLFS,16)=ordpvd "RTN","SAMIORU",152,0) ; "RTN","SAMIORU",153,0) OBR25 set $piece(obr,HLFS,25)="F" ; final "RTN","SAMIORU",154,0) set obr="OBR"_HLFS_obr "RTN","SAMIORU",155,0) ; "RTN","SAMIORU",156,0) do ADD2MSG(obr) "RTN","SAMIORU",157,0) ; "RTN","SAMIORU",158,0) quit "RTN","SAMIORU",159,0) ; "RTN","SAMIORU",160,0) ; "RTN","SAMIORU",161,0) OBX(HLFS,HLCC,filter,OUTHL) ; Build text of note from vapals-patients nodes "RTN","SAMIORU",162,0) new outcnt,rootvp,rootpl,segment,sid,key,notenumber,str "RTN","SAMIORU",163,0) new ssn,dfn,plien,name,sex,line1,line2,climit "RTN","SAMIORU",164,0) set sid=$get(filter("sid")) "RTN","SAMIORU",165,0) set key=$get(filter("key")) "RTN","SAMIORU",166,0) set rootvp=$get(filter("rootvp")) "RTN","SAMIORU",167,0) set rootpl=$get(filter("rootpl")) "RTN","SAMIORU",168,0) set plien=$get(filter("plien")) "RTN","SAMIORU",169,0) set notenmbr=$get(filter("notenmbr")) "RTN","SAMIORU",170,0) ; "RTN","SAMIORU",171,0) ; build string used in each ORU OBX node "RTN","SAMIORU",172,0) set str="TX"_HLFS_HLFS_"I1"_HLCC_"Intake Note" "RTN","SAMIORU",173,0) ; "RTN","SAMIORU",174,0) set name=$get(@rootpl@(plien,"saminame")) "RTN","SAMIORU",175,0) set sex=$get(@rootpl@(plien,"sex")) "RTN","SAMIORU",176,0) set ssn=$get(@rootpl@(plien,"ssn")) "RTN","SAMIORU",177,0) set line1="Patient name : "_name_" "_HLFS_" "_sex "RTN","SAMIORU",178,0) set line2="Record Number : "_ssn "RTN","SAMIORU",179,0) ; "RTN","SAMIORU",180,0) set segment="OBX"_HLFS_1_HLFS_str_HLFS_line1_HLFS "RTN","SAMIORU",181,0) do ADD2MSG(segment) "RTN","SAMIORU",182,0) set segment="OBX"_HLFS_2_HLFS_str_HLFS_line2_HLFS "RTN","SAMIORU",183,0) do ADD2MSG(segment) "RTN","SAMIORU",184,0) new node,snode,vpcnt,cnt "RTN","SAMIORU",185,0) set node=$na(@rootvp@("graph",sid,key,"notes",notenmbr,"text")) "RTN","SAMIORU",186,0) set snode=$piece(node,")") "RTN","SAMIORU",187,0) set cnt=2 "RTN","SAMIORU",188,0) for set node=$Q(@node) quit:node'[snode do "RTN","SAMIORU",189,0) . set vpcnt=$QS(node,7) quit:'vpcnt "RTN","SAMIORU",190,0) . set cnt=$get(cnt)+1 "RTN","SAMIORU",191,0) . set segment="OBX"_HLFS_cnt_HLFS_str_HLFS_@node_HLFS "RTN","SAMIORU",192,0) . do ADD2MSG(segment) "RTN","SAMIORU",193,0) quit "RTN","SAMIORU",194,0) ; "RTN","SAMIORU",195,0) ; "RTN","SAMIORU",196,0) ; "RTN","SAMIORU",197,0) SENDHL7(SNDPROT,OUTHL) ;Send out an HL7 message "RTN","SAMIORU",198,0) ;@input "RTN","SAMIORU",199,0) ; OUTHL = array containing message to send "RTN","SAMIORU",200,0) ;@output "RTN","SAMIORU",201,0) ; msgid = message ID "RTN","SAMIORU",202,0) new HLRESLT "RTN","SAMIORU",203,0) kill HLA("HLS") "RTN","SAMIORU",204,0) merge HLA("HLS")=OUTHL "RTN","SAMIORU",205,0) ;ZW HLA("HLS") "RTN","SAMIORU",206,0) if $data(HLA("HLS")) do "RTN","SAMIORU",207,0) .; W !,"GOT TO HERE" "RTN","SAMIORU",208,0) . new HLEID,HLARYTYP,HLFORMAT,HLMTIEN,HLP "RTN","SAMIORU",209,0) . set HL("MTN")="ORU" "RTN","SAMIORU",210,0) . set HLEID=$O(^ORD(101,"B",SNDPROT,0)) "RTN","SAMIORU",211,0) . set HLARYTYP="LM" "RTN","SAMIORU",212,0) . set HLFORMAT=1 "RTN","SAMIORU",213,0) . set HLMTIEN="" "RTN","SAMIORU",214,0) . set HLP("PRIORITY")=1 "RTN","SAMIORU",215,0) . do GENERATE^HLMA(HLEID,HLARYTYP,HLFORMAT,.HLRESLT) "RTN","SAMIORU",216,0) .; W !,"HLRESLT=",$get(HLRESLT),! "RTN","SAMIORU",217,0) set msgid=$get(HLRESLT) "RTN","SAMIORU",218,0) quit msgid "RTN","SAMIORU",219,0) ; "RTN","SAMIORU",220,0) ; "RTN","SAMIORU",221,0) ; "RTN","SAMIORU",222,0) ; "RTN","SAMIORU",223,0) ; e.g. SNDPROT="PHX ENROLL ORM EVN" "RTN","SAMIORU",224,0) HLENV(SNDPROT) ; Set HL7 variables "RTN","SAMIORU",225,0) ;@input "RTN","SAMIORU",226,0) ; SNDPROT = name of sending protocol (file #101) "RTN","SAMIORU",227,0) ;@output "RTN","SAMIORU",228,0) ; sets all necessary HL variables for building a message "RTN","SAMIORU",229,0) new PIEN,INT "RTN","SAMIORU",230,0) set PIEN=$O(^ORD(101,"B",SNDPROT,0)) "RTN","SAMIORU",231,0) set HL="HLS(""HLS"")" "RTN","SAMIORU",232,0) set INT=1 "RTN","SAMIORU",233,0) do INIT^HLFNC2(PIEN,.HL,INT) "RTN","SAMIORU",234,0) set HLFS=$get(HL("FS")) "RTN","SAMIORU",235,0) set HLECH=$get(HL("ECH")) "RTN","SAMIORU",236,0) set HLCC=$E(HLECH) "RTN","SAMIORU",237,0) quit "RTN","SAMIORU",238,0) ; "RTN","SAMIORU",239,0) ; "RTN","SAMIORU",240,0) ADD2MSG(segment) ; Add segment to OUTHL array "RTN","SAMIORU",241,0) new outcnt set outcnt=$order(OUTHL("A"),-1),outcnt=$get(outcnt)+1 "RTN","SAMIORU",242,0) set OUTHL(outcnt)=segment "RTN","SAMIORU",243,0) quit "RTN","SAMIORU",244,0) ; "RTN","SAMIORU",245,0) ; "RTN","SAMIORU",246,0) ; "RTN","SAMIORU",247,0) ; builds extra filter vars from the most recent ORM array found in "RTN","SAMIORU",248,0) ; the patient's patient-lookup graph "RTN","SAMIORU",249,0) ; filter("assignedlocation")="PHX-PULM RN LSS PHONE" "RTN","SAMIORU",250,0) ; filter("fulladdress")="7726 W ORCHID ST^^PHOENIX^AZ^85017" "RTN","SAMIORU",251,0) ; filter("msgid")="99000031ORM" "RTN","SAMIORU",252,0) ; filter("order")="PHO_LUNG" "RTN","SAMIORU",253,0) ; filter("order2")="LUNG" "RTN","SAMIORU",254,0) ; filter("ordercontrol")="NW" "RTN","SAMIORU",255,0) ; filter("ordereffectivedt")=20200616135751 "RTN","SAMIORU",256,0) ; filter("ordernumber")=3200616135751 "RTN","SAMIORU",257,0) ; filter("orderstatus")="NW" "RTN","SAMIORU",258,0) ; filter("patientclass")="O" "RTN","SAMIORU",259,0) ; filter("providerien")=244088 "RTN","SAMIORU",260,0) ; filter("providernm")="GARCIA,DANIEL,P" "RTN","SAMIORU",261,0) ; filter("siteid")="PHO" "RTN","SAMIORU",262,0) ; filter("transactiondt")=20200616135751 "RTN","SAMIORU",263,0) ORMVARS(plien,filter) ; get variables from most recent ORM on this patient "RTN","SAMIORU",264,0) ; "RTN","SAMIORU",265,0) new node,snode,rootpl,var,invdt "RTN","SAMIORU",266,0) set rootpl=$$setroot^%wd("patient-lookup") "RTN","SAMIORU",267,0) set node=$na(@rootpl@(plien,"ORM")),snode=$p(node,")") "RTN","SAMIORU",268,0) set invdt=$QS($Q(@node),5) "RTN","SAMIORU",269,0) for set node=$Q(@node) quit:node'[snode quit:node'[invdt do "RTN","SAMIORU",270,0) . set var=$QS(node,6) "RTN","SAMIORU",271,0) . set filter(var)=@node "RTN","SAMIORU",272,0) ; don't confuse ORM message id with ORU message id "RTN","SAMIORU",273,0) if $data(filter("msgid")) do "RTN","SAMIORU",274,0) . set filter("ormmsgid")=filter("msgid") "RTN","SAMIORU",275,0) . kill filter("msgid") "RTN","SAMIORU",276,0) quit "RTN","SAMIORU",277,0) ; "RTN","SAMIORU",278,0) ; "RTN","SAMIORU",279,0) ; "RTN","SAMIORU",280,0) TESTPID(plien) ; Test generating PID "RTN","SAMIORU",281,0) new rootpl "RTN","SAMIORU",282,0) set (filter("rootpl"),rootpl)=$$setroot^%wd("patient-lookup") "RTN","SAMIORU",283,0) set filter("plien")=$get(plien) "RTN","SAMIORU",284,0) set SNDPROT="PHX ENROLL ORU EVN" "RTN","SAMIORU",285,0) do HLENV^SAMIORU(SNDPROT) "RTN","SAMIORU",286,0) merge filter=@rootpl@(plien) "RTN","SAMIORU",287,0) kill filter("ORM") "RTN","SAMIORU",288,0) do ORMVARS^SAMIORU(plien,.filter) "RTN","SAMIORU",289,0) do PID^SAMIORU(HLFS,HLCC,.filter,.OUTHL) "RTN","SAMIORU",290,0) quit "RTN","SAMIORU",291,0) ; "RTN","SAMIORU",292,0) ; ; "RTN","SAMIORU",293,0) TESTOBR(plien) ; Test generating OBR "RTN","SAMIORU",294,0) new rootpl "RTN","SAMIORU",295,0) set (filter("rootpl"),rootpl)=$$setroot^%wd("patient-lookup") "RTN","SAMIORU",296,0) set filter("plien")=$get(plien) "RTN","SAMIORU",297,0) set SNDPROT="PHX ENROLL ORU EVN" "RTN","SAMIORU",298,0) do HLENV^SAMIORU(SNDPROT) "RTN","SAMIORU",299,0) merge filter=@rootpl@(plien) "RTN","SAMIORU",300,0) kill filter("ORM") "RTN","SAMIORU",301,0) do ORMVARS^SAMIORU(plien,.filter) "RTN","SAMIORU",302,0) do OBR^SAMIORU(HLFS,HLCC,.filter,.OUTHL) "RTN","SAMIORU",303,0) quit "RTN","SAMIORU",304,0) ; "RTN","SAMIORU",305,0) ; "RTN","SAMIORU",306,0) TESTOBXV ; Test generating OBX in vapalsyotta "RTN","SAMIORU",307,0) new rootpl,rootvp,filter "RTN","SAMIORU",308,0) set (filter("rootpl"),rootpl)=$$setroot^%wd("patient-lookup") "RTN","SAMIORU",309,0) set (filter("rootvp"),rootvp)=$$setroot^%wd("vapals-patients") "RTN","SAMIORU",310,0) new SNDPROT,notenbr,msgid "RTN","SAMIORU",311,0) set SNDPROT="PHX ENROLL ORU EVN" "RTN","SAMIORU",312,0) do HLENV^SAMIORU(SNDPROT) "RTN","SAMIORU",313,0) new sid,key "RTN","SAMIORU",314,0) set (sid,filter("sid"))="PHO00015" "RTN","SAMIORU",315,0) set (key,filter("key"))="siform-2020-07-30" "RTN","SAMIORU",316,0) set (filter("plien"),plien)=@rootvp@("graph",sid,key,"dfn") "RTN","SAMIORU",317,0) merge filter=@rootpl@(plien) "RTN","SAMIORU",318,0) kill filter("ORM") "RTN","SAMIORU",319,0) do ORMVARS^SAMIORU(plien,.filter) "RTN","SAMIORU",320,0) new climit set climit=66 "RTN","SAMIORU",321,0) new notenbr set notenbr=1 "RTN","SAMIORU",322,0) do OBX^SAMIORU(HLFS,HLCC,.filter,.OUTHL) "RTN","SAMIORU",323,0) quit "RTN","SAMIORU",324,0) ; "RTN","SAMIORU",325,0) TESTOBXC ; Test generating OBX in Cache "RTN","SAMIORU",326,0) new rootpl,rootvp,filter "RTN","SAMIORU",327,0) set (filter("rootpl"),rootpl)=$$setroot^%wd("patient-lookup") "RTN","SAMIORU",328,0) set (filter("rootvp"),rootvp)=$$setroot^%wd("vapals-patients") "RTN","SAMIORU",329,0) new SNDPROT,notenbr,msgid "RTN","SAMIORU",330,0) set SNDPROT="PHX ENROLL ORU EVN" "RTN","SAMIORU",331,0) do HLENV^SAMIORU(SNDPROT) "RTN","SAMIORU",332,0) new sid,key "RTN","SAMIORU",333,0) set (sid,filter("sid"))="PHO00015" "RTN","SAMIORU",334,0) set (key,filter("key"))="siform-2020-07-30" "RTN","SAMIORU",335,0) set (filter("plien"),plien)=@rootvp@("graph",sid,key,"dfn") "RTN","SAMIORU",336,0) merge filter=@rootpl@(plien) "RTN","SAMIORU",337,0) kill filter("ORM") "RTN","SAMIORU",338,0) do ORMVARS^SAMIORU(plien,.filter) "RTN","SAMIORU",339,0) set filter("climit")=66 "RTN","SAMIORU",340,0) set filter("notenmbr")=2 "RTN","SAMIORU",341,0) set filter("Cache")=($zversion["Cache") "RTN","SAMIORU",342,0) do OBX^SAMIORU(HLFS,HLCC,.filter,.OUTHL) "RTN","SAMIORU",343,0) quit "RTN","SAMIORU",344,0) ; "RTN","SAMIORU",345,0) EOR ;End of routine SAMIORU "RTN","SAMIORU",346,0) ; "RTN","SAMIORU",347,0) ; "VER") 8.0^22.2 **END** **END**
Genshi
4
OSEHRA/SAMI-VAPALS-ELCAP
dist/18-8/sami-1.18.0.8-i8.kid
[ "Apache-2.0" ]
--TEST-- 014: Name conflict and functions (php name) --FILE-- <?php namespace test\ns1; echo strlen("Hello"),"\n"; ?> --EXPECT-- 5
PHP
3
NathanFreeman/php-src
Zend/tests/ns_014.phpt
[ "PHP-3.01" ]
<div style="background-color: white; color: red"> <h1>Not Found</h1> </div>
HTML
0
mkosakana/iris
_examples/routing/subdomains/http-errors-view/views/partials/404.html
[ "BSD-3-Clause" ]
# DO NOT EDIT THIS FILE. This file will be overwritten when re-running go-raml. @0x8f4347cbb1358e05; struct WithDateTime { birth @0 :Text; name @1 :Text; }
Cap'n Proto
3
mrpotes/go-raml
codegen/python/fixtures/python_capnp/WithDateTime.capnp
[ "BSD-2-Clause" ]
server { listen 80; server_name www.example.com example.com; root /var/www/www.example.com/web; if ($http_host != "www.example.com") { rewrite ^ http://www.example.com$request_uri permanent; } index index.php index.html index.htm; location = /favicon.ico { log_not_found off; access_log off; expires max; } location = /robots.txt { allow all; log_not_found off; access_log off; } # Deny all attempts to access hidden files such as .htaccess, .htpasswd, .DS_Store (Mac). location ~ /\. { deny all; access_log off; log_not_found off; } location / { root /usr/share/icinga/htdocs; index index.html; auth_basic "Restricted"; auth_basic_user_file /etc/icinga/htpasswd.users; } location /icinga/stylesheets { alias /etc/icinga/stylesheets; } location /stylesheets { alias /etc/icinga/stylesheets; } location /icinga/images { alias /usr/share/icinga/htdocs/images; } location ~ \.cgi$ { # define root directory for CGIs root /usr/lib/cgi-bin/icinga; rewrite ^/icinga/cgi-bin/(.*)\.cgi /$1.cgi break; rewrite ^/cgi-bin/icinga/(.*)\.cgi /$1.cgi break; include /etc/nginx/fastcgi_params; fastcgi_pass unix:/var/run/fcgiwrap.socket; fastcgi_index index.php; fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; auth_basic "Restricted"; auth_basic_user_file /etc/icinga/htpasswd.users; fastcgi_param AUTH_USER $remote_user; fastcgi_param REMOTE_USER $remote_user; } location ~ ^/icinga-api/(.+\.php)$ { root /usr/share/icinga/htdocs; try_files $uri =404; include /etc/nginx/fastcgi_params; fastcgi_pass 127.0.0.1:9000; fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; fastcgi_index index.php; auth_basic "Restricted"; auth_basic_user_file /etc/icinga/htpasswd.users; fastcgi_param AUTH_USER $remote_user; fastcgi_param REMOTE_USER $remote_user; } }
ApacheConf
3
tsrivishnu/certbot
certbot-compatibility-test/nginx/nginx-roundtrip-testdata/icinga/sites-available/www.example.com.vhost
[ "Apache-2.0" ]
//SPDX-License-Identifier: MIT pragma solidity ^0.6.0; contract Version6Pragma { uint x; constructor() public { x = 5; } }
Solidity
3
santanaluiz/truffle
packages/compile-solidity/test/sources/v0.6.x/Version6Pragma.sol
[ "MIT" ]
alias x=extract extract() { setopt localoptions noautopushd if (( $# == 0 )); then cat >&2 <<'EOF' Usage: extract [-option] [file ...] Options: -r, --remove Remove archive after unpacking. EOF fi local remove_archive=1 if [[ "$1" == "-r" ]] || [[ "$1" == "--remove" ]]; then remove_archive=0 shift fi local pwd="$PWD" while (( $# > 0 )); do if [[ ! -f "$1" ]]; then echo "extract: '$1' is not a valid file" >&2 shift continue fi local success=0 local extract_dir="${1:t:r}" local file="$1" full_path="${1:A}" case "${file:l}" in (*.tar.gz|*.tgz) (( $+commands[pigz] )) && { pigz -dc "$file" | tar xv } || tar zxvf "$file" ;; (*.tar.bz2|*.tbz|*.tbz2) tar xvjf "$file" ;; (*.tar.xz|*.txz) tar --xz --help &> /dev/null \ && tar --xz -xvf "$file" \ || xzcat "$file" | tar xvf - ;; (*.tar.zma|*.tlz) tar --lzma --help &> /dev/null \ && tar --lzma -xvf "$file" \ || lzcat "$file" | tar xvf - ;; (*.tar.zst|*.tzst) tar --zstd --help &> /dev/null \ && tar --zstd -xvf "$file" \ || zstdcat "$file" | tar xvf - ;; (*.tar) tar xvf "$file" ;; (*.tar.lz) (( $+commands[lzip] )) && tar xvf "$file" ;; (*.tar.lz4) lz4 -c -d "$file" | tar xvf - ;; (*.tar.lrz) (( $+commands[lrzuntar] )) && lrzuntar "$file" ;; (*.gz) (( $+commands[pigz] )) && pigz -dk "$file" || gunzip -k "$file" ;; (*.bz2) bunzip2 "$file" ;; (*.xz) unxz "$file" ;; (*.lrz) (( $+commands[lrunzip] )) && lrunzip "$file" ;; (*.lz4) lz4 -d "$file" ;; (*.lzma) unlzma "$file" ;; (*.z) uncompress "$file" ;; (*.zip|*.war|*.jar|*.ear|*.sublime-package|*.ipa|*.ipsw|*.xpi|*.apk|*.aar|*.whl) unzip "$file" -d "$extract_dir" ;; (*.rar) unrar x -ad "$file" ;; (*.rpm) command mkdir -p "$extract_dir" && builtin cd -q "$extract_dir" \ && rpm2cpio "$full_path" | cpio --quiet -id ;; (*.7z) 7za x "$file" ;; (*.deb) command mkdir -p "$extract_dir/control" "$extract_dir/data" builtin cd -q "$extract_dir"; ar vx "$full_path" > /dev/null builtin cd -q control; extract ../control.tar.* builtin cd -q ../data; extract ../data.tar.* builtin cd -q ..; command rm *.tar.* debian-binary ;; (*.zst) unzstd "$file" ;; (*.cab) cabextract -d "$extract_dir" "$file" ;; (*.cpio) cpio -idmvF "$file" ;; (*) echo "extract: '$file' cannot be extracted" >&2 success=1 ;; esac (( success = success > 0 ? success : $? )) (( success == 0 && remove_archive == 0 )) && rm "$full_path" shift # Go back to original working directory in case we ran cd previously builtin cd -q "$pwd" done }
Shell
4
sshishov/ohmyzsh
plugins/extract/extract.plugin.zsh
[ "MIT" ]
2016-04-09 01:11:05 fuyuki hi 2016-04-09 01:11:05 [01:11] 2016-04-09 01:11:35 fuyuki are you here 2016-04-09 01:11:39 fuyuki test 2016-04-09 01:11:41 fuyuki ok 2016-04-09 01:11:42 fuyuki what 2016-04-09 01:11:50 fsociety yup 2016-04-09 01:11:55 fuyuki ok 2016-04-09 01:12:13 fuyuki my text is fucked up but yours if fine 2016-04-09 01:12:31 fuyuki ok 2016-04-09 01:12:33 fsociety what do you mean fucked up? 2016-04-09 01:12:35 fuyuki this workd 2016-04-09 01:12:39 fuyuki nvm 2016-04-09 01:13:20 fuyuki https://u.teknik.io/C1Boh.png 2016-04-09 01:17:51 fuyuki (fuyuki@120E3F0A.1B8F52BE.D3FE0E2B.IP) has quit (Lost terminal) 2016-04-09 01:17:55 - fuyuki (fuyuki@120E3F0A.1B8F52BE.D3FE0E2B.IP) is back on server 2016-04-09 01:18:39 fuyuki (fuyuki@120E3F0A.1B8F52BE.D3FE0E2B.IP) has quit (Lost terminal) 2016-04-09 01:18:51 - fuyuki (fuyuki@120E3F0A.1B8F52BE.D3FE0E2B.IP) is back on server 2016-04-09 01:24:00 [01:18] 2016-04-09 01:35:01 fuyuki (fuyuki@120E3F0A.1B8F52BE.D3FE0E2B.IP) has quit (Ping timeout: 180 seconds) 2016-04-09 01:41:00 [01:35] 2016-04-09 06:03:41 - fuyuki (fuyuki@120E3F0A.1B8F52BE.D3FE0E2B.IP) is back on server 2016-04-09 06:03:41 [06:03] 2016-04-09 06:16:04 fuyuki (fuyuki@120E3F0A.1B8F52BE.D3FE0E2B.IP) has quit (Ping timeout: 180 seconds) 2016-04-09 06:21:03 - fuyuki (fuyuki@120E3F0A.1B8F52BE.D3FE0E2B.IP) is back on server 2016-04-09 06:21:03 [06:21] 2016-04-09 06:21:59 fuyuki (fuyuki@120E3F0A.1B8F52BE.D3FE0E2B.IP) has quit (Lost terminal) 2016-04-09 06:22:42 - fuyuki (fuyuki@120E3F0A.1B8F52BE.D3FE0E2B.IP) is back on server 2016-04-09 06:23:36 fuyuki (fuyuki@120E3F0A.1B8F52BE.D3FE0E2B.IP) has quit (WeeChat 1.4) 2016-04-09 06:23:48 - fuyuki (fuyuki@120E3F0A.1B8F52BE.D3FE0E2B.IP) is back on server 2016-04-09 06:29:00 [06:23] 2016-04-09 07:09:18 fuyuki (fuyuki@120E3F0A.1B8F52BE.D3FE0E2B.IP) has quit (Lost terminal) 2016-04-09 07:09:18 [07:09] 2016-04-09 07:09:24 - fuyuki (fuyuki@120E3F0A.1B8F52BE.D3FE0E2B.IP) is back on server 2016-04-09 07:10:21 fuyuki (fuyuki@120E3F0A.1B8F52BE.D3FE0E2B.IP) has quit (WeeChat 1.4) 2016-04-09 07:16:00 [07:10] 2016-04-09 08:03:07 - fuyuki (fuyuki@120E3F0A.1B8F52BE.D3FE0E2B.IP) is back on server 2016-04-09 08:03:07 [08:03] 2016-04-09 08:49:35 fuyuki (fuyuki@120E3F0A.1B8F52BE.D3FE0E2B.IP) has quit (Lost terminal) 2016-04-09 08:49:35 [08:49] 2016-04-09 08:49:57 - fuyuki (fuyuki@120E3F0A.1B8F52BE.D3FE0E2B.IP) is back on server 2016-04-09 08:55:00 [08:49] 2016-04-09 09:18:34 fuyuki (fuyuki@120E3F0A.1B8F52BE.D3FE0E2B.IP) has quit (Ping timeout: 180 seconds) 2016-04-09 09:18:34 [09:18] 2016-04-09 09:34:13 - fuyuki (fuyuki@120E3F0A.1B8F52BE.D3FE0E2B.IP) is back on server 2016-04-09 09:34:13 [09:34] 2016-04-09 10:00:42 fuyuki (fuyuki@120E3F0A.1B8F52BE.D3FE0E2B.IP) has quit (Ping timeout: 180 seconds) 2016-04-09 10:00:42 [10:00] 2016-04-09 10:29:43 - fuyuki (fuyuki@120E3F0A.1B8F52BE.D3FE0E2B.IP) is back on server 2016-04-09 10:29:43 [10:29] 2016-04-09 10:57:20 fuyuki (fuyuki@120E3F0A.1B8F52BE.D3FE0E2B.IP) has quit (Ping timeout: 180 seconds) 2016-04-09 10:57:20 [10:57] 2016-04-09 12:30:37 - fuyuki (fuyuki@120E3F0A.1B8F52BE.D3FE0E2B.IP) is back on server 2016-04-09 12:30:37 [12:30] 2016-04-09 12:34:49 fuyuki (fuyuki@120E3F0A.1B8F52BE.D3FE0E2B.IP) has quit (Ping timeout: 180 seconds) 2016-04-09 12:40:00 [12:34] 2016-04-09 19:55:58 irc: disconnected from server
IRC log
0
0x4b1dN/2016-dots
misc/weechat/logs/irc.unixchat.fuyuki.weechatlog
[ "MIT" ]
#include <iostream> #include <string> int main() int a, b; std::string str; ? "Type two integers: " a b "Well done! Now type a string: " str "Congratulations!\n" ! ! "Following line is produced by command: ! a b str \"Second string\"" ! a b str "Second string" ! !! "!! is a quick print without ending the line..." ! " Ending the line in the following command exemplified!" ! "Following line is produced by command: ?? a b str" ?? a b str //Cout still works, and can optionally imply "<<" std::cout "A is valued " a std::endl std::cout << "B is valued " << b << std::endl
COBOL
1
saviour07/CPY
Examples/Quick print/main.cpy
[ "MIT" ]
struct FancyNum { num: u8, } fn main() { let mut fancy_num = FancyNum { num: 5 }; let fancy_ref = &fancy_num; fancy_num = FancyNum { num: 6 }; //~ ERROR [E0506] println!("Num: {}, Ref: {}", fancy_num.num, fancy_ref.num); }
Rust
3
Eric-Arellano/rust
src/test/ui/error-codes/E0506.rs
[ "ECL-2.0", "Apache-2.0", "MIT-0", "MIT" ]
# # Copyright 2017 Google Inc. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. # Keyhole initialization script (csh) setenv PATH "${PATH}:/opt/google/bin"
Tcsh
1
ezeeyahoo/earthenterprise
earth_enterprise/src/common/config/ge-server.csh
[ "Apache-2.0" ]
syntax = "proto3"; import "google/protobuf/timestamp.proto"; package openstorage.api; option go_package = "api"; option java_multiple_files = true; option java_package = "com.openstorage.api"; enum Status { STATUS_NONE = 0; STATUS_INIT = 1; STATUS_OK = 2; STATUS_OFFLINE = 3; STATUS_ERROR = 4; STATUS_NOT_IN_QUORUM = 5; STATUS_DECOMMISSION = 6; STATUS_MAINTENANCE = 7; STATUS_STORAGE_DOWN = 8; STATUS_STORAGE_DEGRADED = 9; STATUS_NEEDS_REBOOT = 10; STATUS_STORAGE_REBALANCE = 11; STATUS_STORAGE_DRIVE_REPLACE = 12; // Add statuses before MAX and update the number for MAX STATUS_MAX = 13; } enum DriverType { DRIVER_TYPE_NONE = 0; DRIVER_TYPE_FILE = 1; DRIVER_TYPE_BLOCK = 2; DRIVER_TYPE_OBJECT = 3; DRIVER_TYPE_CLUSTERED = 4; DRIVER_TYPE_GRAPH = 5; } enum FSType { FS_TYPE_NONE = 0; FS_TYPE_BTRFS = 1; FS_TYPE_EXT4 = 2; FS_TYPE_FUSE = 3; FS_TYPE_NFS = 4; FS_TYPE_VFS = 5; FS_TYPE_XFS = 6; FS_TYPE_ZFS = 7; } enum GraphDriverChangeType { GRAPH_DRIVER_CHANGE_TYPE_NONE = 0; GRAPH_DRIVER_CHANGE_TYPE_MODIFIED = 1; GRAPH_DRIVER_CHANGE_TYPE_ADDED = 2; GRAPH_DRIVER_CHANGE_TYPE_DELETED = 3; } enum SeverityType { SEVERITY_TYPE_NONE = 0; SEVERITY_TYPE_ALARM = 1; SEVERITY_TYPE_WARNING = 2; SEVERITY_TYPE_NOTIFY = 3; } enum ResourceType { RESOURCE_TYPE_NONE = 0; RESOURCE_TYPE_VOLUME = 1; RESOURCE_TYPE_NODE = 2; RESOURCE_TYPE_CLUSTER = 3; RESOURCE_TYPE_DRIVE = 4; } enum AlertActionType { ALERT_ACTION_TYPE_NONE = 0; ALERT_ACTION_TYPE_DELETE = 1; ALERT_ACTION_TYPE_CREATE = 2; ALERT_ACTION_TYPE_UPDATE = 3; } enum VolumeActionParam { VOLUME_ACTION_PARAM_NONE = 0; // Maps to the boolean value false VOLUME_ACTION_PARAM_OFF = 1; // Maps to the boolean value true. VOLUME_ACTION_PARAM_ON = 2; } enum CosType { NONE = 0; LOW = 1; MEDIUM = 2; HIGH = 3; } enum IoProfile { IO_PROFILE_SEQUENTIAL = 0; IO_PROFILE_RANDOM= 1; IO_PROFILE_DB = 2; IO_PROFILE_DB_REMOTE = 3; } // VolumeState represents the state of a volume. enum VolumeState { VOLUME_STATE_NONE = 0; // Volume is transitioning to new state VOLUME_STATE_PENDING = 1; // Volume is ready to be assigned to a container VOLUME_STATE_AVAILABLE = 2; // Volume is attached to container VOLUME_STATE_ATTACHED = 3; // Volume is detached but associated with a container VOLUME_STATE_DETACHED = 4; // Volume detach is in progress VOLUME_STATE_DETATCHING = 5; // Volume is in error state VOLUME_STATE_ERROR = 6; // Volume is deleted, it will remain in this state // while resources are asynchronously reclaimed VOLUME_STATE_DELETED = 7; // Volume is trying to be detached VOLUME_STATE_TRY_DETACHING = 8; // Volume is undergoing restore VOLUME_STATE_RESTORE = 9; } // VolumeStatus represents a health status for a volume. enum VolumeStatus { VOLUME_STATUS_NONE = 0; // Volume is not present VOLUME_STATUS_NOT_PRESENT = 1; // Volume is healthy VOLUME_STATUS_UP = 2; // Volume is in fail mode VOLUME_STATUS_DOWN = 3; // Volume is up but with degraded performance // In a RAID group, this may indicate a problem with one or more drives VOLUME_STATUS_DEGRADED = 4; } enum StorageMedium { // Magnetic spinning disk. STORAGE_MEDIUM_MAGNETIC = 0; // SSD disk STORAGE_MEDIUM_SSD = 1; // NVME disk STORAGE_MEDIUM_NVME = 2; } enum ClusterNotify { // Node is down CLUSTER_NOTIFY_DOWN = 0; } enum AttachState { // Attached and available externally ATTACH_STATE_EXTERNAL = 0; // Attached but only available internally ATTACH_STATE_INTERNAL = 1; // Switching from External to Internal ATTACH_STATE_INTERNAL_SWITCH = 2; } // StorageResource groups properties of a storage device. message StorageResource { // Id is the LUN identifier. string id = 1; // Path device path for this storage resource. string path = 2; // Storage medium. StorageMedium medium = 3; // True if this device is online. bool online = 4;; // IOPS uint64 iops = 5;; // SeqWrite double seq_write = 6; // SeqRead double seq_read = 7; // RandRW double randRW = 8; // Total size in bytes. uint64 size = 9;; // Physical Bytes used. uint64 used = 10; // True if this device is rotational. string rotation_speed = 11; // Timestamp of last time this device was scanned. google.protobuf.Timestamp last_scan = 12; } // StoragePool groups different storage devices based on their CosType message StoragePool { // ID pool ID int32 ID = 1; // Cos reflects the capabilities of this drive pool CosType Cos = 2; // Medium underlying storage type StorageMedium Medium = 3; // RaidLevel storage raid level string RaidLevel = 4; // TotalSize of the pool uint64 TotalSize = 7; // Used size of the pool uint64 Used = 8; // Labels is a list of user defined name-value pairs map<string, string> labels = 9; } // VolumeLocator is a structure that is attached to a volume // and is used to carry opaque metadata. message VolumeLocator { // User friendly identifier string name = 1; // A set of name-value pairs that acts as search filters map<string, string> volume_labels = 2; } message Source { // A volume id, if specified will create a clone of the parent. string parent = 1; // Seed will seed the volume from the specified URI // Any additional config for the source comes from the labels in the spec string seed = 2; } message Group { // Id common identifier across volumes that have the same group. string id = 1; } // VolumeSpec has the properties needed to create a volume. message VolumeSpec { // Ephemeral storage bool ephemeral = 1; // Size specifies the thin provisioned volume size. uint64 size = 2; // Format specifies the filesystem for this volume. FSType format = 3; // BlockSize for the filesystem. int64 block_size = 4; // HaLevel specifies the number of copies of data. int64 ha_level = 5; // Cos specifies the relative class of service. CosType cos = 6; // IoProfile provides a hint about application using this volume. IoProfile io_profile = 7; // Dedupe specifies if the volume data is to be de-duplicated. bool dedupe = 8; // SnapshotInterval in minutes, set to 0 to disable snapshots uint32 snapshot_interval = 9; // VolumeLabels configuration labels map<string, string> volume_labels = 10; // Shared is true if this volume can be remotely accessed. bool shared = 11; // ReplicaSet is the desired set of nodes for the volume data. ReplicaSet replica_set = 12; // Aggregatiokn level Specifies the number of parts the volume can be aggregated from. uint32 aggregation_level = 13; // Encrypted is true if this volume will be cryptographically secured. bool encrypted = 14; // Passphrase for an encrypted volume string passphrase = 15; // SnapshotSchedule a well known string that specifies when snapshots should be taken. string snapshot_schedule = 16; // Scale allows autocreation of volumes. uint32 scale = 17; // Sticky volumes cannot be deleted until the flag is removed. bool sticky = 18; // Group identifies a consistency group Group group = 21; // GroupEnforced is true if consistency group creation is enforced. bool group_enforced = 22; // Compressed is true if this volume is to be compressed. bool compressed = 23; } // ReplicaSet set of machine IDs (nodes) to which part of this volume is erasure // coded - for clustered storage arrays message ReplicaSet { repeated string nodes = 1; } // RuntimeStateMap is a list of name value mapping of driver specific runtime // information. message RuntimeStateMap { map<string, string> runtime_state = 1; } // Volume represents an abstract storage volume. // Volume represents an abstract storage volume. message Volume { // Self referential volume ID. string id = 1; // Source specified seed data for the volume. Source source = 2; // Group volumes in the same group have the same group id. Group group = 3; // Readonly is true if this volume is to be mounted with readonly access. bool readonly = 4; // User specified locator VolumeLocator locator = 5; // Volume creation time google.protobuf.Timestamp ctime = 6; // User specified VolumeSpec VolumeSpec spec = 7; // Usage is bytes consumed by vtheis volume. uint64 usage = 8; // LastScan is the time when an integrity check was run. google.protobuf.Timestamp last_scan = 9; // Format specifies the filesytem for this volume. FSType format = 10; // Status is the availability status of this volume. VolumeStatus status = 11; // State is the current runtime state of this volume. VolumeState state = 12; // AttachedOn is the node instance identifier for clustered systems. string attached_on = 13; // AttachedState shows whether the device is attached for internal or external use. AttachState attached_state = 14; // DevicePath is the device exported by block device implementations. string device_path = 15; // SecureDevicePath is the device path for an encrypted volume. string secure_device_path = 16; // AttachPath is the mounted path in the host namespace. repeated string attach_path = 17; // AttachInfo is a list of name value mappings that provides attach information. map<string, string> attach_info = 18; // ReplicatSets storage for this volumefor clustered storage arrays. repeated ReplicaSet replica_sets = 19; // RuntimeState is a lst of name value mapping of driver specific runtime // information. repeated RuntimeStateMap runtime_state = 20; // Error is the Last recorded error. string error = 21; } message Stats { // Reads completed successfully uint64 reads = 1; // Time spent in reads in ms uint64 read_ms = 2; uint64 read_bytes = 3; // Writes completed successfully uint64 writes = 4; // Time spent in writes in ms uint64 write_ms = 5; uint64 write_bytes = 6; // IOs curently in progress uint64 io_progress = 7; // Time spent doing IOs ms uint64 io_ms = 8; // BytesUsed uint64 bytes_used = 9; // Interval in ms during which stats were collected uint64 interval_ms = 10; } message Alert { // Id for Alert int64 id = 1; // Severity of the Alert SeverityType severity = 2; // AlertType user defined alert type int64 alert_type = 3; // Message describing the Alert string message = 4; //Timestamp when Alert occured google.protobuf.Timestamp timestamp = 5; // ResourceId where Alert occured string resource_id = 6; // Resource where Alert occured ResourceType resource = 7; // Cleared Flag bool cleared = 8; // TTL in seconds for this Alert uint64 ttl = 9; // UniqueTag helps identify a unique alert for a given resouce string unique_tag = 10; } message Alerts { repeated Alert alert = 1; } message VolumeCreateRequest { // User specified volume name and labels VolumeLocator locator = 1; // Source to create volume Source source = 2; // The storage spec for the volume VolumeSpec spec = 3; } message VolumeResponse { string error = 1; } message VolumeCreateResponse { // ID of the newly created volume string id = 1; VolumeResponse volume_response = 2; } // VolumeStateAction specifies desired actions. message VolumeStateAction { // Attach or Detach volume VolumeActionParam attach = 1; // Mount or unmount volume VolumeActionParam mount = 2; // MountPath Path where the device is mounted string mount_path = 3; // DevicePath Path returned in attach string device_path = 4; // UnmountBeforeDetach is used to check whether unmount should be done before // a detach bool unmount_before_detach = 5; } message VolumeSetRequest { // User specified volume name and labels VolumeLocator locator = 1; // The storage spec for the volume VolumeSpec spec = 2; // State modification on this volume. VolumeStateAction action = 3; // additional options // required for the Set operation. map<string, string> options = 4; } message VolumeSetResponse { Volume volume = 1; VolumeResponse volume_response = 2; } message SnapCreateRequest { // volume id string id = 1; VolumeLocator locator = 2; bool readonly = 3; } message SnapCreateResponse { VolumeCreateResponse volume_create_response = 1; } message VolumeInfo { string volume_id = 1; string path = 2; VolumeSpec storage = 3; } // GraphDriverChanges represent a list of changes between the filesystem layers // specified by the ID and Parent. // Parent may be an empty string, in which // case there is no parent. // Where the Path is the filesystem path within the layered filesystem message GraphDriverChanges { string path = 1; GraphDriverChangeType kind = 2; } message ClusterResponse { string error = 1; } message ActiveRequest { map<int64, string> ReqestKV = 1; } message ActiveRequests { int64 RequestCount = 1; repeated ActiveRequest ActiveRequest = 2; }
Protocol Buffer
5
yankay/autoscaler
vertical-pod-autoscaler/e2e/vendor/github.com/libopenstorage/openstorage/api/api.proto
[ "Apache-2.0" ]
; CLW file contains information for the MFC ClassWizard [General Info] Version=1 LastClass=CFlashWinDlg LastTemplate=CDialog NewFileInclude1=#include "stdafx.h" NewFileInclude2=#include "FlashWin.h" ClassCount=3 Class1=CFlashWinApp Class2=CFlashWinDlg Class3=CAboutDlg ResourceCount=5 Resource1=IDD_ABOUTBOX Resource2=IDR_MAINFRAME Resource3=IDD_FLASHWIN_DIALOG Resource4=IDD_ABOUTBOX (English (U.S.)) Resource5=IDD_FLASHWIN_DIALOG (English (U.S.)) [CLS:CFlashWinApp] Type=0 HeaderFile=FlashWin.h ImplementationFile=FlashWin.cpp Filter=N [CLS:CFlashWinDlg] Type=0 HeaderFile=FlashWinDlg.h ImplementationFile=FlashWinDlg.cpp Filter=D BaseClass=CDialog VirtualFilter=dWC LastObject=IDC_COMBO_FLAGS [CLS:CAboutDlg] Type=0 HeaderFile=FlashWinDlg.h ImplementationFile=FlashWinDlg.cpp Filter=D [DLG:IDD_ABOUTBOX] Type=1 ControlCount=4 Control1=IDC_STATIC,static,1342177283 Control2=IDC_STATIC,static,1342308352 Control3=IDC_STATIC,static,1342308352 Control4=IDOK,button,1342373889 Class=CAboutDlg [DLG:IDD_FLASHWIN_DIALOG] Type=1 ControlCount=3 Control1=IDOK,button,1342242817 Control2=IDCANCEL,button,1342242816 Control3=IDC_STATIC,static,1342308352 Class=CFlashWinDlg [DLG:IDD_FLASHWIN_DIALOG (English (U.S.))] Type=1 Class=CFlashWinDlg ControlCount=9 Control1=ID_CMD,button,1342242817 Control2=IDCANCEL,button,1342242816 Control3=IDC_COMBO_FLAGS,combobox,1344339971 Control4=IDC_STATIC,static,1342308352 Control5=IDC_EDIT_COUNT,edit,1350631552 Control6=IDC_EDIT_TIMEOUT,edit,1350631552 Control7=IDC_STATIC,static,1342308352 Control8=IDC_STATIC,static,1342308352 Control9=ID_CMD2,button,1342242817 [DLG:IDD_ABOUTBOX (English (U.S.))] Type=1 Class=? ControlCount=4 Control1=IDC_STATIC,static,1342177283 Control2=IDC_STATIC,static,1342308480 Control3=IDC_STATIC,static,1342308352 Control4=IDOK,button,1342373889
Clarion
2
oudream/ccxx
test/dump/swdbgbk_src/chap13/FlashWin/FlashWin.clw
[ "MIT" ]
( Kat-SocialsII.muf -- Copyright 2003-2006 Raine 'Gravecat' Simmons <raine@moxx.net> Based on Socials v2.2 by Katt@Dreams Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ) $def MAJOR_VERSION 1 $def MINOR_VERSION 4 $def PATCH_VERSION 8 : ver display_version ; PUBLIC ver lvar target lvar words lvar pos lvar string lvar randomobject lvar temp $include $lib/ansify $include $lib/case $include $lib/kat : banner ( -- ) " " .tell "~&160.--------------------------. ~&170/\\_/\\" ansi-tell "~&160| ~&120Socials-II ~&160| ~&170=( ~&120o~&150.~&120O ~&170)=" ansi-tell "~&160| ~&130-= v" MAJOR_VERSION intostr "." MINOR_VERSION intostr PATCH_VERSION intostr " =- ~&160| ~&170) (" strcat strcat strcat strcat strcat ansi-tell "~&160'--------------------------'-~&170\"\"~&160-----~&170\"\"~&160-." ansi-tell "~&160| Copyright (C) 2003-2006 Gravecat |" ansi-tell "~&160| Based on Socials v2.2 by Katt@Dreams |" ansi-tell "~&160'--------------------------------------'" ansi-tell " " .tell ; : help ( -- ) banner " ~&120<social>~&070 - Use a social (e.g. 'dance')" ansi-tell " ~&120<social> <target>~&070 - Use a social on someone (e.g. 'hug Katrina')" ansi-tell " ~&120<social> me~&070 - Use a social on yourself (e.g. 'hug me')" ansi-tell " " .tell "See '" command @ " #help2' for information on how to make your own socials." strcat strcat .tell " " .tell ; : help2 ( -- ) " " .tell "~&170Making your own socials!" ansi-tell "~&170------------------------" ansi-tell " " .tell "First, you need to create an action for the social or socials to go on. The" .tell "action can be a single word (e.g. 'hug') or a list of semicolon-seperated words" .tell "(e.g. 'hug;pounce;fuzzle;scritch') to allow multiple socials." .tell " " .tell " ~&120@act <social>=<object>,$socials" ansi-tell " " .tell "<social> is the name of the social or socials on this action, and <object> is" .tell "where you want to put it. If the action is on yourself, only you can use these" .tell "socials. If it's on an object, anyone holding the object or in the same room as" .tell "where it's been left can use them. And if it's in a room, anyone in that room" .tell "can use them.".tell " " .tell "Next, setting up the social messages. If you leave this part blank, your socials" .tell "will be pretty generic - for example, \"Katrina pounces Lucar!\"." .tell " " .tell " ~&120@set <social>=<social>/target:<target message>" ansi-tell " ~&120@set <social>=<social>/self:<self message>" ansi-tell " ~&120@set <social>=<social>/null:<null message>" ansi-tell " " .tell "This may look a bit confusing, so here is an example:" .tell " " .tell " ~&120@set hug=hug/target:%uN %vpull %tn into a warm hug." ansi-tell " ~&120@set hug=hug/self:%uN %vgive %ur a hug." ansi-tell " ~&120@set hug=hug/null:%uN %vspread %up arms, shouting, \"Group Hug!\"" ansi-tell " " .tell "The words prefixed with %v are words that should be pluralized to the target and" .tell "room. For example, \"%vpull\" will show up as \"pull\" on your screen, but \"pulls\"" .tell "on the screens of your target and everyone else in the room. The rest of the" .tell "pronouns consist of the defaults ('help pronouns'), prefixed with %u (user) or" .tell "%t (target). You may also use %random to specify a random object on the MUCK." .tell " " .tell ; : socialslist ( -- ) trig name "" "socials;" subst ", " ";" subst "Available socials: " swap strcat "." strcat .tell ; : ensure ( s -- s' ) dup me @ name strlen 1 swap midstr me @ name strcmp not if exit then me @ name " " strcat swap strcat ; : getrandomobject ( -- ) "" begin pop random dbtop int % dbref dup thing? until dup "_nohide" getpropstr .yes? if pop getrandomobject exit then dup "@sporkfire" propdir? if pop getrandomobject exit then dup "@kat" propdir? if pop getrandomobject exit then dup "@active" getpropstr .yes? if pop getrandomobject exit then name strip randomobject ! randomobject @ tolower case " plushie" instr when getrandomobject exit end endcase ; : targetmesg ( -- s ) trig command @ "/target" strcat getpropstr dup if exit then pop "%uN %v" command @ " %tn!" strcat strcat ; : selfmesg ( -- s ) trig command @ "/self" strcat getpropstr dup if exit then pop "%uN %v" command @ " %ur!" strcat strcat ; : nullmesg ( -- s ) trig command @ "/null" strcat getpropstr dup if exit then pop "%uN %v" command @ " everyone!" strcat strcat ; : split-vword ( i s -- s s s ) pos ! " " strcat string ! string @ 1 pos @ 1 - midstr string @ pos @ string @ strlen 1 + pos @ - midstr dup " " instring pos ! dup 1 pos @ 1 - midstr swap dup pos @ swap strlen midstr striptail ; : remove-vwords ( s -- s' ) dup "%v" instring dup not if pop exit then split-vword swap dup strlen 3 swap midstr swap strcat strcat remove-vwords ; : parse-vwords ( s -- s' ) dup "%v" instring dup not if pop exit then split-vword swap dup strlen 3 swap midstr dup dup strlen dup midstr case "h" strcmp not when "es" end "i" strcmp not when "es" end "j" strcmp not when "es" end "s" strcmp not when "es" end "x" strcmp not when "es" end "z" strcmp not when "es" end default pop "s" end endcase strcat swap strcat strcat parse-vwords ; : parse-null ( s -- s' ) me @ name "'s" strcat "%uN's" subst me @ name "%uN" subst me @ name "'s" strcat "%un's" subst me @ name "%un" subst target @ name "'s" strcat "%tN's" subst target @ name "%tN" subst target @ name "'s" strcat "%tn's" subst target @ name "%tn" subst me @ "%a" pronoun_sub "%ua" subst me @ "%s" pronoun_sub "%us" subst me @ "%o" pronoun_sub "%uo" subst me @ "%p" pronoun_sub "%up" subst me @ "%r" pronoun_sub "%ur" subst me @ "%A" pronoun_sub "%uA" subst me @ "%S" pronoun_sub "%uS" subst me @ "%O" pronoun_sub "%uO" subst me @ "%P" pronoun_sub "%uP" subst me @ "%R" pronoun_sub "%uR" subst target @ "%a" pronoun_sub "%ta" subst target @ "%s" pronoun_sub "%ts" subst target @ "%o" pronoun_sub "%to" subst target @ "%p" pronoun_sub "%tp" subst target @ "%r" pronoun_sub "%tr" subst target @ "%A" pronoun_sub "%tA" subst target @ "%S" pronoun_sub "%tS" subst target @ "%O" pronoun_sub "%tO" subst target @ "%P" pronoun_sub "%tP" subst target @ "%R" pronoun_sub "%tR" subst randomobject @ "%random" subst parse-vwords ensure ; : parse-self ( s -- s' ) "Your" "%uN's" subst "You" "%uN" subst "your" "%un's" subst "you" "%un" subst target @ name "'s" strcat "%tN's" subst target @ name "%tN" subst target @ name "'s" strcat "%tn's" subst target @ name "%tn" subst "yours" "%ua" subst "you" "%us" subst "you" "%uo" subst "your" "%up" subst "yourself" "%ur" subst "Yours" "%uA" subst "You" "%uS" subst "You" "%uO" subst "Your" "%uP" subst "Yourself" "%uR" subst target @ "%a" pronoun_sub "%ta" subst target @ "%s" pronoun_sub "%ts" subst target @ "%o" pronoun_sub "%to" subst target @ "%p" pronoun_sub "%tp" subst target @ "%r" pronoun_sub "%tr" subst target @ "%A" pronoun_sub "%tA" subst target @ "%S" pronoun_sub "%tS" subst target @ "%O" pronoun_sub "%tO" subst target @ "%P" pronoun_sub "%tP" subst target @ "%R" pronoun_sub "%tR" subst randomobject @ "%random" subst remove-vwords ; : parse-target ( s -- s' ) target @ name "'s" strcat "%tN's" subst me @ name "%uN" subst me @ name "'s" strcat "%un's" subst me @ name "%un" subst "Your" "%tN's" subst "You" "%tN" subst "your" "%tn's" subst "you" "%tn" subst me @ "%a" pronoun_sub "%ua" subst me @ "%s" pronoun_sub "%us" subst me @ "%o" pronoun_sub "%uo" subst me @ "%p" pronoun_sub "%up" subst me @ "%r" pronoun_sub "%ur" subst me @ "%A" pronoun_sub "%uA" subst me @ "%S" pronoun_sub "%uS" subst me @ "%O" pronoun_sub "%uO" subst me @ "%P" pronoun_sub "%uP" subst me @ "%R" pronoun_sub "%uR" subst "yours" "%ta" subst "you" "%ts" subst "you" "%to" subst "your" "%tp" subst "yourself" "%tr" subst "Yours" "%tA" subst "You" "%tS" subst "You" "%tO" subst "Your" "%tP" subst "Yourself" "%tR" subst randomobject @ "%random" subst parse-vwords ensure ; : social ( s -- ) dup parse-self .tell me @ target @ dbcmp not if dup parse-target target @ swap notify then parse-null loc @ me @ target @ 2 5 pick notify_exclude ; : main dup tolower "#help" strcmp not if help exit then dup tolower "#help2" strcmp not if help2 exit then command @ tolower "socials" strcmp not if socialslist exit then dup not if pop #0 target ! else kmatch target ! target @ #-1 dbcmp if "I don't see anything like that here." .tell exit then target @ #-2 dbcmp if "I'm not sure which one you mean. Please be more specific." .tell exit then target @ #-3 dbcmp if "Don't be silly." .tell exit then target @ program? target @ exit? or if "That's a silly thing to " command @ "." strcat strcat .tell exit then then target @ player? if target @ location me @ location = not if "I don't see that person here." .tell exit then then getrandomobject target @ #0 dbcmp if nullmesg social exit then target @ me @ dbcmp if selfmesg social exit then targetmesg social ;
MUF
4
Gravecat/fb6muf
kat-socials2.muf
[ "MIT" ]
p { color: #666; font-family: sans-serif; font-weight:300; line-height: 1.5em; } a { color:#419bf9; } strong { font-weight:500; font-family:sans-serif; } .alert { text-align:center; display:block; text-shadow:0 1px rgba(255,255,255,0.7); color: #BB4945; background-color: #F2DEDE; border:1px solid #EFD3D7; padding: 16px; font-size: 14px; margin-bottom: 20px; } .alert p:first-child { margin-top: 0px; margin-bottom: 0px; } .btn { outline:0; padding: 0.44em 1em; border-radius: 4px; border: 0; cursor: default; display: inline-block; color: #231f20; background: linear-gradient(to top, rgba(241, 241, 241, 0.75) 0%, rgba(253, 253, 253, 0.75) 100%); box-shadow: 0 0.5px 0 rgba(0, 0, 0, 0.15), 0 -0.5px 0 rgba(0, 0, 0, 0.15), 0.5px 0 0 rgba(0, 0, 0, 0.15), -0.5px 0 0 rgba(0, 0, 0, 0.15), 0 1px 1px rgba(0, 0, 0, 0.15); line-height: 1.3em; font-size: 15px; text-decoration: none; } .btn:active { cursor: default; background-color: rgba(230, 230, 230, 0.75); box-shadow: 0 0.5px 0 rgba(0,0,0,0.15), 0 -0.5px 0 rgba(0,0,0,0.15), 0.5px 0 0 rgba(0,0,0,0.15), -0.5px 0 0 rgba(0,0,0,0.15), 0 -1px 1px rgba(0, 0, 0, 0.21); } .btn:focus { outline: none } html, body { font-family:sans-serif; background-color:#F7F7F7; height: 100%; border:0; padding:0; margin:0; } body.nylas-gradient-bg { background-color: #F6F6F6; background-size: cover; color: white; } .nylas-logo { width: 90px; height: 93px; background: url("/static/images/logo@2x.png") top left no-repeat; background-size: cover; margin: auto; margin-bottom: 60px; } h1 { padding:0; margin:0; margin-bottom:30px; font-family: 'FaktPro-Black', sans-serif; color:#393939; font-size: 40pt; font-weight: 300; text-align:center; } h2 { padding:0; margin:0; margin-bottom:20px; font-family: 'FaktPro-Black', sans-serif; font-size:24pt; font-weight:300; color:#393939; text-align:center; } h3 { padding:0; margin:0; margin-bottom:15px; font-family: 'FaktPro-Black', sans-serif; font-weight:300; color:#393939; text-align:left; } h4 { padding:0; padding-top: 10px; margin:0; margin-bottom:10px; font-family: 'FaktPro-Black', sans-serif; font-size:16px; font-weight:300; color:#393939; text-align:center; } input { font-family: sans-serif; } input.field { width:100%; margin-bottom:20px; border:1px solid #D3D3D3; font-size:14px; padding:9px; } input.host-field { width:75%; margin-bottom:20px; margin-right:3%; border:1px solid #D3D3D3; font-size:14px; padding:9px; } input.port-field { width:22%; margin-bottom:20px; border:1px solid #D3D3D3; font-size:14px; padding:9px; } #footer { border-top:1px solid #EBEBEB; background-color:#FBFBFB; padding:20px; padding-left:30px; padding-right:30px; text-align:center; } #provider-logo { width:100px; height:80px; margin-bottom:30px; display:inline-block; text-align:center; } #container { margin:auto; padding-top:10%; width:420px; text-align:center; } #white-box { border:1px solid #D3D3D3; background-color:white; box-shadow:0 2px 3px rgba(0,0,0,0.05); } #clear-box { margin:auto; text-align:center; } #powered-by { font-weight:400; color:#ccc; margin-top:40px; } a.show_toggle { font-size:13px; color: #999; } a.explain { font-size:13px; color: #999; } a.error-help { font-size: 13px; color: #BB4945; } .help { text-align:center; display:none; text-shadow:0 1px rgba(255,255,255,0.7); color: #333; background-color: #eee; border:1px solid #aaa; padding: 9px; font-size: 14px; margin-bottom: 20px; position: absolute; width: 240px; } #provider_choice input[type=radio]:not(old){ opacity : 0; } #user_action p { font-size: 14px; } #loading { display:none; text-shadow:0 1px rgba(255,255,255,0.7); color: #333; background-color: #eee; border:1px solid #aaa; padding: 9px; font-size: 14px; margin-bottom: 20px; position: absolute; width: 147px; text-align: left; padding-left: 100px; } #reset-container { margin-top: 15px; } #reset-container a { font-size:13px; color: #999; } @media (max-width: 480px) { body { padding:0; margin:0; } #provider-logo { margin-bottom: 0; } #container { margin-top:0; width:100%; } #white-box { border-left:0; border-right:0; } input.field { font-size:18px; } input.btn { width:100%; font-size:18px; } }
CSS
4
cnheider/nylas-mail
packages/cloud-api/static/css/index.css
[ "MIT" ]
%!PS-Adobe-3.0 Resource-Encoding %%Title: VIM-iso-8859-8 %%Version: 1.0 0 %%EndComments /VIM-iso-8859-8[ /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /space /exclam /quotedbl /numbersign /dollar /percent /ampersand /quotesingle /parenleft /parenright /asterisk /plus /comma /minus /period /slash /zero /one /two /three /four /five /six /seven /eight /nine /colon /semicolon /less /equal /greater /question /at /A /B /C /D /E /F /G /H /I /J /K /L /M /N /O /P /Q /R /S /T /U /V /W /X /Y /Z /bracketleft /backslash /bracketright /asciicircum /underscore /grave /a /b /c /d /e /f /g /h /i /j /k /l /m /n /o /p /q /r /s /t /u /v /w /x /y /z /braceleft /bar /braceright /asciitilde /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /space /.notdef /cent /sterling /currency /yen /brokenbar /section /dieresis /copyright /multiply /guillemotleft /logicalnot /hyphen /registered /macron /degree /plusminus /twosuperior /threesuperior /acute /mu /paragraph /periodcentered /cedilla /onesuperior /divide /guillemotright /onequarter /onehalf /threequarters /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /underscoredbl /alef /bet /gimel /dalet /he /vav /zayin /het /tet /yod /finalkaf /kaf /lamed /finalmem /mem /finalnun /nun /samekh /ayin /finalpe /pe /finaltsadi /tsadi /qof /resh /shin /tav /.notdef /.notdef /.notdef /.notdef /.notdef] /Encoding defineresource pop % vim:ff=unix: %%EOF
PostScript
1
uga-rosa/neovim
runtime/print/iso-8859-8.ps
[ "Vim" ]