blob_id
stringlengths 40
40
| directory_id
stringlengths 40
40
| path
stringlengths 4
410
| content_id
stringlengths 40
40
| detected_licenses
sequencelengths 0
51
| license_type
stringclasses 2
values | repo_name
stringlengths 5
132
| snapshot_id
stringlengths 40
40
| revision_id
stringlengths 40
40
| branch_name
stringlengths 4
80
| visit_date
timestamp[us] | revision_date
timestamp[us] | committer_date
timestamp[us] | github_id
int64 5.85k
689M
⌀ | star_events_count
int64 0
209k
| fork_events_count
int64 0
110k
| gha_license_id
stringclasses 22
values | gha_event_created_at
timestamp[us] | gha_created_at
timestamp[us] | gha_language
stringclasses 131
values | src_encoding
stringclasses 34
values | language
stringclasses 1
value | is_vendor
bool 1
class | is_generated
bool 2
classes | length_bytes
int64 3
9.45M
| extension
stringclasses 32
values | content
stringlengths 3
9.45M
| authors
sequencelengths 1
1
| author_id
stringlengths 0
313
|
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
3a42a912624bec3ab52664aa23747f6831a635ac | 984f7fffc4c4b6372ae0392080022b25163e9b9a | /app/src/main/java/com/example/a41448/huawu/tools/views/HoverImageView.java | 5d2b8710f19f712ac59f3d1a682ae12c7486346a | [
"MIT"
] | permissive | 2017IOTrepo/GameEggsGame | cb0af92f3bb328d68a0610072ed0de6a90509048 | f71d6a28faabee68f4933e913f124a711ad81918 | refs/heads/master | 2022-02-20T08:14:44.401059 | 2019-10-31T09:30:35 | 2019-10-31T09:30:35 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 6,145 | java | package com.example.a41448.huawu.tools.views;
import android.annotation.SuppressLint;
import android.content.Context;
import android.content.res.TypedArray;
import android.graphics.Canvas;
import android.graphics.Paint;
import android.graphics.Path;
import android.graphics.PorterDuff;
import android.graphics.PorterDuffXfermode;
import android.graphics.Rect;
import android.graphics.RectF;
import android.graphics.Xfermode;
import android.graphics.drawable.BitmapDrawable;
import android.graphics.drawable.Drawable;
import android.support.annotation.Nullable;
import android.util.AttributeSet;
import android.view.MotionEvent;
import android.widget.ImageView;
import com.example.a41448.huawu.R;
@SuppressLint("AppCompatCustomView")
public class HoverImageView extends ImageView{
//以填满整个ImageView为目的,将原图的中心对准ImageView的中心,
// 等比例放大原图,直到填满ImageView为止
// (指的是ImageView的宽和高都要填满),
// 原图超过ImageView的部分作裁剪处理。
private static final ScaleType SCALE_TYPE = ScaleType.CENTER_CROP;
private static final PorterDuffXfermode duffMode = new PorterDuffXfermode(PorterDuff.Mode.SRC_IN);
private boolean pressed;
//创建
private int borderColor = 0x44000000;
private int hoverColor = 0x22000000;
//创建画笔
private Paint borderPaint;
//创建路径
private Path boundPath;
private Path borderPath;
private RectF rect = new RectF();
//图片的范围
private float borderWidth = 1f;
public HoverImageView(Context context) {
super(context);
setup(null);
}
public HoverImageView(Context context, @Nullable AttributeSet attrs) {
super(context, attrs);
setup(attrs);
}
public HoverImageView(Context context, @Nullable AttributeSet attrs, int defStyleAttr) {
super(context, attrs, defStyleAttr);
setup(attrs);
}
private void setup(AttributeSet attrs){
if (attrs != null){
@SuppressLint("CustomViewStyleable")
TypedArray typedArray = getContext().obtainStyledAttributes(attrs, R.styleable.RoundImageView);
borderColor = typedArray.getColor( R.styleable.RoundImageView_borderColor,borderColor);
hoverColor = typedArray.getColor(R.styleable.RoundImageView_hoverColor,hoverColor);
borderWidth = typedArray.getDimension(R.styleable.RoundImageView_borderwidth,borderWidth);
typedArray.recycle();
}
borderPath = new Path();
boundPath = new Path();
borderPaint = new Paint(Paint.ANTI_ALIAS_FLAG);
borderPaint.setStrokeWidth(borderWidth);
super.setScaleType(SCALE_TYPE);
}
@Override
protected void onDetachedFromWindow() {
setImageDrawable(null);
super.onDetachedFromWindow();
}
protected void drawBorder(Canvas canvas){
borderPaint.setStyle(Paint.Style.STROKE);
borderPaint.setColor(borderColor);
canvas.drawPath(borderPath,borderPaint);
}
protected void drawHover(Canvas canvas) {
if(this.isClickable() && pressed){
borderPaint.setStyle(Paint.Style.FILL);
borderPaint.setColor(hoverColor);
canvas.drawPath(boundPath, borderPaint);
}
}
public void buildBorderPath(Path borderPath) {
borderPath.reset();
final float halfBorderWidth = borderWidth * 0.5f;
boundPath.addRect(halfBorderWidth, halfBorderWidth,
getWidth() - halfBorderWidth, getHeight() - halfBorderWidth, Path.Direction.CW);
}
public void buildBoundPath(Path boundPath){
boundPath.reset();
boundPath.addRect(0, 0, getWidth(), getHeight(), Path.Direction.CW);
}
@Override
protected void onLayout(boolean changed, int left, int top, int right, int bottom) {
super.onLayout(changed, left, top, right, bottom);
if(changed){
buildBoundPath(boundPath);
buildBorderPath(borderPath);
}
}
@Override
protected void onDraw(Canvas canvas) {
Drawable maiDrawable = getDrawable();
if (!isInEditMode() && maiDrawable instanceof BitmapDrawable) {
Paint paint = ((BitmapDrawable) maiDrawable).getPaint();
Rect bitmapBounds = maiDrawable.getBounds();
rect.set(bitmapBounds);
@SuppressLint("WrongConstant") int saveCount = canvas.saveLayer(rect, null,
Canvas.MATRIX_SAVE_FLAG |
Canvas.CLIP_SAVE_FLAG |
Canvas.HAS_ALPHA_LAYER_SAVE_FLAG |
Canvas.FULL_COLOR_LAYER_SAVE_FLAG |
Canvas.CLIP_TO_LAYER_SAVE_FLAG);
getImageMatrix().mapRect(rect);
paint.setAntiAlias(true);
canvas.drawARGB(0, 0, 0, 0);
final int color = 0xffffffff;
paint.setColor(color);
canvas.drawPath(boundPath, paint);
Xfermode oldMode = paint.getXfermode();
paint.setXfermode(duffMode);
super.onDraw(canvas);
paint.setXfermode(oldMode);
canvas.restoreToCount(saveCount);
drawHover(canvas);
drawBorder(canvas);
} else {
super.onDraw(canvas);
}
}
@Override
public boolean onTouchEvent(MotionEvent event) {
final boolean touched = super.onTouchEvent(event);
if(touched){
switch (event.getAction() & MotionEvent.ACTION_MASK) {
case MotionEvent.ACTION_DOWN:
pressed = true;
postInvalidate();
break;
case MotionEvent.ACTION_CANCEL:
case MotionEvent.ACTION_UP:
pressed = false;
postInvalidate();
break;
default:
break;
}
}
return touched;
}
public float getBorderWidth() {
return borderWidth;
}
}
| [
"[email protected]"
] | |
1ca99f17c0f2fa6eccedc41b19326c081a7567c9 | b1ca2b3e229afed695ca60516d8062db2086f5de | /src/main/java/ua/batterfly/service/dto/package-info.java | 4e1d0857fb9b2e354cb7e942f1c7933413a02791 | [] | no_license | olgmaks/jhipsterSampleApplication | 7f5c8e9a38b1852a3427b36283cd21983138bf17 | 8da2be077e6b26745e55bd4d2d6879672d0fb1b4 | refs/heads/master | 2021-09-01T11:55:56.151290 | 2017-12-26T21:03:52 | 2017-12-26T21:03:52 | 115,454,746 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 68 | java | /**
* Data Transfer Objects.
*/
package ua.batterfly.service.dto;
| [
"[email protected]"
] | |
9b8d68b81755fe52cbbb1c18d0b2bf9e930cb3b8 | 95e8908b71ad1823b3a4e553bcec6130684a7905 | /3.实战Spring Boot/3.Spring Boot的web开发/ch0707-SpringBoot-Web-Websocket/src/main/java/com/example/spring/boot/websocket/WebSocketConfig.java | c754bfd6e1bc99b09a2a198588f5cb17ba4fcd7c | [] | no_license | LINPE4/springboot_learn | 60bc29c0242a4d112086c1f33b4f134e73122eda | 854a73ed51d0c8a2444c5d80c3d235f75da2efd2 | refs/heads/master | 2020-03-19T09:11:41.078727 | 2018-08-13T07:03:45 | 2018-08-13T07:03:45 | 136,267,473 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,494 | java | package com.example.spring.boot.websocket;
import org.springframework.context.annotation.Configuration;
import org.springframework.messaging.simp.config.MessageBrokerRegistry;
import org.springframework.web.socket.config.annotation.AbstractWebSocketMessageBrokerConfigurer;
import org.springframework.web.socket.config.annotation.EnableWebSocketMessageBroker;
import org.springframework.web.socket.config.annotation.StompEndpointRegistry;
/**
* 通过@EnableWebSocketMessageBroker 注解开启使用STOMP 协议来传输基于代理message broker )的消息,
* 这时控制器支持使用@MessageMapping ,就像使用@RequestMapping一样。
* Author: 王俊超
* Date: 2017-07-17 07:32
* All Rights Reserved !!!
*/
@Configuration
@EnableWebSocketMessageBroker
public class WebSocketConfig extends AbstractWebSocketMessageBrokerConfigurer {
/**
* 注册STOMP 协议的节点( endpoint ),并映射的指定的URL
* @param registry
*/
@Override
public void registerStompEndpoints(StompEndpointRegistry registry) {
// 注册一个STOMP 的endpoint ,并指定使用SockJS 协议
registry.addEndpoint("/endpointWisely").withSockJS();
}
/**
* 配置 消息代理( Message Broker )。
* @param registry
*/
@Override
public void configureMessageBroker(MessageBrokerRegistry registry) {
// 广播式应配置一个/topic 消息代现。
registry.enableSimpleBroker("/topic");
}
}
| [
"[email protected]"
] | |
c3a05b8b7d378fb04d063772cfbc83eeffa21579 | 0bc096cb222d49ae9f78e3e7047eda6cd2375414 | /app/src/main/java/com/example/andrewspc/friends/GeneralViewPages/ViewFullImage.java | 43a1b33c58d32e75ce533c4d19feb76e55cd83da | [] | no_license | andrewlimzhelong/Shop-App | 0e8ddaa99ec1db2a4da25dd68fbd545117d045e0 | fdf5009bd55c364a4a2d07968db0791963fe5630 | refs/heads/master | 2020-12-04T23:31:33.035720 | 2020-01-05T15:30:54 | 2020-01-05T15:30:54 | 231,936,860 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,331 | java | package com.example.andrewspc.friends.GeneralViewPages;
import android.content.Intent;
import android.support.v7.app.AppCompatActivity;
import android.os.Bundle;
import android.view.View;
import android.widget.ImageView;
import android.widget.TextView;
import com.example.andrewspc.friends.R;
import com.squareup.picasso.Picasso;
public class ViewFullImage extends AppCompatActivity {
private ImageView ImageFullSize;
private TextView UsernameOfUser;
private ImageView backArrow;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_view_full_image);
ImageFullSize = findViewById(R.id.ImageFullSize);
UsernameOfUser = findViewById(R.id.UsernameOfUser);
backArrow = findViewById(R.id.backArrow);
final Intent intent = getIntent();
String imageOfPost = intent.getExtras().getString("ProfilePic");
String Username = intent.getExtras().getString("Username");
UsernameOfUser.setText(Username);
Picasso.get().load(imageOfPost).fit().into(ImageFullSize);
backArrow.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View view) {
finish();
}
});
}
}
| [
"[email protected]"
] | |
c6e78c21d73deabd759f7c5c3f7e60010ab74664 | 505b6656999b773cf7985e0a73e60f1bc9381e16 | /jakim/src/test/java/bank/domain/aggregator/AccountTest.java | a8145a26916929ddf1ad2d09780fd9b461d13fcb | [] | no_license | cuipengfei/BeachProject | 4fdad8fcd13493458fb81fb2791b5317142df321 | acc3c538762ff4dacae9b632360db7bf5fc1cb8a | refs/heads/master | 2020-06-02T05:08:47.968561 | 2015-08-26T01:27:44 | 2015-08-26T01:27:44 | 40,457,540 | 2 | 3 | null | null | null | null | UTF-8 | Java | false | false | 1,207 | java | package bank.domain.aggregator;
import org.junit.Test;
import static org.hamcrest.CoreMatchers.is;
import static org.junit.Assert.*;
public class AccountTest {
@Test
public void should_has_initial_account_with_balance_0() throws Exception {
Account account = new Account();
assertThat(account.balance(), is(0f));
}
@Test
public void should_add_to_account() throws Exception {
Account account = new Account();
assertThat(account.balance(), is(0f));
float balance = account.add(30f);
assertThat(balance, is(30f));
assertThat(account.balance(), is(30f));
float newBalance = account.add(3f);
assertThat(newBalance, is(33f));
assertThat(account.balance(), is(33f));
}
@Test
public void should_minus_from_account() throws Exception {
Account account = new Account();
assertThat(account.balance(), is(0f));
float balance = account.add(30f);
assertThat(balance, is(30f));
assertThat(account.balance(), is(30f));
float newBalance = account.minus(3f);
assertThat(newBalance, is(27f));
assertThat(account.balance(), is(27f));
}
} | [
"[email protected]"
] | |
de96455277d76151c283a87120b34a4f8f98a708 | d3180a4f89d75f07a82d95ed3261d9ba1ecc1f4f | /app/src/main/java/com/example/genius_otis/launchmode1/Single_TaskActivity.java | ea04dd7d6fd5d36cb6b457a21d8839c6cc9a0ee9 | [] | no_license | princeessel/LaunchMode1 | 8e0e2ab69619ea20e85c87343830e4a62d08aa96 | 7f2862686f2b6f270c2c0fd7a7ec150dc692827e | refs/heads/master | 2020-03-31T03:00:26.384295 | 2018-10-06T14:34:38 | 2018-10-06T14:34:38 | 151,848,232 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 2,358 | java | package com.example.genius_otis.launchmode1;
import android.content.Intent;
import android.os.Bundle;
import android.util.Log;
import android.view.View;
import android.widget.Button;
import android.widget.TextView;
public class Single_TaskActivity extends MainActivity {
private static final String TAG = Standard_ModeActivity.class.getSimpleName();
private static int instanceCounter = 0;
private int currentValue;
private Button singletop;
private Button standard;
private Button singletask;
private Button singleinstance;
private TextView taskInfoTV, valueTV;
public Single_TaskActivity() {
super();
instanceCounter++;
currentValue = instanceCounter;
}
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_standard__mode);
singletask = findViewById(R.id.singleTask);
singletop = findViewById(R.id.singleTop);
singleinstance = findViewById(R.id.singleInstanceMode);
standard = findViewById(R.id.standardMode);
taskInfoTV = findViewById(R.id.taskInfoTV);
valueTV = findViewById(R.id.valueTV);
valueTV.append("Current instance: " + currentValue);
standard.setOnClickListener(this);
singletask.setOnClickListener(this);
singletop.setOnClickListener(this);
singleinstance.setOnClickListener(this);
}
@Override
public void onClick(View v) {
int viewId=v.getId();
switch (viewId) {
case R.id.standard:
startActivity(new Intent(this, Standard_ModeActivity.class));
break;
case R.id.singleTask:
startActivity(new Intent(this, Single_TaskActivity.class));
break;
case R.id.singleInstanceMode:
startActivity(new Intent(this, Single_InstanceActivity.class));
break;
case R.id.singleTop:
startActivity(new Intent(this, SingleTopActivity.class));
break;
default:
break;
}
}
@Override
protected void onResume() {
super.onResume();
Log.i(TAG, "Instances: " + currentValue);
taskInfoTV.setText(getAppTaskState());
}
}
| [
"[email protected]"
] | |
31ae7db006de096c65330c0765a9ca3daae203ff | e39627b0f082aabf9a74ebb1bb8b8cffe34d2da7 | /src/com/wkp/utils/action/CreateViewHolderAction.java | f9537fe4a71f92cacf324c3c34289edb3ff5dc00 | [
"Apache-2.0"
] | permissive | awksed/Utils_plugin | 67f6d3d03dcf0ee92015127943594dbc69d108ca | b3faa25681d5f20fde7a00247dd83fd914a3cc39 | refs/heads/master | 2020-03-29T05:23:22.673548 | 2018-01-22T03:14:48 | 2018-01-22T03:14:48 | 149,580,137 | 1 | 0 | null | 2018-09-20T08:53:41 | 2018-09-20T08:53:41 | null | UTF-8 | Java | false | false | 771 | java | package com.wkp.utils.action;
import com.intellij.ide.IdeView;
import com.intellij.openapi.actionSystem.AnAction;
import com.intellij.openapi.actionSystem.AnActionEvent;
import com.intellij.openapi.actionSystem.LangDataKeys;
import com.intellij.psi.JavaDirectoryService;
import com.intellij.psi.PsiDirectory;
public class CreateViewHolderAction extends AnAction {
@Override
public void actionPerformed(AnActionEvent e) {
IdeView ideView = e.getData(LangDataKeys.IDE_VIEW);
if (ideView != null) {
PsiDirectory psiDirectory = ideView.getOrChooseDirectory();
if (psiDirectory != null) {
JavaDirectoryService.getInstance().createClass(psiDirectory, "ViewHolder","ViewHolder");
}
}
}
}
| [
"[email protected]"
] | |
53571b4144b64e6295ec46b33d7c47ca397b478e | 5d9731074c0ccd124d2ca2eeeda5e1dbc25189bb | /warmup/SolveMeFirst.java | 0fb5ed9c0d3343554a0008f858025a9b2fb41d1d | [] | no_license | DineshKrishnanG/hackerrank | 38fa28f01ac0827e157fd383b12b45d4deca4665 | 5497519da70436fdd80fab0a6db1dfc5657689a2 | refs/heads/master | 2021-01-10T18:03:43.758980 | 2016-02-03T12:31:20 | 2016-02-03T12:31:20 | 50,991,224 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 658 | java | /*
Let's start simple.
Can you complete the function solveMeFirst to return the sum of two integers passed as input parameters?
You can pick your favorite programming language.
*/
import java.io.*;
import java.util.*;
import java.text.*;
import java.math.*;
import java.util.regex.*;
public class SolveMeFirst {
static int solveMeFirst(int a, int b) {
return a+b;
}
public static void main(String[] args) {
Scanner in = new Scanner(System.in);
int _a;
_a = in.nextInt();
int _b;
_b = in.nextInt();
int sum;
sum = solveMeFirst(_a, _b);
System.out.println(sum);
}
}
| [
"[email protected]"
] | |
770b8f55cf4e2cd54e2e2705a14f21c31fd0976d | 82c593f4a668ae176738bb6b928d33ae2bae87ec | /Geeks/LongestInc.java | a1b6b0ce3d4ee899858b3c23d42ca706600f287d | [] | no_license | ajay-sreeram/My-Coding-Practice | 02db43b8d31e7ffb590c1b0aa8f012a3623ffd83 | 0a6308f26cba44137f032e91703cac8934b2f9a8 | refs/heads/master | 2021-06-05T02:39:36.776488 | 2018-04-07T19:57:56 | 2018-04-07T19:57:56 | 32,878,814 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 477 | java | public class LongestInc{
public static void main(String args[])
{
int arr[]=new int[]{ 10, 22, 9, 33, 21, 65, 41, 60 };
int n=arr.length;
System.out.println("RESULT:"+lis(arr,n));
}
public static int lis(int arr[],int n){
int lis[]=new int[arr.length];
int i,j;
for(i=0;i<arr.length;i++)
lis[i]=1;
for(i=1;i<arr.length;i++)
for(j=0;j<i;j++)
if(arr[i]>arr[j]&&lis[i]<lis[j]+1)
lis[i]=lis[j]+1;
int max=0;
for(i=0;i<n;i++)
if(max<lis[i])
max=lis[i];
return max;
}
}
| [
"[email protected]"
] | |
2dc4307804f0ad2e2317e150d27c4ab3633703bd | 89ccde24265089911d3b569bff978ac73cb8675c | /lx-common/src/main/java/com/sdx/lx/common/utils/ServerInfo.java | 82f030f552a6ef2788e1963313d996d5166ea8c8 | [] | no_license | z935576013/lx | 9602370b24549d130355c1e2cb5789ad39805b97 | 78f2bbe3a9d21bb7ce969d1482ec09ce698173f1 | refs/heads/master | 2021-07-15T00:40:00.239641 | 2017-10-20T07:54:04 | 2017-10-20T07:54:04 | 107,648,095 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 2,229 | java | package com.sdx.lx.common.utils;
import java.net.InetAddress;
import java.net.NetworkInterface;
import java.net.SocketException;
import java.util.Enumeration;
/**
* 服务器信息缓存
* @author yeegor
*
*/
public class ServerInfo {
private static final String LOCALHOST = "127.0.0.1";
private String ip;
private ServerInfo() {
//ip = ip();
ip = getRealIp();
}
public static ServerInfo single() {
return Inner.instance;
}
static class Inner {
private static final ServerInfo instance = new ServerInfo();
}
public String getIp() {
return ip;
}
private String getRealIp() {
String localip = null;// 本地IP,如果没有配置外网IP则返回它
String netip = null;// 外网IP
Enumeration<NetworkInterface> netInterfaces = null;
try {
netInterfaces = NetworkInterface
.getNetworkInterfaces();
} catch (SocketException e) {
e.printStackTrace();
}
if (null == netInterfaces) {
return LOCALHOST;
}
InetAddress ip = null;
boolean finded = false;// 是否找到外网IP
while (netInterfaces.hasMoreElements() && !finded) {
NetworkInterface ni = netInterfaces.nextElement();
Enumeration<InetAddress> address = ni.getInetAddresses();
while (address.hasMoreElements()) {
ip = address.nextElement();
if (!ip.isSiteLocalAddress() && !ip.isLoopbackAddress()
&& ip.getHostAddress().indexOf(":") == -1) {// 外网IP
netip = ip.getHostAddress();
finded = true;
break;
} else if (ip.isSiteLocalAddress() && !ip.isLoopbackAddress()
&& ip.getHostAddress().indexOf(":") == -1) {// 内网IP
localip = ip.getHostAddress();
}
}
}
if (netip != null && !"".equals(netip)) {
return netip;
} else {
return localip;
}
}
// private String ip() {
// InetAddress addr = null;
// try {
// addr = InetAddress.getLocalHost();
// } catch (UnknownHostException e) {
// e.printStackTrace();
// }
//
// if(addr == null){
// return "";
// }
//
// String ipAddrStr = "";
// byte[] ipAddr = addr.getAddress();
//
// for (int i = 0; i < ipAddr.length; i++) {
// if (i > 0) {
// ipAddrStr += ".";
// }
// ipAddrStr += ipAddr[i] & 0xFF;
// }
//
// return ipAddrStr;
// }
}
| [
"[email protected]"
] | |
bb67d77ef2f3ed4630852598f755e57ef880c315 | 844caa4e0935bd5dc800ffddd1a2f202a2f6af1f | /src/week2/QueuewithMinimum.java | 34956f7f9a2f57d303f915d661fde888c96fdf00 | [] | no_license | snskr/edXWInContestCourse | 799400a1b1a0b52e39ae6cbb62b046644bf48ca3 | 991a3057a3a7045966d434260d3d2792f9b25147 | refs/heads/master | 2020-09-24T16:44:39.888923 | 2017-05-12T01:47:16 | 2017-05-12T01:47:16 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 3,280 | java | package week2;
import java.io.*;
import java.util.LinkedList;
import java.util.Queue;
import java.util.StringTokenizer;
/**
* Created by sherxon on 3/13/17.
*/
public class QueuewithMinimum {
PrintWriter out;
Queue<Long> queue= new LinkedList<>();
LinkedList<Long> mins= new LinkedList<>();
public QueuewithMinimum() {
try {
out=newOutput();
} catch (IOException e) {
e.printStackTrace();
}
}
public static void main(String[] args) throws IOException {
QueuewithMinimum minimum= new QueuewithMinimum();
FastScanner in = newInput();
int n=Integer.parseInt(in.nextLine());
for (int i = 0; i < n; i++) {
String[] s=in.nextLine().split(" ");
if(s[0].charAt(0)=='+'){
minimum.push(Long.parseLong(s[1]));
}else if(s[0].charAt(0)=='?'){
minimum.min();
}else{
minimum.pop();
}
}
minimum.out.flush();
minimum.out.close();
}
private void pop() {
long last=queue.poll();
if(mins.peek().compareTo(last)==0)mins.poll();
}
private void min() {
out.println(mins.peek());
}
private void push(long i) {
queue.add(i);
if(mins.isEmpty() || mins.peekLast().compareTo(i)<=0)
mins.add(i);
else{
while (!mins.isEmpty() && mins.peekLast().compareTo(i)>0){
mins.removeLast();
}
mins.add(i);
}
}
static class FastScanner {
static BufferedReader br;
static StringTokenizer st;
FastScanner(File f) {
try {
br = new BufferedReader(new FileReader(f));
} catch (FileNotFoundException e) {
e.printStackTrace();
}
}
public FastScanner(InputStream f) {
br = new BufferedReader(new InputStreamReader(f));
}
String next() {
while (st == null || !st.hasMoreTokens()) {
try {
st = new StringTokenizer(br.readLine());
} catch (IOException e) {
e.printStackTrace();
}
}
return st.nextToken();
}
String nextLine(){
String st="";
try {
st=br.readLine();
} catch (IOException e) {
e.printStackTrace();
}
return st;
}
int nextInt() {
return Integer.parseInt(next());
}
long nextLong() {
return Long.parseLong(next());
}
double nextDoulbe() {
return Double.parseDouble(next());
}
}
static FastScanner newInput() throws IOException {
if (System.getProperty("JUDGE") != null) {
return new FastScanner(new File("input.txt"));
} else {
return new FastScanner(System.in);
}
}
static PrintWriter newOutput() throws IOException {
if (System.getProperty("JUDGE") != null) {
return new PrintWriter("output.txt");
} else {
return new PrintWriter(System.out);
}
}
}
| [
"[email protected]"
] | |
5250a5e92cb391901a7285ea250d39cc2558ddc6 | fba2092bf9c8df1fb6c053792c4932b6de017ceb | /wms/WEB-INF/src/jp/co/daifuku/wms/base/common/tool/logViewer/TraceTable.java | 76d53d270e2871d9528004b25fbee524c08a1673 | [] | no_license | FlashChenZhi/exercise | 419c55c40b2a353e098ce5695377158bd98975d3 | 51c5f76928e79a4b3e1f0d68fae66ba584681900 | refs/heads/master | 2020-04-04T03:23:44.912803 | 2018-11-01T12:36:21 | 2018-11-01T12:36:21 | 155,712,318 | 1 | 0 | null | null | null | null | UTF-8 | Java | false | false | 9,410 | java | package jp.co.daifuku.wms.base.common.tool.logViewer;
/*
* Copyright 2006 DAIFUKU Co.,Ltd. All Rights Reserved.
*
* This software is the proprietary information of DAIFUKU Co.,Ltd.
* Use is subject to license terms.
*/
import java.awt.Color;
import java.awt.Component;
import java.awt.Dimension;
import java.awt.Font;
import java.awt.event.MouseAdapter;
import java.awt.event.MouseEvent;
import javax.swing.JPanel;
import javax.swing.JScrollPane;
import javax.swing.JTable;
import javax.swing.border.BevelBorder;
import javax.swing.table.DefaultTableCellRenderer;
import javax.swing.table.DefaultTableColumnModel;
import javax.swing.table.DefaultTableModel;
import javax.swing.table.JTableHeader;
import javax.swing.table.TableColumn;
/**
* 通信トレースログ一情報を取得し、
* 通信トレースログ一覧画面にて指定された検索条件より
* 表示対象となる情報を検索します。<BR>
* 通信トレースログデータクラスへセットし、
* 通信トレースログデータクラスより、通信トレースログ一覧クラスへ
* 情報の引渡しを行います。
*
* <BR>
* @version $Revision: 87 $, $Date: 2008-10-04 12:07:38 +0900 (土, 04 10 2008) $
* @author $Author: admin $
*/
public class TraceTable extends JPanel
{
// Class fields --------------------------------------------------
/**
* RFT号機NO
*/
public String rftNo;
/**
* 通信トレースログ一覧テーブル
*/
private JTable tblTraceList;
/**
* スクロールパネル
*/
JScrollPane scrollPane;
/**
* 通信トレースログ一覧テーブルモデル
*/
private DefaultTableModel model;
/**
* 通信トレースログ一覧テーブル行番号セル幅
*/
public static final int LineNoWidth = 40;
/**
* 通信トレースログ一覧テーブル処理日時セル幅
*/
public static final int ProcessDateWidth = 80;
/**
* 通信トレースログ一覧テーブル処理時間セル幅
*/
public static final int ProcessTimeWidth = 80;
/**
* 通信トレースログ一覧テーブル送信/受信区分セル幅
*/
public static final int SendReceiveDivisionWidth = 65;
/**
* 通信トレースログ一覧テーブルIDNoセル幅
*/
public static final int IdNoWidth = 45;
/**
* 通信トレースログ一覧テーブル電文セル幅
*/
public static final int TraceMessageWidth = LogViewerParam.TraceMessageWidth;
/**
* フォント
*/
protected final Font TableFont = new Font("Monospaced", Font.PLAIN, 12);
/**
* テーブル用のパネルサイズ
*/
public static final Dimension PanelSize
= new Dimension(LogViewerParam.WindowWidth - 40,
LogViewerParam.WindowHeight - 285);
/**
* 背景色のRGB値
*/
final int[] backColor = LogViewerParam.BackColor;
/**
* 通信トレースログ一覧ヘッダー
*/
private static String[] ColumnNames =
{" ",
DispResourceFile.getText("LBL-W0560"),
DispResourceFile.getText("LBL-W0561"),
DispResourceFile.getText("LBL-W0188"),
DispResourceFile.getText("LBL-W0001"),
DispResourceFile.getText("LBL-W0288")
};
/**
* 通信トレースログデータ
*/
protected TraceList traceList;
protected Selection mouseAdapter = new Selection();
/**
* コンストラクタ
*/
TraceTable()
{
super();
model = new DefaultTableModel(ColumnNames, 0);
tblTraceList = new JTable(model);
// マウスリスナーの設定
tblTraceList.addMouseListener(mouseAdapter);
setColumnInfo();
// 表示内容を編集できないようにする
tblTraceList.setEnabled(false);
// マウスでのセル幅変更は無効
tblTraceList.setAutoResizeMode(JTable.AUTO_RESIZE_OFF);
// テーブルヘッダの設定をする
JTableHeader tableHeader = tblTraceList.getTableHeader();
tableHeader.setReorderingAllowed(false);
// スクロールパネルの設定
scrollPane = new JScrollPane(tblTraceList);
scrollPane.setPreferredSize(PanelSize);
this.setFocusable(false);
tblTraceList.setFocusable(false);
scrollPane.setFocusable(false);
tableHeader.setFocusable(false);
// フォントの設定
tblTraceList.setFont(TableFont);
// 背景色の設定
this.setBackground(new Color(backColor[0], backColor[1], backColor[2]));
// スクロールパネルの表示
this.add(scrollPane);
}
/**
* 通信トレースログ一覧画面で【表示】ボタン押下時の処理
*
* @param list 通信トレースログデータ
*/
public void setData(TraceList list)
{
traceList = list;
mouseAdapter.setTraceList(list);
int dataCount = list.getSize();
String tableData[][] = new String[dataCount][ColumnNames.length];
for (int idx = 0; idx < dataCount; idx ++)
{
TraceData data = list.getTraceData(idx);
tableData[idx][0] = String.valueOf(idx + 1);
tableData[idx][1] = data.getProcessDate();
tableData[idx][2] = data.getProcessTime();
if (data.getSendRecvDivision().equals("S"))
{
tableData[idx][3] = DispResourceFile.getText("RDB-W0052");
}
else
{
tableData[idx][3] = DispResourceFile.getText("RDB-W0053");
}
tableData[idx][4] = data.getIdNo();
tableData[idx][5] = data.getStringMessage().trim();
}
// データを一覧にセット
model.setDataVector(tableData, ColumnNames);
setColumnInfo();
}
/**
* テーブルの各カラムの属性をセットします。
*
*/
protected void setColumnInfo()
{
// セル幅の設定
tblTraceList.getColumnModel().getColumn(0).setPreferredWidth(LineNoWidth);
tblTraceList.getColumnModel().getColumn(1).setPreferredWidth(ProcessDateWidth);
tblTraceList.getColumnModel().getColumn(2).setPreferredWidth(ProcessTimeWidth);
tblTraceList.getColumnModel().getColumn(3).setPreferredWidth(SendReceiveDivisionWidth);
tblTraceList.getColumnModel().getColumn(4).setPreferredWidth(IdNoWidth);
tblTraceList.getColumnModel().getColumn(5).setMinWidth(TraceMessageWidth);
// 行番号欄の設定
DefaultTableColumnModel columnModel = (DefaultTableColumnModel) tblTraceList.getColumnModel();
for (int i = 0; i < tblTraceList.getColumnCount(); i ++)
{
TableColumn tableColumn = columnModel.getColumn(i);
if (i == 0)
{
tableColumn.setCellRenderer(new Column0Recorder());
tableColumn.setMaxWidth(LineNoWidth);
tableColumn.setResizable(false);
}
if (i == 5)
{
tableColumn.setResizable(true);
}
else
{
tableColumn.setResizable(false);
}
}
}
/**
* RFT号機NOを設定します。
* @param value RFT号機NO
*/
public void setRftNo(String value)
{
rftNo = value;
}
/**
* RFT号機NOを取得します。
* @return RFT号機NO
*/
public String getRftNo()
{
return rftNo;
}
/**
* 表示内容のクリアします。
*/
public void clear()
{
// データを一覧にセット
model.setDataVector(null, ColumnNames);
setColumnInfo();
}
}
/**
* 通信トレースログ一覧状でのマウスのクリックイベント処理<BR>
* 行番号欄がクリックされた場合、選択行の電文情報を詳細照会画面 へ引き渡し、<BR>
* 詳細電文の項目ごとの詳細情報の表示を行います。
*/
class Selection extends MouseAdapter
{
private TraceList traceList;
Selection()
{
super();
}
public void setTraceList(TraceList list)
{
traceList = list;
}
public void mousePressed(MouseEvent e)
{
// テーブル情報取得
JTable cell = (JTable) e.getSource();
// 選択列取得
int col = cell.columnAtPoint(e.getPoint());
// 選択行取得
int row = cell.rowAtPoint(e.getPoint());
// 行番号押下時、詳細照会画面へ遷移
if (col == 0)
{
// ID項目設定情報の取得
DetailsWindow disp = new DetailsWindow();
// 詳細照会画面へ遷移
disp.startPopup(traceList.getRftNo(), traceList.getTraceData(row));
}
}
}
/**
* 通信トレースログ一覧の行番号列の設定を行う<BR>
* 行番号のセット、背景色をオレンジ色に設定する。
*/
class Column0Recorder extends DefaultTableCellRenderer
{
/**
* 行番号背景色
*/
final Color LineAreaBackColor = new Color(255, 165, 0);
public Component getTableCellRendererComponent(JTable table, Object value,
boolean isSelected, boolean hasFocus, int row, int column)
{
// 背景色をオレンジ色
setBackground(LineAreaBackColor);
// 行番号セット
setValue(new Integer(row + 1));
// 罫線の設定
setBorder(new BevelBorder(BevelBorder.RAISED));
setHorizontalAlignment(RIGHT);
return this;
}
}
| [
"[email protected]"
] | |
3d5c29ac764a741d4837e5b4b42f4619fb6e40c8 | 8d1dac28204f7811e663a9a54b32b4af6736501f | /Epidemic_maven/src/main/java/com/yueqian/epidemic/service/impl/EpidemicServicelmpl.java | e17f9bf7f084c1ea8fb6f950ebd73554e43a9087 | [] | no_license | zhaoxubin/xiangongchengdaxuekeshe | fc5c8e2845062e6d5d6a3277d096edf707034acc | 86492dff3dfb20de7fb4f2a404cce9e6696b52ef | refs/heads/master | 2023-01-20T18:07:57.810505 | 2020-11-27T05:52:49 | 2020-11-27T05:52:49 | 316,412,183 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 2,271 | java | package com.yueqian.epidemic.service.impl;
import com.yueqian.epidemic.bean.DailyEpidemicInfo;
import com.yueqian.epidemic.bean.EpidemicDetailInfo;
import com.yueqian.epidemic.bean.EpidemicInfo;
import com.yueqian.epidemic.bean.ProvinceInfo;
import com.yueqian.epidemic.mapper.EpidemicMapper;
import com.yueqian.epidemic.mapper.ProvinceMapper;
import com.yueqian.epidemic.service.EpidemicService;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;
import java.util.Calendar;
import java.util.Date;
import java.util.GregorianCalendar;
import java.util.List;
@Service
public class EpidemicServicelmpl implements EpidemicService {
@Autowired
private EpidemicMapper epidemicMapper;
@Autowired
private ProvinceMapper provinceMapper;
@Override
public List<ProvinceInfo> saveEpidemicinfos(Integer userId, DailyEpidemicInfo dailyEpidemicInfo) {
String date = dailyEpidemicInfo.getDate();
List<EpidemicInfo> array = dailyEpidemicInfo.getArray();
String[] strings = date.split("-");
int year = Integer.parseInt(strings[0]);
int month = Integer.parseInt(strings[1]);
int day = Integer.parseInt(strings[2]);
for (int i = 0; i < array.size(); i++) {
EpidemicInfo epidemicInfo = array.get(i);
epidemicInfo.setDataYear(year);
epidemicInfo.setDataMonth(month);
epidemicInfo.setDataDay(day);
epidemicInfo.setUserId(userId);
epidemicInfo.setInputDate(new Date());
//保存了所有的疫情信息数据
epidemicMapper.saveEpidemicInfos(epidemicInfo);
}
//返回下一组没有录入疫情数据的省份列表
return provinceMapper.findNoDataProvinceList(year,month,day);
}
@Override
public List<EpidemicDetailInfo> findEpidemicDetailInfoTotal() {
Calendar calendar = new GregorianCalendar();
int year = calendar.get(Calendar.YEAR);
int month = calendar.get(Calendar.MONTH)+1;
int day = calendar.get(Calendar.DATE);
List<EpidemicDetailInfo> epidemicDetailInfoTotals = epidemicMapper.findEpidemicDetailInfoTotal(year, month, day);
return epidemicDetailInfoTotals;
}
}
| [
"[email protected]"
] | |
a9b6ffa56368d5e53938cf8a062a575d72d93f2a | f0a5b3059cabc54e00fcd8626ccaf52d16d3939f | /src/com/company/lesson7/homework/VladimirKoval/AirPlane.java | 6f837ca31fcf93c1ca8d0678bb0586203d152d5a | [] | no_license | sotik11/hillel | ee086ff666ecf2b04c2a94a36b6c118a71d47111 | 030c8c8925ce64aa05a70538e554f0a7299ba185 | refs/heads/main | 2023-06-30T00:04:40.402999 | 2021-07-25T12:32:25 | 2021-07-25T12:32:25 | 379,238,176 | 0 | 0 | null | 2021-06-22T11:01:52 | 2021-06-22T11:01:51 | null | UTF-8 | Java | false | false | 5,996 | java | package com.company.lesson7.homework.VladimirKoval;
public class AirPlane {
boolean engineStatus = false;
boolean startFly = false;
boolean stableFlight = false;
int heightKm = 0;
boolean gameStatus = true;
public boolean startEngine() {
if (!engineStatus) {
System.out.println("* Мотор заведен *");
System.out.println();
return engineStatus = true;
} else
System.out.println("!!!Мотор уже был активирован ранее!!!");
System.out.println();
return engineStatus;
}
public int startFly() {
if (engineStatus && !startFly) {
System.out.println("Приветствуем Вас на борту Boeing 747 Hillel Airlines. Пристегните ремни, взлетаем! Идет набор высоты!");
setStartFly();
showHeight();
} else if (!engineStatus) {
System.out.println("!!!Не можем начать взлет! Заведите мотор!!!");
System.out.println();
} else if (startFly) {
System.out.println("!!!Взлет не может быть активирован повторно! В команде отказано!!!");
System.out.println();
}
return heightKm;
}
public int heightUp() {
if (engineStatus && startFly && heightKm < 10) {
System.out.println("Продолжаем набор высоты, не растегивайте ремни безопасности!");
setHeightUp();
} else if (!engineStatus) {
System.out.println("!!!Мотор не заведен! Не может набирать высоту!!!");
System.out.println();
} else if (heightKm >= 10) {
System.out.println("!!!Вы достигли максимально возможной высоты! Набор высоты не возможен!!!");
showHeight();
} else if (!startFly) {
System.out.println("!!!Процедура взлета не была выполнена! Не можем набирать высоту!");
}
return heightKm;
}
public int heightDown() {
if (heightKm > 2) {
System.out.println("Снижаем высоту");
setHeightDown();
setStableFlightOff();
System.out.println();
} else if (heightKm == 2) {
System.out.println("!!!Снижение высоты не возможно! Начните процедуру посадки либо набирайте высоту!!!");
showHeight();
} else if (heightKm < 2) {
System.out.println("!!!Самолет не в состоянии полета. Не возможно понизить высоту!!!");
showHeight();
}
return heightKm;
}
public boolean stableFlight() {
if (heightKm >= 10 && !stableFlight) {
System.out.println("Мы закончили набирать высоту! Активирован стабильный полет. Можете расстегнуть ремни и начать распивать дьютик, хорошего полета!");
System.out.println();
return stableFlight = true;
} else if (heightKm < 10) {
System.out.println("!!!Недостаточная высота для стабильного полета. Наберите высоту 10км!!!");
return !stableFlight;
} else if (stableFlight) {
System.out.println("Вы уже активировали стабильный полет ранее");
return stableFlight;
}
return stableFlight;
}
public boolean landingPlane() {
if (heightKm == 2) {
System.out.println("Заходим на посадку");
System.out.println("Посадка прошла успешно! Спасибо что поспользовались нашими Авиалиниями");
return gameStatus = false;
} else if (heightKm > 2) {
System.out.println("!!!Посадка не возможна, необходимо снизить высоту до 2км!!!");
showHeight();
} else if (heightKm < 2) {
System.out.println("!!!Высота 0км! Посадка не возможна");
}
return gameStatus;
}
public boolean emergencyLanding() {
if (heightKm >= 2) {
System.out.println("Всем пристегнуть ремни! Совершаем экстренную посадку...");
System.out.println("Фуууух, сели без жертв *шум аплодисментов");
setHeightMin();
return gameStatus = false;
} else System.out.println("!!!Самолет находится на земле. В экстренной посадке отказано!!!");
System.out.println();
return gameStatus;
}
public void setHeightMin() {
heightKm = 0;
stableFlight = false;
startFly = false;
}
public void setStartFly() {
heightKm += 2;
startFly = true;
}
public void setHeightUp() {
heightKm += 2;
System.out.println("Текущая высота >>> " + heightKm + "км <<<");
System.out.println();
}
public void setHeightDown() {
heightKm -= 2;
System.out.println("Текущая высота >>> " + heightKm + "км <<<");
System.out.println();
}
public boolean setStableFlightOff(){
return stableFlight = false;
}
public void showHeight(){
System.out.println("Текущая высота " + heightKm + "км");
System.out.println();
}
}
| [
"[email protected]"
] | |
acf70e3fd22d4e0d1e78a82ceaa0b1dc1e5389ca | acc2f7ae47266fa764982bd9b9b21f57ccca0ad4 | /oa/oa_web/src/main/java/com/lvjing/oa/controller/EmployeeController.java | e227cf270d92011fa362184157339e34bb558606 | [] | no_license | JankenLv/Practice | de9139a8c268e6acc0415c499640f271d173010b | 2508f6cb67b2cad6a5cfc60856cbae0f824e6424 | refs/heads/master | 2020-04-07T04:31:43.153329 | 2018-12-12T14:53:39 | 2018-12-12T14:53:39 | 158,060,582 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 2,040 | java | package com.lvjing.oa.controller;
import com.lvjing.oa.biz.DepartmentBiz;
import com.lvjing.oa.biz.EmployeeBiz;
import com.lvjing.oa.entity.Department;
import com.lvjing.oa.entity.Employee;
import com.lvjing.oa.global.Contant;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.PathVariable;
import org.springframework.web.bind.annotation.RequestMapping;
import java.util.Map;
import static org.springframework.web.bind.annotation.RequestMethod.*;
@Controller("employeeController")
@RequestMapping("/employee")
public class EmployeeController {
@Autowired
private DepartmentBiz departmentBiz;
@Autowired
private EmployeeBiz employeeBiz;
@RequestMapping("/list")
public String list(Map<String, Object> map) {
map.put("list", employeeBiz.getAll());
return "employee_list";
}
@RequestMapping("/to_add")
public String toAdd(Map<String, Object> map) {
map.put("employee",new Employee());
map.put("dlist",departmentBiz.getAll());
map.put("post",Contant.getPost());
return "employee_add";
}
@RequestMapping(value = "/add",method = POST)
public String add(Employee employee) {
employeeBiz.add(employee);
return "redirect:list";
}
@RequestMapping(value = "/to_update/{sn}", method = GET)
public String toUpdate(@PathVariable String sn, Map<String, Object> map) {
map.put("employee",employeeBiz.get(sn));
map.put("dlist",departmentBiz.getAll());
map.put("post",Contant.getPost());
return "employee_update";
}
@RequestMapping(value = "/update",method = PUT)
public String update(Employee employee) {
employeeBiz.edit(employee);
return "redirect:list";
}
@RequestMapping(value = "/remove/{sn}", method = DELETE)
public String remove(@PathVariable String sn) {
employeeBiz.remove(sn);
return "redirect:../list";
}
}
| [
"[email protected]"
] | |
1d746c3c057cedfc0e503a71edefdf2d267bfa01 | 62d9e6203b70888589c5d076db1f13c1be9c4647 | /01-09-Android-ViewPagerIndicator/AndroidViewPagerIndicatorSample/src/jp/mydns/sys1yagi/android/androidviewpagerindicatorsample/LinePageIndicatorActivity.java | ad8513923da3624dab735758ff225e353a0d4f31 | [
"Apache-2.0"
] | permissive | android-opensource-library-56/android-opensource-library-56 | 98342768922f7661462bad99ef54c9b16139dbad | 3efddd297155cedbf1fa7f050f20ab4d0ffcbc01 | refs/heads/master | 2020-05-19T09:54:09.265749 | 2013-12-09T15:21:11 | 2013-12-09T15:21:11 | 14,519,717 | 7 | 3 | null | 2013-12-09T15:21:11 | 2013-11-19T09:21:36 | Java | UTF-8 | Java | false | false | 2,166 | java | package jp.mydns.sys1yagi.android.androidviewpagerindicatorsample;
import android.os.Bundle;
import android.support.v4.app.Fragment;
import android.support.v4.app.FragmentActivity;
import android.support.v4.app.FragmentStatePagerAdapter;
import android.support.v4.view.ViewPager;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
import android.widget.TextView;
import com.viewpagerindicator.PageIndicator;
public class LinePageIndicatorActivity extends FragmentActivity {
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_line_page_indicator);
ViewPager viewPager = (ViewPager) findViewById(R.id.viewpager);
viewPager.setAdapter(new FragmentStatePagerAdapter(
getSupportFragmentManager()) {
@Override
public int getCount() {
return 5;
}
@Override
public Fragment getItem(int position) {
Fragment f = new SampleFragment();
Bundle args = new Bundle();
args.putInt(SampleFragment.PAGE_NUMBER, position + 1);
f.setArguments(args);
return f;
}
@Override
public CharSequence getPageTitle(int position) {
return "Page" + (position + 1);
}
});
PageIndicator lineIndicator = (PageIndicator) findViewById(R.id.indicator);
lineIndicator.setViewPager(viewPager);
}
public static class SampleFragment extends Fragment {
public static final String PAGE_NUMBER = "page_number";
public SampleFragment() {
}
@Override
public View onCreateView(LayoutInflater inflater, ViewGroup container,
Bundle savedInstanceState) {
View view = inflater.inflate(R.layout.fragment_layout, null);
TextView textView = (TextView) view.findViewById(R.id.text);
textView.setText("Page" + getArguments().getInt(PAGE_NUMBER));
return view;
}
}
}
| [
"[email protected]"
] | |
8fcc724c910567b8af820b868d2806c575034fcf | 4e1a4533c5b0e36fcebe2a757ba94d059e2d82bd | /w3d4/src/w3d4/praApp.java | 6a3659c5b0baa6e6c192d2ccfe8c48e73ba76716 | [] | no_license | KobeRox/COMP603-homework | ba4341ddba08b1ebe6c8ed79e796c0089837ef98 | b9105caeb8ce6f96e03825df27755e412a3e358a | refs/heads/master | 2020-04-06T16:45:54.960295 | 2018-11-15T01:56:57 | 2018-11-15T01:56:57 | 157,633,236 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,113 | java | /*
* To change this license header, choose License Headers in Project Properties.
* To change this template file, choose Tools | Templates
* and open the template in the editor.
*/
package w3d4;
import java.util.InputMismatchException;
import java.util.Scanner;
/**
*
* @author Xu
*/
public class praApp {
public static void main(String[] args) {
// int[]teg = new int[4];
// int[]integ = {1,2,3,4,5};
//
Scanner in = new Scanner(System.in);
boolean con = true;
int num = 0;
while(con){
try {
num = in.nextInt();
con = false;
} catch (InputMismatchException e) {
in.nextLine();
System.out.println("enter invalid ");
}
}
in.nextLine();
String[]strings = new String[num];
for (int i = 0; i < num; i++) {
System.out.println("enter the "+(i+1)+"th sentence ");
String s = in.nextLine();
strings[i]= s;
}
}
}
| [
"[email protected]"
] | |
7f49638f114b3441afeed8e421308323a48b9388 | 3801a73f30aad8da2c020d03deed2c46198266c4 | /facade/characters/grace/java/Grace.java | afb0e4e8c9e2f6c0d0708fe6236db080d40a7503 | [] | no_license | rngwrldngnr/Facade | 6eada6681e2e7d5843ba7837a283efee4326e76c | 31a421a55a1f69294fdab6c0f075e89683160b80 | refs/heads/master | 2023-04-25T21:11:53.686955 | 2021-05-28T20:41:26 | 2021-05-28T20:41:26 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,117,541 | java | package facade.characters.grace.java;
import abl.runtime.AblRuntimeError;
import abl.runtime.GoalStep;
import java.util.Hashtable;
import abl.runtime.CollectionBehavior;
import facade.nativeinterface.NativeAnimationInterface;
import abl.runtime.__BehaviorDesc;
import facade.util.Point3D;
import java.util.Random;
import java.lang.reflect.Method;
import facade.util.MusicDefs;
import facade.util.TherapyGameConstants;
import facade.util.CrisisAccusations;
import facade.util.BackstoryCategories;
import facade.util.EpisodicMemoryConstants;
import facade.util.BeatID;
import facade.util.BeatArguments;
import dramaman.runtime.DramaManagerConstants;
import facade.util.UniversalScript;
import facade.util.ReactionID;
import facade.util.DAType;
import facade.util.ReactionConstants;
import facade.util.BeatConstants;
import facade.util.BeatStatus;
import facade.util.BodyResource;
import facade.util.GestureBodyPart;
import facade.util.PoseScripts;
import facade.util.SpriteID;
import facade.util.FullExpressions;
import facade.util.AnimLayer;
import facade.util.TripScript;
import facade.util.GraceScript;
import abl.runtime.BehavingEntity;
public class Grace extends BehavingEntity implements GraceScript, TripScript, AnimLayer, FullExpressions, SpriteID, PoseScripts, GestureBodyPart, BodyResource, BeatStatus, BeatConstants, ReactionConstants, DAType, ReactionID, UniversalScript, DramaManagerConstants, BeatArguments, BeatID, EpisodicMemoryConstants, BackstoryCategories, CrisisAccusations, TherapyGameConstants, MusicDefs
{
private static final Object[] __$tempObjArray;
private static final Class[] __$sensorFactoryArgArray;
private static final Class[] __$behFactoryArgArray;
private static final Class[] __$preconditionArgArray;
private static final Class[] __$continuousConditionArgArray;
private static final Class[] __$stepFactoryArgArray;
private static final Class[] __$argumentStepExecuteArgArray;
private static final Class[] __$mentalStepExecuteArgArray;
private static final Class __$Grace_BehaviorFactories_rfield;
static final Method __$behaviorFactory0_rfield;
static final Method __$behaviorFactory1_rfield;
static final Method __$behaviorFactory2_rfield;
static final Method __$behaviorFactory3_rfield;
static final Method __$behaviorFactory4_rfield;
static final Method __$behaviorFactory5_rfield;
static final Method __$behaviorFactory6_rfield;
static final Method __$behaviorFactory7_rfield;
static final Method __$behaviorFactory8_rfield;
static final Method __$behaviorFactory9_rfield;
static final Method __$behaviorFactory10_rfield;
static final Method __$behaviorFactory11_rfield;
static final Method __$behaviorFactory12_rfield;
static final Method __$behaviorFactory13_rfield;
static final Method __$behaviorFactory14_rfield;
static final Method __$behaviorFactory15_rfield;
static final Method __$behaviorFactory16_rfield;
static final Method __$behaviorFactory17_rfield;
static final Method __$behaviorFactory18_rfield;
static final Method __$behaviorFactory19_rfield;
static final Method __$behaviorFactory20_rfield;
static final Method __$behaviorFactory21_rfield;
static final Method __$behaviorFactory22_rfield;
private static final Class __$Grace_Preconditions_rfield;
static final Method __$precondition0_rfield;
static final Method __$precondition1_rfield;
static final Method __$precondition2_rfield;
static final Method __$precondition3_rfield;
static final Method __$precondition4_rfield;
static final Method __$precondition5_rfield;
private static final Class __$Grace_PreconditionSensorFactories_rfield;
static final Method __$preconditionSensorFactory0_rfield;
private static final Class __$Grace_ContextConditions_rfield;
static final Method __$contextCondition0_rfield;
private static final Class __$Grace_ContextConditionSensorFactories_rfield;
static final Method __$contextConditionSensorFactory0_rfield;
private static final Class __$Grace_StepFactories_rfield;
static final Method __$stepFactory0_rfield;
static final Method __$stepFactory1_rfield;
static final Method __$stepFactory2_rfield;
static final Method __$stepFactory3_rfield;
static final Method __$stepFactory4_rfield;
static final Method __$stepFactory5_rfield;
static final Method __$stepFactory6_rfield;
static final Method __$stepFactory7_rfield;
static final Method __$stepFactory8_rfield;
static final Method __$stepFactory9_rfield;
static final Method __$stepFactory10_rfield;
static final Method __$stepFactory11_rfield;
static final Method __$stepFactory12_rfield;
static final Method __$stepFactory13_rfield;
static final Method __$stepFactory14_rfield;
static final Method __$stepFactory15_rfield;
static final Method __$stepFactory16_rfield;
static final Method __$stepFactory17_rfield;
private static final Class __$Grace_ArgumentStepExecute_rfield;
static final Method __$argumentExecute0_rfield;
static final Method __$argumentExecute1_rfield;
static final Method __$argumentExecute2_rfield;
static final Method __$argumentExecute3_rfield;
static final Method __$argumentExecute4_rfield;
static final Method __$argumentExecute5_rfield;
static final Method __$argumentExecute6_rfield;
static final Method __$argumentExecute7_rfield;
static final Method __$argumentExecute8_rfield;
static final Method __$argumentExecute9_rfield;
static final Method __$argumentExecute10_rfield;
static final Method __$argumentExecute11_rfield;
static final Method __$argumentExecute12_rfield;
static final Method __$argumentExecute13_rfield;
static final Method __$argumentExecute14_rfield;
static final Method __$argumentExecute15_rfield;
static final Method __$argumentExecute16_rfield;
static final Method __$argumentExecute17_rfield;
static final Method __$argumentExecute18_rfield;
static final Method __$argumentExecute19_rfield;
static final Method __$argumentExecute20_rfield;
static final Method __$argumentExecute21_rfield;
static final Method __$argumentExecute22_rfield;
static final Method __$argumentExecute23_rfield;
static final Method __$argumentExecute24_rfield;
static final Method __$argumentExecute25_rfield;
static final Method __$argumentExecute26_rfield;
static final Method __$argumentExecute27_rfield;
static final Method __$argumentExecute28_rfield;
static final Method __$argumentExecute29_rfield;
static final Method __$argumentExecute30_rfield;
static final Method __$argumentExecute31_rfield;
static final Method __$argumentExecute32_rfield;
static final Method __$argumentExecute33_rfield;
static final Method __$argumentExecute34_rfield;
static final Method __$argumentExecute35_rfield;
static final Method __$argumentExecute36_rfield;
static final Method __$argumentExecute37_rfield;
static final Method __$argumentExecute38_rfield;
static final Method __$argumentExecute39_rfield;
static final Method __$argumentExecute40_rfield;
static final Method __$argumentExecute41_rfield;
static final Method __$argumentExecute42_rfield;
static final Method __$argumentExecute43_rfield;
static final Method __$argumentExecute44_rfield;
static final Method __$argumentExecute45_rfield;
static final Method __$argumentExecute46_rfield;
static final Method __$argumentExecute47_rfield;
static final Method __$argumentExecute48_rfield;
static final Method __$argumentExecute49_rfield;
static final Method __$argumentExecute50_rfield;
static final Method __$argumentExecute51_rfield;
static final Method __$argumentExecute52_rfield;
static final Method __$argumentExecute53_rfield;
static final Method __$argumentExecute54_rfield;
static final Method __$argumentExecute55_rfield;
private static final Class __$Grace_MentalStepExecute_rfield;
static final Method __$mentalExecute0_rfield;
static final Method __$mentalExecute1_rfield;
static final Method __$mentalExecute2_rfield;
static final Method __$mentalExecute3_rfield;
private static final Class __$Grace_SuccessTests_rfield;
static final Method __$successTest0_rfield;
private static final Class __$Grace_SuccessTestSensorFactories_rfield;
static final Method __$successTestSensorFactory0_rfield;
static String[] __$conflictSet11;
static String[] __$conflictSet8;
static String[] __$conflictSet4;
static String[] __$conflictSet5;
static String[] __$conflictSet3;
static String[] __$conflictSet1;
static String[] __$conflictSet6;
static String[] __$conflictSet7;
static String[] __$conflictSet9;
static String[] __$conflictSet12;
static String[] __$conflictSet10;
static String[] __$conflictSet2;
String context_GlobalMixin;
String context_DuringMixin;
String context_DuringMixin_old;
String context_DuringBeatMixin;
String context_DuringTxnOut;
String context_IgnoreAllButRecovery;
String context_IgnoreMost;
String context_IgnoreThanks;
String context_TGreetsP;
String context_TGreetsP_TxnOut;
String context_GGreetsP;
String context_GGreetsPReferTo;
String context_ExplDatAnniv;
String context_AA;
String context_AA_postTellMeMore;
String context_RM_ItalyGuessingGame;
String context_RM_PlayerNotAtPicture;
String context_FAskDrink;
String context_TA;
String context_PhoneCall;
String context_TxnT1ToT2;
String context_OneOnOneAffChr;
String context_OneOnOneAffChr_xtra;
String context_OneOnOneNonAffChr;
String context_NonAffChrGReturns;
String context_NonAffChrGReturns_xtra;
String context_NonAffChrTReturns;
String context_RomanticProposal;
String context_BigQuestion;
String context_CrisisP1;
String context_C2TGGlue;
String context_TherapyGameP2;
String context_RevBuildupP2;
String context_RevelationsP2;
String context_Ending;
String contextPriorityMap_GlobalTrumpsBeat;
String contextPriorityMap_GlobalTrumpsBeat_obj;
String contextPriorityMap_GlobalTrumpsBeat_veryHighPri;
String sig_bPBehindDoorT1_bgArgueBehindDoor;
String sig_bPBehindDoorT1_bgTxnOut;
String sig_bTGreetsPT1_bgGreetP;
String sig_bTGreetsPT1_bgWaitTimeout;
String sig_bTGreetsPT1_bgTxnOut_Greet;
String sig_bTGreetsPT1_bgTxnOut_HowAreYou;
String sig_bTGreetsPT1_bgTxnOut_IsOkayQuestion;
String sig_bTGreetsPT1_bgTxnOut_Positive;
String sig_bTGreetsPT1_bgTxnOut_Praise;
String sig_bTGreetsPT1_bgTxnOut_Negative;
String sig_bTGreetsPT1_bgTxnOut_Distraction;
String sig_bTGreetsPT1_bgTxnOut_MildConfusion;
String sig_bTGreetsPT1_bgTxnOut_FlirtFP;
String sig_bTGreetsPT1_bgTxnOut_FlirtMP;
String sig_bTGreetsPT1_bgTxnOut_KissFP;
String sig_bTGreetsPT1_bgTxnOut_KissMP;
String sig_bTGreetsPT1_bgTxnOut_EnterApt;
String sig_bTGreetsPT1_bgTxnOut_Annoying;
String sig_bTGreetsPT1_bgTxnOut_Explain;
String sig_bTGreetsPT1_bgTxnOut_Timeout;
String sig_bTGreetsPT1_bgTxnOut_p2_comeIn;
String sig_bTGreetsPT1_bgTxnOut_p3_fetchGrace;
String sig_bTFetchesGT1_bgArgueInKitchen;
String sig_bTFetchesGT1_bgTxnOut;
String sig_bGGreetsPT1_bgGreetP;
String sig_bGGreetsPT1_bgWaitTimeout;
String sig_bGGreetsPT1_bgTxnOut_Greet;
String sig_bGGreetsPT1_bgTxnOut_HowAreYou;
String sig_bGGreetsPT1_bgTxnOut_IsOkayQuestion;
String sig_bGGreetsPT1_bgTxnOut_Positive;
String sig_bGGreetsPT1_bgTxnOut_Praise;
String sig_bGGreetsPT1_bgTxnOut_Negative;
String sig_bGGreetsPT1_bgTxnOut_Distraction;
String sig_bGGreetsPT1_bgTxnOut_MildConfusion;
String sig_bGGreetsPT1_bgTxnOut_MildConfusionTripComment;
String sig_bGGreetsPT1_bgTxnOut_FlirtFP;
String sig_bGGreetsPT1_bgTxnOut_FlirtMP;
String sig_bGGreetsPT1_bgTxnOut_KissFP;
String sig_bGGreetsPT1_bgTxnOut_KissMP;
String sig_bGGreetsPT1_bgTxnOut_KissT_FP;
String sig_bGGreetsPT1_bgTxnOut_KissT_MP;
String sig_bGGreetsPT1_bgTxnOut_Annoying;
String sig_bGGreetsPT1_bgTxnOut_Inappropriate;
String sig_bGGreetsPT1_bgTxnOut_Timeout;
String sig_bGGreetsPT1_bgTxnOut_p2;
String sig_bExplDatAnnivT1_bgTxnIn;
String sig_bExplDatAnnivT1_bgJustRealized;
String sig_bExplDatAnnivT1_bgRememberThat;
String sig_bExplDatAnnivT1_bgWaitTimeout;
String sig_bExplDatAnnivT1_bgTxnOut_MildAgreement;
String sig_bExplDatAnnivT1_bgTxnOut_StrongAgreement;
String sig_bExplDatAnnivT1_bgTxnOut_MildDisagreement;
String sig_bExplDatAnnivT1_bgTxnOut_StrongDisagreement;
String sig_bExplDatAnnivT1_bgTxnOut_NonAnswer;
String sig_bPhoneCallT1NGPA_bgTxnIn;
String sig_bPhoneCallT1NGPA_bgBody;
String sig_bPhoneCallT1NGPA_bgMixin_PlayerPicksUp;
String sig_bPhoneCallT1NGPA_bgMixin_Mild;
String sig_bPhoneCallT1NGPA_bgMixin_PraiseFlirt;
String sig_bPhoneCallT1NGPA_bgMixin_Negative;
String sig_bPhoneCallT1NGPA_bgMixin_Repeat;
String sig_bPhoneCallT1NGPA_bgTxnOut_p1;
String sig_bPhoneCallT1NGPA_bgTxnOut_p2;
String sig_bPhoneCallT1NTPA_bgTxnIn;
String sig_bPhoneCallT1NTPA_bgBody;
String sig_bPhoneCallT1NTPA_bgMixin_PlayerPicksUp;
String sig_bPhoneCallT1NTPA_bgMixin_Mild;
String sig_bPhoneCallT1NTPA_bgMixin_PraiseFlirt;
String sig_bPhoneCallT1NTPA_bgMixin_Negative;
String sig_bPhoneCallT1NTPA_bgMixin_Repeat;
String sig_bPhoneCallT1NTPA_bgTxnOut_p1;
String sig_bPhoneCallT1NTPA_bgTxnOut_p2;
String sig_bAAt1N_bgTxnIn_NoSubtopic;
String sig_bAAt1N_bgTxnIn_GivenSubtopic;
String sig_bAAt1N_bgTxnIn_InTripletAffinitySwitch;
String sig_bAAt1N_bgAddressSubtopic;
String sig_bAAt1N_bgAddressSubtopic_part2;
String sig_bAAt1N_bgWaitTimeout;
String sig_bAAt1N_bgTxnOut_NoAffinityChange;
String sig_bAAt1N_bgTxnOut_LeanToGPA;
String sig_bAAt1N_bgTxnOut_LeanToTPA;
String sig_bAAt1N_bgMixin_TellMeMore;
String sig_bAAt1N_bgMixin_SetSubtopicDuringTxnIn;
String sig_bAAt1N_bgMixin_GetWantedCriticism;
String sig_bAAt1N_bgMixin_GetUnwantedPraise;
String sig_bAAt1N_bgMixin_LookAndIgnore;
String sig_bAAt1GPA_bgTxnIn_NoSubtopic;
String sig_bAAt1GPA_bgTxnIn_GivenSubtopic;
String sig_bAAt1GPA_bgTxnIn_InTripletAffinitySwitch;
String sig_bAAt1GPA_bgAddressSubtopic;
String sig_bAAt1GPA_bgAddressSubtopic_part2;
String sig_bAAt1GPA_bgWaitTimeout;
String sig_bAAt1GPA_bgTxnOut_NoAffinityChange;
String sig_bAAt1GPA_bgTxnOut_LeanToGPA;
String sig_bAAt1GPA_bgTxnOut_LeanToTPA;
String sig_bAAt1GPA_bgMixin_TellMeMore;
String sig_bAAt1GPA_bgMixin_SetSubtopicDuringTxnIn;
String sig_bAAt1GPA_bgMixin_GetWantedCriticism;
String sig_bAAt1GPA_bgMixin_GetUnwantedPraise;
String sig_bAAt1GPA_bgMixin_LookAndIgnore;
String sig_bAAt1TPA_bgTxnIn_NoSubtopic;
String sig_bAAt1TPA_bgTxnIn_GivenSubtopic;
String sig_bAAt1TPA_bgTxnIn_InTripletAffinitySwitch;
String sig_bAAt1TPA_bgAddressSubtopic;
String sig_bAAt1TPA_bgAddressSubtopic_part2;
String sig_bAAt1TPA_bgWaitTimeout;
String sig_bAAt1TPA_bgTxnOut_NoAffinityChange;
String sig_bAAt1TPA_bgTxnOut_LeanToGPA;
String sig_bAAt1TPA_bgTxnOut_LeanToTPA;
String sig_bAAt1TPA_bgMixin_TellMeMore;
String sig_bAAt1TPA_bgMixin_SetSubtopicDuringTxnIn;
String sig_bAAt1TPA_bgMixin_GetWantedCriticism;
String sig_bAAt1TPA_bgMixin_GetUnwantedPraise;
String sig_bAAt1TPA_bgMixin_LookAndIgnore;
String sig_bRMt1N_bgTxnIn_Default;
String sig_bRMt1N_bgTxnIn_ReferTo;
String sig_bRMt1N_bgLurePlayer;
String sig_bRMt1N_bgLurePlayer2;
String sig_bRMt1N_bgLurePlayer3;
String sig_bRMt1N_bgStartGuessingGame_pre;
String sig_bRMt1N_bgStartGuessingGame;
String sig_bRMt1N_bgMixin_MoreThanAWord;
String sig_bRMt1N_bgMixin_WrongSingleWord;
String sig_bRMt1N_bgMixin_FirstGuessTimeout;
String sig_bRMt1N_bgMixin_TellMeMore;
String sig_bRMt1N_bgMixin_LookAndIgnore;
String sig_bRMt1N_bgWaitTimeout;
String sig_bRMt1N_bgTxnOut_WrongAnswer;
String sig_bRMt1N_bgTxnOut_WrongAnswer_p2;
String sig_bRMt1N_bgTxnOut_LeanToTPA_RightAnswer;
String sig_bRMt1N_bgTxnOut_LeanToTPA_RightAnswer_p2;
String sig_bRMt1N_bgTxnOut_PlayerNotAtPicture;
String sig_bRMt1N_bgTxnOut_PlayerNotAtPicture_p2;
String sig_bRMt1N_bgTxnOut_PlayerNotAtPicture_p3;
String sig_bRMt1GPA_bgTxnIn_Default;
String sig_bRMt1GPA_bgTxnIn_ReferTo;
String sig_bRMt1GPA_bgLurePlayer;
String sig_bRMt1GPA_bgLurePlayer2;
String sig_bRMt1GPA_bgLurePlayer3;
String sig_bRMt1GPA_bgStartGuessingGame_pre;
String sig_bRMt1GPA_bgStartGuessingGame;
String sig_bRMt1GPA_bgMixin_MoreThanAWord;
String sig_bRMt1GPA_bgMixin_WrongSingleWord;
String sig_bRMt1GPA_bgMixin_FirstGuessTimeout;
String sig_bRMt1GPA_bgMixin_TellMeMore;
String sig_bRMt1GPA_bgMixin_LookAndIgnore;
String sig_bRMt1GPA_bgWaitTimeout;
String sig_bRMt1GPA_bgTxnOut_WrongAnswer;
String sig_bRMt1GPA_bgTxnOut_WrongAnswer_p2;
String sig_bRMt1GPA_bgTxnOut_LeanToTPA_RightAnswer;
String sig_bRMt1GPA_bgTxnOut_LeanToTPA_RightAnswer_p2;
String sig_bRMt1GPA_bgTxnOut_PlayerNotAtPicture;
String sig_bRMt1GPA_bgTxnOut_PlayerNotAtPicture_p2;
String sig_bRMt1GPA_bgTxnOut_PlayerNotAtPicture_p3;
String sig_bRMt1TPA_bgTxnIn_Default;
String sig_bRMt1TPA_bgTxnIn_ReferTo;
String sig_bRMt1TPA_bgLurePlayer;
String sig_bRMt1TPA_bgLurePlayer2;
String sig_bRMt1TPA_bgLurePlayer3;
String sig_bRMt1TPA_bgStartGuessingGame_pre;
String sig_bRMt1TPA_bgStartGuessingGame;
String sig_bRMt1TPA_bgMixin_MoreThanAWord;
String sig_bRMt1TPA_bgMixin_WrongSingleWord;
String sig_bRMt1TPA_bgMixin_FirstGuessTimeout;
String sig_bRMt1TPA_bgMixin_TellMeMore;
String sig_bRMt1TPA_bgMixin_LookAndIgnore;
String sig_bRMt1TPA_bgWaitTimeout;
String sig_bRMt1TPA_bgTxnOut_WrongAnswer;
String sig_bRMt1TPA_bgTxnOut_WrongAnswer_p2;
String sig_bRMt1TPA_bgTxnOut_LeanToTPA_RightAnswer;
String sig_bRMt1TPA_bgTxnOut_LeanToTPA_RightAnswer_p2;
String sig_bRMt1TPA_bgTxnOut_PlayerNotAtPicture;
String sig_bRMt1TPA_bgTxnOut_PlayerNotAtPicture_p2;
String sig_bRMt1TPA_bgTxnOut_PlayerNotAtPicture_p3;
String sig_bFAskDrinkT1NTPA_bgTxnIn;
String sig_bFAskDrinkT1NTPA_bgTSuggest;
String sig_bFAskDrinkT1NTPA_bgInitialWait;
String sig_bFAskDrinkT1NTPA_bgMixin_GSuggest_AgreeT;
String sig_bFAskDrinkT1NTPA_bgMixin_GSuggest_DisagreeT;
String sig_bFAskDrinkT1NTPA_bgMixin_GSuggest_SpecificRequest;
String sig_bFAskDrinkT1NTPA_bgMixin_GSuggest_NonAnswer;
String sig_bFAskDrinkT1NTPA_bgWaitTimeout;
String sig_bFAskDrinkT1NTPA_bgTxnOut_AgreeG;
String sig_bFAskDrinkT1NTPA_bgTxnOut_AgreeG_p2;
String sig_bFAskDrinkT1NTPA_bgTxnOut_DisagreeG;
String sig_bFAskDrinkT1NTPA_bgTxnOut_DisagreeG_p2;
String sig_bFAskDrinkT1NTPA_bgTxnOut_SpecificRequestFancy;
String sig_bFAskDrinkT1NTPA_bgTxnOut_SpecificRequestFancy_p2;
String sig_bFAskDrinkT1NTPA_bgTxnOut_NonAnswer;
String sig_bFAskDrinkT1NTPA_bgTxnOut_NonAnswer_p2;
String sig_bFAskDrinkT1_bgTxnOut2_TripAsksGrace;
String sig_bFAskDrinkT1_bgTxnOut3_GraceResponds;
String sig_bFAskDrinkT1GPA_bgTxnIn;
String sig_bFAskDrinkT1GPA_bgTSuggest;
String sig_bFAskDrinkT1GPA_bgInitialWait;
String sig_bFAskDrinkT1GPA_bgMixin_GSuggest_AgreeT;
String sig_bFAskDrinkT1GPA_bgMixin_GSuggest_DisagreeT;
String sig_bFAskDrinkT1GPA_bgMixin_GSuggest_SpecificRequest;
String sig_bFAskDrinkT1GPA_bgMixin_GSuggest_NonAnswer;
String sig_bFAskDrinkT1GPA_bgWaitTimeout;
String sig_bFAskDrinkT1GPA_bgTxnOut_AgreeG;
String sig_bFAskDrinkT1GPA_bgTxnOut_AgreeG_p2;
String sig_bFAskDrinkT1GPA_bgTxnOut_DisagreeG;
String sig_bFAskDrinkT1GPA_bgTxnOut_DisagreeG_p2;
String sig_bFAskDrinkT1GPA_bgTxnOut_SpecificRequestFancy;
String sig_bFAskDrinkT1GPA_bgTxnOut_SpecificRequestFancy_p2;
String sig_bFAskDrinkT1GPA_bgTxnOut_NonAnswer;
String sig_bFAskDrinkT1GPA_bgTxnOut_NonAnswer_p2;
String sig_bTAt1N_bgTxnIn_Default;
String sig_bTAt1N_bgTxnIn_ReferTo;
String sig_bTAt1N_bgRevealSecret;
String sig_bTAt1N_bgLurePlayer;
String sig_bTAt1N_bgPoseQuestion;
String sig_bTAt1N_bgWaitTimeout;
String sig_bTAt1N_bgTxnOut_NoAffinityChange;
String sig_bTAt1N_bgTxnOut_NoAffinityChange_part2;
String sig_bTAt1N_bgTxnOut_LeanToGPA;
String sig_bTAt1N_bgTxnOut_LeanToGPA_part2;
String sig_bTAt1N_bgTxnOut_LeanToTPA;
String sig_bTAt1N_bgTxnOut_LeanToTPA_part2;
String sig_bTAt1N_bgTxnOut_LeanToTPA_PlayerNotAtTable;
String sig_bTAt1N_bgTxnOut_LeanToTPA_PlayerNotAtTable_part2;
String sig_bTAt1GPA_bgTxnIn_Default;
String sig_bTAt1GPA_bgTxnIn_ReferTo;
String sig_bTAt1GPA_bgRevealSecret;
String sig_bTAt1GPA_bgRevealSecret_part2;
String sig_bTAt1GPA_bgLurePlayer;
String sig_bTAt1GPA_bgPoseQuestion;
String sig_bTAt1GPA_bgWaitTimeout;
String sig_bTAt1GPA_bgTxnOut_NoAffinityChange;
String sig_bTAt1GPA_bgTxnOut_NoAffinityChange_part2;
String sig_bTAt1GPA_bgTxnOut_LeanToGPA;
String sig_bTAt1GPA_bgTxnOut_LeanToGPA_part2;
String sig_bTAt1GPA_bgTxnOut_LeanToTPA;
String sig_bTAt1GPA_bgTxnOut_LeanToTPA_part2;
String sig_bTAt1GPA_bgTxnOut_LeanToTPA_PlayerNotAtTable;
String sig_bTAt1GPA_bgTxnOut_LeanToTPA_PlayerNotAtTable_part2;
String sig_bTxnT1toT2NGPA_bgTxnIn;
String sig_bTxnT1toT2NGPA_bgTxnIn_p2;
String sig_bTxnT1toT2NGPA_bgMixin_Agree;
String sig_bTxnT1toT2NGPA_bgMixin_Disagree;
String sig_bTxnT1toT2NGPA_bgTxnOut;
String sig_bTxnT1toT2TPA_bgTxnIn;
String sig_bTxnT1toT2TPA_bgTxnIn_p2;
String sig_bTxnT1toT2TPA_bgMixin_Agree;
String sig_bTxnT1toT2TPA_bgMixin_Disagree;
String sig_bTxnT1toT2TPA_bgTxnOut;
String sig_bAAt2GPA_bgTxnIn;
String sig_bAAt2GPA_bgTxnIn_p2;
String sig_bAAt2GPA_bgTxnIn_InTripletAffinitySwitch;
String sig_bAAt2GPA_bgAddressSubtopic;
String sig_bAAt2GPA_bgAddressSubtopic_part2;
String sig_bAAt2GPA_bgWaitTimeout;
String sig_bAAt2GPA_bgTxnOut_NoAffinityChange;
String sig_bAAt2GPA_bgTxnOut_NoAffinityChange_p2;
String sig_bAAt2GPA_bgTxnOut_LeanToGPA;
String sig_bAAt2GPA_bgTxnOut_LeanToGPA_p2;
String sig_bAAt2GPA_bgTxnOut_LeanToTPA;
String sig_bAAt2GPA_bgTxnOut_LeanToTPA_p2;
String sig_bAAt2GPA_bgMixin_TellMeMore;
String sig_bAAt2GPA_bgMixin_SetSubtopicDuringTxnIn;
String sig_bAAt2GPA_bgMixin_GetWantedCriticism;
String sig_bAAt2GPA_bgMixin_GetUnwantedPraise;
String sig_bAAt2GPA_bgMixin_LookAndIgnore;
String sig_bAAt2TPA_bgTxnIn;
String sig_bAAt2TPA_bgTxnIn_p2;
String sig_bAAt2TPA_bgTxnIn_InTripletAffinitySwitch;
String sig_bAAt2TPA_bgAddressSubtopic;
String sig_bAAt2TPA_bgAddressSubtopic_part2;
String sig_bAAt2TPA_bgWaitTimeout;
String sig_bAAt2TPA_bgTxnOut_NoAffinityChange;
String sig_bAAt2TPA_bgTxnOut_NoAffinityChange_p2;
String sig_bAAt2TPA_bgTxnOut_LeanToGPA;
String sig_bAAt2TPA_bgTxnOut_LeanToGPA_p2;
String sig_bAAt2TPA_bgTxnOut_LeanToTPA;
String sig_bAAt2TPA_bgTxnOut_LeanToTPA_p2;
String sig_bAAt2TPA_bgMixin_TellMeMore;
String sig_bAAt2TPA_bgMixin_SetSubtopicDuringTxnIn;
String sig_bAAt2TPA_bgMixin_GetWantedCriticism;
String sig_bAAt2TPA_bgMixin_GetUnwantedPraise;
String sig_bAAt2TPA_bgMixin_LookAndIgnore;
String sig_bRMt2GPA_bgTxnIn_Default;
String sig_bRMt2GPA_bgTxnIn_ReferTo;
String sig_bRMt2GPA_bgLurePlayer;
String sig_bRMt2GPA_bgLurePlayer2;
String sig_bRMt2GPA_bgLurePlayer3;
String sig_bRMt2GPA_bgStartGuessingGame_pre;
String sig_bRMt2GPA_bgStartGuessingGame;
String sig_bRMt2GPA_bgStartGuessingGame_p2;
String sig_bRMt2GPA_bgMixin_MoreThanAWord;
String sig_bRMt2GPA_bgMixin_WrongSingleWord;
String sig_bRMt2GPA_bgMixin_FirstGuessTimeout;
String sig_bRMt2GPA_bgMixin_TellMeMore;
String sig_bRMt2GPA_bgMixin_LookAndIgnore;
String sig_bRMt2GPA_bgWaitTimeout;
String sig_bRMt2GPA_bgTxnOut_WrongAnswer;
String sig_bRMt2GPA_bgTxnOut_LeanToTPA_p2;
String sig_bRMt2GPA_bgTxnOut_LeanToTPA_RightAnswer;
String sig_bRMt2GPA_bgTxnOut_PlayerNotAtPicture;
String sig_bRMt2GPA_bgTxnOut_PlayerNotAtPicture_p2;
String sig_bRMt2TPA_bgTxnIn_Default;
String sig_bRMt2TPA_bgTxnIn_ReferTo;
String sig_bRMt2TPA_bgLurePlayer;
String sig_bRMt2TPA_bgLurePlayer2;
String sig_bRMt2TPA_bgLurePlayer3;
String sig_bRMt2TPA_bgStartGuessingGame_pre;
String sig_bRMt2TPA_bgStartGuessingGame;
String sig_bRMt2TPA_bgStartGuessingGame_p2;
String sig_bRMt2TPA_bgMixin_MoreThanAWord;
String sig_bRMt2TPA_bgMixin_WrongSingleWord;
String sig_bRMt2TPA_bgMixin_FirstGuessTimeout;
String sig_bRMt2TPA_bgMixin_TellMeMore;
String sig_bRMt2TPA_bgMixin_LookAndIgnore;
String sig_bRMt2TPA_bgWaitTimeout;
String sig_bRMt2TPA_bgTxnOut_WrongAnswer;
String sig_bRMt2TPA_bgTxnOut_LeanToTPA_p2;
String sig_bRMt2TPA_bgTxnOut_LeanToTPA_RightAnswer;
String sig_bRMt2TPA_bgTxnOut_PlayerNotAtPicture;
String sig_bRMt2TPA_bgTxnOut_PlayerNotAtPicture_p2;
String sig_bFAskDrinkT2TPA_bgTxnIn;
String sig_bFAskDrinkT2TPA_bgTSuggest;
String sig_bFAskDrinkT2TPA_bgTSuggest2;
String sig_bFAskDrinkT2TPA_bgInitialWait;
String sig_bFAskDrinkT2TPA_bgMixin_GSuggest_AgreeT;
String sig_bFAskDrinkT2TPA_bgMixin_GSuggest_DisagreeT;
String sig_bFAskDrinkT2TPA_bgMixin_GSuggest_SpecificRequestNonAnswer;
String sig_bFAskDrinkT2TPA_bgWaitTimeout;
String sig_bFAskDrinkT2TPA_bgTxnOut_AgreeG;
String sig_bFAskDrinkT2TPA_bgTxnOut_DisagreeGNonAnswer;
String sig_bFAskDrinkT2GPA_bgTxnIn;
String sig_bFAskDrinkT2GPA_bgTSuggest;
String sig_bFAskDrinkT2GPA_bgTSuggest2;
String sig_bFAskDrinkT2GPA_bgInitialWait;
String sig_bFAskDrinkT2GPA_bgMixin_GSuggest_AgreeT;
String sig_bFAskDrinkT2GPA_bgMixin_GSuggest_DisagreeT;
String sig_bFAskDrinkT2GPA_bgMixin_GSuggest_SpecificRequestNonAnswer;
String sig_bFAskDrinkT2GPA_bgWaitTimeout;
String sig_bFAskDrinkT2GPA_bgTxnOut_AgreeG;
String sig_bFAskDrinkT2GPA_bgTxnOut_DisagreeGNonAnswer;
String sig_bOneOnOneGAffChrT2_bgTxnIn;
String sig_bOneOnOneGAffChrT2_bgDefuse;
String sig_bOneOnOneGAffChrT2_bgConfess;
String sig_bOneOnOneGAffChrT2_bgFinalYelling;
String sig_bOneOnOneGAffChrT2_bgMixin_MoveToLeaveRoom;
String sig_bOneOnOneGAffChrT2_bgMixin_Mild;
String sig_bOneOnOneGAffChrT2_bgMixin_FlirtKissOppSex;
String sig_bOneOnOneGAffChrT2_bgMixin_AnythingElseStrong;
String sig_bOneOnOneGAffChrT2_bgMixin_AnythingElseStrong_2ndtime;
String sig_bOneOnOneGAffChrT2_bgMixin_LookAndIgnore;
String sig_bOneOnOneGAffChrT2_bgTxnOut_OpposeInappr;
String sig_bOneOnOneTAffChrT2_bgTxnIn;
String sig_bOneOnOneTAffChrT2_bgDefuse;
String sig_bOneOnOneTAffChrT2_bgConfess;
String sig_bOneOnOneTAffChrT2_bgFinalYelling;
String sig_bOneOnOneTAffChrT2_bgMixin_MoveToLeaveRoom;
String sig_bOneOnOneTAffChrT2_bgMixin_Mild;
String sig_bOneOnOneTAffChrT2_bgMixin_FlirtKissOppSex;
String sig_bOneOnOneTAffChrT2_bgMixin_AnythingElseStrong;
String sig_bOneOnOneTAffChrT2_bgMixin_AnythingElseStrong_2ndtime;
String sig_bOneOnOneTAffChrT2_bgMixin_LookAndIgnore;
String sig_bOneOnOneTAffChrT2_bgTxnOut_OpposeInappr;
String sig_bNonAffChrGReturnsT2_bgTxnIn_Veronica;
String sig_bNonAffChrGReturnsT2_bgTxnIn_Grace;
String sig_bNonAffChrGReturnsT2_bgMixin_Veronica;
String sig_bNonAffChrGReturnsT2_bgTxnOut_Veronica;
String sig_bNonAffChrGReturnsT2_bgTxnOut_NotVeronica;
String sig_bNonAffChrGReturnsT2_bgTxnOut_ReferToSatl;
String sig_bNonAffChrGReturnsT2_bgTxnOut_LookAndIgnore;
String sig_bNonAffChrGReturnsT2_bgTxnOut_OpposeInappr;
String sig_bNonAffChrTReturnsT2_bgTxnIn;
String sig_bNonAffChrTReturnsT2_bgTxnOut_ForgotCheese;
String sig_bNonAffChrTReturnsT2_bgTxnOut_Comment;
String sig_bNonAffChrTReturnsT2_bgTxnOut_StrongNonNeg;
String sig_bNonAffChrTReturnsT2_bgTxnOut_StrongNeg;
String sig_bNonAffChrTReturnsT2_bgTxnOut_OpposeInappr;
String sig_bOneOnOneGNonAffChrT2_bgTxnIn;
String sig_bOneOnOneGNonAffChrT2_bgInitialComment;
String sig_bOneOnOneGNonAffChrT2_bgMixin_Confession;
String sig_bOneOnOneGNonAffChrT2_bgTxnOut_Positive;
String sig_bOneOnOneGNonAffChrT2_bgTxnOut_StrongNotMean;
String sig_bOneOnOneGNonAffChrT2_bgTxnOut_MeanNeg;
String sig_bOneOnOneGNonAffChrT2_bgTxnOut_FlirtKiss;
String sig_bOneOnOneGNonAffChrT2_bgTxnOut_PlayerLeaves;
String sig_bOneOnOneGNonAffChrT2_bgTxnOut_OpposeInappr;
String sig_bOneOnOneTNonAffChrT2_bgTxnIn;
String sig_bOneOnOneTNonAffChrT2_bgInitialComment;
String sig_bOneOnOneTNonAffChrT2_bgMixin_Confession;
String sig_bOneOnOneTNonAffChrT2_bgTxnOut_Positive;
String sig_bOneOnOneTNonAffChrT2_bgTxnOut_StrongNotMean;
String sig_bOneOnOneTNonAffChrT2_bgTxnOut_MeanNeg;
String sig_bOneOnOneTNonAffChrT2_bgTxnOut_FlirtKiss;
String sig_bOneOnOneTNonAffChrT2_bgTxnOut_PlayerLeaves;
String sig_bOneOnOneTNonAffChrT2_bgTxnOut_OpposeInappr;
String sig_bRomPrpT2GPA_bgTxnIn;
String sig_bRomPrpT2GPA_bgTxnIn_p2;
String sig_bRomPrpT2GPA_bgBody;
String sig_bRomPrpT2GPA_bgWaitTimeout;
String sig_bRomPrpT2GPA_bgTxnOut_NonAnswer;
String sig_bRomPrpT2GPA_bgTxnOut_AgreeT;
String sig_bRomPrpT2GPA_bgTxnOut_DisagreeT;
String sig_bTxnT2ToT3_bgGoToCrisis;
String sig_bCrisisP1_bgTxnIn;
String sig_bCrisisP1_bgTxnIn_p2;
String sig_bCrisisP1_bgTxnIn_p3;
String sig_bCrisisP1_bgBody;
String sig_bCrisisP1_bgInitialReaction;
String sig_bCrisisP1_bgBody2;
String sig_bCrisisP1_bgBody2_p2;
String sig_bCrisisP1_bgSecondReaction;
String sig_bCrisisP1_bgBody3;
String sig_bCrisisP1_bgTxnOut;
String sig_bCrisisP1_bgNonAnswer;
String sig_bCrisisP1_bgMildDisagreement;
String sig_bCrisisP1_bgReferToDrinks;
String sig_bCrisisP1_bgPraise;
String sig_bCrisisP1_bgCriticize;
String sig_bCrisisP1_bgFlirt;
String sig_bCrisisP1_bgStrongDisagreement;
String sig_bCrisisP1_bgRepeat;
String sig_bCrisisP1_bgRepeat_ThrowOutPlayer;
String sig_bC2TGGlue_bgVent1;
String sig_bC2TGGlue_bgVent2;
String sig_bC2TGGlue_bgMixin;
String sig_bC2TGGlue_bgVentKitchen1;
String sig_bC2TGGlue_bgVentKitchen2;
String sig_bTherapyGameP2_InitialMixin;
String sig_bTherapyGameP2_MainLoop;
String sig_bTherapyGameP2_Mixin;
String sig_bRevBuildupP2_bgTxnIn;
String sig_bRevBuildupP2_bgTxnIn_mixin;
String sig_bRevBuildupP2_bgBody2;
String sig_bRevBuildupP2_bgBody2_mixin;
String sig_bRevBuildupP2_bgBody2b;
String sig_bRevBuildupP2_bgBody3a;
String sig_bRevBuildupP2_bgBody3b;
String sig_bRevBuildupP2_bgBody3_mixin;
String sig_bRevBuildupP2_bgBody4a;
String sig_bRevBuildupP2_bgBody4b;
String sig_bRevBuildupP2_bgBody4c;
String sig_bRevBuildupP2_bgLitany;
String sig_bRevBuildupP2_bgBody4_mixin;
String sig_bRevBuildupP2_bgBody5;
String sig_bRevBuildupP2_bgBody5_mixin;
String sig_bRevBuildupP2_bgTxnOut;
String sig_bRevelationsP2_bgRev1;
String sig_bRevelationsP2_bgPostRev1;
String sig_bRevelationsP2_bgRev2;
String sig_bRevelationsP2_bgPostRev2;
String sig_bRevelationsP2_bgRev3;
String sig_bRevelationsP2_bgPostRev3;
String sig_bEndingNoRevs_bgBody1;
String sig_bEndingNoRevs_bgBody2;
String sig_bEndingNoRevs_bgBody3;
String sig_bEndingSelfsOnly_bgBody1;
String sig_bEndingSelfsOnly_bgBody2;
String sig_bEndingSelfsOnly_bgBody3;
String sig_bEndingSelfsOnly_bgBody4;
String sig_bEndingSelfsOnly_bgBody5;
String sig_bEndingSelfsOnly_bgBody6;
String sig_bEndingSelfsOnly_bgBody7;
String sig_bEndingSelfsOnly_bgBody8;
String sig_bEndingRelatsOnly_bgBody1;
String sig_bEndingRelatsOnly_bgBody2;
String sig_bEndingRelatsOnly_bgBody3;
String sig_bEndingRelatsOnly_bgBody4;
String sig_bEndingRelatsOnly_bgBody5;
String sig_bEndingRelatsOnly_bgBody6;
String sig_bEndingRelatsOnly_bgBody7;
String sig_bEndingRelatsOnly_bgBody8;
String sig_bEndingSRNotGTR_bgBody1;
String sig_bEndingSRNotGTR_bgBody2;
String sig_bEndingSRNotGTR_bgBody3;
String sig_bEndingSRNotGTR_bgBody4;
String sig_bEndingSRNotGTR_bgBody5;
String sig_bEndingSRNotGTR_bgBody6;
String sig_bEndingSRNotGTR_bgBody7;
String sig_bEndingSRNotGTR_bgBody8;
String sig_bEndingGTR_bgBody1;
String sig_bEndingGTR_bgBody2;
String sig_bEndingGTR_bgBody3;
String sig_bEndingGTR_bgBody4;
int me;
String myName;
int spouse;
int g_objArm;
int g_objArmResource;
int g_objArmAnimLayer;
int g_objHand;
int g_drinkArm;
int g_drinkArmResource;
int g_drinkHand;
int g_leftHand;
int g_rightHand;
int g_armGesture_default;
int g_armGesture_clearThroat;
int g_armLGesture_atSideEmphasis_loop1;
int g_armLGesture_atSideEmphasis2;
int g_armLGesture_atSideEmphasis2_loop1;
int g_armLGesture_atSideEmphasis3;
int g_armLGesture_atSideEmphasis3_loop1;
int g_armRGesture_atSideEmphasis_loop1;
int g_armRGesture_atSideEmphasis2;
int g_armRGesture_atSideEmphasis2_loop1;
int g_armRGesture_atSideEmphasis3;
int g_armRGesture_atSideEmphasis3_loop1;
int g_armLGesture_gestureReady;
int g_armLGesture_suggestReady;
int g_armLGesture_objectGrab;
int g_armLGesture_objectHold;
int g_armLGesture_objectOffer;
int g_armLGesture_objectDrop;
int g_armLGesture_akimbo;
int g_armObjGesture_objectOfferDone;
int g_armRGesture_gestureReady;
int g_armRGesture_objectGrab;
int g_armRGesture_objectHold;
int g_armRGesture_objectOffer;
int g_armRGesture_objectDrop;
int g_armRGesture_openDoor;
int g_armRGesture_closeDoor;
int g_armRGesture_akimbo;
int g_armGesture_drinkHold;
int g_armGesture_drinkSip_sip;
int g_armGesture_drinkPreSip_hold;
int g_armGesture_drinkSwish_hold;
int g_armsBothGesture_crossed;
int g_dialog_clearThroat;
int g_dialog_sigh_short_petulant;
Random randGen;
int grace;
int trip;
int player;
int noOne;
float DONTCAREANGLE;
float cMoodMangerRetryDelay;
int gBeatTempInt;
int gBeatTempInt2;
int gBeatTempInt3;
int gBeatTempInt4;
boolean gBeatTempBool;
Point3D gBeatTempPt;
boolean gDeflectReestablish;
private static final void __$initConflictSet0() {
Grace.__$conflictSet11 = new String[] { "fullExpressionBase" };
Grace.__$conflictSet8 = new String[] { "armsBothPutdownObjGesture", "armLPutdownObjGesture", "armsBothPickupObjGesture", "armRPickupObjGesture", "armLPickupObjGesture", "armRGesture", "armsBothGesture", "armRPutdownObjGesture", "armLGesture" };
Grace.__$conflictSet4 = new String[] { "DoPickupObjGesture_ArmL", "DoPutdownObjGesture_ArmsBoth", "DoGesture_ArmsBoth", "DoPickupObjGesture_ArmsBoth", "DoGesture_ArmL", "DoPutdownObjGesture_ArmL" };
Grace.__$conflictSet5 = new String[] { "armsBothPutdownObjGesture", "armLPutdownObjGesture", "armsBothPickupObjGesture", "armLPickupObjGesture", "armsBothGesture", "armLGesture" };
Grace.__$conflictSet3 = new String[] { "resetEntireBody", "walk", "pushBaseAnim", "pose" };
Grace.__$conflictSet1 = new String[] { "DoPickupObjGesture_ArmL", "DoPickupObjGesture_ArmR", "DoGesture_ArmsBoth", "DoPutdownObjGesture_ArmsBoth", "DoPickupObjGesture_ArmsBoth", "DoPutdownObjGesture_ArmR", "DoGesture_ArmL", "DoPutdownObjGesture_ArmL", "DoGesture_ArmR" };
Grace.__$conflictSet6 = new String[] { "DoPickupObjGesture_ArmR", "DoPutdownObjGesture_ArmsBoth", "DoGesture_ArmsBoth", "DoPickupObjGesture_ArmsBoth", "DoPutdownObjGesture_ArmR", "DoGesture_ArmR" };
Grace.__$conflictSet7 = new String[] { "armsBothPutdownObjGesture", "armsBothPickupObjGesture", "armRPickupObjGesture", "armRGesture", "armsBothGesture", "armRPutdownObjGesture" };
Grace.__$conflictSet9 = new String[] { "armsBothPutdownObjGesture", "armLPutdownObjGesture", "armsBothPickupObjGesture", "armRPickupObjGesture", "armLPickupObjGesture", "armRGesture", "armRPutdownObjGesture", "armsBothGesture", "armLGesture" };
Grace.__$conflictSet12 = new String[] { "walk", "pushBaseAnim", "pose" };
Grace.__$conflictSet10 = new String[] { "fullExpressionMood" };
Grace.__$conflictSet2 = new String[] { "dialog" };
}
private static final void registerBehaviors_0(final BehaviorLibrary behaviorLibrary) {
behaviorLibrary.registerBehavior(new __BehaviorDesc(2, Grace.__$behaviorFactory0_rfield, null, null, "bPBehindDoorT1_ArgueBehindDoor_alt1_BodyStuff_dia()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4, Grace.__$behaviorFactory0_rfield, null, null, "bPBehindDoorT1_ArgueBehindDoor_alt2_BodyStuff_dia()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(6, Grace.__$behaviorFactory0_rfield, null, null, "bPBehindDoorT1_TxnOut_BodyStuff_dia()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(7, Grace.__$behaviorFactory0_rfield, null, null, "bPBehindDoorT1_TxnOut_BodyStuff_dia()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(35, Grace.__$behaviorFactory0_rfield, null, null, "bTFetchesGT1_TxnOut_BodyStuff_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(36, Grace.__$behaviorFactory0_rfield, Grace.__$precondition0_rfield, null, "bTFetchesGT1_TxnOut_BodyStuff_SayDialogOrWaitABit()", null, (short)2));
behaviorLibrary.registerBehavior(new __BehaviorDesc(37, Grace.__$behaviorFactory0_rfield, null, null, "bTFetchesGT1_TxnOut_BodyStuff_SayDialogOrWaitABit()", null, (short)1));
behaviorLibrary.registerBehavior(new __BehaviorDesc(40, Grace.__$behaviorFactory0_rfield, null, null, "bGGreetsPT1_GreetP_BodyStuff_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(41, Grace.__$behaviorFactory0_rfield, null, null, "bGGreetsPT1_GreetP_WaitUntilPlayerFacesMeOrTimeout()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(42, Grace.__$behaviorFactory0_rfield, null, null, "bGGreetsPT1_GreetP_BodyStuff_dia()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(43, Grace.__$behaviorFactory0_rfield, null, null, "bGGreetsPT1_GreetP_BodyStuff_dia()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(44, Grace.__$behaviorFactory0_rfield, null, null, "bGGreetsPT1_GreetP_BodyStuff_dia()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(45, Grace.__$behaviorFactory0_rfield, null, null, "bGGreetsPT1_GreetP_BodyStuff_dia()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(48, Grace.__$behaviorFactory0_rfield, null, null, "bGGreetsPT1_GreetP_Quibble_alt1_BodyStuff2_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(49, Grace.__$behaviorFactory0_rfield, null, null, "bGGreetsPT1_GreetP_Quibble_alt1_BodyStuff2_dia()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(50, Grace.__$behaviorFactory0_rfield, null, null, "bGGreetsPT1_GreetP_Quibble_alt1_BodyStuff2_dia()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(51, Grace.__$behaviorFactory0_rfield, null, null, "bGGreetsPT1_GreetP_Quibble_alt1_BodyStuff2_dia()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(52, Grace.__$behaviorFactory0_rfield, null, null, "bGGreetsPT1_GreetP_Quibble_alt1_BodyStuff2_dia()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(55, Grace.__$behaviorFactory0_rfield, null, null, "bGGreetsPT1_GreetP_Quibble_alt2_BodyStuff2_dia()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(56, Grace.__$behaviorFactory0_rfield, null, null, "bGGreetsPT1_GreetP_Quibble_alt2_BodyStuff2_dia()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(59, Grace.__$behaviorFactory0_rfield, null, null, "bGGreetsPT1_GreetP_Quibble_alt2_BodyStuff4_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(60, Grace.__$behaviorFactory0_rfield, null, null, "bGGreetsPT1_GreetP_Quibble_alt2_BodyStuff4_seq_par()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(62, Grace.__$behaviorFactory0_rfield, null, null, "bGGreetsPT1_WaitTimeout_BodyStuff_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(64, Grace.__$behaviorFactory0_rfield, null, null, "bGGreetsPT1_TxnOut_Greet_BodyStuff_dia()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(65, Grace.__$behaviorFactory0_rfield, null, null, "bGGreetsPT1_TxnOut_Greet_BodyStuff_dia()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(66, Grace.__$behaviorFactory0_rfield, null, null, "bGGreetsPT1_TxnOut_Greet_BodyStuff_dia()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(67, Grace.__$behaviorFactory0_rfield, Grace.__$precondition0_rfield, null, "bGGreetsPT1_TxnOut_FinishPraisingPlayer_dia()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(69, Grace.__$behaviorFactory0_rfield, null, null, "bGGreetsPT1_TxnOut_HowAreYou_BodyStuff_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(70, Grace.__$behaviorFactory0_rfield, null, null, "bGGreetsPT1_TxnOut_HowAreYou_BodyStuff_par()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(71, Grace.__$behaviorFactory0_rfield, null, null, "bGGreetsPT1_TxnOut_HowAreYou_BodyStuff_dia()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(72, Grace.__$behaviorFactory0_rfield, null, null, "bGGreetsPT1_TxnOut_HowAreYou_BodyStuff_dia()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(73, Grace.__$behaviorFactory0_rfield, null, null, "bGGreetsPT1_TxnOut_HowAreYou_BodyStuff_dia()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(74, Grace.__$behaviorFactory0_rfield, null, null, "bGGreetsPT1_TxnOut_HowAreYou_BodyStuff_dia()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(75, Grace.__$behaviorFactory0_rfield, null, null, "bGGreetsPT1_TxnOut_HowAreYou_BodyStuff_dia()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(77, Grace.__$behaviorFactory0_rfield, null, null, "bGGreetsPT1_TxnOut_IsOkayQuestion_BodyStuff_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(78, Grace.__$behaviorFactory0_rfield, null, null, "bGGreetsPT1_TxnOut_IsOkayQuestion_BodyStuff_par()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(79, Grace.__$behaviorFactory0_rfield, null, null, "bGGreetsPT1_TxnOut_IsOkayQuestion_BodyStuff_par_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(80, Grace.__$behaviorFactory0_rfield, null, null, "bGGreetsPT1_TxnOut_IsOkayQuestion_BodyStuff_dia()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(81, Grace.__$behaviorFactory0_rfield, null, null, "bGGreetsPT1_TxnOut_IsOkayQuestion_BodyStuff_dia()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(83, Grace.__$behaviorFactory0_rfield, null, null, "bGGreetsPT1_TxnOut_Positive_BodyStuff_dia()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(84, Grace.__$behaviorFactory0_rfield, null, null, "bGGreetsPT1_TxnOut_Positive_BodyStuff_dia()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(85, Grace.__$behaviorFactory0_rfield, null, null, "bGGreetsPT1_TxnOut_Positive_BodyStuff_dia()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(86, Grace.__$behaviorFactory0_rfield, null, null, "bGGreetsPT1_TxnOut_Positive_BodyStuff_dia()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(88, Grace.__$behaviorFactory0_rfield, null, null, "bGGreetsPT1_TxnOut_Praise_BodyStuff_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(89, Grace.__$behaviorFactory0_rfield, null, null, "bGGreetsPT1_TxnOut_Praise_BodyStuff_dia()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(90, Grace.__$behaviorFactory0_rfield, null, null, "bGGreetsPT1_TxnOut_Praise_BodyStuff_dia()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(92, Grace.__$behaviorFactory0_rfield, null, null, "bGGreetsPT1_TxnOut_Negative_BodyStuff_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(93, Grace.__$behaviorFactory0_rfield, null, null, "bGGreetsPT1_TxnOut_Negative_BodyStuff_dia()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(94, Grace.__$behaviorFactory0_rfield, null, null, "bGGreetsPT1_TxnOut_Negative_BodyStuff_dia()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(96, Grace.__$behaviorFactory0_rfield, null, null, "bGGreetsPT1_TxnOut_Distraction_BodyStuff_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(97, Grace.__$behaviorFactory0_rfield, null, null, "bGGreetsPT1_TxnOut_Distraction_BodyStuff_dia()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(98, Grace.__$behaviorFactory0_rfield, null, null, "bGGreetsPT1_TxnOut_Distraction_BodyStuff_dia()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(100, Grace.__$behaviorFactory0_rfield, null, null, "bGGreetsPT1_TxnOut_MildConfusion_BodyStuff_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(101, Grace.__$behaviorFactory0_rfield, null, null, "bGGreetsPT1_TxnOut_MildConfusion_BodyStuff_dia()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(102, Grace.__$behaviorFactory0_rfield, null, null, "bGGreetsPT1_TxnOut_MildConfusion_BodyStuff_dia()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(104, Grace.__$behaviorFactory0_rfield, null, null, "bGGreetsPT1_TxnOut_MildConfusionTripComment_BodyStuff_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(105, Grace.__$behaviorFactory0_rfield, null, null, "bGGreetsPT1_TxnOut_MildConfusionTripComment_BodyStuff_dia()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(106, Grace.__$behaviorFactory0_rfield, null, null, "bGGreetsPT1_TxnOut_MildConfusionTripComment_BodyStuff_dia()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(108, Grace.__$behaviorFactory0_rfield, null, null, "bGGreetsPT1_TxnOut_FlirtFP_BodyStuff_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(109, Grace.__$behaviorFactory0_rfield, null, null, "bGGreetsPT1_TxnOut_FlirtFP_BodyStuff_dia()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(110, Grace.__$behaviorFactory0_rfield, null, null, "bGGreetsPT1_TxnOut_FlirtFP_BodyStuff_dia()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(112, Grace.__$behaviorFactory0_rfield, null, null, "bGGreetsPT1_TxnOut_FlirtMP_BodyStuff_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(113, Grace.__$behaviorFactory0_rfield, null, null, "bGGreetsPT1_TxnOut_FlirtMP_BodyStuff_dia()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(114, Grace.__$behaviorFactory0_rfield, null, null, "bGGreetsPT1_TxnOut_FlirtMP_BodyStuff_dia()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(116, Grace.__$behaviorFactory0_rfield, null, null, "bGGreetsPT1_TxnOut_KissFP_BodyStuff_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(117, Grace.__$behaviorFactory0_rfield, null, null, "bGGreetsPT1_TxnOut_KissFP_BodyStuff_dia()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(118, Grace.__$behaviorFactory0_rfield, null, null, "bGGreetsPT1_TxnOut_KissFP_BodyStuff_dia()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(120, Grace.__$behaviorFactory0_rfield, null, null, "bGGreetsPT1_TxnOut_KissMP_BodyStuff_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(121, Grace.__$behaviorFactory0_rfield, null, null, "bGGreetsPT1_TxnOut_KissMP_BodyStuff_dia()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(122, Grace.__$behaviorFactory0_rfield, null, null, "bGGreetsPT1_TxnOut_KissMP_BodyStuff_dia()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(125, Grace.__$behaviorFactory0_rfield, null, null, "bGGreetsPT1_TxnOut_KissT_FP_BodyStuff2_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(126, Grace.__$behaviorFactory0_rfield, null, null, "bGGreetsPT1_TxnOut_KissT_FP_BodyStuff2_dia()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(127, Grace.__$behaviorFactory0_rfield, null, null, "bGGreetsPT1_TxnOut_KissT_FP_BodyStuff2_dia()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(130, Grace.__$behaviorFactory0_rfield, null, null, "bGGreetsPT1_TxnOut_KissT_MP_BodyStuff2_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(131, Grace.__$behaviorFactory0_rfield, null, null, "bGGreetsPT1_TxnOut_KissT_MP_BodyStuff2_dia()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(132, Grace.__$behaviorFactory0_rfield, null, null, "bGGreetsPT1_TxnOut_KissT_MP_BodyStuff2_dia()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(134, Grace.__$behaviorFactory0_rfield, null, null, "bGGreetsPT1_TxnOut_Annoying_BodyStuff_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(135, Grace.__$behaviorFactory0_rfield, null, null, "bGGreetsPT1_TxnOut_Annoying_BodyStuff_dia()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(136, Grace.__$behaviorFactory0_rfield, null, null, "bGGreetsPT1_TxnOut_Annoying_BodyStuff_dia()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(137, Grace.__$behaviorFactory0_rfield, null, null, "bGGreetsPT1_TxnOut_Annoying_BodyStuff_dia()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(139, Grace.__$behaviorFactory0_rfield, null, null, "bGGreetsPT1_TxnOut_TimeoutComeIn_BodyStuff_par()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(140, Grace.__$behaviorFactory0_rfield, null, null, "bGGreetsPT1_TxnOut_TimeoutComeIn_BodyStuff_par_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(141, Grace.__$behaviorFactory0_rfield, Grace.__$precondition0_rfield, null, "bGGreetsPT1_TxnOut_TimeoutComeIn_BodyStuff_dia()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(142, Grace.__$behaviorFactory0_rfield, Grace.__$precondition0_rfield, null, "bGGreetsPT1_TxnOut_TimeoutComeIn_BodyStuff_dia()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(143, Grace.__$behaviorFactory0_rfield, Grace.__$precondition0_rfield, null, "bGGreetsPT1_TxnOut_TimeoutComeIn_BodyStuff_dia()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(144, Grace.__$behaviorFactory0_rfield, Grace.__$precondition0_rfield, null, "bGGreetsPT1_TxnOut_TimeoutComeIn_BodyStuff_dia()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(145, Grace.__$behaviorFactory0_rfield, null, null, "bGGreetsPT1_TxnOut_TimeoutComeIn_BodyStuff_dia_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(147, Grace.__$behaviorFactory0_rfield, null, null, "bGGreetsPT1_TxnOut_PosComeIn_BodyStuff_par()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(148, Grace.__$behaviorFactory0_rfield, null, null, "bGGreetsPT1_TxnOut_PosComeIn_BodyStuff_par_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(149, Grace.__$behaviorFactory0_rfield, Grace.__$precondition0_rfield, null, "bGGreetsPT1_TxnOut_PosComeIn_BodyStuff_dia()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(150, Grace.__$behaviorFactory0_rfield, Grace.__$precondition0_rfield, null, "bGGreetsPT1_TxnOut_PosComeIn_BodyStuff_dia()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(151, Grace.__$behaviorFactory0_rfield, Grace.__$precondition0_rfield, null, "bGGreetsPT1_TxnOut_PosComeIn_BodyStuff_dia()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(152, Grace.__$behaviorFactory0_rfield, Grace.__$precondition0_rfield, null, "bGGreetsPT1_TxnOut_PosComeIn_BodyStuff_dia()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(153, Grace.__$behaviorFactory0_rfield, Grace.__$precondition0_rfield, null, "bGGreetsPT1_TxnOut_PosComeIn_BodyStuff_dia()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(154, Grace.__$behaviorFactory0_rfield, Grace.__$precondition0_rfield, null, "bGGreetsPT1_TxnOut_PosComeIn_BodyStuff_dia()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(155, Grace.__$behaviorFactory0_rfield, null, null, "bGGreetsPT1_TxnOut_PosComeIn_BodyStuff_dia_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(157, Grace.__$behaviorFactory0_rfield, null, null, "bGGreetsPT1_TxnOut_NeutralComeIn_BodyStuff_par()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(158, Grace.__$behaviorFactory0_rfield, null, null, "bGGreetsPT1_TxnOut_NeutralComeIn_BodyStuff_par_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(159, Grace.__$behaviorFactory0_rfield, Grace.__$precondition0_rfield, null, "bGGreetsPT1_TxnOut_NeutralComeIn_BodyStuff_dia()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(160, Grace.__$behaviorFactory0_rfield, Grace.__$precondition0_rfield, null, "bGGreetsPT1_TxnOut_NeutralComeIn_BodyStuff_dia()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(161, Grace.__$behaviorFactory0_rfield, Grace.__$precondition0_rfield, null, "bGGreetsPT1_TxnOut_NeutralComeIn_BodyStuff_dia()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(162, Grace.__$behaviorFactory0_rfield, Grace.__$precondition0_rfield, null, "bGGreetsPT1_TxnOut_NeutralComeIn_BodyStuff_dia()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(163, Grace.__$behaviorFactory0_rfield, null, null, "bGGreetsPT1_TxnOut_NeutralComeIn_BodyStuff_dia_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(165, Grace.__$behaviorFactory0_rfield, null, null, "bGGreetsPT1_TxnOut_NegComeIn_BodyStuff_par()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(166, Grace.__$behaviorFactory0_rfield, null, null, "bGGreetsPT1_TxnOut_NegComeIn_BodyStuff_par_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(167, Grace.__$behaviorFactory0_rfield, null, null, "bGGreetsPT1_TxnOut_NegComeIn_BodyStuff_dia()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(168, Grace.__$behaviorFactory0_rfield, null, null, "bGGreetsPT1_TxnOut_NegComeIn_BodyStuff_dia()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(169, Grace.__$behaviorFactory0_rfield, null, null, "bGGreetsPT1_TxnOut_NegComeIn_BodyStuff_dia_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(170, Grace.__$behaviorFactory0_rfield, Grace.__$precondition0_rfield, Grace.__$preconditionSensorFactory0_rfield, "bGGreetsPT1_PickASpotToWalkTo()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(173, Grace.__$behaviorFactory0_rfield, null, null, "bExplDatAnnivT1_TxnIn_N_alt1_BodyStuff_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(177, Grace.__$behaviorFactory0_rfield, null, null, "bExplDatAnnivT1_TxnIn_N_alt2_BodyStuff2_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(181, Grace.__$behaviorFactory0_rfield, null, null, "bExplDatAnnivT1_TxnIn_GPA_alt1_BodyStuff2_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(184, Grace.__$behaviorFactory0_rfield, null, null, "bExplDatAnnivT1_TxnIn_GPA_alt2_BodyStuff2_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(187, Grace.__$behaviorFactory0_rfield, null, null, "bExplDatAnnivT1_TxnIn_TPA_alt1_BodyStuff_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(190, Grace.__$behaviorFactory0_rfield, null, null, "bExplDatAnnivT1_TxnIn_TPA_alt2_BodyStuff_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(195, Grace.__$behaviorFactory0_rfield, null, null, "bExplDatAnnivT1_JustRealized_N_BodyStuff3_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(197, Grace.__$behaviorFactory0_rfield, null, null, "bExplDatAnnivT1_JustRealized_N_BodyStuff4_dia()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(198, Grace.__$behaviorFactory0_rfield, null, null, "bExplDatAnnivT1_JustRealized_N_BodyStuff4_dia()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(203, Grace.__$behaviorFactory0_rfield, null, null, "bExplDatAnnivT1_JustRealized_GPA_BodyStuff3_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(205, Grace.__$behaviorFactory0_rfield, null, null, "bExplDatAnnivT1_JustRealized_GPA_BodyStuff4_dia()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(206, Grace.__$behaviorFactory0_rfield, null, null, "bExplDatAnnivT1_JustRealized_GPA_BodyStuff4_dia()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(211, Grace.__$behaviorFactory0_rfield, null, null, "bExplDatAnnivT1_JustRealized_TPA_BodyStuff3_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(213, Grace.__$behaviorFactory0_rfield, null, null, "bExplDatAnnivT1_JustRealized_TPA_BodyStuff4_dia()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(214, Grace.__$behaviorFactory0_rfield, null, null, "bExplDatAnnivT1_JustRealized_TPA_BodyStuff4_dia()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(217, Grace.__$behaviorFactory0_rfield, null, null, "bExplDatAnnivT1_RememberThat_N_BodyStuff_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(219, Grace.__$behaviorFactory0_rfield, null, null, "bExplDatAnnivT1_RememberThat_N_BodyStuff2_dia()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(224, Grace.__$behaviorFactory0_rfield, null, null, "bExplDatAnnivT1_RememberThat_GPA_BodyStuff_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(226, Grace.__$behaviorFactory1_rfield, null, null, "bExplDatAnnivT1_RememberThat_GPA_BodyStuff2_dia()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(227, Grace.__$behaviorFactory1_rfield, null, null, "bExplDatAnnivT1_RememberThat_GPA_BodyStuff2_dia()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(232, Grace.__$behaviorFactory1_rfield, null, null, "bExplDatAnnivT1_RememberThat_TPA_BodyStuff_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(234, Grace.__$behaviorFactory1_rfield, null, null, "bExplDatAnnivT1_RememberThat_TPA_BodyStuff2_dia()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(235, Grace.__$behaviorFactory1_rfield, null, null, "bExplDatAnnivT1_RememberThat_TPA_BodyStuff2_dia()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(245, Grace.__$behaviorFactory1_rfield, null, null, "bExplDatAnnivT1_TxnOut_MildOrStrongAgreement_BodyStuff5_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(247, Grace.__$behaviorFactory1_rfield, null, null, "bExplDatAnnivT1_TxnOut_MildOrStrongAgreement_BodyStuff6_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(255, Grace.__$behaviorFactory1_rfield, null, null, "bPhoneCallT1NGPA_TxnIn_default_BodyStuff_dia()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(257, Grace.__$behaviorFactory1_rfield, null, null, "bPhoneCallT1NGPA_TxnIn_Grace_N_BodyStuff_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(258, Grace.__$behaviorFactory1_rfield, Grace.__$precondition0_rfield, null, "bPhoneCallT1NGPA_TxnIn_Grace_N_BodyStuff_dia()", null, (short)2));
behaviorLibrary.registerBehavior(new __BehaviorDesc(259, Grace.__$behaviorFactory1_rfield, Grace.__$precondition0_rfield, null, "bPhoneCallT1NGPA_TxnIn_Grace_N_BodyStuff_dia()", null, (short)2));
behaviorLibrary.registerBehavior(new __BehaviorDesc(260, Grace.__$behaviorFactory1_rfield, null, null, "bPhoneCallT1NGPA_TxnIn_Grace_N_BodyStuff_dia()", null, (short)1));
behaviorLibrary.registerBehavior(new __BehaviorDesc(262, Grace.__$behaviorFactory1_rfield, null, null, "bPhoneCallT1NGPA_TxnIn_Grace_GPA_BodyStuff_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(263, Grace.__$behaviorFactory1_rfield, Grace.__$precondition0_rfield, null, "bPhoneCallT1NGPA_TxnIn_Grace_GPA_BodyStuff_dia()", null, (short)2));
behaviorLibrary.registerBehavior(new __BehaviorDesc(264, Grace.__$behaviorFactory1_rfield, Grace.__$precondition0_rfield, null, "bPhoneCallT1NGPA_TxnIn_Grace_GPA_BodyStuff_dia()", null, (short)2));
behaviorLibrary.registerBehavior(new __BehaviorDesc(265, Grace.__$behaviorFactory1_rfield, Grace.__$precondition0_rfield, null, "bPhoneCallT1NGPA_TxnIn_Grace_GPA_BodyStuff_dia()", null, (short)2));
behaviorLibrary.registerBehavior(new __BehaviorDesc(266, Grace.__$behaviorFactory1_rfield, null, null, "bPhoneCallT1NGPA_TxnIn_Grace_GPA_BodyStuff_dia()", null, (short)1));
behaviorLibrary.registerBehavior(new __BehaviorDesc(268, Grace.__$behaviorFactory1_rfield, null, null, "bPhoneCallT1NGPA_TxnIn_Trip_N_BodyStuff_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(270, Grace.__$behaviorFactory1_rfield, null, null, "bPhoneCallT1NGPA_TxnIn_Trip_GPA_BodyStuff_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(273, Grace.__$behaviorFactory1_rfield, Grace.__$precondition0_rfield, Grace.__$preconditionSensorFactory0_rfield, "bPhoneCallT1NGPA_TxnIn_BodyStuff2_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(275, Grace.__$behaviorFactory1_rfield, null, null, "bPhoneCallT1NGPA_TxnIn_default_BodyStuff_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(276, Grace.__$behaviorFactory1_rfield, null, null, "bPhoneCallT1NGPA_TxnIn_default_BodyStuff_dia()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(278, Grace.__$behaviorFactory1_rfield, null, null, "bPhoneCallT1NGPA_Body_BodyStuff_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(279, Grace.__$behaviorFactory1_rfield, Grace.__$precondition0_rfield, Grace.__$preconditionSensorFactory0_rfield, "bPhoneCallT1NGPA_Body_BodyStuff_dia()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(281, Grace.__$behaviorFactory1_rfield, null, null, "bPhoneCallT1NGPA_Body_BodyStuff2_alt1_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(283, Grace.__$behaviorFactory1_rfield, null, null, "bPhoneCallT1NGPA_Body_BodyStuff2_alt2_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(285, Grace.__$behaviorFactory1_rfield, null, null, "bPhoneCallT1NGPA_Body_BodyStuff2_alt3_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(287, Grace.__$behaviorFactory1_rfield, null, null, "bPhoneCallT1NGPA_Mixin_Mild_BodyStuff_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(289, Grace.__$behaviorFactory1_rfield, null, null, "bPhoneCallT1NGPA_Mixin_PraiseFlirt_BodyStuff_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(291, Grace.__$behaviorFactory1_rfield, null, null, "bPhoneCallT1NGPA_Mixin_Negative_BodyStuff_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(293, Grace.__$behaviorFactory1_rfield, null, null, "bPhoneCallT1NGPA_Mixin_PlayerPicksUp_BodyStuff_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(295, Grace.__$behaviorFactory1_rfield, null, null, "bPhoneCallT1NGPA_TxnOut_p1_PreBodyStuff_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(297, Grace.__$behaviorFactory1_rfield, Grace.__$precondition0_rfield, Grace.__$preconditionSensorFactory0_rfield, "bPhoneCallT1NGPA_TxnOut_p1_BodyStuff_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(299, Grace.__$behaviorFactory1_rfield, null, null, "bPhoneCallT1NGPA_TxnOut_p1_BodyStuff2_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(300, Grace.__$behaviorFactory1_rfield, Grace.__$precondition0_rfield, null, "bPhoneCallT1NGPA_TxnOut_p1_BodyStuff2_dia()", null, (short)2));
behaviorLibrary.registerBehavior(new __BehaviorDesc(301, Grace.__$behaviorFactory1_rfield, null, null, "bPhoneCallT1NGPA_TxnOut_p1_BodyStuff2_dia()", null, (short)1));
behaviorLibrary.registerBehavior(new __BehaviorDesc(303, Grace.__$behaviorFactory1_rfield, null, null, "bPhoneCallT1NGPA_TxnOut_p2_BodyStuff_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(305, Grace.__$behaviorFactory1_rfield, null, null, "bPhoneCallT1NTPA_TxnIn_default_BodyStuff_dia()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(307, Grace.__$behaviorFactory1_rfield, null, null, "bPhoneCallT1NTPA_TxnIn_Grace_N_BodyStuff_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(308, Grace.__$behaviorFactory1_rfield, Grace.__$precondition0_rfield, null, "bPhoneCallT1NTPA_TxnIn_Grace_N_BodyStuff_dia()", null, (short)2));
behaviorLibrary.registerBehavior(new __BehaviorDesc(309, Grace.__$behaviorFactory1_rfield, Grace.__$precondition0_rfield, null, "bPhoneCallT1NTPA_TxnIn_Grace_N_BodyStuff_dia()", null, (short)2));
behaviorLibrary.registerBehavior(new __BehaviorDesc(310, Grace.__$behaviorFactory1_rfield, null, null, "bPhoneCallT1NTPA_TxnIn_Grace_N_BodyStuff_dia()", null, (short)1));
behaviorLibrary.registerBehavior(new __BehaviorDesc(312, Grace.__$behaviorFactory1_rfield, null, null, "bPhoneCallT1NTPA_TxnIn_Grace_TPA_BodyStuff_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(313, Grace.__$behaviorFactory1_rfield, Grace.__$precondition0_rfield, null, "bPhoneCallT1NTPA_TxnIn_Grace_TPA_BodyStuff_dia()", null, (short)2));
behaviorLibrary.registerBehavior(new __BehaviorDesc(314, Grace.__$behaviorFactory1_rfield, null, null, "bPhoneCallT1NTPA_TxnIn_Grace_TPA_BodyStuff_dia()", null, (short)1));
behaviorLibrary.registerBehavior(new __BehaviorDesc(316, Grace.__$behaviorFactory1_rfield, null, null, "bPhoneCallT1NTPA_TxnIn_Trip_N_BodyStuff_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(318, Grace.__$behaviorFactory1_rfield, null, null, "bPhoneCallT1NTPA_TxnIn_Trip_TPA_BodyStuff_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(321, Grace.__$behaviorFactory1_rfield, null, null, "bPhoneCallT1NTPA_TxnIn_BodyStuff2_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(323, Grace.__$behaviorFactory1_rfield, null, null, "bPhoneCallT1NTPA_Body_BodyStuff_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(324, Grace.__$behaviorFactory1_rfield, null, null, "bPhoneCallT1NTPA_Body_BodyStuff_dia()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(326, Grace.__$behaviorFactory1_rfield, null, null, "bPhoneCallT1NTPA_Body_BodyStuff2_alt1_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(328, Grace.__$behaviorFactory1_rfield, null, null, "bPhoneCallT1NTPA_Body_BodyStuff2_alt2_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(330, Grace.__$behaviorFactory1_rfield, null, null, "bPhoneCallT1NTPA_Body_BodyStuff2_alt3_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(331, Grace.__$behaviorFactory1_rfield, null, null, "bPhoneCallT1NTPA_Body_BodyStuff2_alt3_dia()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(333, Grace.__$behaviorFactory1_rfield, null, null, "bPhoneCallT1NTPA_Mixin_Mild_BodyStuff_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(335, Grace.__$behaviorFactory1_rfield, null, null, "bPhoneCallT1NTPA_Mixin_PraiseFlirt_BodyStuff_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(337, Grace.__$behaviorFactory1_rfield, null, null, "bPhoneCallT1NTPA_Mixin_Negative_BodyStuff_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(339, Grace.__$behaviorFactory1_rfield, null, null, "bPhoneCallT1NTPA_Mixin_PlayerPicksUp_BodyStuff_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(340, Grace.__$behaviorFactory1_rfield, null, null, "bPhoneCallT1NTPA_Mixin_PlayerPicksUp_BodyStuff_seq2()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(341, Grace.__$behaviorFactory1_rfield, Grace.__$precondition0_rfield, null, "bPhoneCallT1NTPA_Mixin_PlayerPicksUp_BodyStuff_seq3()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(343, Grace.__$behaviorFactory1_rfield, null, null, "bPhoneCallT1NTPA_TxnOut_p1_PreBodyStuff_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(345, Grace.__$behaviorFactory1_rfield, null, null, "bPhoneCallT1NTPA_TxnOut_p1_BodyStuff_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(347, Grace.__$behaviorFactory1_rfield, null, null, "bPhoneCallT1NTPA_TxnOut_p1_BodyStuff2_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(349, Grace.__$behaviorFactory1_rfield, null, null, "bPhoneCallT1NTPA_TxnOut_p2_BodyStuff_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(350, Grace.__$behaviorFactory1_rfield, null, null, "bPhoneCallT1NTPA_TxnOut_p2_BodyStuff_dia()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(351, Grace.__$behaviorFactory1_rfield, null, null, "bPhoneCallT1NTPA_TxnOut_p2_BodyStuff_dia()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(352, Grace.__$behaviorFactory1_rfield, Grace.__$precondition0_rfield, Grace.__$preconditionSensorFactory0_rfield, "bAAp1_StageToCouchArea()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(353, Grace.__$behaviorFactory1_rfield, null, null, "bAAp1_StageToCouchAreaAfterDelay(int)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(354, Grace.__$behaviorFactory1_rfield, null, null, "bAAp1_StageToSubtopicObject(int, int)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(355, Grace.__$behaviorFactory1_rfield, Grace.__$precondition0_rfield, Grace.__$preconditionSensorFactory0_rfield, "bAAp1_StageToSubtopicObject(int)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(356, Grace.__$behaviorFactory1_rfield, Grace.__$precondition0_rfield, Grace.__$preconditionSensorFactory0_rfield, "bAAp1_StageToSubtopicObject(int)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(357, Grace.__$behaviorFactory1_rfield, Grace.__$precondition0_rfield, Grace.__$preconditionSensorFactory0_rfield, "bAAp1_StageToSubtopicObject(int)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(358, Grace.__$behaviorFactory1_rfield, Grace.__$precondition0_rfield, Grace.__$preconditionSensorFactory0_rfield, "bAAp1_StageToSubtopicObject(int)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(359, Grace.__$behaviorFactory1_rfield, Grace.__$precondition0_rfield, Grace.__$preconditionSensorFactory0_rfield, "bAAp1_StageToSubtopicObject(int)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(444, Grace.__$behaviorFactory1_rfield, null, null, "bAAt1N_TxnOut_LeanToGPA_negSpin_BodyStuff5_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(468, Grace.__$behaviorFactory2_rfield, null, null, "bAAt1N_test_TxnIn_NoSubtopic_BodyStuff_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(470, Grace.__$behaviorFactory2_rfield, null, null, "bAAt1N_test_Mixin_TellMeMore_BodyStuff_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(473, Grace.__$behaviorFactory2_rfield, null, null, "bAAt1GPA_TxnIn_NoSubtopic_BodyStuff_more()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(474, Grace.__$behaviorFactory2_rfield, Grace.__$precondition0_rfield, null, "bAAt1GPA_TxnIn_NoSubtopic_BodyStuff_more_par()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(483, Grace.__$behaviorFactory2_rfield, null, null, "bAAt1GPA_AddressSubtopic_BodyStuff_more(boolean)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(539, Grace.__$behaviorFactory2_rfield, null, null, "bAAt1GPA_TxnOut_NoAffinityChange_negSpinPaintings_BodyStuff2_par()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(540, Grace.__$behaviorFactory2_rfield, null, null, "bAAt1GPA_TxnOut_NoAffinityChange_negSpinPaintings_BodyStuff2_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(546, Grace.__$behaviorFactory2_rfield, null, null, "bAAt1GPA_TxnOut_LeanToGPA_posSpin_BodyStuff3_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(550, Grace.__$behaviorFactory2_rfield, null, null, "bAAt1GPA_TxnOut_LeanToGPA_negSpin_BodyStuff5_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(560, Grace.__$behaviorFactory2_rfield, null, null, "bAAt1GPA_TxnOut_LeanToTPA_negSpin_BodyStuff3_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(653, Grace.__$behaviorFactory2_rfield, null, null, "bAAt1TPA_TxnOut_LeanToGPA_negSpin_BodyStuff5_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(678, Grace.__$behaviorFactory3_rfield, null, null, "bRMt1N_TxnIn_Default_BodyStuff_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(682, Grace.__$behaviorFactory3_rfield, null, null, "bRMt1N_TxnIn_ReferTo_BodyStuff_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(691, Grace.__$behaviorFactory3_rfield, null, null, "bRMt1N_StartGuessingGame_pre_BodyStuff_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(698, Grace.__$behaviorFactory3_rfield, null, null, "bRMt1N_Mixin_zinger()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(699, Grace.__$behaviorFactory3_rfield, null, null, "bRMt1N_Mixin_zinger()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(722, Grace.__$behaviorFactory3_rfield, null, null, "bRMt1N_TxnOut_LeanToTPA_RightAnswer_posSpin_BodyStuff4_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(725, Grace.__$behaviorFactory3_rfield, null, null, "bRMt1N_TxnOut_LeanToTPA_RightAnswer_negSpin_BodyStuff4_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(743, Grace.__$behaviorFactory3_rfield, null, null, "bRMt1GPA_TxnIn_Default_BodyStuff_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(756, Grace.__$behaviorFactory3_rfield, null, null, "bRMt1GPA_StartGuessingGame_pre_BodyStuff_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(763, Grace.__$behaviorFactory3_rfield, null, null, "bRMt1GPA_Mixin_zinger()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(764, Grace.__$behaviorFactory3_rfield, null, null, "bRMt1GPA_Mixin_zinger()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(767, Grace.__$behaviorFactory3_rfield, null, null, "bRMt1GPA_Mixin_WrongSingleWord_BodyStuff_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(787, Grace.__$behaviorFactory3_rfield, null, null, "bRMt1GPA_TxnOut_LeanToTPA_RightAnswer_posSpin_BodyStuff4_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(790, Grace.__$behaviorFactory3_rfield, null, null, "bRMt1GPA_TxnOut_LeanToTPA_RightAnswer_negSpin_BodyStuff4_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(806, Grace.__$behaviorFactory3_rfield, null, null, "bRMt1TPA_TxnIn_Default_BodyStuff_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(810, Grace.__$behaviorFactory3_rfield, null, null, "bRMt1TPA_TxnIn_ReferTo_BodyStuff_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(814, Grace.__$behaviorFactory3_rfield, null, null, "bRMt1TPA_LurePlayer_FirstTime_BodyStuff2_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(819, Grace.__$behaviorFactory3_rfield, null, null, "bRMt1TPA_LurePlayer_SecondTime_BodyStuff2_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(821, Grace.__$behaviorFactory3_rfield, null, null, "bRMt1TPA_StartGuessingGame_pre_BodyStuff_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(832, Grace.__$behaviorFactory3_rfield, null, null, "bRMt1TPA_Mixin_WrongSingleWord_BodyStuff3_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(851, Grace.__$behaviorFactory3_rfield, null, null, "bRMt1TPA_TxnOut_LeanToTPA_RightAnswer_posSpin_BodyStuff4_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(854, Grace.__$behaviorFactory3_rfield, null, null, "bRMt1TPA_TxnOut_LeanToTPA_RightAnswer_negSpin_BodyStuff4_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(861, Grace.__$behaviorFactory3_rfield, null, null, "bRMt1TPA_TxnOut_PlayerNotAtPicture_posSpin_BodyStuff6_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(865, Grace.__$behaviorFactory3_rfield, null, null, "bRMt1TPA_TxnOut_PlayerNotAtPicture_negSpin_BodyStuff5_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(877, Grace.__$behaviorFactory3_rfield, Grace.__$precondition0_rfield, null, "bFAskDrinkT1NTPA_TxnIn_GraceBodyStuff()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(882, Grace.__$behaviorFactory3_rfield, null, null, "bFAskDrinkT1NTPA_TSuggest_BodyStuff_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(884, Grace.__$behaviorFactory3_rfield, null, null, "bFAskDrinkT1NTPA_TSuggest_BodyStuff2_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(886, Grace.__$behaviorFactory3_rfield, null, null, "bFAskDrinkT1NTPA_TSuggest_BodyStuff3_dia()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(887, Grace.__$behaviorFactory3_rfield, null, null, "bFAskDrinkT1NTPA_TSuggest_BodyStuff3_dia()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(888, Grace.__$behaviorFactory3_rfield, null, null, "bFAskDrinkT1NTPA_TSuggest_BodyStuff3_dia()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(889, Grace.__$behaviorFactory3_rfield, null, null, "bFAskDrinkT1NTPA_TSuggest_BodyStuff3_dia()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(890, Grace.__$behaviorFactory3_rfield, null, null, "bFAskDrinkT1NTPA_TSuggest_BodyStuff3_dia()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(894, Grace.__$behaviorFactory3_rfield, null, null, "bFAskDrinkT1NTPA_Mixin_GSuggest_BodyStuff2_Fancy_seq(boolean, int)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(895, Grace.__$behaviorFactory3_rfield, Grace.__$precondition0_rfield, null, "bFAskDrinkT1NTPA_Mixin_GSuggest_BodyStuff2_Fancy_dia_nono(boolean, int)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(896, Grace.__$behaviorFactory3_rfield, Grace.__$precondition0_rfield, null, "bFAskDrinkT1NTPA_Mixin_GSuggest_BodyStuff2_Fancy_dia_nono(boolean, int)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(897, Grace.__$behaviorFactory3_rfield, Grace.__$precondition0_rfield, null, "bFAskDrinkT1NTPA_Mixin_GSuggest_BodyStuff2_Fancy_dia_nono(boolean, int)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(898, Grace.__$behaviorFactory3_rfield, Grace.__$precondition0_rfield, null, "bFAskDrinkT1NTPA_Mixin_GSuggest_BodyStuff2_Fancy_dia(boolean, int)", null, (short)2));
behaviorLibrary.registerBehavior(new __BehaviorDesc(899, Grace.__$behaviorFactory3_rfield, Grace.__$precondition0_rfield, null, "bFAskDrinkT1NTPA_Mixin_GSuggest_BodyStuff2_Fancy_dia(boolean, int)", null, (short)2));
behaviorLibrary.registerBehavior(new __BehaviorDesc(900, Grace.__$behaviorFactory3_rfield, Grace.__$precondition0_rfield, null, "bFAskDrinkT1NTPA_Mixin_GSuggest_BodyStuff2_Fancy_dia(boolean, int)", null, (short)2));
behaviorLibrary.registerBehavior(new __BehaviorDesc(901, Grace.__$behaviorFactory3_rfield, null, null, "bFAskDrinkT1NTPA_Mixin_GSuggest_BodyStuff2_Fancy_dia(boolean, int)", null, (short)1));
behaviorLibrary.registerBehavior(new __BehaviorDesc(903, Grace.__$behaviorFactory3_rfield, null, null, "bFAskDrinkT1NTPA_Mixin_GSuggest_BodyStuff2_NotFancy_seq(int)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(904, Grace.__$behaviorFactory4_rfield, Grace.__$precondition0_rfield, null, "bFAskDrinkT1NTPA_Mixin_GSuggest_BodyStuff2_NotFancy_dia(int)", null, (short)2));
behaviorLibrary.registerBehavior(new __BehaviorDesc(905, Grace.__$behaviorFactory4_rfield, Grace.__$precondition0_rfield, null, "bFAskDrinkT1NTPA_Mixin_GSuggest_BodyStuff2_NotFancy_dia(int)", null, (short)2));
behaviorLibrary.registerBehavior(new __BehaviorDesc(906, Grace.__$behaviorFactory4_rfield, Grace.__$precondition0_rfield, null, "bFAskDrinkT1NTPA_Mixin_GSuggest_BodyStuff2_NotFancy_dia(int)", null, (short)2));
behaviorLibrary.registerBehavior(new __BehaviorDesc(907, Grace.__$behaviorFactory4_rfield, Grace.__$precondition0_rfield, null, "bFAskDrinkT1NTPA_Mixin_GSuggest_BodyStuff2_NotFancy_dia(int)", null, (short)2));
behaviorLibrary.registerBehavior(new __BehaviorDesc(908, Grace.__$behaviorFactory4_rfield, Grace.__$precondition0_rfield, null, "bFAskDrinkT1NTPA_Mixin_GSuggest_BodyStuff2_NotFancy_dia(int)", null, (short)2));
behaviorLibrary.registerBehavior(new __BehaviorDesc(909, Grace.__$behaviorFactory4_rfield, null, null, "bFAskDrinkT1NTPA_Mixin_GSuggest_BodyStuff2_NotFancy_dia(int)", null, (short)1));
behaviorLibrary.registerBehavior(new __BehaviorDesc(913, Grace.__$behaviorFactory4_rfield, null, null, "bFAskDrinkT1NTPA_Mixin_GSuggest_DisagreeT_BodyStuff1b_dia()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(914, Grace.__$behaviorFactory4_rfield, null, null, "bFAskDrinkT1NTPA_Mixin_GSuggest_DisagreeT_BodyStuff1b_dia()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(915, Grace.__$behaviorFactory4_rfield, null, null, "bFAskDrinkT1NTPA_Mixin_GSuggest_DisagreeT_BodyStuff1b_dia()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(916, Grace.__$behaviorFactory4_rfield, null, null, "bFAskDrinkT1NTPA_Mixin_GSuggest_DisagreeT_BodyStuff1b_dia()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(917, Grace.__$behaviorFactory4_rfield, null, null, "bFAskDrinkT1NTPA_Mixin_GSuggest_DisagreeT_BodyStuff1b_dia()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(923, Grace.__$behaviorFactory4_rfield, null, null, "bFAskDrinkT1NTPA_TxnOut_AgreeG_BodyStuff_dia()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(924, Grace.__$behaviorFactory4_rfield, null, null, "bFAskDrinkT1NTPA_TxnOut_AgreeG_BodyStuff_dia()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(925, Grace.__$behaviorFactory4_rfield, null, null, "bFAskDrinkT1NTPA_TxnOut_AgreeG_BodyStuff_dia()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(926, Grace.__$behaviorFactory4_rfield, null, null, "bFAskDrinkT1NTPA_TxnOut_AgreeG_BodyStuff_dia()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(935, Grace.__$behaviorFactory4_rfield, null, null, "bFAskDrinkT1NTPA_TxnOut_DisagreeG_p2_posSpin_BodyStuff_dia()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(936, Grace.__$behaviorFactory4_rfield, null, null, "bFAskDrinkT1NTPA_TxnOut_DisagreeG_p2_posSpin_BodyStuff_dia()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(937, Grace.__$behaviorFactory4_rfield, null, null, "bFAskDrinkT1NTPA_TxnOut_DisagreeG_p2_posSpin_BodyStuff_dia()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(940, Grace.__$behaviorFactory4_rfield, null, null, "bFAskDrinkT1NTPA_TxnOut_DisagreeG_p2_negSpin_BodyStuff_dia()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(941, Grace.__$behaviorFactory4_rfield, null, null, "bFAskDrinkT1NTPA_TxnOut_DisagreeG_p2_negSpin_BodyStuff_dia()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(942, Grace.__$behaviorFactory4_rfield, null, null, "bFAskDrinkT1NTPA_TxnOut_DisagreeG_p2_negSpin_BodyStuff_dia()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(943, Grace.__$behaviorFactory4_rfield, null, null, "bFAskDrinkT1NTPA_TxnOut_DisagreeG_p2_negSpin_BodyStuff_dia()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(945, Grace.__$behaviorFactory4_rfield, null, null, "bFAskDrinkT1NTPA_TxnOut_DisagreeG_p2_negSpin_BodyStuff2_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(946, Grace.__$behaviorFactory4_rfield, null, null, "bFAskDrinkT1NTPA_TxnOut_DisagreeG_p2_negSpin_BodyStuff2_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(956, Grace.__$behaviorFactory4_rfield, null, null, "bFAskDrinkT1NTPA_TxnOut_NonAnswer_p2_BodyStuff_dia()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(957, Grace.__$behaviorFactory4_rfield, null, null, "bFAskDrinkT1NTPA_TxnOut_NonAnswer_p2_BodyStuff_dia()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(963, Grace.__$behaviorFactory4_rfield, Grace.__$precondition0_rfield, null, "bFAskDrinkT1GPA_TxnIn_GraceBodyStuff()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(968, Grace.__$behaviorFactory4_rfield, null, null, "bFAskDrinkT1GPA_TSuggest_BodyStuff_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(970, Grace.__$behaviorFactory4_rfield, null, null, "bFAskDrinkT1GPA_TSuggest_BodyStuff2_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(972, Grace.__$behaviorFactory4_rfield, null, null, "bFAskDrinkT1GPA_TSuggest_BodyStuff3_dia()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(973, Grace.__$behaviorFactory4_rfield, null, null, "bFAskDrinkT1GPA_TSuggest_BodyStuff3_dia()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(974, Grace.__$behaviorFactory4_rfield, null, null, "bFAskDrinkT1GPA_TSuggest_BodyStuff3_dia()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(975, Grace.__$behaviorFactory4_rfield, null, null, "bFAskDrinkT1GPA_TSuggest_BodyStuff3_dia()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(976, Grace.__$behaviorFactory4_rfield, null, null, "bFAskDrinkT1GPA_TSuggest_BodyStuff3_dia()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(980, Grace.__$behaviorFactory4_rfield, null, null, "bFAskDrinkT1GPA_Mixin_GSuggest_BodyStuff2_Fancy_seq(boolean, int)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(981, Grace.__$behaviorFactory4_rfield, Grace.__$precondition0_rfield, null, "bFAskDrinkT1GPA_Mixin_GSuggest_BodyStuff2_Fancy_dia(boolean, int)", null, (short)2));
behaviorLibrary.registerBehavior(new __BehaviorDesc(982, Grace.__$behaviorFactory4_rfield, Grace.__$precondition0_rfield, null, "bFAskDrinkT1GPA_Mixin_GSuggest_BodyStuff2_Fancy_dia(boolean, int)", null, (short)2));
behaviorLibrary.registerBehavior(new __BehaviorDesc(983, Grace.__$behaviorFactory4_rfield, Grace.__$precondition0_rfield, null, "bFAskDrinkT1GPA_Mixin_GSuggest_BodyStuff2_Fancy_dia(boolean, int)", null, (short)2));
behaviorLibrary.registerBehavior(new __BehaviorDesc(984, Grace.__$behaviorFactory4_rfield, null, null, "bFAskDrinkT1GPA_Mixin_GSuggest_BodyStuff2_Fancy_dia(boolean, int)", null, (short)1));
behaviorLibrary.registerBehavior(new __BehaviorDesc(986, Grace.__$behaviorFactory4_rfield, null, null, "bFAskDrinkT1GPA_Mixin_GSuggest_BodyStuff2_NotFancy_seq(int)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(987, Grace.__$behaviorFactory4_rfield, Grace.__$precondition0_rfield, null, "bFAskDrinkT1GPA_Mixin_GSuggest_BodyStuff2_NotFancy_dia(int)", null, (short)2));
behaviorLibrary.registerBehavior(new __BehaviorDesc(988, Grace.__$behaviorFactory4_rfield, Grace.__$precondition0_rfield, null, "bFAskDrinkT1GPA_Mixin_GSuggest_BodyStuff2_NotFancy_dia(int)", null, (short)2));
behaviorLibrary.registerBehavior(new __BehaviorDesc(989, Grace.__$behaviorFactory4_rfield, Grace.__$precondition0_rfield, null, "bFAskDrinkT1GPA_Mixin_GSuggest_BodyStuff2_NotFancy_dia(int)", null, (short)2));
behaviorLibrary.registerBehavior(new __BehaviorDesc(990, Grace.__$behaviorFactory4_rfield, Grace.__$precondition0_rfield, null, "bFAskDrinkT1GPA_Mixin_GSuggest_BodyStuff2_NotFancy_dia(int)", null, (short)2));
behaviorLibrary.registerBehavior(new __BehaviorDesc(991, Grace.__$behaviorFactory4_rfield, Grace.__$precondition0_rfield, null, "bFAskDrinkT1GPA_Mixin_GSuggest_BodyStuff2_NotFancy_dia(int)", null, (short)2));
behaviorLibrary.registerBehavior(new __BehaviorDesc(992, Grace.__$behaviorFactory4_rfield, null, null, "bFAskDrinkT1GPA_Mixin_GSuggest_BodyStuff2_NotFancy_dia(int)", null, (short)1));
behaviorLibrary.registerBehavior(new __BehaviorDesc(996, Grace.__$behaviorFactory4_rfield, null, null, "bFAskDrinkT1GPA_Mixin_GSuggest_DisagreeT_BodyStuff1b_dia()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(997, Grace.__$behaviorFactory4_rfield, null, null, "bFAskDrinkT1GPA_Mixin_GSuggest_DisagreeT_BodyStuff1b_dia()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(998, Grace.__$behaviorFactory4_rfield, null, null, "bFAskDrinkT1GPA_Mixin_GSuggest_DisagreeT_BodyStuff1b_dia()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(999, Grace.__$behaviorFactory4_rfield, null, null, "bFAskDrinkT1GPA_Mixin_GSuggest_DisagreeT_BodyStuff1b_dia()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1000, Grace.__$behaviorFactory4_rfield, null, null, "bFAskDrinkT1GPA_Mixin_GSuggest_DisagreeT_BodyStuff1b_dia()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1006, Grace.__$behaviorFactory4_rfield, null, null, "bFAskDrinkT1GPA_TxnOut_AgreeG_BodyStuff_dia()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1007, Grace.__$behaviorFactory4_rfield, null, null, "bFAskDrinkT1GPA_TxnOut_AgreeG_BodyStuff_dia()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1008, Grace.__$behaviorFactory4_rfield, null, null, "bFAskDrinkT1GPA_TxnOut_AgreeG_BodyStuff_dia()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1009, Grace.__$behaviorFactory4_rfield, null, null, "bFAskDrinkT1GPA_TxnOut_AgreeG_BodyStuff_dia()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1018, Grace.__$behaviorFactory4_rfield, null, null, "bFAskDrinkT1GPA_TxnOut_DisagreeG_p2_posSpin_BodyStuff_dia()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1019, Grace.__$behaviorFactory4_rfield, null, null, "bFAskDrinkT1GPA_TxnOut_DisagreeG_p2_posSpin_BodyStuff_dia()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1020, Grace.__$behaviorFactory4_rfield, null, null, "bFAskDrinkT1GPA_TxnOut_DisagreeG_p2_posSpin_BodyStuff_dia()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1023, Grace.__$behaviorFactory4_rfield, null, null, "bFAskDrinkT1GPA_TxnOut_DisagreeG_p2_negSpin_BodyStuff_dia()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1024, Grace.__$behaviorFactory4_rfield, null, null, "bFAskDrinkT1GPA_TxnOut_DisagreeG_p2_negSpin_BodyStuff_dia()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1025, Grace.__$behaviorFactory4_rfield, null, null, "bFAskDrinkT1GPA_TxnOut_DisagreeG_p2_negSpin_BodyStuff_dia()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1026, Grace.__$behaviorFactory4_rfield, null, null, "bFAskDrinkT1GPA_TxnOut_DisagreeG_p2_negSpin_BodyStuff_dia()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1027, Grace.__$behaviorFactory4_rfield, Grace.__$precondition0_rfield, null, "bFAskDrinkT1GPA_TxnOut_DisagreeG_p2_negSpin_BodyStuff_dia()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1029, Grace.__$behaviorFactory4_rfield, null, null, "bFAskDrinkT1GPA_TxnOut_DisagreeG_p2_negSpin_BodyStuff2_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1030, Grace.__$behaviorFactory4_rfield, null, null, "bFAskDrinkT1GPA_TxnOut_DisagreeG_p2_negSpin_BodyStuff2_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1040, Grace.__$behaviorFactory4_rfield, null, null, "bFAskDrinkT1GPA_TxnOut_NonAnswer_p2_BodyStuff_dia()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1041, Grace.__$behaviorFactory4_rfield, null, null, "bFAskDrinkT1GPA_TxnOut_NonAnswer_p2_BodyStuff_dia()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1052, Grace.__$behaviorFactory4_rfield, Grace.__$precondition0_rfield, null, "bFAskDrinkT1_TxnOut3_GraceResponds_HerOwnChardonnay_BodyStuff_dia()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1053, Grace.__$behaviorFactory4_rfield, Grace.__$precondition0_rfield, null, "bFAskDrinkT1_TxnOut3_GraceResponds_HerOwnChardonnay_BodyStuff_dia()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1054, Grace.__$behaviorFactory4_rfield, Grace.__$precondition0_rfield, null, "bFAskDrinkT1_TxnOut3_GraceResponds_HerOwnChardonnay_BodyStuff_dia()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1055, Grace.__$behaviorFactory4_rfield, Grace.__$precondition0_rfield, null, "bFAskDrinkT1_TxnOut3_GraceResponds_HerOwnChardonnay_BodyStuff_dia()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1058, Grace.__$behaviorFactory4_rfield, null, null, "bFAskDrinkT1_TxnOut3_GraceResponds_TripAndPlayersFancy_BodyStuff_dia()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1059, Grace.__$behaviorFactory4_rfield, null, null, "bFAskDrinkT1_TxnOut3_GraceResponds_TripAndPlayersFancy_BodyStuff_dia()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1062, Grace.__$behaviorFactory4_rfield, null, null, "bFAskDrinkT1_TxnOut3_GraceResponds_TripAndPlayersCompromise_BodyStuff_dia()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1063, Grace.__$behaviorFactory4_rfield, null, null, "bFAskDrinkT1_TxnOut3_GraceResponds_TripAndPlayersCompromise_BodyStuff_dia()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1066, Grace.__$behaviorFactory4_rfield, Grace.__$precondition0_rfield, null, "bFAskDrinkT1_TxnOut3_GraceResponds_PlayersNonFancy_BodyStuff_dia()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1067, Grace.__$behaviorFactory4_rfield, Grace.__$precondition0_rfield, null, "bFAskDrinkT1_TxnOut3_GraceResponds_PlayersNonFancy_BodyStuff_dia()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1068, Grace.__$behaviorFactory4_rfield, Grace.__$precondition0_rfield, null, "bFAskDrinkT1_TxnOut3_GraceResponds_PlayersNonFancy_BodyStuff_dia()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1069, Grace.__$behaviorFactory4_rfield, Grace.__$precondition0_rfield, null, "bFAskDrinkT1_TxnOut3_GraceResponds_PlayersNonFancy_BodyStuff_dia()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1072, Grace.__$behaviorFactory4_rfield, null, null, "bFAskDrinkT1_TxnOut3_GraceResponds_HerOwnNonFancy_BodyStuff_dia()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1073, Grace.__$behaviorFactory4_rfield, null, null, "bFAskDrinkT1_TxnOut3_GraceResponds_HerOwnNonFancy_BodyStuff_dia()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1074, Grace.__$behaviorFactory4_rfield, null, null, "bFAskDrinkT1_TxnOut3_GraceResponds_HerOwnNonFancy_BodyStuff_dia()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1075, Grace.__$behaviorFactory4_rfield, null, null, "bFAskDrinkT1_TxnOut3_GraceResponds_HerOwnNonFancy_BodyStuff_dia2()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1076, Grace.__$behaviorFactory4_rfield, null, null, "bFAskDrinkT1_TxnOut3_GraceResponds_HerOwnNonFancy_BodyStuff_dia2()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1077, Grace.__$behaviorFactory4_rfield, null, null, "bFAskDrinkT1_TxnOut3_GraceResponds_HerOwnNonFancy_BodyStuff_dia2()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1080, Grace.__$behaviorFactory4_rfield, null, null, "bFAskDrinkT1_TxnOut3_GraceResponds_NothingSolo_BodyStuff_dia()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1081, Grace.__$behaviorFactory4_rfield, null, null, "bFAskDrinkT1_TxnOut3_GraceResponds_NothingSolo_BodyStuff_dia()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1082, Grace.__$behaviorFactory4_rfield, null, null, "bFAskDrinkT1_TxnOut3_GraceResponds_NothingSolo_BodyStuff_dia()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1083, Grace.__$behaviorFactory4_rfield, null, null, "bFAskDrinkT1_TxnOut3_GraceResponds_NothingSolo_BodyStuff_dia2()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1084, Grace.__$behaviorFactory4_rfield, null, null, "bFAskDrinkT1_TxnOut3_GraceResponds_NothingSolo_BodyStuff_dia2()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1088, Grace.__$behaviorFactory4_rfield, null, null, "bTxnT1toT2NGPA_TxnIn_BodyStuff_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1090, Grace.__$behaviorFactory4_rfield, null, null, "bTxnT1toT2NGPA_TxnIn_BodyStuff2_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1091, Grace.__$behaviorFactory4_rfield, null, null, "bTxnT1toT2NGPA_TxnIn_BodyStuff2_dia1()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1092, Grace.__$behaviorFactory4_rfield, null, null, "bTxnT1toT2NGPA_TxnIn_BodyStuff2_dia1()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1093, Grace.__$behaviorFactory4_rfield, null, null, "bTxnT1toT2NGPA_TxnIn_BodyStuff2_dia1()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1094, Grace.__$behaviorFactory4_rfield, null, null, "bTxnT1toT2NGPA_TxnIn_BodyStuff2_dia1()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1096, Grace.__$behaviorFactory4_rfield, null, null, "bTxnT1toT2NGPA_TxnIn_p2_BodyStuff2_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1097, Grace.__$behaviorFactory4_rfield, null, null, "bTxnT1toT2NGPA_TxnIn_p2_BodyStuff2_dia2()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1098, Grace.__$behaviorFactory4_rfield, null, null, "bTxnT1toT2NGPA_TxnIn_p2_BodyStuff2_dia2()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1100, Grace.__$behaviorFactory4_rfield, null, null, "bTxnT1toT2NGPA_Mixin_Agree_BodyStuff_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1102, Grace.__$behaviorFactory4_rfield, null, null, "bTxnT1toT2NGPA_Mixin_Disagree_BodyStuff_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1103, Grace.__$behaviorFactory4_rfield, null, null, "bTxnT1toT2NGPA_Mixin_Disagree_BodyStuff_dia()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1104, Grace.__$behaviorFactory4_rfield, null, null, "bTxnT1toT2NGPA_Mixin_Disagree_BodyStuff_dia()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1106, Grace.__$behaviorFactory4_rfield, null, null, "bTxnT1toT2NGPA_TxnOut_Reestablish_BodyStuff_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1108, Grace.__$behaviorFactory4_rfield, null, null, "bTxnT1toT2NGPA_TxnOut_BodyStuff_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1109, Grace.__$behaviorFactory4_rfield, null, null, "bTxnT1toT2NGPA_TxnOut_BodyStuff_dia1()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1110, Grace.__$behaviorFactory4_rfield, null, null, "bTxnT1toT2NGPA_TxnOut_BodyStuff_dia1()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1113, Grace.__$behaviorFactory4_rfield, null, null, "bTxnT1toT2TPA_TxnIn_BodyStuff_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1115, Grace.__$behaviorFactory4_rfield, null, null, "bTxnT1toT2TPA_TxnIn_BodyStuff2_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1117, Grace.__$behaviorFactory4_rfield, null, null, "bTxnT1toT2TPA_Mixin_Agree_BodyStuff_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1118, Grace.__$behaviorFactory4_rfield, null, null, "bTxnT1toT2TPA_Mixin_Agree_BodyStuff_dia()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1119, Grace.__$behaviorFactory4_rfield, null, null, "bTxnT1toT2TPA_Mixin_Agree_BodyStuff_dia()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1121, Grace.__$behaviorFactory4_rfield, null, null, "bTxnT1toT2TPA_Mixin_Disagree_BodyStuff_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1123, Grace.__$behaviorFactory4_rfield, null, null, "bTxnT1toT2TPA_TxnOut_Reestablish_BodyStuff_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1125, Grace.__$behaviorFactory4_rfield, null, null, "bTxnT1toT2TPA_TxnOut_BodyStuff_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1126, Grace.__$behaviorFactory4_rfield, null, null, "bTxnT1toT2TPA_TxnOut_BodyStuff_dia1()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1127, Grace.__$behaviorFactory4_rfield, null, null, "bTxnT1toT2TPA_TxnOut_BodyStuff_dia1()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1130, Grace.__$behaviorFactory5_rfield, null, null, "bAAt2GPA_TxnIn_BodyStuff_dia()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1131, Grace.__$behaviorFactory5_rfield, Grace.__$precondition0_rfield, null, "bAAt2GPA_TxnIn_BodyStuff_diaprefix()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1134, Grace.__$behaviorFactory5_rfield, Grace.__$precondition0_rfield, null, "bAAt2GPA_TxnIn_p2_BodyStuff_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1141, Grace.__$behaviorFactory5_rfield, null, null, "bAAt2GPA_AddressSubtopic_style_BodyStuff_seq(int)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1148, Grace.__$behaviorFactory5_rfield, null, null, "bAAt2GPA_AddressSubtopic_couch_BodyStuff_seq(int)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1155, Grace.__$behaviorFactory5_rfield, null, null, "bAAt2GPA_AddressSubtopic_armoire_BodyStuff_seq(int)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1162, Grace.__$behaviorFactory5_rfield, null, null, "bAAt2GPA_AddressSubtopic_trinkets_BodyStuff_seq(int)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1169, Grace.__$behaviorFactory5_rfield, null, null, "bAAt2GPA_AddressSubtopic_weddingPic_BodyStuff_seq(int)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1176, Grace.__$behaviorFactory5_rfield, null, null, "bAAt2GPA_AddressSubtopic_painting_BodyStuff_seq(int)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1183, Grace.__$behaviorFactory5_rfield, null, null, "bAAt2GPA_AddressSubtopic_viewBalcony_BodyStuff_seq(int)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1190, Grace.__$behaviorFactory5_rfield, null, null, "bAAt2GPA_AddressSubtopic_miscObj_BodyStuff_seq(int)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1196, Grace.__$behaviorFactory5_rfield, null, null, "bAAt2GPA_WaitTimeout_BodyStuff_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1199, Grace.__$behaviorFactory5_rfield, null, null, "bAAt2GPA_TxnOut_NoAffinityChange_BodyStuff2_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1205, Grace.__$behaviorFactory5_rfield, null, null, "bAAt2GPA_TxnOut_LeanToGPA_BodyStuff2_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1209, Grace.__$behaviorFactory5_rfield, null, null, "bAAt2GPA_TxnOut_LeanToTPA_BodyStuff2_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1211, Grace.__$behaviorFactory5_rfield, null, null, "bAAt2GPA_TxnOut_LeanToTPA_BodyStuff3_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1216, Grace.__$behaviorFactory5_rfield, null, null, "bAAt2GPA_Mixin_TellMeMore_BodyStuff_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1225, Grace.__$behaviorFactory5_rfield, null, null, "bAAt2TPA_TxnIn_BodyStuff_dia()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1226, Grace.__$behaviorFactory5_rfield, Grace.__$precondition0_rfield, null, "bAAt2TPA_TxnIn_BodyStuff_diaprefix()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1229, Grace.__$behaviorFactory5_rfield, Grace.__$precondition0_rfield, null, "bAAt2TPA_TxnIn_p2_BodyStuff_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1236, Grace.__$behaviorFactory5_rfield, null, null, "bAAt2TPA_AddressSubtopic_style_BodyStuff_seq(int)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1243, Grace.__$behaviorFactory5_rfield, null, null, "bAAt2TPA_AddressSubtopic_couch_BodyStuff_seq(int)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1250, Grace.__$behaviorFactory5_rfield, null, null, "bAAt2TPA_AddressSubtopic_armoire_BodyStuff_seq(int)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1257, Grace.__$behaviorFactory5_rfield, null, null, "bAAt2TPA_AddressSubtopic_trinkets_BodyStuff_seq(int)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1264, Grace.__$behaviorFactory5_rfield, null, null, "bAAt2TPA_AddressSubtopic_weddingPic_BodyStuff_seq(int)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1271, Grace.__$behaviorFactory5_rfield, null, null, "bAAt2TPA_AddressSubtopic_painting_BodyStuff_seq(int)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1278, Grace.__$behaviorFactory5_rfield, null, null, "bAAt2TPA_AddressSubtopic_viewBalcony_BodyStuff_seq(int)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1285, Grace.__$behaviorFactory5_rfield, null, null, "bAAt2TPA_AddressSubtopic_miscObj_BodyStuff_seq(int)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1291, Grace.__$behaviorFactory5_rfield, null, null, "bAAt2TPA_WaitTimeout_BodyStuff_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1293, Grace.__$behaviorFactory5_rfield, null, null, "bAAt2TPA_TxnOut_NoAffinityChange_BodyStuff_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1297, Grace.__$behaviorFactory5_rfield, null, null, "bAAt2TPA_TxnOut_LeanToGPA_BodyStuff2_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1301, Grace.__$behaviorFactory5_rfield, null, null, "bAAt2TPA_TxnOut_LeanToTPA_BodyStuff2_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1303, Grace.__$behaviorFactory5_rfield, null, null, "bAAt2TPA_TxnOut_LeanToTPA_BodyStuff3_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1308, Grace.__$behaviorFactory5_rfield, null, null, "bAAt2TPA_Mixin_TellMeMore_BodyStuff_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1312, Grace.__$behaviorFactory5_rfield, null, null, "bAAt2TPA_Mixin_GetWantedCriticism_BodyStuff_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1323, Grace.__$behaviorFactory5_rfield, null, null, "bRMt2GPA_LurePlayer_FirstTime_BodyStuff2_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1328, Grace.__$behaviorFactory5_rfield, null, null, "bRMt2GPA_LurePlayer_SecondTime_BodyStuff2_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1337, Grace.__$behaviorFactory5_rfield, null, null, "bRMt2GPA_Mixin_zinger()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1338, Grace.__$behaviorFactory5_rfield, null, null, "bRMt2GPA_Mixin_zinger()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1341, Grace.__$behaviorFactory5_rfield, null, null, "bRMt2GPA_Mixin_WrongSingleWord_BodyStuff_dia()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1355, Grace.__$behaviorFactory5_rfield, null, null, "bRMt2GPA_TxnOut_WrongAnswer_BodyStuff4_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1357, Grace.__$behaviorFactory6_rfield, null, null, "bRMt2GPA_TxnOut_WrongAnswer_BodyStuff5_dia()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1360, Grace.__$behaviorFactory6_rfield, null, null, "bRMt2GPA_TxnOut_LeanToTPA_p2_BodyStuff2_dia()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1374, Grace.__$behaviorFactory6_rfield, null, null, "bRMt2TPA_TxnIn_Default_BodyStuff_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1378, Grace.__$behaviorFactory6_rfield, null, null, "bRMt2TPA_TxnIn_ReferTo_BodyStuff_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1382, Grace.__$behaviorFactory6_rfield, null, null, "bRMt2TPA_LurePlayer_FirstTime_BodyStuff2_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1387, Grace.__$behaviorFactory6_rfield, null, null, "bRMt2TPA_LurePlayer_SecondTime_BodyStuff2_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1394, Grace.__$behaviorFactory6_rfield, null, null, "bRMt2TPA_Mixin_zinger()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1395, Grace.__$behaviorFactory6_rfield, null, null, "bRMt2TPA_Mixin_zinger()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1410, Grace.__$behaviorFactory6_rfield, null, null, "bRMt2TPA_TxnOut_WrongAnswer_BodyStuff2_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1412, Grace.__$behaviorFactory6_rfield, null, null, "bRMt2TPA_TxnOut_WrongAnswer_BodyStuff3_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1425, Grace.__$behaviorFactory6_rfield, null, null, "bRMt2TPA_TxnOut_PlayerNotAtPicture_BodyStuff6_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1433, Grace.__$behaviorFactory6_rfield, Grace.__$precondition1_rfield, null, "bFAskDrinkT2TPA_TxnIn_BodyStuff2_seq()", null, (short)2));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1434, Grace.__$behaviorFactory6_rfield, null, null, "bFAskDrinkT2TPA_TxnIn_BodyStuff2_seq()", null, (short)1));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1436, Grace.__$behaviorFactory6_rfield, null, null, "bFAskDrinkT2TPA_TxnIn_BodyStuff3_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1441, Grace.__$behaviorFactory6_rfield, null, null, "bFAskDrinkT2TPA_TSuggest2_BodyStuff_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1442, Grace.__$behaviorFactory6_rfield, null, null, "bFAskDrinkT2TPA_TSuggest2_BodyStuff_dia()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1443, Grace.__$behaviorFactory6_rfield, null, null, "bFAskDrinkT2TPA_TSuggest2_BodyStuff_dia()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1449, Grace.__$behaviorFactory6_rfield, null, null, "bFAskDrinkT2TPA_Mixin_GSuggest_BodyStuff2_Fancy_seq(boolean, int)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1450, Grace.__$behaviorFactory6_rfield, Grace.__$precondition1_rfield, null, "bFAskDrinkT2TPA_Mixin_GSuggest_BodyStuff2_Fancy_dia_nono(boolean, int)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1451, Grace.__$behaviorFactory6_rfield, Grace.__$precondition1_rfield, null, "bFAskDrinkT2TPA_Mixin_GSuggest_BodyStuff2_Fancy_dia(boolean, int)", null, (short)2));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1452, Grace.__$behaviorFactory6_rfield, Grace.__$precondition1_rfield, null, "bFAskDrinkT2TPA_Mixin_GSuggest_BodyStuff2_Fancy_dia(boolean, int)", null, (short)2));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1453, Grace.__$behaviorFactory6_rfield, Grace.__$precondition1_rfield, null, "bFAskDrinkT2TPA_Mixin_GSuggest_BodyStuff2_Fancy_dia(boolean, int)", null, (short)2));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1454, Grace.__$behaviorFactory6_rfield, null, null, "bFAskDrinkT2TPA_Mixin_GSuggest_BodyStuff2_Fancy_dia(boolean, int)", null, (short)1));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1456, Grace.__$behaviorFactory6_rfield, null, null, "bFAskDrinkT2TPA_Mixin_GSuggest_BodyStuff2_NotFancy_seq(int)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1457, Grace.__$behaviorFactory6_rfield, Grace.__$precondition1_rfield, null, "bFAskDrinkT2TPA_Mixin_GSuggest_BodyStuff2_NotFancy_dia(int)", null, (short)2));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1458, Grace.__$behaviorFactory6_rfield, Grace.__$precondition1_rfield, null, "bFAskDrinkT2TPA_Mixin_GSuggest_BodyStuff2_NotFancy_dia(int)", null, (short)2));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1459, Grace.__$behaviorFactory6_rfield, Grace.__$precondition1_rfield, null, "bFAskDrinkT2TPA_Mixin_GSuggest_BodyStuff2_NotFancy_dia(int)", null, (short)2));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1460, Grace.__$behaviorFactory6_rfield, Grace.__$precondition1_rfield, null, "bFAskDrinkT2TPA_Mixin_GSuggest_BodyStuff2_NotFancy_dia(int)", null, (short)2));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1461, Grace.__$behaviorFactory6_rfield, Grace.__$precondition1_rfield, null, "bFAskDrinkT2TPA_Mixin_GSuggest_BodyStuff2_NotFancy_dia(int)", null, (short)2));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1462, Grace.__$behaviorFactory6_rfield, null, null, "bFAskDrinkT2TPA_Mixin_GSuggest_BodyStuff2_NotFancy_dia(int)", null, (short)1));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1466, Grace.__$behaviorFactory6_rfield, null, null, "bFAskDrinkT2TPA_Mixin_GSuggest_DisagreeT_BodyStuff1b_dia()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1467, Grace.__$behaviorFactory6_rfield, null, null, "bFAskDrinkT2TPA_Mixin_GSuggest_DisagreeT_BodyStuff1b_dia()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1468, Grace.__$behaviorFactory6_rfield, null, null, "bFAskDrinkT2TPA_Mixin_GSuggest_DisagreeT_BodyStuff1b_dia()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1469, Grace.__$behaviorFactory6_rfield, null, null, "bFAskDrinkT2TPA_Mixin_GSuggest_DisagreeT_BodyStuff1b_dia()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1470, Grace.__$behaviorFactory6_rfield, null, null, "bFAskDrinkT2TPA_Mixin_GSuggest_DisagreeT_BodyStuff1b_dia()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1474, Grace.__$behaviorFactory6_rfield, null, null, "bFAskDrinkT2TPA_TxnOut_AgreeG_BodyStuff_dia()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1475, Grace.__$behaviorFactory6_rfield, null, null, "bFAskDrinkT2TPA_TxnOut_AgreeG_BodyStuff_dia()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1477, Grace.__$behaviorFactory6_rfield, null, null, "bFAskDrinkT2TPA_TxnOut_AgreeG_BodyStuff2_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1481, Grace.__$behaviorFactory6_rfield, null, null, "bFAskDrinkT2TPA_TxnOut_DisagreeGNonAnswer_BodyStuff2_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1485, Grace.__$behaviorFactory6_rfield, null, null, "bFAskDrinkT2GPA_TxnIn_BodyStuff_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1488, Grace.__$behaviorFactory6_rfield, null, null, "bFAskDrinkT2GPA_TxnIn_BodyStuff2_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1490, Grace.__$behaviorFactory6_rfield, null, null, "bFAskDrinkT2GPA_TxnIn_BodyStuff3_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1493, Grace.__$behaviorFactory6_rfield, null, null, "bFAskDrinkT2GPA_TSuggest_BodyStuff_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1494, Grace.__$behaviorFactory6_rfield, Grace.__$precondition1_rfield, null, "bFAskDrinkT2GPA_TSuggest_BodyStuff_dia()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1495, Grace.__$behaviorFactory6_rfield, Grace.__$precondition1_rfield, null, "bFAskDrinkT2GPA_TSuggest_BodyStuff_dia()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1496, Grace.__$behaviorFactory6_rfield, Grace.__$precondition1_rfield, null, "bFAskDrinkT2GPA_TSuggest_BodyStuff_dia()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1497, Grace.__$behaviorFactory6_rfield, Grace.__$precondition1_rfield, null, "bFAskDrinkT2GPA_TSuggest_BodyStuff_dia()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1500, Grace.__$behaviorFactory6_rfield, null, null, "bFAskDrinkT2GPA_TSuggest2_BodyStuff_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1503, Grace.__$behaviorFactory6_rfield, null, null, "bFAskDrinkT2GPA_InitialWait_BodyStuff_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1506, Grace.__$behaviorFactory6_rfield, null, null, "bFAskDrinkT2GPA_Mixin_GSuggest_BodyStuff2_Fancy_seq(boolean, int)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1507, Grace.__$behaviorFactory6_rfield, Grace.__$precondition1_rfield, null, "bFAskDrinkT2GPA_Mixin_GSuggest_BodyStuff2_Fancy_dia(boolean, int)", null, (short)2));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1508, Grace.__$behaviorFactory6_rfield, Grace.__$precondition1_rfield, null, "bFAskDrinkT2GPA_Mixin_GSuggest_BodyStuff2_Fancy_dia(boolean, int)", null, (short)2));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1509, Grace.__$behaviorFactory6_rfield, Grace.__$precondition1_rfield, null, "bFAskDrinkT2GPA_Mixin_GSuggest_BodyStuff2_Fancy_dia(boolean, int)", null, (short)2));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1510, Grace.__$behaviorFactory6_rfield, null, null, "bFAskDrinkT2GPA_Mixin_GSuggest_BodyStuff2_Fancy_dia(boolean, int)", null, (short)1));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1512, Grace.__$behaviorFactory6_rfield, null, null, "bFAskDrinkT2GPA_Mixin_GSuggest_BodyStuff2_NotFancy_seq(int)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1513, Grace.__$behaviorFactory6_rfield, Grace.__$precondition1_rfield, null, "bFAskDrinkT2GPA_Mixin_GSuggest_BodyStuff2_NotFancy_dia(int)", null, (short)2));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1514, Grace.__$behaviorFactory6_rfield, Grace.__$precondition1_rfield, null, "bFAskDrinkT2GPA_Mixin_GSuggest_BodyStuff2_NotFancy_dia(int)", null, (short)2));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1515, Grace.__$behaviorFactory6_rfield, Grace.__$precondition1_rfield, null, "bFAskDrinkT2GPA_Mixin_GSuggest_BodyStuff2_NotFancy_dia(int)", null, (short)2));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1516, Grace.__$behaviorFactory6_rfield, Grace.__$precondition1_rfield, null, "bFAskDrinkT2GPA_Mixin_GSuggest_BodyStuff2_NotFancy_dia(int)", null, (short)2));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1517, Grace.__$behaviorFactory6_rfield, Grace.__$precondition1_rfield, null, "bFAskDrinkT2GPA_Mixin_GSuggest_BodyStuff2_NotFancy_dia(int)", null, (short)2));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1518, Grace.__$behaviorFactory6_rfield, null, null, "bFAskDrinkT2GPA_Mixin_GSuggest_BodyStuff2_NotFancy_dia(int)", null, (short)1));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1522, Grace.__$behaviorFactory6_rfield, null, null, "bFAskDrinkT2GPA_Mixin_GSuggest_DisagreeT_BodyStuff1b_dia()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1523, Grace.__$behaviorFactory6_rfield, null, null, "bFAskDrinkT2GPA_Mixin_GSuggest_DisagreeT_BodyStuff1b_dia()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1524, Grace.__$behaviorFactory6_rfield, null, null, "bFAskDrinkT2GPA_Mixin_GSuggest_DisagreeT_BodyStuff1b_dia()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1525, Grace.__$behaviorFactory6_rfield, null, null, "bFAskDrinkT2GPA_Mixin_GSuggest_DisagreeT_BodyStuff1b_dia()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1526, Grace.__$behaviorFactory6_rfield, null, null, "bFAskDrinkT2GPA_Mixin_GSuggest_DisagreeT_BodyStuff1b_dia()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1530, Grace.__$behaviorFactory6_rfield, null, null, "bFAskDrinkT2GPA_TxnOut_AgreeG_BodyStuff_dia()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1531, Grace.__$behaviorFactory6_rfield, null, null, "bFAskDrinkT2GPA_TxnOut_AgreeG_BodyStuff_dia()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1533, Grace.__$behaviorFactory6_rfield, null, null, "bFAskDrinkT2GPA_TxnOut_AgreeG_BodyStuff2_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1537, Grace.__$behaviorFactory6_rfield, null, null, "bFAskDrinkT2GPA_TxnOut_DisagreeGNonAnswer_BodyStuff2_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1544, Grace.__$behaviorFactory6_rfield, null, null, "bOneOnOneTAffChrT2_FinalYelling_BodyStuff_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1556, Grace.__$behaviorFactory6_rfield, null, null, "bOneOnOneTAffChrT2_Mixin_AnythingElseStrong_BodyStuff2_HorsD_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1558, Grace.__$behaviorFactory6_rfield, null, null, "bOneOnOneTAffChrT2_Mixin_AnythingElseStrong_BodyStuff2_DishBreaks_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1559, Grace.__$behaviorFactory6_rfield, null, null, "bOneOnOneTAffChrT2_Mixin_AnythingElseStrong_BodyStuff2_DishBreaks_dia()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1560, Grace.__$behaviorFactory6_rfield, null, null, "bOneOnOneTAffChrT2_Mixin_AnythingElseStrong_BodyStuff2_DishBreaks_dia()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1561, Grace.__$behaviorFactory6_rfield, null, null, "bOneOnOneTAffChrT2_Mixin_AnythingElseStrong_BodyStuff2_DishBreaks_dia()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1562, Grace.__$behaviorFactory6_rfield, null, null, "bOneOnOneTAffChrT2_Mixin_AnythingElseStrong_BodyStuff2_DishBreaks_dia()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1568, Grace.__$behaviorFactory6_rfield, null, null, "bOneOnOneGAffChrT2_TxnIn_BodyStuff_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1570, Grace.__$behaviorFactory6_rfield, null, null, "bOneOnOneGAffChrT2_TxnIn_BodyStuff_dia()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1571, Grace.__$behaviorFactory6_rfield, null, null, "bOneOnOneGAffChrT2_TxnIn_BodyStuff_dia()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1572, Grace.__$behaviorFactory6_rfield, null, null, "bOneOnOneGAffChrT2_TxnIn_BodyStuff_dia()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1573, Grace.__$behaviorFactory6_rfield, null, null, "bOneOnOneGAffChrT2_TxnIn_BodyStuff_dia2()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1574, Grace.__$behaviorFactory6_rfield, null, null, "bOneOnOneGAffChrT2_TxnIn_BodyStuff_dia2()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1575, Grace.__$behaviorFactory6_rfield, null, null, "bOneOnOneGAffChrT2_TxnIn_BodyStuff_dia2()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1576, Grace.__$behaviorFactory6_rfield, null, null, "bOneOnOneGAffChrT2_TxnIn_BodyStuff_dia3()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1577, Grace.__$behaviorFactory6_rfield, null, null, "bOneOnOneGAffChrT2_TxnIn_BodyStuff_dia3()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1579, Grace.__$behaviorFactory6_rfield, null, null, "bOneOnOneGAffChrT2_TxnIn_BodyStuff2_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1581, Grace.__$behaviorFactory6_rfield, null, null, "bOneOnOneGAffChrT2_Defuse_BodyStuff_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1582, Grace.__$behaviorFactory7_rfield, null, null, "bOneOnOneGAffChrT2_Defuse_BodyStuff_dia()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1583, Grace.__$behaviorFactory7_rfield, null, null, "bOneOnOneGAffChrT2_Defuse_BodyStuff_dia()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1584, Grace.__$behaviorFactory7_rfield, null, null, "bOneOnOneGAffChrT2_Defuse_BodyStuff_dia()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1585, Grace.__$behaviorFactory7_rfield, null, null, "bOneOnOneGAffChrT2_Defuse_BodyStuff_dia()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1587, Grace.__$behaviorFactory7_rfield, null, null, "bOneOnOneGAffChrT2_Confess_BodyStuff_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1588, Grace.__$behaviorFactory7_rfield, Grace.__$precondition1_rfield, null, "bOneOnOneGAffChrT2_Confess_BodyStuff_dia(int)", null, (short)2));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1589, Grace.__$behaviorFactory7_rfield, Grace.__$precondition1_rfield, null, "bOneOnOneGAffChrT2_Confess_BodyStuff_dia(int)", null, (short)2));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1590, Grace.__$behaviorFactory7_rfield, Grace.__$precondition1_rfield, null, "bOneOnOneGAffChrT2_Confess_BodyStuff_dia(int)", null, (short)2));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1591, Grace.__$behaviorFactory7_rfield, Grace.__$precondition1_rfield, null, "bOneOnOneGAffChrT2_Confess_BodyStuff_dia(int)", null, (short)2));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1592, Grace.__$behaviorFactory7_rfield, Grace.__$precondition1_rfield, null, "bOneOnOneGAffChrT2_Confess_BodyStuff_dia(int)", null, (short)2));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1593, Grace.__$behaviorFactory7_rfield, Grace.__$precondition1_rfield, null, "bOneOnOneGAffChrT2_Confess_BodyStuff_dia(int)", null, (short)2));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1594, Grace.__$behaviorFactory7_rfield, Grace.__$precondition1_rfield, null, "bOneOnOneGAffChrT2_Confess_BodyStuff_dia(int)", null, (short)2));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1595, Grace.__$behaviorFactory7_rfield, Grace.__$precondition1_rfield, null, "bOneOnOneGAffChrT2_Confess_BodyStuff_dia(int)", null, (short)2));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1596, Grace.__$behaviorFactory7_rfield, Grace.__$precondition1_rfield, null, "bOneOnOneGAffChrT2_Confess_BodyStuff_dia(int)", null, (short)2));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1597, Grace.__$behaviorFactory7_rfield, null, null, "bOneOnOneGAffChrT2_Confess_BodyStuff_dia(int)", null, (short)1));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1599, Grace.__$behaviorFactory7_rfield, null, null, "bOneOnOneGAffChrT2_FinalYelling_BodyStuff_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1601, Grace.__$behaviorFactory7_rfield, null, null, "bOneOnOneGAffChrT2_Mixin_MoveToLeaveRoom_BodyStuff_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1607, Grace.__$behaviorFactory7_rfield, null, null, "bOneOnOneGAffChrT2_Mixin_FlirtKissOppSex_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1608, Grace.__$behaviorFactory7_rfield, null, null, "bOneOnOneGAffChrT2_Mixin_FlirtKissOppSex_dia1()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1609, Grace.__$behaviorFactory7_rfield, null, null, "bOneOnOneGAffChrT2_Mixin_FlirtKissOppSex_dia1()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1610, Grace.__$behaviorFactory7_rfield, null, null, "bOneOnOneGAffChrT2_Mixin_FlirtKissOppSex_dia1()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1611, Grace.__$behaviorFactory7_rfield, null, null, "bOneOnOneGAffChrT2_Mixin_FlirtKissOppSex_dia2()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1612, Grace.__$behaviorFactory7_rfield, null, null, "bOneOnOneGAffChrT2_Mixin_FlirtKissOppSex_dia2()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1613, Grace.__$behaviorFactory7_rfield, null, null, "bOneOnOneGAffChrT2_Mixin_FlirtKissOppSex_dia2()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1615, Grace.__$behaviorFactory7_rfield, null, null, "bOneOnOneGAffChrT2_Mixin_AnythingElseStrongReferTo_seq(int)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1616, Grace.__$behaviorFactory7_rfield, null, null, "bOneOnOneGAffChrT2_Mixin_AnythingElseStrongReferTo_dia(int)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1618, Grace.__$behaviorFactory7_rfield, null, null, "bOneOnOneGAffChrT2_Mixin_AnythingElseStrongCrit_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1619, Grace.__$behaviorFactory7_rfield, null, null, "bOneOnOneGAffChrT2_Mixin_AnythingElseStrongCrit_dia()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1621, Grace.__$behaviorFactory7_rfield, null, null, "bOneOnOneGAffChrT2_Mixin_AnythingElseStrongExtreme_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1622, Grace.__$behaviorFactory7_rfield, null, null, "bOneOnOneGAffChrT2_Mixin_AnythingElseStrongExtreme_dia()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1625, Grace.__$behaviorFactory7_rfield, null, null, "bOneOnOneGAffChrT2_Mixin_AnythingElseStrong_BodyStuff2_HorsD_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1626, Grace.__$behaviorFactory7_rfield, Grace.__$precondition1_rfield, null, "bOneOnOneGAffChrT2_Mixin_AnythingElseStrong_BodyStuff2_HorsD_diayell1()", null, (short)3));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1627, Grace.__$behaviorFactory7_rfield, Grace.__$precondition1_rfield, null, "bOneOnOneGAffChrT2_Mixin_AnythingElseStrong_BodyStuff2_HorsD_diayell1()", null, (short)2));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1628, Grace.__$behaviorFactory7_rfield, null, null, "bOneOnOneGAffChrT2_Mixin_AnythingElseStrong_BodyStuff2_HorsD_diayell1()", null, (short)1));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1629, Grace.__$behaviorFactory7_rfield, Grace.__$precondition1_rfield, null, "bOneOnOneGAffChrT2_Mixin_AnythingElseStrong_BodyStuff2_HorsD_diayell2()", null, (short)3));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1630, Grace.__$behaviorFactory7_rfield, Grace.__$precondition1_rfield, null, "bOneOnOneGAffChrT2_Mixin_AnythingElseStrong_BodyStuff2_HorsD_diayell2()", null, (short)2));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1631, Grace.__$behaviorFactory7_rfield, null, null, "bOneOnOneGAffChrT2_Mixin_AnythingElseStrong_BodyStuff2_HorsD_diayell2()", null, (short)1));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1632, Grace.__$behaviorFactory7_rfield, null, null, "bOneOnOneGAffChrT2_Mixin_AnythingElseStrong_BodyStuff2_HorsD_seq2()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1633, Grace.__$behaviorFactory7_rfield, null, null, "bOneOnOneGAffChrT2_Mixin_AnythingElseStrong_BodyStuff2_HorsD_seq2()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1635, Grace.__$behaviorFactory7_rfield, null, null, "bOneOnOneGAffChrT2_Mixin_AnythingElseStrong_BodyStuff2_DishBreaks_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1636, Grace.__$behaviorFactory7_rfield, null, null, "bOneOnOneGAffChrT2_Mixin_AnythingElseStrong_BodyStuff2_DishBreaks_diamutter1()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1637, Grace.__$behaviorFactory7_rfield, null, null, "bOneOnOneGAffChrT2_Mixin_AnythingElseStrong_BodyStuff2_DishBreaks_diamutter1()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1638, Grace.__$behaviorFactory7_rfield, null, null, "bOneOnOneGAffChrT2_Mixin_AnythingElseStrong_BodyStuff2_DishBreaks_diamutter2()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1640, Grace.__$behaviorFactory7_rfield, null, null, "bOneOnOneGAffChrT2_Mixin_AnythingElseStrong_2ndtime_Extreme_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1641, Grace.__$behaviorFactory7_rfield, null, null, "bOneOnOneGAffChrT2_Mixin_AnythingElseStrong_2ndtime_Extreme_dia()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1643, Grace.__$behaviorFactory7_rfield, null, null, "bOneOnOneGAffChrT2_Mixin_AnythingElseStrong_2ndtime_Other_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1644, Grace.__$behaviorFactory7_rfield, null, null, "bOneOnOneGAffChrT2_Mixin_AnythingElseStrong_2ndtime_Other_dia()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1651, Grace.__$behaviorFactory7_rfield, null, null, "bOneOnOneTNonAffChrT2_TxnOut_Positive_BodyStuff_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1653, Grace.__$behaviorFactory7_rfield, null, null, "bOneOnOneTNonAffChrT2_TxnOut_Positive_BodyStuff2_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1659, Grace.__$behaviorFactory7_rfield, null, null, "bOneOnOneTNonAffChrT2_TxnOut_PlayerLeaves_BodyStuff_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1661, Grace.__$behaviorFactory7_rfield, null, null, "bOneOnOneGNonAffChrT2_ReturnToLivingRoom()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1663, Grace.__$behaviorFactory7_rfield, null, null, "bOneOnOneGNonAffChrT2_TxnIn_BodyStuff_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1664, Grace.__$behaviorFactory7_rfield, null, null, "bOneOnOneGNonAffChrT2_TxnIn_BodyStuff_dia1()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1665, Grace.__$behaviorFactory7_rfield, null, null, "bOneOnOneGNonAffChrT2_TxnIn_BodyStuff_dia1()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1666, Grace.__$behaviorFactory7_rfield, null, null, "bOneOnOneGNonAffChrT2_TxnIn_BodyStuff_dia2()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1667, Grace.__$behaviorFactory7_rfield, null, null, "bOneOnOneGNonAffChrT2_TxnIn_BodyStuff_dia2()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1669, Grace.__$behaviorFactory7_rfield, null, null, "bOneOnOneGNonAffChrT2_InitialComment_BodyStuff_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1670, Grace.__$behaviorFactory7_rfield, Grace.__$precondition1_rfield, null, "bOneOnOneGNonAffChrT2_InitialComment_BodyStuff_seq2(boolean)", null, (short)2));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1671, Grace.__$behaviorFactory7_rfield, null, null, "bOneOnOneGNonAffChrT2_InitialComment_BodyStuff_seq2(boolean)", null, (short)1));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1672, Grace.__$behaviorFactory7_rfield, null, null, "bOneOnOneGNonAffChrT2_InitialComment_BodyStuff_dia1a()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1673, Grace.__$behaviorFactory7_rfield, null, null, "bOneOnOneGNonAffChrT2_InitialComment_BodyStuff_dia1a()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1674, Grace.__$behaviorFactory7_rfield, null, null, "bOneOnOneGNonAffChrT2_InitialComment_BodyStuff_dia1b()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1675, Grace.__$behaviorFactory7_rfield, null, null, "bOneOnOneGNonAffChrT2_InitialComment_BodyStuff_dia1b()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1676, Grace.__$behaviorFactory7_rfield, null, null, "bOneOnOneGNonAffChrT2_InitialComment_BodyStuff_dia2a_pos()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1677, Grace.__$behaviorFactory7_rfield, null, null, "bOneOnOneGNonAffChrT2_InitialComment_BodyStuff_dia2a_pos()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1678, Grace.__$behaviorFactory7_rfield, null, null, "bOneOnOneGNonAffChrT2_InitialComment_BodyStuff_dia2b_pos()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1679, Grace.__$behaviorFactory7_rfield, null, null, "bOneOnOneGNonAffChrT2_InitialComment_BodyStuff_dia2b_pos()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1680, Grace.__$behaviorFactory7_rfield, null, null, "bOneOnOneGNonAffChrT2_InitialComment_BodyStuff_dia2_neg()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1681, Grace.__$behaviorFactory7_rfield, null, null, "bOneOnOneGNonAffChrT2_InitialComment_BodyStuff_dia2_neg()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1682, Grace.__$behaviorFactory7_rfield, null, null, "bOneOnOneGNonAffChrT2_InitialComment_BodyStuff_dia2_neg()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1684, Grace.__$behaviorFactory7_rfield, null, null, "bOneOnOneGNonAffChrT2_Mixin_Confession_BodyStuff_seq(boolean)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1685, Grace.__$behaviorFactory7_rfield, Grace.__$precondition1_rfield, null, "bOneOnOneGNonAffChrT2_Mixin_Confession_BodyStuff_seq1a(boolean)", null, (short)2));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1686, Grace.__$behaviorFactory7_rfield, null, null, "bOneOnOneGNonAffChrT2_Mixin_Confession_BodyStuff_seq1a(boolean)", null, (short)1));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1687, Grace.__$behaviorFactory7_rfield, null, null, "bOneOnOneGNonAffChrT2_Mixin_Confession_BodyStuff_dia1()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1688, Grace.__$behaviorFactory7_rfield, null, null, "bOneOnOneGNonAffChrT2_Mixin_Confession_BodyStuff_dia1()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1689, Grace.__$behaviorFactory7_rfield, Grace.__$precondition1_rfield, null, "bOneOnOneGNonAffChrT2_Mixin_Confession_BodyStuff_dia2(int)", null, (short)2));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1690, Grace.__$behaviorFactory7_rfield, Grace.__$precondition1_rfield, null, "bOneOnOneGNonAffChrT2_Mixin_Confession_BodyStuff_dia2(int)", null, (short)2));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1691, Grace.__$behaviorFactory7_rfield, Grace.__$precondition1_rfield, null, "bOneOnOneGNonAffChrT2_Mixin_Confession_BodyStuff_dia2(int)", null, (short)2));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1692, Grace.__$behaviorFactory7_rfield, Grace.__$precondition1_rfield, null, "bOneOnOneGNonAffChrT2_Mixin_Confession_BodyStuff_dia2(int)", null, (short)2));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1693, Grace.__$behaviorFactory7_rfield, Grace.__$precondition1_rfield, null, "bOneOnOneGNonAffChrT2_Mixin_Confession_BodyStuff_dia2(int)", null, (short)2));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1694, Grace.__$behaviorFactory7_rfield, Grace.__$precondition1_rfield, null, "bOneOnOneGNonAffChrT2_Mixin_Confession_BodyStuff_dia2(int)", null, (short)2));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1695, Grace.__$behaviorFactory7_rfield, Grace.__$precondition1_rfield, null, "bOneOnOneGNonAffChrT2_Mixin_Confession_BodyStuff_dia2(int)", null, (short)2));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1696, Grace.__$behaviorFactory7_rfield, Grace.__$precondition1_rfield, null, "bOneOnOneGNonAffChrT2_Mixin_Confession_BodyStuff_dia2(int)", null, (short)2));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1697, Grace.__$behaviorFactory7_rfield, Grace.__$precondition1_rfield, null, "bOneOnOneGNonAffChrT2_Mixin_Confession_BodyStuff_dia2(int)", null, (short)2));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1698, Grace.__$behaviorFactory7_rfield, null, null, "bOneOnOneGNonAffChrT2_Mixin_Confession_BodyStuff_dia2(int)", null, (short)1));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1700, Grace.__$behaviorFactory7_rfield, null, null, "bOneOnOneGNonAffChrT2_TxnOut_Positive_BodyStuff_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1702, Grace.__$behaviorFactory7_rfield, null, null, "bOneOnOneGNonAffChrT2_TxnOut_Positive_BodyStuff2_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1705, Grace.__$behaviorFactory7_rfield, null, null, "bOneOnOneGNonAffChrT2_TxnOut_FlirtKiss_BodyStuff_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1706, Grace.__$behaviorFactory7_rfield, null, null, "bOneOnOneGNonAffChrT2_TxnOut_FlirtKiss_BodyStuff_dia1()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1707, Grace.__$behaviorFactory7_rfield, null, null, "bOneOnOneGNonAffChrT2_TxnOut_FlirtKiss_BodyStuff_dia1()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1708, Grace.__$behaviorFactory7_rfield, null, null, "bOneOnOneGNonAffChrT2_TxnOut_FlirtKiss_BodyStuff_dia2()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1709, Grace.__$behaviorFactory7_rfield, null, null, "bOneOnOneGNonAffChrT2_TxnOut_FlirtKiss_BodyStuff_dia2()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1710, Grace.__$behaviorFactory7_rfield, null, null, "bOneOnOneGNonAffChrT2_TxnOut_FlirtKiss_BodyStuff_dia3()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1711, Grace.__$behaviorFactory7_rfield, null, null, "bOneOnOneGNonAffChrT2_TxnOut_FlirtKiss_BodyStuff_dia3()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1713, Grace.__$behaviorFactory7_rfield, null, null, "bOneOnOneGNonAffChrT2_TxnOut_StrongNotMean_BodyStuff_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1714, Grace.__$behaviorFactory7_rfield, null, null, "bOneOnOneGNonAffChrT2_TxnOut_StrongNotMean_BodyStuff_dia()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1715, Grace.__$behaviorFactory7_rfield, null, null, "bOneOnOneGNonAffChrT2_TxnOut_StrongNotMean_BodyStuff_dia()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1717, Grace.__$behaviorFactory7_rfield, null, null, "bOneOnOneGNonAffChrT2_TxnOut_MeanNeg_BodyStuff_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1718, Grace.__$behaviorFactory7_rfield, null, null, "bOneOnOneGNonAffChrT2_TxnOut_MeanNeg_BodyStuff_dia()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1719, Grace.__$behaviorFactory7_rfield, null, null, "bOneOnOneGNonAffChrT2_TxnOut_MeanNeg_BodyStuff_dia()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1721, Grace.__$behaviorFactory7_rfield, null, null, "bOneOnOneGNonAffChrT2_TxnOut_PlayerLeaves_BodyStuff_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1727, Grace.__$behaviorFactory7_rfield, null, null, "bNonAffChrGReturnsT2_TxnIn_Grace_BodyStuff2_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1729, Grace.__$behaviorFactory7_rfield, null, null, "bNonAffChrGReturnsT2_Mixin_Veronica_BodyStuff_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1731, Grace.__$behaviorFactory7_rfield, null, null, "bNonAffChrGReturnsT2_Mixin_Veronica_BodyStuff2_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1733, Grace.__$behaviorFactory7_rfield, null, null, "bNonAffChrGReturnsT2_TxnOut_Veronica_BodyStuff_seq(int)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1734, Grace.__$behaviorFactory7_rfield, Grace.__$precondition1_rfield, null, "bNonAffChrGReturnsT2_TxnOut_Veronica_BodyStuff_seq1a(int)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1736, Grace.__$behaviorFactory7_rfield, null, null, "bNonAffChrGReturnsT2_TxnOut_NotVeronica_BodyStuff_seq(boolean)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1737, Grace.__$behaviorFactory7_rfield, Grace.__$precondition1_rfield, null, "bNonAffChrGReturnsT2_TxnOut_NotVeronica_BodyStuff_seq1a(boolean)", null, (short)2));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1738, Grace.__$behaviorFactory7_rfield, null, null, "bNonAffChrGReturnsT2_TxnOut_NotVeronica_BodyStuff_seq1a(boolean)", null, (short)1));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1739, Grace.__$behaviorFactory7_rfield, null, null, "bNonAffChrGReturnsT2_TxnOut_NotVeronica_BodyStuff_dia2()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1741, Grace.__$behaviorFactory7_rfield, null, null, "bNonAffChrGReturnsT2_TxnOut_ReferToSatl_BodyStuff_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1742, Grace.__$behaviorFactory7_rfield, null, null, "bNonAffChrGReturnsT2_TxnOut_ReferToSatl_BodyStuff_dia1()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1743, Grace.__$behaviorFactory7_rfield, null, null, "bNonAffChrGReturnsT2_TxnOut_ReferToSatl_BodyStuff_dia2()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1746, Grace.__$behaviorFactory7_rfield, Grace.__$precondition1_rfield, null, "bNonAffChrTReturnsT2_TxnIn_BodyStuff_seq()", null, (short)2));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1747, Grace.__$behaviorFactory7_rfield, null, null, "bNonAffChrTReturnsT2_TxnIn_BodyStuff_prevFlirt_dia()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1748, Grace.__$behaviorFactory7_rfield, null, null, "bNonAffChrTReturnsT2_TxnIn_BodyStuff_prevFlirt_dia()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1749, Grace.__$behaviorFactory7_rfield, null, null, "bNonAffChrTReturnsT2_TxnIn_BodyStuff_prevFlirt_dia()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1750, Grace.__$behaviorFactory7_rfield, Grace.__$precondition1_rfield, null, "bNonAffChrTReturnsT2_TxnIn_BodyStuff_seq()", null, (short)2));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1751, Grace.__$behaviorFactory7_rfield, null, null, "bNonAffChrTReturnsT2_TxnIn_BodyStuff_prevNeg_dia()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1752, Grace.__$behaviorFactory7_rfield, null, null, "bNonAffChrTReturnsT2_TxnIn_BodyStuff_prevNeg_dia()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1753, Grace.__$behaviorFactory7_rfield, null, null, "bNonAffChrTReturnsT2_TxnIn_BodyStuff_seq()", null, (short)1));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1754, Grace.__$behaviorFactory7_rfield, null, null, "bNonAffChrTReturnsT2_TxnIn_BodyStuff_default_dia()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1755, Grace.__$behaviorFactory7_rfield, null, null, "bNonAffChrTReturnsT2_TxnIn_BodyStuff_default_dia()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1757, Grace.__$behaviorFactory7_rfield, null, null, "bNonAffChrTReturnsT2_TxnOut_ForgotCheese_BodyStuff_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1759, Grace.__$behaviorFactory7_rfield, null, null, "bNonAffChrTReturnsT2_TxnOut_Comment_BodyStuff_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1761, Grace.__$behaviorFactory7_rfield, null, null, "bNonAffChrTReturnsT2_TxnOut_StrongNonNeg_BodyStuff_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1762, Grace.__$behaviorFactory7_rfield, null, null, "bNonAffChrTReturnsT2_TxnOut_StrongNonNeg_BodyStuff_dia1()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1764, Grace.__$behaviorFactory7_rfield, null, null, "bNonAffChrTReturnsT2_TxnOut_StrongNeg_BodyStuff_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1765, Grace.__$behaviorFactory7_rfield, null, null, "bNonAffChrTReturnsT2_TxnOut_StrongNeg_BodyStuff_dia1()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1768, Grace.__$behaviorFactory7_rfield, null, null, "bRomPrpT2GPA_TxnIn_BodyStuff_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1770, Grace.__$behaviorFactory7_rfield, null, null, "bRomPrpT2GPA_TxnIn_BodyStuff2_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1771, Grace.__$behaviorFactory7_rfield, Grace.__$precondition1_rfield, null, "bRomPrpT2GPA_TxnIn_stage()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1773, Grace.__$behaviorFactory7_rfield, Grace.__$precondition1_rfield, null, "bRomPrpT2GPA_TxnIn_BodyStuff3_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1774, Grace.__$behaviorFactory7_rfield, Grace.__$precondition1_rfield, null, "bRomPrpT2GPA_TxnIn_BodyStuff3_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1775, Grace.__$behaviorFactory7_rfield, Grace.__$precondition1_rfield, null, "bRomPrpT2GPA_TxnIn_BodyStuff3_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1776, Grace.__$behaviorFactory7_rfield, Grace.__$precondition1_rfield, null, "bRomPrpT2GPA_TxnIn_BodyStuff3_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1778, Grace.__$behaviorFactory7_rfield, null, null, "bRomPrpT2GPA_Body_BodyStuff_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1780, Grace.__$behaviorFactory7_rfield, null, null, "bRomPrpT2GPA_WaitTimeout_BodyStuff_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1782, Grace.__$behaviorFactory7_rfield, null, null, "bRomPrpT2GPA_TxnOut_NonAnswer_TxnOut_BodyStuff_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1784, Grace.__$behaviorFactory7_rfield, null, null, "bRomPrpT2GPA_TxnOut_NonAnswer_TxnOut_PreCrisis_BodyStuff_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1786, Grace.__$behaviorFactory7_rfield, null, null, "bRomPrpT2GPA_TxnOut_AgreeT_TxnOut_BodyStuff_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1788, Grace.__$behaviorFactory7_rfield, null, null, "bRomPrpT2GPA_TxnOut_AgreeT_TxnOut_PreCrisis_BodyStuff_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1790, Grace.__$behaviorFactory7_rfield, null, null, "bRomPrpT2GPA_TxnOut_DisagreeT_TxnOut_BodyStuff_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1792, Grace.__$behaviorFactory7_rfield, null, null, "bRomPrpT2GPA_TxnOut_DisagreeT_TxnOut_PreCrisis_BodyStuff_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1795, Grace.__$behaviorFactory7_rfield, Grace.__$precondition1_rfield, null, "bCrisisP1_SayShortCausationPhrase()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1796, Grace.__$behaviorFactory7_rfield, null, null, "bCrisisP1_SayShortCausationPhrase(int, int, boolean)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1797, Grace.__$behaviorFactory7_rfield, Grace.__$precondition1_rfield, null, "bCrisisP1_SayShortCausationPhrase_dia(int, int, int, int, boolean)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1798, Grace.__$behaviorFactory7_rfield, Grace.__$precondition1_rfield, null, "bCrisisP1_SayShortCausationPhrase_dia(int, int, int, int, boolean)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1799, Grace.__$behaviorFactory7_rfield, Grace.__$precondition1_rfield, null, "bCrisisP1_SayAccusation()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1800, Grace.__$behaviorFactory7_rfield, null, null, "bCrisisP1_SayAccusation(int, boolean)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1801, Grace.__$behaviorFactory7_rfield, Grace.__$precondition1_rfield, null, "bCrisisP1_SayAccusation_dia(int, int, int, boolean)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1802, Grace.__$behaviorFactory7_rfield, null, null, "bCrisisP1_SayAngryPlayerComment(int, int)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1803, Grace.__$behaviorFactory7_rfield, null, null, "bCrisisP1_SayAngryPlayerComment(int, int, boolean)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1804, Grace.__$behaviorFactory7_rfield, Grace.__$precondition1_rfield, null, "bCrisisP1_SayAngryPlayerComment_dia(int, int, int, int, boolean)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1805, Grace.__$behaviorFactory7_rfield, Grace.__$precondition1_rfield, null, "bCrisisP1_SayAngryPlayerComment_dia(int, int, int, int, boolean)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1806, Grace.__$behaviorFactory7_rfield, null, null, "bCrisisP1_SayDramaticQuestion()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1807, Grace.__$behaviorFactory7_rfield, null, null, "bCrisisP1_SayDramaticQuestion(int, boolean)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1808, Grace.__$behaviorFactory8_rfield, Grace.__$precondition1_rfield, null, "bCrisisP1_SayDramaticQuestion_dia(int, int, int, boolean)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1811, Grace.__$behaviorFactory8_rfield, Grace.__$precondition1_rfield, null, "bCrisisP1_DoDialog(int, int)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1812, Grace.__$behaviorFactory8_rfield, Grace.__$precondition1_rfield, null, "bCrisisP1_DoDialog(int)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1813, Grace.__$behaviorFactory8_rfield, Grace.__$precondition1_rfield, null, "bCrisisP1_DoDialog(int, int, int)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1814, Grace.__$behaviorFactory8_rfield, null, null, "bCrisisP1_doGazeLooks()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1815, Grace.__$behaviorFactory8_rfield, null, null, "bCrisisP1_doGazeLooks_alt()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1816, Grace.__$behaviorFactory8_rfield, null, null, "bCrisisP1_doGazeLooks_alt()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1817, Grace.__$behaviorFactory8_rfield, null, null, "bCrisisP1_doGazeLooks_alt()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1818, Grace.__$behaviorFactory8_rfield, null, null, "bCrisisP1_doGazeLooks_alt()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1819, Grace.__$behaviorFactory8_rfield, null, null, "bCrisisP1_doGazeLooks_alt()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1820, Grace.__$behaviorFactory8_rfield, Grace.__$precondition1_rfield, Grace.__$preconditionSensorFactory0_rfield, "bCrisisP1_doArms()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1821, Grace.__$behaviorFactory8_rfield, Grace.__$precondition1_rfield, Grace.__$preconditionSensorFactory0_rfield, "bCrisisP1_doArms()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1822, Grace.__$behaviorFactory8_rfield, Grace.__$precondition1_rfield, Grace.__$preconditionSensorFactory0_rfield, "bCrisisP1_doArms()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1823, Grace.__$behaviorFactory8_rfield, Grace.__$precondition1_rfield, Grace.__$preconditionSensorFactory0_rfield, "bCrisisP1_doArms()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1824, Grace.__$behaviorFactory8_rfield, Grace.__$precondition1_rfield, Grace.__$preconditionSensorFactory0_rfield, "bCrisisP1_doArms()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1825, Grace.__$behaviorFactory8_rfield, Grace.__$precondition1_rfield, Grace.__$preconditionSensorFactory0_rfield, "bCrisisP1_doArms()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1826, Grace.__$behaviorFactory8_rfield, null, null, "bCrisisP1_doFacialExpressions()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1827, Grace.__$behaviorFactory8_rfield, null, null, "bCrisisP1_doFacialExpressions_alt()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1828, Grace.__$behaviorFactory8_rfield, null, null, "bCrisisP1_doFacialExpressions_alt()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1829, Grace.__$behaviorFactory8_rfield, null, null, "bCrisisP1_doFacialExpressions_alt()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1830, Grace.__$behaviorFactory8_rfield, null, null, "bCrisisP1_doFacialExpressions_alt()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1831, Grace.__$behaviorFactory8_rfield, null, null, "bCrisisP1_doFacialExpressions_alt()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1832, Grace.__$behaviorFactory8_rfield, null, null, "bCrisisP1_doFacialExpressions_alt()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1833, Grace.__$behaviorFactory8_rfield, null, null, "bCrisisP1_doFacialExpressions_alt()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1834, Grace.__$behaviorFactory8_rfield, null, null, "bCrisisP1_doFacialExpressions_alt()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1835, Grace.__$behaviorFactory8_rfield, null, null, "bCrisisP1_SayAccusation_facialExpression()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1836, Grace.__$behaviorFactory8_rfield, null, null, "bCrisisP1_SayAccusation_facialExpression()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1837, Grace.__$behaviorFactory8_rfield, null, null, "bCrisisP1_SayAccusation_facialExpression()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1838, Grace.__$behaviorFactory8_rfield, null, null, "bCrisisP1_SayAccusation_facialExpression()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1839, Grace.__$behaviorFactory8_rfield, null, null, "bCrisisP1_SayAccusation_facialExpression()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1840, Grace.__$behaviorFactory8_rfield, null, null, "bCrisisP1_SayAccusation_facialExpression()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1841, Grace.__$behaviorFactory8_rfield, null, null, "bCrisisP1_SayAccusation_facialExpression()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1843, Grace.__$behaviorFactory8_rfield, null, null, "bCrisisP1_TxnIn_PreAccusationOpeningYell_BodyStuff_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1844, Grace.__$behaviorFactory8_rfield, Grace.__$precondition1_rfield, null, "bCrisisP1_TxnIn_PreAccusationOpeningYell_BodyStuff_dia()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1845, Grace.__$behaviorFactory8_rfield, Grace.__$precondition1_rfield, null, "bCrisisP1_TxnIn_PreAccusationOpeningYell_BodyStuff_dia()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1848, Grace.__$behaviorFactory8_rfield, Grace.__$precondition1_rfield, null, "bCrisisP1_TxnIn_Setup_BodyStuff_dia(int)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1849, Grace.__$behaviorFactory8_rfield, Grace.__$precondition1_rfield, null, "bCrisisP1_TxnIn_Setup_BodyStuff_dia(int)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1850, Grace.__$behaviorFactory8_rfield, Grace.__$precondition1_rfield, null, "bCrisisP1_TxnIn_Setup_BodyStuff_dia(int)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1851, Grace.__$behaviorFactory8_rfield, Grace.__$precondition1_rfield, null, "bCrisisP1_TxnIn_Setup_BodyStuff_dia(int)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1852, Grace.__$behaviorFactory8_rfield, Grace.__$precondition1_rfield, null, "bCrisisP1_TxnIn_Setup_BodyStuff_stage()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1860, Grace.__$behaviorFactory8_rfield, Grace.__$precondition1_rfield, null, "bCrisisP1_Body_AccusedAppalled_BodyStuff_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1861, Grace.__$behaviorFactory8_rfield, null, null, "bCrisisP1_Body_AccusedAppalled_BodyStuff_par()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1862, Grace.__$behaviorFactory8_rfield, Grace.__$precondition1_rfield, null, "bCrisisP1_Body_AccusedAppalled_BodyStuff_stage()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1863, Grace.__$behaviorFactory8_rfield, Grace.__$precondition1_rfield, null, "bCrisisP1_Body_AccusedAppalled_BodyStuff_dia()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1864, Grace.__$behaviorFactory8_rfield, Grace.__$precondition1_rfield, null, "bCrisisP1_Body_AccusedAppalled_BodyStuff_dia()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1865, Grace.__$behaviorFactory8_rfield, Grace.__$precondition1_rfield, null, "bCrisisP1_Body_AccusedAppalled_BodyStuff_dia()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1866, Grace.__$behaviorFactory8_rfield, Grace.__$precondition1_rfield, null, "bCrisisP1_Body_AccusedAppalled_BodyStuff_dia()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1867, Grace.__$behaviorFactory8_rfield, Grace.__$precondition1_rfield, null, "bCrisisP1_Body_AccusedAppalled_BodyStuff_dia2()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1868, Grace.__$behaviorFactory8_rfield, Grace.__$precondition1_rfield, null, "bCrisisP1_Body_AccusedAppalled_BodyStuff_dia2()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1870, Grace.__$behaviorFactory8_rfield, null, null, "bCrisisP1_Body_AccuserSlamPlayer_BodyStuff_seq(int, int)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1871, Grace.__$behaviorFactory8_rfield, Grace.__$precondition1_rfield, null, "bCrisisP1_Body_AccuserSlamPlayer_BodyStuff_diaPrefix()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1872, Grace.__$behaviorFactory8_rfield, Grace.__$precondition1_rfield, null, "bCrisisP1_Body_AccuserSlamPlayer_BodyStuff_diaPrefix()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1873, Grace.__$behaviorFactory8_rfield, Grace.__$precondition1_rfield, null, "bCrisisP1_Body_AccuserSlamPlayer_BodyStuff_diaPrefix()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1874, Grace.__$behaviorFactory8_rfield, Grace.__$precondition1_rfield, null, "bCrisisP1_Body_AccuserSlamPlayer_BodyStuff_diaPrefix2()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1875, Grace.__$behaviorFactory8_rfield, Grace.__$precondition1_rfield, null, "bCrisisP1_Body_AccuserSlamPlayer_BodyStuff_diaPrefix2()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1876, Grace.__$behaviorFactory8_rfield, Grace.__$precondition1_rfield, null, "bCrisisP1_Body_AccuserSlamPlayer_BodyStuff_diaPrefix2()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1877, Grace.__$behaviorFactory8_rfield, Grace.__$precondition1_rfield, null, "bCrisisP1_Body_AccuserSlamPlayer_BodyStuff_diaPrefix()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1878, Grace.__$behaviorFactory8_rfield, Grace.__$precondition1_rfield, null, "bCrisisP1_Body_AccuserSlamPlayer_BodyStuff_diaPrefix()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1879, Grace.__$behaviorFactory8_rfield, Grace.__$precondition1_rfield, null, "bCrisisP1_Body_AccuserSlamPlayer_BodyStuff_diaPrefix()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1880, Grace.__$behaviorFactory8_rfield, Grace.__$precondition1_rfield, null, "bCrisisP1_Body_AccuserSlamPlayer_BodyStuff_diaPrefix2()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1881, Grace.__$behaviorFactory8_rfield, Grace.__$precondition1_rfield, null, "bCrisisP1_Body_AccuserSlamPlayer_BodyStuff_diaPrefix2()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1882, Grace.__$behaviorFactory8_rfield, Grace.__$precondition1_rfield, null, "bCrisisP1_Body_AccuserSlamPlayer_BodyStuff_diaPrefix2()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1886, Grace.__$behaviorFactory8_rfield, null, null, "bCrisisP1_Body_Accused_WaitTimeout_BodyStuff_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1888, Grace.__$behaviorFactory8_rfield, Grace.__$precondition1_rfield, null, "bCrisisP1_Body_InitialReaction_BodyStuff_seq(int, int)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1889, Grace.__$behaviorFactory8_rfield, Grace.__$precondition1_rfield, null, "bCrisisP1_Body_InitialReaction_BodyStuff_seq(int, int)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1890, Grace.__$behaviorFactory8_rfield, Grace.__$precondition1_rfield, null, "bCrisisP1_Body_InitialReaction_BodyStuff_diaPrefix()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1891, Grace.__$behaviorFactory8_rfield, Grace.__$precondition1_rfield, null, "bCrisisP1_Body_InitialReaction_BodyStuff_diaPrefix()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1892, Grace.__$behaviorFactory8_rfield, Grace.__$precondition1_rfield, null, "bCrisisP1_Body_InitialReaction_BodyStuff_genericRxn()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1893, Grace.__$behaviorFactory8_rfield, Grace.__$precondition1_rfield, null, "bCrisisP1_Body_InitialReaction_BodyStuff_genericRxn()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1899, Grace.__$behaviorFactory8_rfield, null, null, "bCrisisP1_Body2_Accusation_BodyStuff_spouse_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1901, Grace.__$behaviorFactory8_rfield, Grace.__$precondition1_rfield, null, "bCrisisP1_Body_SecondReaction_BodyStuff_seq(int, int)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1902, Grace.__$behaviorFactory8_rfield, Grace.__$precondition1_rfield, null, "bCrisisP1_Body_SecondReaction_BodyStuff_seq(int, int)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1903, Grace.__$behaviorFactory8_rfield, Grace.__$precondition1_rfield, null, "bCrisisP1_Body_SecondReaction_BodyStuff_diaPrefix()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1904, Grace.__$behaviorFactory8_rfield, Grace.__$precondition1_rfield, null, "bCrisisP1_Body_SecondReaction_BodyStuff_diaPrefix()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1905, Grace.__$behaviorFactory8_rfield, Grace.__$precondition1_rfield, null, "bCrisisP1_Body_SecondReaction_BodyStuff_genericRxn()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1906, Grace.__$behaviorFactory8_rfield, Grace.__$precondition1_rfield, null, "bCrisisP1_Body_SecondReaction_BodyStuff_genericRxn()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1912, Grace.__$behaviorFactory8_rfield, null, null, "bCrisisP1_Body3_Accusation_BodyStuff_accused_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1914, Grace.__$behaviorFactory8_rfield, null, null, "bCrisisP1_Body3_BigQuestion_BodyStuff_accuser_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1916, Grace.__$behaviorFactory8_rfield, null, null, "bCrisisP1_Body3_BigQuestion_BodyStuff2_accuser_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1917, Grace.__$behaviorFactory8_rfield, null, null, "bCrisisP1_Body3_BigQuestion_BodyStuff2_accuser_seq_par(int)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1918, Grace.__$behaviorFactory8_rfield, null, null, "bCrisisP1_Body3_BigQuestion_BodyStuff2_accuser_seq_turnContextOn()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1920, Grace.__$behaviorFactory8_rfield, null, null, "bCrisisP1_Body3_BigQuestion_BodyStuff3_accuser_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1921, Grace.__$behaviorFactory8_rfield, Grace.__$precondition1_rfield, null, "bCrisisP1_Body3_BigQuestion_BodyStuff_accuser_dia1a()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1922, Grace.__$behaviorFactory8_rfield, Grace.__$precondition1_rfield, null, "bCrisisP1_Body3_BigQuestion_BodyStuff_accuser_dia1a()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1923, Grace.__$behaviorFactory8_rfield, Grace.__$precondition1_rfield, null, "bCrisisP1_Body3_BigQuestion_BodyStuff_accuser_dia1a()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1924, Grace.__$behaviorFactory8_rfield, Grace.__$precondition1_rfield, null, "bCrisisP1_Body3_BigQuestion_BodyStuff_accuser_dia1a()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1925, Grace.__$behaviorFactory8_rfield, Grace.__$precondition1_rfield, null, "bCrisisP1_Body3_BigQuestion_BodyStuff_accuser_dia1b()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1926, Grace.__$behaviorFactory8_rfield, Grace.__$precondition1_rfield, null, "bCrisisP1_Body3_BigQuestion_BodyStuff_accuser_dia1b()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1927, Grace.__$behaviorFactory8_rfield, Grace.__$precondition1_rfield, null, "bCrisisP1_Body3_BigQuestion_BodyStuff_accuser_dia1b()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1928, Grace.__$behaviorFactory8_rfield, Grace.__$precondition1_rfield, null, "bCrisisP1_Body3_BigQuestion_BodyStuff_accuser_dia1b()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1929, Grace.__$behaviorFactory8_rfield, Grace.__$precondition1_rfield, null, "bCrisisP1_Body3_BigQuestion_BodyStuff_accuser_dia2a(int)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1930, Grace.__$behaviorFactory8_rfield, Grace.__$precondition1_rfield, null, "bCrisisP1_Body3_BigQuestion_BodyStuff_accuser_dia2a(int)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1931, Grace.__$behaviorFactory8_rfield, Grace.__$precondition1_rfield, null, "bCrisisP1_Body3_BigQuestion_BodyStuff_accuser_dia2a(int)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1932, Grace.__$behaviorFactory8_rfield, Grace.__$precondition1_rfield, null, "bCrisisP1_Body3_BigQuestion_BodyStuff_accuser_dia2a(int)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1933, Grace.__$behaviorFactory8_rfield, Grace.__$precondition1_rfield, null, "bCrisisP1_Body3_BigQuestion_BodyStuff_accuser_dia2b()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1934, Grace.__$behaviorFactory8_rfield, Grace.__$precondition1_rfield, null, "bCrisisP1_Body3_BigQuestion_BodyStuff_accuser_dia2b()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1935, Grace.__$behaviorFactory8_rfield, Grace.__$precondition1_rfield, null, "bCrisisP1_Body3_BigQuestion_BodyStuff_accuser_bigqdia1(int)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1936, Grace.__$behaviorFactory8_rfield, Grace.__$precondition1_rfield, null, "bCrisisP1_Body3_BigQuestion_BodyStuff_accuser_bigqdia1(int)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1937, Grace.__$behaviorFactory8_rfield, Grace.__$precondition1_rfield, null, "bCrisisP1_Body3_BigQuestion_BodyStuff_accuser_bigqdia1(int)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1938, Grace.__$behaviorFactory8_rfield, Grace.__$precondition1_rfield, null, "bCrisisP1_Body3_BigQuestion_BodyStuff_accuser_bigqdia1(int)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1939, Grace.__$behaviorFactory8_rfield, Grace.__$precondition1_rfield, null, "bCrisisP1_Body3_BigQuestion_BodyStuff_accuser_bigqdia1(int)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1940, Grace.__$behaviorFactory8_rfield, Grace.__$precondition1_rfield, null, "bCrisisP1_Body3_BigQuestion_BodyStuff_accuser_bigqdia1(int)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1941, Grace.__$behaviorFactory8_rfield, Grace.__$precondition1_rfield, null, "bCrisisP1_Body3_BigQuestion_BodyStuff_accuser_bigqdia1(int)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1942, Grace.__$behaviorFactory8_rfield, Grace.__$precondition1_rfield, null, "bCrisisP1_Body3_BigQuestion_BodyStuff_accuser_bigqdia1(int)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1943, Grace.__$behaviorFactory8_rfield, Grace.__$precondition1_rfield, null, "bCrisisP1_Body3_BigQuestion_BodyStuff_accuser_bigqdia1(int)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1944, Grace.__$behaviorFactory8_rfield, Grace.__$precondition1_rfield, null, "bCrisisP1_Body3_BigQuestion_BodyStuff_accuser_bigqdia1(int)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1945, Grace.__$behaviorFactory8_rfield, Grace.__$precondition1_rfield, null, "bCrisisP1_Body3_BigQuestion_BodyStuff_accuser_bigqdia1(int)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1946, Grace.__$behaviorFactory8_rfield, Grace.__$precondition1_rfield, null, "bCrisisP1_Body3_BigQuestion_BodyStuff_accuser_bigqdia1(int)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1947, Grace.__$behaviorFactory8_rfield, Grace.__$precondition1_rfield, null, "bCrisisP1_Body3_BigQuestion_BodyStuff_accuser_bigqdia1(int)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1948, Grace.__$behaviorFactory8_rfield, Grace.__$precondition1_rfield, null, "bCrisisP1_Body3_BigQuestion_BodyStuff_accuser_bigqdia1(int)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1949, Grace.__$behaviorFactory8_rfield, Grace.__$precondition1_rfield, null, "bCrisisP1_Body3_BigQuestion_BodyStuff_accuser_bigqdia1(int)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1950, Grace.__$behaviorFactory8_rfield, Grace.__$precondition1_rfield, null, "bCrisisP1_Body3_BigQuestion_BodyStuff_accuser_bigqdia1(int)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1951, Grace.__$behaviorFactory8_rfield, Grace.__$precondition1_rfield, null, "bCrisisP1_Body3_BigQuestion_BodyStuff_accuser_bigqdia1(int)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1952, Grace.__$behaviorFactory8_rfield, Grace.__$precondition1_rfield, null, "bCrisisP1_Body3_BigQuestion_BodyStuff_accuser_bigqdia1(int)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1953, Grace.__$behaviorFactory8_rfield, Grace.__$precondition1_rfield, null, "bCrisisP1_Body3_BigQuestion_BodyStuff_accuser_bigqdia1(int)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1954, Grace.__$behaviorFactory8_rfield, Grace.__$precondition1_rfield, null, "bCrisisP1_Body3_BigQuestion_BodyStuff_accuser_bigqdia1(int)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1955, Grace.__$behaviorFactory8_rfield, Grace.__$precondition1_rfield, null, "bCrisisP1_Body3_BigQuestion_BodyStuff_accuser_bigqdia2(int)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1956, Grace.__$behaviorFactory8_rfield, Grace.__$precondition1_rfield, null, "bCrisisP1_Body3_BigQuestion_BodyStuff_accuser_bigqdia2(int)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1957, Grace.__$behaviorFactory8_rfield, Grace.__$precondition1_rfield, null, "bCrisisP1_Body3_BigQuestion_BodyStuff_accuser_bigqdia2(int)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1958, Grace.__$behaviorFactory8_rfield, Grace.__$precondition1_rfield, null, "bCrisisP1_Body3_BigQuestion_BodyStuff_accuser_bigqdia2(int)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1959, Grace.__$behaviorFactory8_rfield, Grace.__$precondition1_rfield, null, "bCrisisP1_Body3_BigQuestion_BodyStuff_accuser_bigqdia2(int)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1960, Grace.__$behaviorFactory8_rfield, Grace.__$precondition1_rfield, null, "bCrisisP1_Body3_BigQuestion_BodyStuff_accuser_bigqdia2(int)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1961, Grace.__$behaviorFactory8_rfield, Grace.__$precondition1_rfield, null, "bCrisisP1_Body3_BigQuestion_BodyStuff_accuser_bigqdia2(int)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1962, Grace.__$behaviorFactory8_rfield, Grace.__$precondition1_rfield, null, "bCrisisP1_Body3_BigQuestion_BodyStuff_accuser_bigqdia2(int)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1963, Grace.__$behaviorFactory8_rfield, Grace.__$precondition1_rfield, null, "bCrisisP1_Body3_BigQuestion_BodyStuff_accuser_bigqdia2(int)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1964, Grace.__$behaviorFactory8_rfield, Grace.__$precondition1_rfield, null, "bCrisisP1_Body3_BigQuestion_BodyStuff_accuser_bigqdia2(int)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1965, Grace.__$behaviorFactory8_rfield, Grace.__$precondition1_rfield, null, "bCrisisP1_Body3_BigQuestion_BodyStuff_accuser_bigqdia2(int)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1966, Grace.__$behaviorFactory8_rfield, Grace.__$precondition1_rfield, null, "bCrisisP1_Body3_BigQuestion_BodyStuff_accuser_bigqdia2(int)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1967, Grace.__$behaviorFactory8_rfield, Grace.__$precondition1_rfield, null, "bCrisisP1_Body3_BigQuestion_BodyStuff_accuser_bigqdia2(int)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1968, Grace.__$behaviorFactory8_rfield, Grace.__$precondition1_rfield, null, "bCrisisP1_Body3_BigQuestion_BodyStuff_accuser_bigqdia2(int)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1969, Grace.__$behaviorFactory8_rfield, Grace.__$precondition1_rfield, null, "bCrisisP1_Body3_BigQuestion_BodyStuff_accuser_bigqdia2(int)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1970, Grace.__$behaviorFactory8_rfield, Grace.__$precondition1_rfield, null, "bCrisisP1_Body3_BigQuestion_BodyStuff_accuser_bigqdia2(int)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1971, Grace.__$behaviorFactory8_rfield, Grace.__$precondition1_rfield, null, "bCrisisP1_Body3_BigQuestion_BodyStuff_accuser_bigqdia2(int)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1972, Grace.__$behaviorFactory8_rfield, Grace.__$precondition1_rfield, null, "bCrisisP1_Body3_BigQuestion_BodyStuff_accuser_bigqdia2(int)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1973, Grace.__$behaviorFactory8_rfield, Grace.__$precondition1_rfield, null, "bCrisisP1_Body3_BigQuestion_BodyStuff_accuser_bigqdia2(int)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1974, Grace.__$behaviorFactory8_rfield, Grace.__$precondition1_rfield, null, "bCrisisP1_Body3_BigQuestion_BodyStuff_accuser_bigqdia2(int)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1975, Grace.__$behaviorFactory8_rfield, Grace.__$precondition1_rfield, null, "bCrisisP1_Body3_BigQuestion_BodyStuff_accuser_bigqdia3()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1976, Grace.__$behaviorFactory8_rfield, Grace.__$precondition1_rfield, null, "bCrisisP1_Body3_BigQuestion_BodyStuff_accuser_bigqdia3()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1977, Grace.__$behaviorFactory8_rfield, Grace.__$precondition1_rfield, null, "bCrisisP1_Body3_BigQuestion_BodyStuff_accuser_bigqdia3()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1978, Grace.__$behaviorFactory8_rfield, Grace.__$precondition1_rfield, null, "bCrisisP1_Body3_BigQuestion_BodyStuff_accuser_bigqdia3()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1979, Grace.__$behaviorFactory8_rfield, Grace.__$precondition1_rfield, null, "bCrisisP1_Body3_BigQuestion_BodyStuff_accuser_bigqdia3()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1980, Grace.__$behaviorFactory8_rfield, Grace.__$precondition1_rfield, null, "bCrisisP1_Body3_BigQuestion_BodyStuff_accuser_bigqdia3()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1982, Grace.__$behaviorFactory8_rfield, null, null, "bCrisisP1_Body3_BigQuestion_BodyStuff_accused_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1983, Grace.__$behaviorFactory8_rfield, null, null, "bCrisisP1_Body3_BigQuestion_BodyStuff_accused_react()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1985, Grace.__$behaviorFactory8_rfield, null, null, "bCrisisP1_Body3_BigQuestion_BodyStuff2_accused_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1987, Grace.__$behaviorFactory8_rfield, null, null, "bCrisisP1_Body3_BigQuestion_BodyStuff3_accused_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1988, Grace.__$behaviorFactory8_rfield, Grace.__$precondition1_rfield, null, "bCrisisP1_Body3_BigQuestion_BodyStuff_accused_dia1()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1989, Grace.__$behaviorFactory8_rfield, Grace.__$precondition1_rfield, null, "bCrisisP1_Body3_BigQuestion_BodyStuff_accused_dia1()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1990, Grace.__$behaviorFactory8_rfield, Grace.__$precondition1_rfield, null, "bCrisisP1_Body3_BigQuestion_BodyStuff_accused_dia1()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1991, Grace.__$behaviorFactory8_rfield, Grace.__$precondition1_rfield, null, "bCrisisP1_Body3_BigQuestion_BodyStuff_accused_dia1()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1992, Grace.__$behaviorFactory8_rfield, Grace.__$precondition1_rfield, null, "bCrisisP1_Body3_BigQuestion_BodyStuff_accused_dia2()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1993, Grace.__$behaviorFactory8_rfield, Grace.__$precondition1_rfield, null, "bCrisisP1_Body3_BigQuestion_BodyStuff_accused_dia2()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1994, Grace.__$behaviorFactory8_rfield, Grace.__$precondition1_rfield, null, "bCrisisP1_Body3_BigQuestion_BodyStuff_accused_dia2()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1995, Grace.__$behaviorFactory8_rfield, Grace.__$precondition1_rfield, null, "bCrisisP1_Body3_BigQuestion_BodyStuff_accused_dia2()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1996, Grace.__$behaviorFactory8_rfield, Grace.__$precondition1_rfield, null, "bCrisisP1_Body3_BigQuestion_BodyStuff_accused_dia2()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1997, Grace.__$behaviorFactory8_rfield, Grace.__$precondition1_rfield, null, "bCrisisP1_Body3_BigQuestion_BodyStuff_accused_dia2()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1999, Grace.__$behaviorFactory8_rfield, Grace.__$precondition1_rfield, null, "bCrisisP1_TxnOut_BodyStuff_accuser_seq(int)", null, (short)2));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2000, Grace.__$behaviorFactory8_rfield, Grace.__$precondition1_rfield, null, "bCrisisP1_TxnOut_BodyStuff_accuser_dia()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2001, Grace.__$behaviorFactory8_rfield, Grace.__$precondition1_rfield, null, "bCrisisP1_TxnOut_BodyStuff_accuser_dia()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2002, Grace.__$behaviorFactory8_rfield, Grace.__$precondition1_rfield, null, "bCrisisP1_TxnOut_BodyStuff_accuser_dia2()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2003, Grace.__$behaviorFactory8_rfield, Grace.__$precondition1_rfield, null, "bCrisisP1_TxnOut_BodyStuff_accuser_dia2()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2004, Grace.__$behaviorFactory8_rfield, Grace.__$precondition1_rfield, null, "bCrisisP1_TxnOut_BodyStuff_accuser_dia2()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2005, Grace.__$behaviorFactory8_rfield, Grace.__$precondition1_rfield, null, "bCrisisP1_TxnOut_BodyStuff_accuser_dia()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2006, Grace.__$behaviorFactory8_rfield, Grace.__$precondition1_rfield, null, "bCrisisP1_TxnOut_BodyStuff_accuser_dia()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2007, Grace.__$behaviorFactory8_rfield, Grace.__$precondition1_rfield, null, "bCrisisP1_TxnOut_BodyStuff_accuser_dia2()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2008, Grace.__$behaviorFactory8_rfield, Grace.__$precondition1_rfield, null, "bCrisisP1_TxnOut_BodyStuff_accuser_dia2()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2009, Grace.__$behaviorFactory8_rfield, Grace.__$precondition1_rfield, null, "bCrisisP1_TxnOut_BodyStuff_accuser_dia2()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2010, Grace.__$behaviorFactory8_rfield, null, null, "bCrisisP1_TxnOut_BodyStuff_accuser_seq(int)", null, (short)1));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2011, Grace.__$behaviorFactory8_rfield, Grace.__$precondition1_rfield, null, "bCrisisP1_TxnOut_BodyStuff_accuser_nonanswer_dia()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2012, Grace.__$behaviorFactory8_rfield, Grace.__$precondition1_rfield, null, "bCrisisP1_TxnOut_BodyStuff_accuser_nonanswer_dia()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2013, Grace.__$behaviorFactory8_rfield, Grace.__$precondition1_rfield, null, "bCrisisP1_TxnOut_BodyStuff_accuser_nonanswer_dia()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2014, Grace.__$behaviorFactory8_rfield, Grace.__$precondition1_rfield, null, "bCrisisP1_TxnOut_BodyStuff_accuser_nonanswer_dia()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2016, Grace.__$behaviorFactory8_rfield, Grace.__$precondition1_rfield, null, "bCrisisP1_TxnOut_BodyStuff_accused_seq(int)", null, (short)2));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2017, Grace.__$behaviorFactory8_rfield, null, null, "bCrisisP1_TxnOut_BodyStuff_accused_seq(int)", null, (short)1));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2019, Grace.__$behaviorFactory8_rfield, null, null, "bCrisisP1_TxnOut_DramaticQuestion_BodyStuff_accuser_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2021, Grace.__$behaviorFactory8_rfield, null, null, "bCrisisP1_TxnOut_DramaticQuestion_BodyStuff_accused_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2024, Grace.__$behaviorFactory8_rfield, Grace.__$precondition1_rfield, null, "bCrisisP1_TxnOut_BodyStuff2_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2025, Grace.__$behaviorFactory8_rfield, Grace.__$precondition1_rfield, null, "bCrisisP1_TxnOut_BodyStuff2_dia1(int)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2026, Grace.__$behaviorFactory8_rfield, Grace.__$precondition1_rfield, null, "bCrisisP1_TxnOut_BodyStuff2_dia1(int)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2027, Grace.__$behaviorFactory8_rfield, Grace.__$precondition1_rfield, null, "bCrisisP1_TxnOut_BodyStuff2_dia1(int)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2028, Grace.__$behaviorFactory8_rfield, Grace.__$precondition1_rfield, null, "bCrisisP1_TxnOut_BodyStuff2_dia2(int)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2029, Grace.__$behaviorFactory8_rfield, Grace.__$precondition1_rfield, null, "bCrisisP1_TxnOut_BodyStuff2_dia2(int)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2030, Grace.__$behaviorFactory8_rfield, Grace.__$precondition1_rfield, null, "bCrisisP1_TxnOut_BodyStuff2_dia2(int)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2031, Grace.__$behaviorFactory8_rfield, Grace.__$precondition1_rfield, null, "bCrisisP1_TxnOut_BodyStuff2_dia1(int)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2032, Grace.__$behaviorFactory8_rfield, Grace.__$precondition1_rfield, null, "bCrisisP1_TxnOut_BodyStuff2_dia1(int)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2033, Grace.__$behaviorFactory8_rfield, Grace.__$precondition1_rfield, null, "bCrisisP1_TxnOut_BodyStuff2_dia1(int)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2034, Grace.__$behaviorFactory9_rfield, Grace.__$precondition1_rfield, null, "bCrisisP1_TxnOut_BodyStuff2_dia2(int)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2035, Grace.__$behaviorFactory9_rfield, Grace.__$precondition1_rfield, null, "bCrisisP1_TxnOut_BodyStuff2_dia2(int)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2036, Grace.__$behaviorFactory9_rfield, Grace.__$precondition1_rfield, null, "bCrisisP1_TxnOut_BodyStuff2_dia1(int)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2037, Grace.__$behaviorFactory9_rfield, Grace.__$precondition1_rfield, null, "bCrisisP1_TxnOut_BodyStuff2_dia1(int)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2038, Grace.__$behaviorFactory9_rfield, Grace.__$precondition2_rfield, null, "bCrisisP1_TxnOut_BodyStuff2_dia2(int)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2039, Grace.__$behaviorFactory9_rfield, Grace.__$precondition2_rfield, null, "bCrisisP1_TxnOut_BodyStuff2_dia2(int)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2040, Grace.__$behaviorFactory9_rfield, Grace.__$precondition2_rfield, null, "bCrisisP1_TxnOut_BodyStuff2_dia1(int)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2041, Grace.__$behaviorFactory9_rfield, Grace.__$precondition2_rfield, null, "bCrisisP1_TxnOut_BodyStuff2_dia1(int)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2042, Grace.__$behaviorFactory9_rfield, Grace.__$precondition2_rfield, null, "bCrisisP1_TxnOut_BodyStuff2_dia1(int)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2043, Grace.__$behaviorFactory9_rfield, Grace.__$precondition2_rfield, null, "bCrisisP1_TxnOut_BodyStuff2_dia2(int)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2044, Grace.__$behaviorFactory9_rfield, Grace.__$precondition2_rfield, null, "bCrisisP1_TxnOut_BodyStuff2_dia2(int)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2045, Grace.__$behaviorFactory9_rfield, Grace.__$precondition2_rfield, null, "bCrisisP1_TxnOut_BodyStuff2_dia2(int)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2046, Grace.__$behaviorFactory9_rfield, Grace.__$precondition2_rfield, null, "bCrisisP1_TxnOut_BodyStuff2_dia1(int)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2047, Grace.__$behaviorFactory9_rfield, Grace.__$precondition2_rfield, null, "bCrisisP1_TxnOut_BodyStuff2_dia1(int)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2048, Grace.__$behaviorFactory9_rfield, Grace.__$precondition2_rfield, null, "bCrisisP1_TxnOut_BodyStuff2_dia1(int)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2049, Grace.__$behaviorFactory9_rfield, Grace.__$precondition2_rfield, null, "bCrisisP1_TxnOut_BodyStuff2_dia2(int)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2050, Grace.__$behaviorFactory9_rfield, Grace.__$precondition2_rfield, null, "bCrisisP1_TxnOut_BodyStuff2_dia2(int)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2051, Grace.__$behaviorFactory9_rfield, Grace.__$precondition2_rfield, null, "bCrisisP1_TxnOut_BodyStuff2_dia1(int)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2052, Grace.__$behaviorFactory9_rfield, Grace.__$precondition2_rfield, null, "bCrisisP1_TxnOut_BodyStuff2_dia1(int)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2053, Grace.__$behaviorFactory9_rfield, Grace.__$precondition2_rfield, null, "bCrisisP1_TxnOut_BodyStuff2_dia2(int)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2054, Grace.__$behaviorFactory9_rfield, Grace.__$precondition2_rfield, null, "bCrisisP1_TxnOut_BodyStuff2_dia2(int)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2055, Grace.__$behaviorFactory9_rfield, Grace.__$precondition2_rfield, null, "bCrisisP1_Accusation_MildRxn_dia()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2056, Grace.__$behaviorFactory9_rfield, Grace.__$precondition2_rfield, null, "bCrisisP1_Accusation_MildRxn_dia()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2057, Grace.__$behaviorFactory9_rfield, Grace.__$precondition2_rfield, null, "bCrisisP1_Accusation_MildRxn_dia()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2058, Grace.__$behaviorFactory9_rfield, Grace.__$precondition2_rfield, null, "bCrisisP1_Accusation_MildRxn_dia()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2059, Grace.__$behaviorFactory9_rfield, Grace.__$precondition2_rfield, null, "bCrisisP1_Accusation_MildRxn_dia()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2060, Grace.__$behaviorFactory9_rfield, Grace.__$precondition2_rfield, null, "bCrisisP1_Accusation_MildRxn_dia()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2061, Grace.__$behaviorFactory9_rfield, Grace.__$precondition2_rfield, null, "bCrisisP1_Accusation_MildRxn_dia()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2062, Grace.__$behaviorFactory9_rfield, Grace.__$precondition2_rfield, null, "bCrisisP1_Accusation_MildRxn_dia()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2063, Grace.__$behaviorFactory9_rfield, Grace.__$precondition2_rfield, null, "bCrisisP1_Accusation_StrongRxn_dia()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2064, Grace.__$behaviorFactory9_rfield, Grace.__$precondition2_rfield, null, "bCrisisP1_Accusation_StrongRxn_dia()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2065, Grace.__$behaviorFactory9_rfield, Grace.__$precondition2_rfield, null, "bCrisisP1_Accusation_StrongRxn_dia()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2066, Grace.__$behaviorFactory9_rfield, Grace.__$precondition2_rfield, null, "bCrisisP1_Accusation_StrongRxn_dia()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2067, Grace.__$behaviorFactory9_rfield, Grace.__$precondition2_rfield, null, "bCrisisP1_Accusation_StrongRxn_dia()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2068, Grace.__$behaviorFactory9_rfield, Grace.__$precondition2_rfield, null, "bCrisisP1_Accusation_StrongRxn_dia()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2069, Grace.__$behaviorFactory9_rfield, Grace.__$precondition2_rfield, null, "bCrisisP1_Accusation_StrongRxn_dia()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2070, Grace.__$behaviorFactory9_rfield, Grace.__$precondition2_rfield, null, "bCrisisP1_Accusation_StrongRxn_dia()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2072, Grace.__$behaviorFactory9_rfield, null, null, "bCrisisP1_NonAnswer_BodyStuff_dia(int)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2074, Grace.__$behaviorFactory9_rfield, null, null, "bCrisisP1_BeatMixinNonSpeaker_BodyStuff()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2076, Grace.__$behaviorFactory9_rfield, null, null, "bCrisisP1_MildDisagreement_BodyStuff_dia(int)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2079, Grace.__$behaviorFactory9_rfield, null, null, "bCrisisP1_ReferToDrinks_BodyStuff_dia(int)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2082, Grace.__$behaviorFactory9_rfield, null, null, "bCrisisP1_Praise_BodyStuff_dia(int)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2085, Grace.__$behaviorFactory9_rfield, null, null, "bCrisisP1_Criticize_BodyStuff_dia(int)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2088, Grace.__$behaviorFactory9_rfield, null, null, "bCrisisP1_Flirt_BodyStuff_dia(int)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2091, Grace.__$behaviorFactory9_rfield, null, null, "bCrisisP1_StrongDisagreement_BodyStuff_dia(int)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2094, Grace.__$behaviorFactory9_rfield, null, null, "bCrisisP1_Repeat_BodyStuff_dia(int)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2097, Grace.__$behaviorFactory9_rfield, Grace.__$precondition2_rfield, Grace.__$preconditionSensorFactory0_rfield, "bC2TGGlue_Stage(boolean, boolean)", null, (short)2));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2098, Grace.__$behaviorFactory9_rfield, Grace.__$precondition2_rfield, Grace.__$preconditionSensorFactory0_rfield, "bC2TGGlue_Stage(boolean, boolean)", null, (short)1));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2099, Grace.__$behaviorFactory9_rfield, Grace.__$precondition2_rfield, null, "bC2TGGlue_Stage_causeMixin(boolean)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2102, Grace.__$behaviorFactory9_rfield, Grace.__$precondition2_rfield, null, "bC2TGGlue_Vent1_BodyStuff_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2103, Grace.__$behaviorFactory9_rfield, Grace.__$precondition2_rfield, null, "bC2TGGlue_Vent1_BodyStuff_furious_dia()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2104, Grace.__$behaviorFactory9_rfield, Grace.__$precondition2_rfield, null, "bC2TGGlue_Vent1_BodyStuff_furious_dia()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2105, Grace.__$behaviorFactory9_rfield, Grace.__$precondition2_rfield, null, "bC2TGGlue_Vent1_BodyStuff_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2106, Grace.__$behaviorFactory9_rfield, Grace.__$precondition2_rfield, null, "bC2TGGlue_Vent1_BodyStuff_upset_dia()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2107, Grace.__$behaviorFactory9_rfield, Grace.__$precondition2_rfield, null, "bC2TGGlue_Vent1_BodyStuff_upset_dia()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2110, Grace.__$behaviorFactory9_rfield, Grace.__$precondition2_rfield, null, "bC2TGGlue_Vent1_BodyStuff2_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2111, Grace.__$behaviorFactory9_rfield, Grace.__$precondition2_rfield, null, "bC2TGGlue_Vent1_BodyStuff2_furious_dia()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2112, Grace.__$behaviorFactory9_rfield, Grace.__$precondition2_rfield, null, "bC2TGGlue_Vent1_BodyStuff2_furious_dia()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2113, Grace.__$behaviorFactory9_rfield, Grace.__$precondition2_rfield, null, "bC2TGGlue_Vent1_BodyStuff2_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2114, Grace.__$behaviorFactory9_rfield, Grace.__$precondition2_rfield, null, "bC2TGGlue_Vent1_BodyStuff2_upset_dia()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2115, Grace.__$behaviorFactory9_rfield, Grace.__$precondition2_rfield, null, "bC2TGGlue_Vent1_BodyStuff2_upset_dia()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2120, Grace.__$behaviorFactory9_rfield, Grace.__$precondition2_rfield, null, "bC2TGGlue_Vent2_BodyStuff_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2121, Grace.__$behaviorFactory9_rfield, Grace.__$precondition2_rfield, null, "bC2TGGlue_Vent2_BodyStuff_furious_dia()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2122, Grace.__$behaviorFactory9_rfield, Grace.__$precondition2_rfield, null, "bC2TGGlue_Vent2_BodyStuff_furious_dia()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2123, Grace.__$behaviorFactory9_rfield, Grace.__$precondition2_rfield, null, "bC2TGGlue_Vent2_BodyStuff_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2124, Grace.__$behaviorFactory9_rfield, Grace.__$precondition2_rfield, null, "bC2TGGlue_Vent2_BodyStuff_upset_dia()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2125, Grace.__$behaviorFactory9_rfield, Grace.__$precondition2_rfield, null, "bC2TGGlue_Vent2_BodyStuff_upset_dia()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2128, Grace.__$behaviorFactory9_rfield, Grace.__$precondition2_rfield, null, "bC2TGGlue_Vent2_BodyStuff2_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2129, Grace.__$behaviorFactory9_rfield, Grace.__$precondition2_rfield, null, "bC2TGGlue_Vent2_BodyStuff2_furious_dia()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2130, Grace.__$behaviorFactory9_rfield, Grace.__$precondition2_rfield, null, "bC2TGGlue_Vent2_BodyStuff2_furious_dia()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2131, Grace.__$behaviorFactory9_rfield, Grace.__$precondition2_rfield, null, "bC2TGGlue_Vent2_BodyStuff2_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2132, Grace.__$behaviorFactory9_rfield, Grace.__$precondition2_rfield, null, "bC2TGGlue_Vent2_BodyStuff2_upset_dia()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2133, Grace.__$behaviorFactory9_rfield, Grace.__$precondition2_rfield, null, "bC2TGGlue_Vent2_BodyStuff2_upset_dia()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2136, Grace.__$behaviorFactory9_rfield, Grace.__$precondition2_rfield, null, "bC2TGGlue_Vent2_BodyStuff3_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2137, Grace.__$behaviorFactory9_rfield, Grace.__$precondition2_rfield, null, "bC2TGGlue_Vent2_BodyStuff3_furious_dia()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2138, Grace.__$behaviorFactory9_rfield, Grace.__$precondition2_rfield, null, "bC2TGGlue_Vent2_BodyStuff3_furious_dia()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2139, Grace.__$behaviorFactory9_rfield, Grace.__$precondition2_rfield, null, "bC2TGGlue_Vent2_BodyStuff3_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2140, Grace.__$behaviorFactory9_rfield, Grace.__$precondition2_rfield, null, "bC2TGGlue_Vent2_BodyStuff3_upset_dia()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2141, Grace.__$behaviorFactory9_rfield, Grace.__$precondition2_rfield, null, "bC2TGGlue_Vent2_BodyStuff3_upset_dia()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2143, Grace.__$behaviorFactory9_rfield, Grace.__$precondition2_rfield, null, "bC2TGGlue_Vent2_BodyStuff4_me_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2144, Grace.__$behaviorFactory9_rfield, Grace.__$precondition2_rfield, null, "bC2TGGlue_Vent2_BodyStuff4_furious_dia()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2145, Grace.__$behaviorFactory9_rfield, Grace.__$precondition2_rfield, null, "bC2TGGlue_Vent2_BodyStuff4_furious_dia()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2146, Grace.__$behaviorFactory9_rfield, Grace.__$precondition2_rfield, null, "bC2TGGlue_Vent2_BodyStuff4_me_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2147, Grace.__$behaviorFactory9_rfield, Grace.__$precondition2_rfield, null, "bC2TGGlue_Vent2_BodyStuff4_upset_dia()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2148, Grace.__$behaviorFactory9_rfield, Grace.__$precondition2_rfield, null, "bC2TGGlue_Vent2_BodyStuff4_upset_dia()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2149, Grace.__$behaviorFactory9_rfield, Grace.__$precondition2_rfield, null, "bC2TGGlue_Vent2_BodyStuff4_dia2()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2150, Grace.__$behaviorFactory9_rfield, Grace.__$precondition2_rfield, null, "bC2TGGlue_Vent2_BodyStuff4_dia2()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2152, Grace.__$behaviorFactory9_rfield, null, null, "bC2TGGlue_Vent2_BodyStuff4_notme_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2153, Grace.__$behaviorFactory9_rfield, Grace.__$precondition2_rfield, null, "bC2TGGlue_Vent2_BodyStuff4_fromkitchen_dia()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2154, Grace.__$behaviorFactory9_rfield, Grace.__$precondition2_rfield, null, "bC2TGGlue_Vent2_BodyStuff4_fromkitchen_dia()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2157, Grace.__$behaviorFactory9_rfield, Grace.__$precondition2_rfield, null, "bC2TGGlue_Mixin_BodyStuff_seq(int)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2158, Grace.__$behaviorFactory9_rfield, Grace.__$precondition2_rfield, null, "bC2TGGlue_Mixin_BodyStuff_hugcomfort_dia()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2159, Grace.__$behaviorFactory9_rfield, Grace.__$precondition2_rfield, null, "bC2TGGlue_Mixin_BodyStuff_hugcomfort_dia()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2160, Grace.__$behaviorFactory9_rfield, Grace.__$precondition2_rfield, null, "bC2TGGlue_Mixin_BodyStuff_seq(int)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2161, Grace.__$behaviorFactory9_rfield, Grace.__$precondition2_rfield, null, "bC2TGGlue_Mixin_BodyStuff_agree_dia()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2162, Grace.__$behaviorFactory9_rfield, Grace.__$precondition2_rfield, null, "bC2TGGlue_Mixin_BodyStuff_agree_dia()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2163, Grace.__$behaviorFactory9_rfield, Grace.__$precondition2_rfield, null, "bC2TGGlue_Mixin_BodyStuff_seq(int)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2164, Grace.__$behaviorFactory9_rfield, Grace.__$precondition2_rfield, null, "bC2TGGlue_Mixin_BodyStuff_disagree_dia()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2165, Grace.__$behaviorFactory9_rfield, Grace.__$precondition2_rfield, null, "bC2TGGlue_Mixin_BodyStuff_disagree_dia()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2166, Grace.__$behaviorFactory9_rfield, Grace.__$precondition2_rfield, null, "bC2TGGlue_Mixin_BodyStuff_seq(int)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2167, Grace.__$behaviorFactory9_rfield, Grace.__$precondition2_rfield, null, "bC2TGGlue_Mixin_BodyStuff_praise_dia()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2168, Grace.__$behaviorFactory9_rfield, Grace.__$precondition2_rfield, null, "bC2TGGlue_Mixin_BodyStuff_praise_dia()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2169, Grace.__$behaviorFactory9_rfield, Grace.__$precondition2_rfield, null, "bC2TGGlue_Mixin_BodyStuff_praise_dia()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2170, Grace.__$behaviorFactory9_rfield, Grace.__$precondition2_rfield, null, "bC2TGGlue_Mixin_BodyStuff_praise_dia()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2171, Grace.__$behaviorFactory9_rfield, Grace.__$precondition2_rfield, null, "bC2TGGlue_Mixin_BodyStuff_seq(int)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2172, Grace.__$behaviorFactory9_rfield, Grace.__$precondition2_rfield, null, "bC2TGGlue_Mixin_BodyStuff_criticize_dia()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2173, Grace.__$behaviorFactory9_rfield, Grace.__$precondition2_rfield, null, "bC2TGGlue_Mixin_BodyStuff_criticize_dia()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2174, Grace.__$behaviorFactory9_rfield, Grace.__$precondition2_rfield, null, "bC2TGGlue_Mixin_BodyStuff_seq(int)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2175, Grace.__$behaviorFactory9_rfield, Grace.__$precondition2_rfield, null, "bC2TGGlue_Mixin_BodyStuff_flirt_dia()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2176, Grace.__$behaviorFactory9_rfield, Grace.__$precondition2_rfield, null, "bC2TGGlue_Mixin_BodyStuff_flirt_dia()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2177, Grace.__$behaviorFactory9_rfield, Grace.__$precondition2_rfield, null, "bC2TGGlue_Mixin_BodyStuff_seq(int)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2178, Grace.__$behaviorFactory9_rfield, Grace.__$precondition2_rfield, null, "bC2TGGlue_Mixin_BodyStuff_kiss_dia()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2179, Grace.__$behaviorFactory9_rfield, Grace.__$precondition2_rfield, null, "bC2TGGlue_Mixin_BodyStuff_kiss_dia()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2180, Grace.__$behaviorFactory9_rfield, Grace.__$precondition2_rfield, null, "bC2TGGlue_Mixin_BodyStuff_seq(int)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2181, Grace.__$behaviorFactory9_rfield, Grace.__$precondition2_rfield, null, "bC2TGGlue_Mixin_BodyStuff_explain_dia()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2182, Grace.__$behaviorFactory9_rfield, Grace.__$precondition2_rfield, null, "bC2TGGlue_Mixin_BodyStuff_explain_dia()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2183, Grace.__$behaviorFactory9_rfield, Grace.__$precondition2_rfield, null, "bC2TGGlue_Mixin_BodyStuff_seq(int)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2184, Grace.__$behaviorFactory9_rfield, Grace.__$precondition2_rfield, null, "bC2TGGlue_Mixin_BodyStuff_cometooclose_dia()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2185, Grace.__$behaviorFactory9_rfield, Grace.__$precondition2_rfield, null, "bC2TGGlue_Mixin_BodyStuff_cometooclose_dia()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2186, Grace.__$behaviorFactory9_rfield, Grace.__$precondition2_rfield, null, "bC2TGGlue_Mixin_BodyStuff_seq(int)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2187, Grace.__$behaviorFactory9_rfield, Grace.__$precondition2_rfield, null, "bC2TGGlue_Mixin_BodyStuff_gotofrontdoor_dia()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2188, Grace.__$behaviorFactory9_rfield, Grace.__$precondition2_rfield, null, "bC2TGGlue_Mixin_BodyStuff_gotofrontdoor_dia()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2189, Grace.__$behaviorFactory9_rfield, Grace.__$precondition2_rfield, null, "bC2TGGlue_Mixin_BodyStuff_gotofrontdoor_dia()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2191, Grace.__$behaviorFactory9_rfield, null, null, "bC2TGGlue_Mixin_BodyStuff2_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2192, Grace.__$behaviorFactory9_rfield, Grace.__$precondition2_rfield, null, "bC2TGGlue_Mixin_BodyStuff2_dia2()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2193, Grace.__$behaviorFactory9_rfield, Grace.__$precondition2_rfield, null, "bC2TGGlue_Mixin_BodyStuff2_dia2()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2195, Grace.__$behaviorFactory9_rfield, Grace.__$precondition2_rfield, null, "bC2TGGlue_Mixin_BodyStuff2_fromkitchen_dia()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2196, Grace.__$behaviorFactory9_rfield, Grace.__$precondition2_rfield, null, "bC2TGGlue_Mixin_BodyStuff2_fromkitchen_dia()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2199, Grace.__$behaviorFactory9_rfield, Grace.__$precondition2_rfield, null, "TherapyGameBeatGoal(int, int, int, int, int, int, int, int)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2200, Grace.__$behaviorFactory9_rfield, Grace.__$precondition2_rfield, null, "TherapyGameBeatGoal(int, int, int, int, int, int, int, int, int)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2201, Grace.__$behaviorFactory9_rfield, Grace.__$precondition2_rfield, null, "TherapyGameBeatGoal(int, int, int, int, int, int, int, int, int, int, int, int, int, int, int, int)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2202, Grace.__$behaviorFactory9_rfield, Grace.__$precondition2_rfield, null, "TherapyGameBeatGoal(int, int, int, int, int, int, int, int, int, int, int, int, int, int, int, int, int, int, int, int, int, int, int)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2203, Grace.__$behaviorFactory9_rfield, Grace.__$precondition2_rfield, null, "TherapyGameBeatGoal(int, int, int, int, int, int, int, int, int, int, int, int, int, int, int, int, int, int, int, int, int, int, int, int, int, int, int, int, int)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2204, Grace.__$behaviorFactory9_rfield, Grace.__$precondition2_rfield, null, "TherapyGameBeatGoal_setup(int)", null, (short)2));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2205, Grace.__$behaviorFactory9_rfield, null, null, "TherapyGameBeatGoal_setup(int, int)", null, (short)1));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2206, Grace.__$behaviorFactory9_rfield, null, null, "TherapyGameBeatGoal_setup_mustDo()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2207, Grace.__$behaviorFactory9_rfield, Grace.__$precondition2_rfield, null, "TherapyGameBeatGoalStuff_signalNewCharFocus_setup()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2208, Grace.__$behaviorFactory9_rfield, Grace.__$precondition2_rfield, null, "TherapyGameBeatGoalStuff_signalPlayerNewMixinScoreIncrease_setup(int, int)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2210, Grace.__$behaviorFactory9_rfield, Grace.__$precondition2_rfield, null, "TherapyGameBeatGoalStuff_interruptible(int, boolean)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2211, Grace.__$behaviorFactory9_rfield, Grace.__$precondition2_rfield, null, "TherapyGameBeatGoalStuff_crossArms(boolean)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2212, Grace.__$behaviorFactory9_rfield, Grace.__$precondition2_rfield, null, "TherapyGameBeatGoalStuff_crossAkimbo(boolean)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2213, Grace.__$behaviorFactory9_rfield, null, null, "TherapyGameBeatGoalStuff_seq(int, int, int, int, int, int, int, int, int, int, int, int, int, int, int, int, int, int, int, int, int, int, int, int, int, int, int, int)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2214, Grace.__$behaviorFactory9_rfield, Grace.__$precondition2_rfield, null, "TherapyGameBeatGoalStuff_signalNewCharFocus()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2215, Grace.__$behaviorFactory9_rfield, Grace.__$precondition2_rfield, null, "TherapyGameBeatGoalStuff_signalPlayerNewMixinScoreIncrease()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2216, Grace.__$behaviorFactory9_rfield, Grace.__$precondition2_rfield, null, "TherapyGameBeatGoalStuff_dia(int, int, int, int, int, int, int, boolean)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2217, Grace.__$behaviorFactory9_rfield, Grace.__$precondition2_rfield, null, "TherapyGameBeatGoalStuff_dia(int, int, int, int, int, int, int, boolean)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2218, Grace.__$behaviorFactory9_rfield, null, null, "TherapyGameBeatGoalStuff_dia_wait(int)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2219, Grace.__$behaviorFactory9_rfield, Grace.__$precondition2_rfield, null, "TherapyGameBeatGoalStuff_dia_wait_waitfor(int)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2220, Grace.__$behaviorFactory9_rfield, Grace.__$precondition2_rfield, null, "TherapyGameBeatGoalStuff_dia_wait_waitfor(int)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2221, Grace.__$behaviorFactory9_rfield, Grace.__$precondition2_rfield, null, "TherapyGameBeatGoalStuff_dia(int, int, int, int, int, int, int, boolean)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2222, Grace.__$behaviorFactory9_rfield, Grace.__$precondition2_rfield, Grace.__$preconditionSensorFactory0_rfield, "TherapyGameBeatGoalStuff_stage(boolean, int)", null, (short)2));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2223, Grace.__$behaviorFactory9_rfield, null, null, "TherapyGameBeatGoalStuff_stage(boolean, int)", null, (short)1));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2224, Grace.__$behaviorFactory9_rfield, Grace.__$precondition2_rfield, null, "TherapyGameBeatGoalStuff_stage_doIt(float, float, float, boolean, boolean, int)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2225, Grace.__$behaviorFactory9_rfield, Grace.__$precondition2_rfield, null, "TherapyGameBeatGoalStuff_stage_doIt(float, float, float, boolean, boolean, int)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2226, Grace.__$behaviorFactory9_rfield, Grace.__$precondition2_rfield, null, "TherapyGameBeatGoalStuff_stage_doIt(float, float, float, boolean, boolean, int)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2227, Grace.__$behaviorFactory9_rfield, Grace.__$precondition2_rfield, null, "TherapyGameBeatGoalStuff_gaze(int, int, int)", null, (short)2));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2228, Grace.__$behaviorFactory9_rfield, null, null, "TherapyGameBeatGoalStuff_gaze(int, int, int)", null, (short)1));
}
private static final void registerBehaviors_1(final BehaviorLibrary behaviorLibrary) {
behaviorLibrary.registerBehavior(new __BehaviorDesc(2229, Grace.__$behaviorFactory9_rfield, null, null, "TherapyGame_waiting_doGazeLooks()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2230, Grace.__$behaviorFactory9_rfield, null, null, "TherapyGame_waiting_doGazeLooks_alt()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2231, Grace.__$behaviorFactory9_rfield, null, null, "TherapyGame_waiting_doGazeLooks_alt()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2232, Grace.__$behaviorFactory9_rfield, null, null, "TherapyGame_waiting_doGazeLooks_alt()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2233, Grace.__$behaviorFactory9_rfield, null, null, "TherapyGame_waiting_doEyesShut_alt()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2234, Grace.__$behaviorFactory9_rfield, null, null, "TherapyGame_waiting_doEyesShut_alt()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2235, Grace.__$behaviorFactory9_rfield, null, null, "TherapyGame_waiting_doEyesShut_alt()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2236, Grace.__$behaviorFactory9_rfield, null, null, "TherapyGame_waiting_doFacialExpressions()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2237, Grace.__$behaviorFactory9_rfield, null, null, "TherapyGame_waiting_doFacialExpressions_alt()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2238, Grace.__$behaviorFactory9_rfield, null, null, "TherapyGame_waiting_doFacialExpressions_alt()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2239, Grace.__$behaviorFactory9_rfield, null, null, "TherapyGame_waiting_doFacialExpressions_alt()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2240, Grace.__$behaviorFactory9_rfield, null, null, "TherapyGame_waiting_doFacialExpressions_alt()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2241, Grace.__$behaviorFactory9_rfield, null, null, "TherapyGame_waiting_doFacialExpressions_alt()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2242, Grace.__$behaviorFactory9_rfield, null, null, "TherapyGame_waiting_doFacialExpressions_alt()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2243, Grace.__$behaviorFactory9_rfield, null, null, "TherapyGame_waiting_doFacialExpressions_alt()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2244, Grace.__$behaviorFactory9_rfield, null, null, "TherapyGame_waiting_doFacialExpressions_alt_lilaxn()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2245, Grace.__$behaviorFactory9_rfield, null, null, "TherapyGame_waiting_doFacialExpressions_alt_lilaxn()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2246, Grace.__$behaviorFactory9_rfield, null, null, "TherapyGame_waiting_doFacialExpressions_alt_lilaxn()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2250, Grace.__$behaviorFactory9_rfield, null, null, "bRevBuildupP2_TxnIn_Body()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2252, Grace.__$behaviorFactory9_rfield, null, null, "bRevBuildupP2_NonSpeaker()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2253, Grace.__$behaviorFactory9_rfield, null, null, "bRevBuildupP2_NonSpeaker()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2254, Grace.__$behaviorFactory9_rfield, null, null, "bRevBuildupP2_NonSpeaker()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2256, Grace.__$behaviorFactory9_rfield, null, null, "bRevBuildupP2_TxnIn_BodyStuff_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2257, Grace.__$behaviorFactory9_rfield, Grace.__$precondition2_rfield, null, "bRevBuildupP2_TxnIn_BodyStuff_dia1()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2258, Grace.__$behaviorFactory9_rfield, Grace.__$precondition2_rfield, null, "bRevBuildupP2_TxnIn_BodyStuff_dia1()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2259, Grace.__$behaviorFactory9_rfield, Grace.__$precondition2_rfield, null, "bRevBuildupP2_TxnIn_BodyStuff_dia2()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2260, Grace.__$behaviorFactory10_rfield, Grace.__$precondition2_rfield, null, "bRevBuildupP2_TxnIn_BodyStuff_dia2()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2261, Grace.__$behaviorFactory10_rfield, Grace.__$precondition2_rfield, null, "bRevBuildupP2_TxnIn_BodyStuff_dia3()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2262, Grace.__$behaviorFactory10_rfield, Grace.__$precondition2_rfield, null, "bRevBuildupP2_TxnIn_BodyStuff_dia3()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2263, Grace.__$behaviorFactory10_rfield, Grace.__$precondition2_rfield, null, "bRevBuildupP2_TxnIn_BodyStuff_dia3()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2264, Grace.__$behaviorFactory10_rfield, Grace.__$precondition2_rfield, null, "bRevBuildupP2_TxnIn_BodyStuff_dia3()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2265, Grace.__$behaviorFactory10_rfield, Grace.__$precondition2_rfield, null, "bRevBuildupP2_TxnIn_BodyStuff_dia4()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2266, Grace.__$behaviorFactory10_rfield, Grace.__$precondition2_rfield, null, "bRevBuildupP2_TxnIn_BodyStuff_dia4()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2267, Grace.__$behaviorFactory10_rfield, Grace.__$precondition2_rfield, null, "bRevBuildupP2_TxnIn_BodyStuff_dia4()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2268, Grace.__$behaviorFactory10_rfield, Grace.__$precondition2_rfield, null, "bRevBuildupP2_TxnIn_BodyStuff_dia4()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2269, Grace.__$behaviorFactory10_rfield, Grace.__$precondition2_rfield, null, "bRevBuildupP2_TxnIn_BodyStuff_dia4()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2270, Grace.__$behaviorFactory10_rfield, Grace.__$precondition2_rfield, null, "bRevBuildupP2_TxnIn_BodyStuff_dia4()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2271, Grace.__$behaviorFactory10_rfield, null, null, "bRevBuildupP2_TxnIn_mixin_Body()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2273, Grace.__$behaviorFactory10_rfield, null, null, "bRevBuildupP2_mixin_NonSpeaker_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2275, Grace.__$behaviorFactory10_rfield, null, null, "bRevBuildupP2_TxnIn_mixin_BodyStuff_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2276, Grace.__$behaviorFactory10_rfield, Grace.__$precondition2_rfield, null, "bRevBuildupP2_TxnIn_mixin_BodyStuff_dia()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2277, Grace.__$behaviorFactory10_rfield, Grace.__$precondition2_rfield, null, "bRevBuildupP2_TxnIn_mixin_BodyStuff_dia()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2278, Grace.__$behaviorFactory10_rfield, null, null, "bRevBuildupP2_Body2_Body()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2281, Grace.__$behaviorFactory10_rfield, null, null, "bRevBuildupP2_Body2_BodyStuff_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2282, Grace.__$behaviorFactory10_rfield, Grace.__$precondition2_rfield, null, "bRevBuildupP2_Body2_BodyStuff_dia1()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2283, Grace.__$behaviorFactory10_rfield, Grace.__$precondition2_rfield, null, "bRevBuildupP2_Body2_BodyStuff_dia1()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2284, Grace.__$behaviorFactory10_rfield, Grace.__$precondition2_rfield, null, "bRevBuildupP2_Body2_BodyStuff_dia2()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2285, Grace.__$behaviorFactory10_rfield, Grace.__$precondition2_rfield, null, "bRevBuildupP2_Body2_BodyStuff_dia2()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2287, Grace.__$behaviorFactory10_rfield, null, null, "bRevBuildupP2_Body2_BodyStuff2_nonspeaker_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2288, Grace.__$behaviorFactory10_rfield, Grace.__$precondition2_rfield, null, "bRevBuildupP2_Body2_BodyStuff2_nonspeaker_dia()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2289, Grace.__$behaviorFactory10_rfield, Grace.__$precondition2_rfield, null, "bRevBuildupP2_Body2_BodyStuff2_nonspeaker_dia()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2291, Grace.__$behaviorFactory10_rfield, null, null, "bRevBuildupP2_Body2_BodyStuff2_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2292, Grace.__$behaviorFactory10_rfield, Grace.__$precondition2_rfield, null, "bRevBuildupP2_Body2_BodyStuff2_dia1()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2293, Grace.__$behaviorFactory10_rfield, Grace.__$precondition2_rfield, null, "bRevBuildupP2_Body2_BodyStuff2_dia1()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2296, Grace.__$behaviorFactory10_rfield, null, null, "bRevBuildupP2_Body2_BodyStuff3_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2297, Grace.__$behaviorFactory10_rfield, Grace.__$precondition2_rfield, null, "bRevBuildupP2_Body2_BodyStuff3_dia1()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2298, Grace.__$behaviorFactory10_rfield, Grace.__$precondition2_rfield, null, "bRevBuildupP2_Body2_BodyStuff3_dia1()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2299, Grace.__$behaviorFactory10_rfield, null, null, "bRevBuildupP2_Body2_mixin_Body()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2302, Grace.__$behaviorFactory10_rfield, null, null, "bRevBuildupP2_Body2_mixin_BodyStuff_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2303, Grace.__$behaviorFactory10_rfield, Grace.__$precondition2_rfield, null, "bRevBuildupP2_Body2_mixin_BodyStuff_dia()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2304, Grace.__$behaviorFactory10_rfield, Grace.__$precondition2_rfield, null, "bRevBuildupP2_Body2_mixin_BodyStuff_dia()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2305, Grace.__$behaviorFactory10_rfield, null, null, "bRevBuildupP2_Body2b_Body()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2306, Grace.__$behaviorFactory10_rfield, Grace.__$precondition2_rfield, null, "bRevBuildupP2_Body2b_Body_p2()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2311, Grace.__$behaviorFactory10_rfield, null, null, "bRevBuildupP2_Body3a_Body()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2314, Grace.__$behaviorFactory10_rfield, null, null, "bRevBuildupP2_Body3a_BodyStuff_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2315, Grace.__$behaviorFactory10_rfield, Grace.__$precondition2_rfield, null, "bRevBuildupP2_Body3a_BodyStuff_dia1()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2316, Grace.__$behaviorFactory10_rfield, Grace.__$precondition2_rfield, null, "bRevBuildupP2_Body3a_BodyStuff_dia1()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2317, Grace.__$behaviorFactory10_rfield, Grace.__$precondition2_rfield, null, "bRevBuildupP2_Body3a_BodyStuff_dia1()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2318, Grace.__$behaviorFactory10_rfield, Grace.__$precondition2_rfield, null, "bRevBuildupP2_Body3a_BodyStuff_dia1()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2319, Grace.__$behaviorFactory10_rfield, null, null, "bRevBuildupP2_Body3_mixin_Body()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2322, Grace.__$behaviorFactory10_rfield, null, null, "bRevBuildupP2_Body3_mixin_BodyStuff_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2323, Grace.__$behaviorFactory10_rfield, Grace.__$precondition2_rfield, null, "bRevBuildupP2_Body3_mixin_BodyStuff_dia()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2324, Grace.__$behaviorFactory10_rfield, Grace.__$precondition2_rfield, null, "bRevBuildupP2_Body3_mixin_BodyStuff_dia()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2325, Grace.__$behaviorFactory10_rfield, null, null, "bRevBuildupP2_Body3b_Body()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2328, Grace.__$behaviorFactory10_rfield, Grace.__$precondition2_rfield, null, "bRevBuildupP2_Body3b_BodyStuff_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2329, Grace.__$behaviorFactory10_rfield, Grace.__$precondition2_rfield, null, "bRevBuildupP2_Body3b_BodyStuff_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2330, Grace.__$behaviorFactory10_rfield, null, null, "bRevBuildupP2_Body3b_Challenged_BodyStuff_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2331, Grace.__$behaviorFactory10_rfield, Grace.__$precondition2_rfield, null, "bRevBuildupP2_Body3b_Challenged_BodyStuff_dia1()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2332, Grace.__$behaviorFactory10_rfield, Grace.__$precondition2_rfield, null, "bRevBuildupP2_Body3b_Challenged_BodyStuff_dia1()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2333, Grace.__$behaviorFactory10_rfield, Grace.__$precondition2_rfield, null, "bRevBuildupP2_Body3b_Challenged_BodyStuff_dia1()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2334, Grace.__$behaviorFactory10_rfield, Grace.__$precondition2_rfield, null, "bRevBuildupP2_Body3b_Challenged_BodyStuff_dia1()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2335, Grace.__$behaviorFactory10_rfield, null, null, "bRevBuildupP2_Body3b_BodyStuff_seq2()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2336, Grace.__$behaviorFactory10_rfield, Grace.__$precondition2_rfield, null, "bRevBuildupP2_Body3b_BodyStuff_dia2()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2337, Grace.__$behaviorFactory10_rfield, Grace.__$precondition2_rfield, null, "bRevBuildupP2_Body3b_BodyStuff_dia2()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2338, Grace.__$behaviorFactory10_rfield, null, null, "bRevBuildupP2_Body3b_notChallenged_BodyStuff_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2339, Grace.__$behaviorFactory10_rfield, Grace.__$precondition2_rfield, null, "bRevBuildupP2_Body3b_NotChallenged_BodyStuff_dia1()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2340, Grace.__$behaviorFactory10_rfield, Grace.__$precondition2_rfield, null, "bRevBuildupP2_Body3b_NotChallenged_BodyStuff_dia1()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2343, Grace.__$behaviorFactory10_rfield, null, null, "bRevBuildupP2_Body3b_BodyStuff2_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2344, Grace.__$behaviorFactory10_rfield, Grace.__$precondition2_rfield, null, "bRevBuildupP2_Body3b_BodyStuff2_dia()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2345, Grace.__$behaviorFactory10_rfield, Grace.__$precondition2_rfield, null, "bRevBuildupP2_Body3b_BodyStuff2_dia()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2346, Grace.__$behaviorFactory10_rfield, null, null, "bRevBuildupP2_Body4a_Body()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2349, Grace.__$behaviorFactory10_rfield, null, null, "bRevBuildupP2_Body4a_BodyStuff_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2350, Grace.__$behaviorFactory10_rfield, Grace.__$precondition2_rfield, null, "bRevBuildupP2_Body4a_BodyStuff_dia1()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2351, Grace.__$behaviorFactory10_rfield, Grace.__$precondition2_rfield, null, "bRevBuildupP2_Body4a_BodyStuff_dia1()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2352, Grace.__$behaviorFactory10_rfield, Grace.__$precondition2_rfield, null, "bRevBuildupP2_Body4a_BodyStuff_dia2()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2353, Grace.__$behaviorFactory10_rfield, Grace.__$precondition2_rfield, null, "bRevBuildupP2_Body4a_BodyStuff_dia2()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2354, Grace.__$behaviorFactory10_rfield, Grace.__$precondition2_rfield, null, "bRevBuildupP2_Body4b_Body()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2357, Grace.__$behaviorFactory10_rfield, null, null, "bRevBuildupP2_Body4b_BodyStuff_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2358, Grace.__$behaviorFactory10_rfield, Grace.__$precondition2_rfield, null, "bRevBuildupP2_Body4b_BodyStuff_dia1()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2359, Grace.__$behaviorFactory10_rfield, Grace.__$precondition2_rfield, null, "bRevBuildupP2_Body4b_BodyStuff_dia1()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2360, Grace.__$behaviorFactory10_rfield, null, null, "bRevBuildupP2_Body4c_Body()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2363, Grace.__$behaviorFactory10_rfield, null, null, "bRevBuildupP2_Body4c_BodyStuff_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2364, Grace.__$behaviorFactory10_rfield, Grace.__$precondition2_rfield, null, "bRevBuildupP2_Body4c_BodyStuff_dia1()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2365, Grace.__$behaviorFactory10_rfield, Grace.__$precondition2_rfield, null, "bRevBuildupP2_Body4c_BodyStuff_dia1()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2366, Grace.__$behaviorFactory10_rfield, Grace.__$precondition2_rfield, null, "bRevBuildupP2_Body4c_BodyStuff_dia1()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2367, Grace.__$behaviorFactory10_rfield, Grace.__$precondition2_rfield, null, "bRevBuildupP2_Body4c_BodyStuff_dia1()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2368, Grace.__$behaviorFactory10_rfield, null, null, "bRevBuildupP2_Body4_mixin_Body()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2371, Grace.__$behaviorFactory10_rfield, null, null, "bRevBuildupP2_Body4_mixin_BodyStuff_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2372, Grace.__$behaviorFactory10_rfield, Grace.__$precondition2_rfield, null, "bRevBuildupP2_Body4_mixin_BodyStuff_dia()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2373, Grace.__$behaviorFactory10_rfield, Grace.__$precondition2_rfield, null, "bRevBuildupP2_Body4_mixin_BodyStuff_dia()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2374, Grace.__$behaviorFactory10_rfield, null, null, "bRevBuildupP2_Litany_Body(int)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2377, Grace.__$behaviorFactory10_rfield, null, null, "bRevBuildupP2_Litany_BodyStuff_seq(int)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2378, Grace.__$behaviorFactory10_rfield, null, null, "bRevBuildupP2_Litany_BodyStuff_gaze()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2379, Grace.__$behaviorFactory10_rfield, null, null, "bRevBuildupP2_Litany_BodyStuff_gaze()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2380, Grace.__$behaviorFactory10_rfield, null, null, "bRevBuildupP2_Litany_BodyStuff_eyelidHeight()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2381, Grace.__$behaviorFactory10_rfield, null, null, "bRevBuildupP2_Litany_BodyStuff_eyelidHeight()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2382, Grace.__$behaviorFactory10_rfield, null, null, "bRevBuildupP2_Litany_BodyStuff_dia(int)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2383, Grace.__$behaviorFactory10_rfield, null, null, "bRevBuildupP2_Body5_Body()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2386, Grace.__$behaviorFactory10_rfield, null, null, "bRevBuildupP2_Body5_BodyStuff_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2387, Grace.__$behaviorFactory10_rfield, Grace.__$precondition2_rfield, null, "bRevBuildupP2_Body5_BodyStuff_dia1()", null, (short)2));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2388, Grace.__$behaviorFactory10_rfield, Grace.__$precondition2_rfield, null, "bRevBuildupP2_Body5_BodyStuff_dia1()", null, (short)1));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2389, Grace.__$behaviorFactory10_rfield, Grace.__$precondition2_rfield, null, "bRevBuildupP2_Body5_BodyStuff_dia1()", null, (short)2));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2390, Grace.__$behaviorFactory10_rfield, Grace.__$precondition2_rfield, null, "bRevBuildupP2_Body5_BodyStuff_dia1()", null, (short)1));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2391, Grace.__$behaviorFactory10_rfield, Grace.__$precondition2_rfield, null, "bRevBuildupP2_Body5_BodyStuff_dia2()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2392, Grace.__$behaviorFactory10_rfield, Grace.__$precondition2_rfield, null, "bRevBuildupP2_Body5_BodyStuff_dia2()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2393, Grace.__$behaviorFactory10_rfield, Grace.__$precondition2_rfield, null, "bRevBuildupP2_Body5_BodyStuff_dia3()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2394, Grace.__$behaviorFactory10_rfield, Grace.__$precondition2_rfield, null, "bRevBuildupP2_Body5_BodyStuff_dia3()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2395, Grace.__$behaviorFactory10_rfield, null, null, "bRevBuildupP2_Body5_mixin_Body()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2398, Grace.__$behaviorFactory10_rfield, null, null, "bRevBuildupP2_Body5_mixin_BodyStuff_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2399, Grace.__$behaviorFactory10_rfield, Grace.__$precondition2_rfield, null, "bRevBuildupP2_Body5_mixin_BodyStuff_dia()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2400, Grace.__$behaviorFactory10_rfield, Grace.__$precondition2_rfield, null, "bRevBuildupP2_Body5_mixin_BodyStuff_dia()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2401, Grace.__$behaviorFactory10_rfield, null, null, "bRevBuildupP2_TxnOut_Body()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2404, Grace.__$behaviorFactory10_rfield, Grace.__$precondition2_rfield, null, "bRevBuildupP2_TxnOut_BodyStuff_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2405, Grace.__$behaviorFactory10_rfield, Grace.__$precondition2_rfield, null, "bRevBuildupP2_TxnOut_BodyStuff_yes_ch_dia1()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2406, Grace.__$behaviorFactory10_rfield, Grace.__$precondition2_rfield, null, "bRevBuildupP2_TxnOut_BodyStuff_yes_ch_dia1()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2407, Grace.__$behaviorFactory10_rfield, Grace.__$precondition2_rfield, null, "bRevBuildupP2_TxnOut_BodyStuff_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2408, Grace.__$behaviorFactory10_rfield, Grace.__$precondition2_rfield, null, "bRevBuildupP2_TxnOut_BodyStuff_notYes_ch_dia1()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2409, Grace.__$behaviorFactory10_rfield, Grace.__$precondition2_rfield, null, "bRevBuildupP2_TxnOut_BodyStuff_notYes_ch_dia1()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2410, Grace.__$behaviorFactory10_rfield, Grace.__$precondition2_rfield, null, "bRevBuildupP2_TxnOut_BodyStuff_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2411, Grace.__$behaviorFactory10_rfield, Grace.__$precondition2_rfield, null, "bRevBuildupP2_TxnOut_BodyStuff_yes_notCh_dia1()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2412, Grace.__$behaviorFactory10_rfield, Grace.__$precondition2_rfield, null, "bRevBuildupP2_TxnOut_BodyStuff_yes_notCh_dia1()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2413, Grace.__$behaviorFactory10_rfield, Grace.__$precondition2_rfield, null, "bRevBuildupP2_TxnOut_BodyStuff_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2414, Grace.__$behaviorFactory10_rfield, Grace.__$precondition2_rfield, null, "bRevBuildupP2_TxnOut_BodyStuff_notYes_notCh_dia1()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2415, Grace.__$behaviorFactory10_rfield, Grace.__$precondition2_rfield, null, "bRevBuildupP2_TxnOut_BodyStuff_notYes_notCh_dia1()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2416, Grace.__$behaviorFactory10_rfield, Grace.__$precondition2_rfield, null, "bRevBuildupP2_TxnOut_BodyStuff_notCh_dia2()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2417, Grace.__$behaviorFactory10_rfield, Grace.__$precondition2_rfield, null, "bRevBuildupP2_TxnOut_BodyStuff_notCh_dia2()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2418, Grace.__$behaviorFactory10_rfield, Grace.__$precondition2_rfield, null, "bRevBuildupP2_SaySomethingIfPlayerFleeing(boolean, int, int, int, int)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2419, Grace.__$behaviorFactory10_rfield, Grace.__$precondition2_rfield, null, "bRevBuildupP2_SaySomethingIfPlayerFleeing_preDia(boolean)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2420, Grace.__$behaviorFactory10_rfield, Grace.__$precondition2_rfield, null, "bRevBuildupP2_SaySomethingIfPlayerFleeing_preDia(boolean)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2421, Grace.__$behaviorFactory10_rfield, Grace.__$precondition2_rfield, null, "bRevBuildupP2_SaySomethingIfPlayerFleeing_dia(int, int, int, int)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2422, Grace.__$behaviorFactory10_rfield, Grace.__$precondition3_rfield, null, "bRevBuildupP2_SaySomethingIfPlayerFleeing_dia(int, int, int, int)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2423, Grace.__$behaviorFactory10_rfield, Grace.__$precondition3_rfield, null, "bRevBuildupP2_SaySomethingIfPlayerFleeing_dia(int, int, int, int)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2424, Grace.__$behaviorFactory10_rfield, Grace.__$precondition3_rfield, null, "bRevBuildupP2_SaySomethingIfPlayerFleeing_dia(int, int, int, int)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2429, Grace.__$behaviorFactory10_rfield, null, null, "bRevelationsP2_Rev_AA_G_BodyStuff_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2431, Grace.__$behaviorFactory10_rfield, null, null, "bRevelationsP2_Rev_AA_G_BodyStuff2_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2433, Grace.__$behaviorFactory10_rfield, null, null, "bRevelationsP2_Rev_AA_T_BodyStuff_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2435, Grace.__$behaviorFactory10_rfield, null, null, "bRevelationsP2_Rev_AA_R_BodyStuff_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2437, Grace.__$behaviorFactory10_rfield, null, null, "bRevelationsP2_Rev_F_G_BodyStuff_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2439, Grace.__$behaviorFactory10_rfield, null, null, "bRevelationsP2_Rev_F_T_BodyStuff_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2441, Grace.__$behaviorFactory10_rfield, null, null, "bRevelationsP2_Rev_F_R_BodyStuff_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2443, Grace.__$behaviorFactory10_rfield, null, null, "bRevelationsP2_Rev_RM_G_BodyStuff_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2445, Grace.__$behaviorFactory10_rfield, null, null, "bRevelationsP2_Rev_RM_T_BodyStuff_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2447, Grace.__$behaviorFactory10_rfield, null, null, "bRevelationsP2_Rev_RM_R_BodyStuff_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2448, Grace.__$behaviorFactory10_rfield, null, null, "bRevelationsP2_think()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2449, Grace.__$behaviorFactory10_rfield, null, null, "bRevelationsP2_think()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2450, Grace.__$behaviorFactory10_rfield, null, null, "bRevelationsP2_think()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2451, Grace.__$behaviorFactory10_rfield, null, null, "bRevelationsP2_think_afterDelay(float)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2454, Grace.__$behaviorFactory10_rfield, null, null, "bRevelationsP2_PostRev1_BodyStuff_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2455, Grace.__$behaviorFactory10_rfield, Grace.__$precondition3_rfield, null, "bRevelationsP2_PostRev1_BodyStuff_dia()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2456, Grace.__$behaviorFactory10_rfield, Grace.__$precondition3_rfield, null, "bRevelationsP2_PostRev1_BodyStuff_dia()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2459, Grace.__$behaviorFactory10_rfield, null, null, "bRevelationsP2_PostRev1_BodyStuff2_noMoreRevs_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2460, Grace.__$behaviorFactory10_rfield, null, null, "bRevelationsP2_PostRev1_BodyStuff2_noMoreRevs_seq2()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2461, Grace.__$behaviorFactory10_rfield, Grace.__$precondition3_rfield, null, "bRevelationsP2_PostRev1_BodyStuff2_noMoreRevs_dia()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2462, Grace.__$behaviorFactory10_rfield, Grace.__$precondition3_rfield, null, "bRevelationsP2_PostRev1_BodyStuff2_noMoreRevs_dia()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2464, Grace.__$behaviorFactory10_rfield, null, null, "bRevelationsP2_PostRev1_BodyStuff2_moreRevsMeAgain_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2465, Grace.__$behaviorFactory10_rfield, Grace.__$precondition3_rfield, null, "bRevelationsP2_PostRev1_BodyStuff2_moreRevsMeAgain_dia()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2466, Grace.__$behaviorFactory10_rfield, Grace.__$precondition3_rfield, null, "bRevelationsP2_PostRev1_BodyStuff2_moreRevsMeAgain_dia()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2467, Grace.__$behaviorFactory10_rfield, Grace.__$precondition3_rfield, null, "bRevelationsP2_PostRev1_BodyStuff2_moreRevsMeAgain_dia()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2468, Grace.__$behaviorFactory10_rfield, Grace.__$precondition3_rfield, null, "bRevelationsP2_PostRev1_BodyStuff2_moreRevsMeAgain_dia()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2470, Grace.__$behaviorFactory10_rfield, null, null, "bRevelationsP2_PostRev1_BodyStuff2_moreRevsMeAgain_other_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2471, Grace.__$behaviorFactory10_rfield, Grace.__$precondition3_rfield, null, "bRevelationsP2_PostRev1_BodyStuff2_moreRevsMeAgain_other_dia()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2472, Grace.__$behaviorFactory10_rfield, Grace.__$precondition3_rfield, null, "bRevelationsP2_PostRev1_BodyStuff2_moreRevsMeAgain_other_dia()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2474, Grace.__$behaviorFactory10_rfield, null, null, "bRevelationsP2_PostRev1_BodyStuff2_moreRevsNowOther_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2475, Grace.__$behaviorFactory10_rfield, Grace.__$precondition3_rfield, null, "bRevelationsP2_PostRev1_BodyStuff2_moreRevsNowOther_dia()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2476, Grace.__$behaviorFactory10_rfield, Grace.__$precondition3_rfield, null, "bRevelationsP2_PostRev1_BodyStuff2_moreRevsNowOther_dia()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2478, Grace.__$behaviorFactory10_rfield, null, null, "bRevelationsP2_PostRev1_BodyStuff2_moreRevsNowOther_other_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2479, Grace.__$behaviorFactory10_rfield, Grace.__$precondition3_rfield, null, "bRevelationsP2_PostRev1_BodyStuff2_moreRevsNowOther_other_dia1()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2480, Grace.__$behaviorFactory10_rfield, Grace.__$precondition3_rfield, null, "bRevelationsP2_PostRev1_BodyStuff2_moreRevsNowOther_other_dia1()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2481, Grace.__$behaviorFactory10_rfield, Grace.__$precondition3_rfield, null, "bRevelationsP2_PostRev1_BodyStuff2_moreRevsNowOther_other_dia2()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2482, Grace.__$behaviorFactory10_rfield, Grace.__$precondition3_rfield, null, "bRevelationsP2_PostRev1_BodyStuff2_moreRevsNowOther_other_dia2()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2485, Grace.__$behaviorFactory10_rfield, null, null, "bRevelationsP2_PostRev2_BodyStuff_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2486, Grace.__$behaviorFactory11_rfield, Grace.__$precondition3_rfield, null, "bRevelationsP2_PostRev2_BodyStuff_dia()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2487, Grace.__$behaviorFactory11_rfield, Grace.__$precondition3_rfield, null, "bRevelationsP2_PostRev2_BodyStuff_dia()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2490, Grace.__$behaviorFactory11_rfield, null, null, "bRevelationsP2_PostRev2_BodyStuff2_noMoreRevs_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2491, Grace.__$behaviorFactory11_rfield, null, null, "bRevelationsP2_PostRev2_BodyStuff2_noMoreRevs_seq2()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2492, Grace.__$behaviorFactory11_rfield, Grace.__$precondition3_rfield, null, "bRevelationsP2_PostRev2_BodyStuff2_noMoreRevs_dia()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2493, Grace.__$behaviorFactory11_rfield, Grace.__$precondition3_rfield, null, "bRevelationsP2_PostRev2_BodyStuff2_noMoreRevs_dia()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2495, Grace.__$behaviorFactory11_rfield, null, null, "bRevelationsP2_PostRev2_BodyStuff2_moreRevsMe_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2496, Grace.__$behaviorFactory11_rfield, Grace.__$precondition3_rfield, null, "bRevelationsP2_PostRev2_BodyStuff2_moreRevsMe_dia()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2497, Grace.__$behaviorFactory11_rfield, Grace.__$precondition3_rfield, null, "bRevelationsP2_PostRev2_BodyStuff2_moreRevsMe_dia()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2498, Grace.__$behaviorFactory11_rfield, Grace.__$precondition3_rfield, null, "bRevelationsP2_PostRev2_BodyStuff2_moreRevsMe_dia()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2499, Grace.__$behaviorFactory11_rfield, Grace.__$precondition3_rfield, null, "bRevelationsP2_PostRev2_BodyStuff2_moreRevsMe_dia()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2501, Grace.__$behaviorFactory11_rfield, null, null, "bRevelationsP2_PostRev2_BodyStuff2_moreRevsMe_other_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2502, Grace.__$behaviorFactory11_rfield, Grace.__$precondition3_rfield, null, "bRevelationsP2_PostRev2_BodyStuff2_moreRevsMe_other_dia()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2503, Grace.__$behaviorFactory11_rfield, Grace.__$precondition3_rfield, null, "bRevelationsP2_PostRev2_BodyStuff2_moreRevsMe_other_dia()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2508, Grace.__$behaviorFactory11_rfield, null, null, "bRevelationsP2_PostRev3_BodyStuff_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2509, Grace.__$behaviorFactory11_rfield, null, null, "bRevelationsP2_PostRev3_BodyStuff_seq2()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2510, Grace.__$behaviorFactory11_rfield, Grace.__$precondition3_rfield, null, "bRevelationsP2_PostRev3_BodyStuff_dia()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2511, Grace.__$behaviorFactory11_rfield, Grace.__$precondition3_rfield, null, "bRevelationsP2_PostRev3_BodyStuff_dia()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2512, Grace.__$behaviorFactory11_rfield, Grace.__$precondition3_rfield, null, "bRevelationsP2_PostRev3_BodyStuff_dia2()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2513, Grace.__$behaviorFactory11_rfield, Grace.__$precondition3_rfield, null, "bRevelationsP2_PostRev3_BodyStuff_dia2()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2514, Grace.__$behaviorFactory11_rfield, null, null, "bRevelationsP2_NonSpeaker_Gaze()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2515, Grace.__$behaviorFactory11_rfield, null, null, "bRevelationsP2_NonSpeaker_Gaze()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2516, Grace.__$behaviorFactory11_rfield, null, null, "bRevelationsP2_NonSpeaker_Gaze()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2517, Grace.__$behaviorFactory11_rfield, null, null, "bRevelationsP2_NonSpeaker_Eyelids()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2518, Grace.__$behaviorFactory11_rfield, null, null, "bRevelationsP2_NonSpeaker_Eyelids()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2520, Grace.__$behaviorFactory11_rfield, Grace.__$precondition3_rfield, Grace.__$preconditionSensorFactory0_rfield, "bEnding_StageToNearPlayer()", null, (short)2));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2521, Grace.__$behaviorFactory11_rfield, null, null, "bEnding_StageToNearPlayer()", null, (short)1));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2522, Grace.__$behaviorFactory11_rfield, Grace.__$precondition3_rfield, Grace.__$preconditionSensorFactory0_rfield, "bEnding_FailIfPlayerIsCloseToDoor()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2523, Grace.__$behaviorFactory11_rfield, Grace.__$precondition3_rfield, Grace.__$preconditionSensorFactory0_rfield, "bEnding_FailIfPlayerHasLeftApartment()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2524, Grace.__$behaviorFactory11_rfield, Grace.__$precondition3_rfield, Grace.__$preconditionSensorFactory0_rfield, "bEnding_PrintPlayerPos()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2525, Grace.__$behaviorFactory11_rfield, Grace.__$precondition3_rfield, Grace.__$preconditionSensorFactory0_rfield, "bEnding_EndExperienceIfPlayerHasNotLeftApartment()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2526, Grace.__$behaviorFactory11_rfield, null, null, "bEnding_waitForDoorToOpenWithTimeout(int)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2527, Grace.__$behaviorFactory11_rfield, null, null, "bEnding_waitForDoorCloseWithTimeout(int)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2528, Grace.__$behaviorFactory11_rfield, null, null, "bEndingNoRevs_Body1_Body(int)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2530, Grace.__$behaviorFactory11_rfield, null, null, "bEndingNoRevs_Body1_BodyStuff_ps_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2531, Grace.__$behaviorFactory11_rfield, Grace.__$precondition3_rfield, null, "bEndingNoRevs_Body1_BodyStuff_ps_predia()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2532, Grace.__$behaviorFactory11_rfield, Grace.__$precondition3_rfield, null, "bEndingNoRevs_Body1_BodyStuff_ps_predia()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2533, Grace.__$behaviorFactory11_rfield, Grace.__$precondition3_rfield, null, "bEndingNoRevs_Body1_BodyStuff_ps_dia()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2534, Grace.__$behaviorFactory11_rfield, Grace.__$precondition3_rfield, null, "bEndingNoRevs_Body1_BodyStuff_ps_dia()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2535, Grace.__$behaviorFactory11_rfield, Grace.__$precondition3_rfield, null, "bEndingNoRevs_Body1_BodyStuff_ps_dia2()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2536, Grace.__$behaviorFactory11_rfield, Grace.__$precondition3_rfield, null, "bEndingNoRevs_Body1_BodyStuff_ps_dia2()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2537, Grace.__$behaviorFactory11_rfield, Grace.__$precondition3_rfield, null, "bEndingNoRevs_Body1_BodyStuff_ps_dia3()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2538, Grace.__$behaviorFactory11_rfield, Grace.__$precondition3_rfield, null, "bEndingNoRevs_Body1_BodyStuff_ps_dia3()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2539, Grace.__$behaviorFactory11_rfield, Grace.__$precondition3_rfield, null, "bEndingNoRevs_Body1_BodyStuff_ps_dia4()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2540, Grace.__$behaviorFactory11_rfield, Grace.__$precondition3_rfield, null, "bEndingNoRevs_Body1_BodyStuff_ps_dia4()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2542, Grace.__$behaviorFactory11_rfield, null, null, "bEndingNoRevs_Body1_BodyStuff_nps_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2543, Grace.__$behaviorFactory11_rfield, Grace.__$precondition3_rfield, null, "bEndingNoRevs_Body1_BodyStuff_nps_dia()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2544, Grace.__$behaviorFactory11_rfield, Grace.__$precondition3_rfield, null, "bEndingNoRevs_Body1_BodyStuff_nps_dia()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2545, Grace.__$behaviorFactory11_rfield, Grace.__$precondition3_rfield, null, "bEndingNoRevs_Body1_BodyStuff_nps_dia2()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2546, Grace.__$behaviorFactory11_rfield, Grace.__$precondition3_rfield, null, "bEndingNoRevs_Body1_BodyStuff_nps_dia2()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2547, Grace.__$behaviorFactory11_rfield, Grace.__$precondition3_rfield, null, "bEndingNoRevs_Body1_BodyStuff_nps_dia3()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2548, Grace.__$behaviorFactory11_rfield, Grace.__$precondition3_rfield, null, "bEndingNoRevs_Body1_BodyStuff_nps_dia3()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2549, Grace.__$behaviorFactory11_rfield, null, null, "bEndingNoRevs_Body2_Body(int)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2551, Grace.__$behaviorFactory11_rfield, null, null, "bEndingNoRevs_Body2_BodyStuff_ps_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2552, Grace.__$behaviorFactory11_rfield, Grace.__$precondition3_rfield, null, "bEndingNoRevs_Body2_BodyStuff_ps_dia()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2553, Grace.__$behaviorFactory11_rfield, Grace.__$precondition3_rfield, null, "bEndingNoRevs_Body2_BodyStuff_ps_dia()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2554, Grace.__$behaviorFactory11_rfield, Grace.__$precondition3_rfield, null, "bEndingNoRevs_Body2_BodyStuff_ps_dia2()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2555, Grace.__$behaviorFactory11_rfield, Grace.__$precondition3_rfield, null, "bEndingNoRevs_Body2_BodyStuff_ps_dia2()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2557, Grace.__$behaviorFactory11_rfield, null, null, "bEndingNoRevs_Body2_BodyStuff_nps_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2558, Grace.__$behaviorFactory11_rfield, Grace.__$precondition3_rfield, null, "bEndingNoRevs_Body2_BodyStuff_nps_dia()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2559, Grace.__$behaviorFactory11_rfield, Grace.__$precondition3_rfield, null, "bEndingNoRevs_Body2_BodyStuff_nps_dia()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2560, Grace.__$behaviorFactory11_rfield, null, null, "bEndingNoRevs_Body3_Body(int)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2562, Grace.__$behaviorFactory11_rfield, null, null, "bEndingNoRevs_Body3_BodyStuff_ps_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2564, Grace.__$behaviorFactory11_rfield, null, null, "bEndingNoRevs_Body3_BodyStuff_nps_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2565, Grace.__$behaviorFactory11_rfield, Grace.__$precondition3_rfield, null, "bEndingNoRevs_Body3_BodyStuff_nps_dia()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2566, Grace.__$behaviorFactory11_rfield, Grace.__$precondition3_rfield, null, "bEndingNoRevs_Body3_BodyStuff_nps_dia()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2568, Grace.__$behaviorFactory11_rfield, null, null, "bEndingNoRevs_Body3_BodyStuff2_trip_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2569, Grace.__$behaviorFactory11_rfield, null, null, "bEndingNoRevs_Body3_BodyStuff2_trip_dia()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2570, Grace.__$behaviorFactory11_rfield, null, null, "bEndingNoRevs_Body3_BodyStuff2_trip_dia2()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2571, Grace.__$behaviorFactory11_rfield, null, null, "bEndingNoRevs_Body3_BodyStuff2_trip_dia3()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2573, Grace.__$behaviorFactory11_rfield, null, null, "bEndingNoRevs_Body3_BodyStuff2_grace_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2574, Grace.__$behaviorFactory11_rfield, null, null, "bEndingNoRevs_Body3_BodyStuff2_grace_dia()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2575, Grace.__$behaviorFactory11_rfield, null, null, "bEndingNoRevs_Body3_BodyStuff2_grace_dia2()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2576, Grace.__$behaviorFactory11_rfield, Grace.__$precondition3_rfield, null, "bEndingNoRevs_PossibleReactiveDialog_Speaker(int)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2577, Grace.__$behaviorFactory11_rfield, Grace.__$precondition3_rfield, null, "bEndingNoRevs_PossibleReactiveDialog_Speaker_dia(int, int, int)", null, (short)2));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2578, Grace.__$behaviorFactory11_rfield, Grace.__$precondition3_rfield, null, "bEndingNoRevs_PossibleReactiveDialog_Speaker_dia(int, int, int)", null, (short)2));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2579, Grace.__$behaviorFactory11_rfield, Grace.__$precondition3_rfield, null, "bEndingNoRevs_PossibleReactiveDialog_Speaker_dia(int, int, int)", null, (short)2));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2580, Grace.__$behaviorFactory11_rfield, Grace.__$precondition3_rfield, null, "bEndingNoRevs_PossibleReactiveDialog_Speaker_dia(int, int, int)", null, (short)2));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2581, Grace.__$behaviorFactory11_rfield, Grace.__$precondition3_rfield, null, "bEndingNoRevs_PossibleReactiveDialog_Speaker_dia(int, int, int)", null, (short)2));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2582, Grace.__$behaviorFactory11_rfield, Grace.__$precondition3_rfield, null, "bEndingNoRevs_PossibleReactiveDialog_Speaker_dia(int, int, int)", null, (short)2));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2583, Grace.__$behaviorFactory11_rfield, Grace.__$precondition3_rfield, null, "bEndingNoRevs_PossibleReactiveDialog_Speaker_dia(int, int, int)", null, (short)2));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2584, Grace.__$behaviorFactory11_rfield, Grace.__$precondition3_rfield, null, "bEndingNoRevs_PossibleReactiveDialog_Speaker_dia(int, int, int)", null, (short)2));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2585, Grace.__$behaviorFactory11_rfield, Grace.__$precondition3_rfield, null, "bEndingNoRevs_PossibleReactiveDialog_Speaker_dia(int, int, int)", null, (short)2));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2586, Grace.__$behaviorFactory11_rfield, Grace.__$precondition3_rfield, null, "bEndingNoRevs_PossibleReactiveDialog_Speaker_dia(int, int, int)", null, (short)2));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2587, Grace.__$behaviorFactory11_rfield, Grace.__$precondition3_rfield, null, "bEndingNoRevs_PossibleReactiveDialog_Speaker_dia(int, int, int)", null, (short)2));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2588, Grace.__$behaviorFactory11_rfield, Grace.__$precondition3_rfield, null, "bEndingNoRevs_PossibleReactiveDialog_Speaker_dia(int, int, int)", null, (short)2));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2589, Grace.__$behaviorFactory11_rfield, Grace.__$precondition3_rfield, null, "bEndingNoRevs_PossibleReactiveDialog_Speaker_dia(int, int, int)", null, (short)2));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2590, Grace.__$behaviorFactory11_rfield, Grace.__$precondition3_rfield, null, "bEndingNoRevs_PossibleReactiveDialog_Speaker_dia(int, int, int)", null, (short)2));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2591, Grace.__$behaviorFactory11_rfield, Grace.__$precondition3_rfield, null, "bEndingNoRevs_PossibleReactiveDialog_Speaker_dia(int, int, int)", null, (short)2));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2592, Grace.__$behaviorFactory11_rfield, Grace.__$precondition3_rfield, null, "bEndingNoRevs_PossibleReactiveDialog_Speaker_dia(int, int, int)", null, (short)2));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2593, Grace.__$behaviorFactory11_rfield, null, null, "bEndingNoRevs_PossibleReactiveDialog_Speaker_dia(int, int, int)", null, (short)1));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2594, Grace.__$behaviorFactory11_rfield, Grace.__$precondition3_rfield, null, "bEndingNoRevs_PossibleReactiveDialog_NonSpeaker()", null, (short)2));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2595, Grace.__$behaviorFactory11_rfield, null, null, "bEndingNoRevs_PossibleReactiveDialog_NonSpeaker()", null, (short)1));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2597, Grace.__$behaviorFactory11_rfield, Grace.__$precondition3_rfield, null, "bEndingNoRevs_Mixin_BodyStuff_facial(int)", null, (short)2));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2598, Grace.__$behaviorFactory11_rfield, Grace.__$precondition3_rfield, null, "bEndingNoRevs_Mixin_BodyStuff_facial(int)", null, (short)2));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2599, Grace.__$behaviorFactory11_rfield, Grace.__$precondition3_rfield, null, "bEndingNoRevs_Mixin_BodyStuff_facial(int)", null, (short)2));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2600, Grace.__$behaviorFactory11_rfield, null, null, "bEndingNoRevs_Mixin_BodyStuff_facial(int)", null, (short)1));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2602, Grace.__$behaviorFactory11_rfield, null, null, "bEnding_StageToFrontDoor(int)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2603, Grace.__$behaviorFactory11_rfield, null, null, "bEnding_StageToNearFrontDoor(int)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2604, Grace.__$behaviorFactory11_rfield, null, null, "bEnding_LeaveApartment()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2605, Grace.__$behaviorFactory11_rfield, null, null, "bEnding_EndExperienceIfPlayerInFoyer()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2606, Grace.__$behaviorFactory11_rfield, null, null, "bEndingSelfsOnly_Body1_Body(int)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2608, Grace.__$behaviorFactory11_rfield, null, null, "bEndingSelfsOnly_Body1_BodyStuff_ps_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2609, Grace.__$behaviorFactory11_rfield, Grace.__$precondition3_rfield, null, "bEndingSelfsOnly_Body1_BodyStuff_ps_dia()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2610, Grace.__$behaviorFactory11_rfield, Grace.__$precondition3_rfield, null, "bEndingSelfsOnly_Body1_BodyStuff_ps_dia()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2612, Grace.__$behaviorFactory11_rfield, null, null, "bEndingSelfsOnly_Body1_BodyStuff_nps_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2613, Grace.__$behaviorFactory11_rfield, Grace.__$precondition3_rfield, null, "bEndingSelfsOnly_Body1_BodyStuff_nps_dia()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2614, Grace.__$behaviorFactory11_rfield, Grace.__$precondition3_rfield, null, "bEndingSelfsOnly_Body1_BodyStuff_nps_dia()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2615, Grace.__$behaviorFactory11_rfield, null, null, "bEndingSelfsOnly_Body2_Body(int)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2617, Grace.__$behaviorFactory11_rfield, null, null, "bEndingSelfsOnly_Body2_BodyStuff_ps_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2618, Grace.__$behaviorFactory11_rfield, Grace.__$precondition3_rfield, null, "bEndingSelfsOnly_Body2_BodyStuff_ps_dia()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2619, Grace.__$behaviorFactory11_rfield, Grace.__$precondition3_rfield, null, "bEndingSelfsOnly_Body2_BodyStuff_ps_dia()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2620, Grace.__$behaviorFactory11_rfield, Grace.__$precondition3_rfield, null, "bEndingSelfsOnly_Body2_BodyStuff_ps_dia2()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2621, Grace.__$behaviorFactory11_rfield, Grace.__$precondition3_rfield, null, "bEndingSelfsOnly_Body2_BodyStuff_ps_dia2()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2623, Grace.__$behaviorFactory11_rfield, null, null, "bEndingSelfsOnly_Body2_BodyStuff_nps_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2624, Grace.__$behaviorFactory11_rfield, Grace.__$precondition3_rfield, null, "bEndingSelfsOnly_Body2_BodyStuff_nps_dia()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2625, Grace.__$behaviorFactory11_rfield, Grace.__$precondition3_rfield, null, "bEndingSelfsOnly_Body2_BodyStuff_nps_dia()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2626, Grace.__$behaviorFactory11_rfield, null, null, "bEndingSelfsOnly_Body3_Body(int)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2628, Grace.__$behaviorFactory11_rfield, null, null, "bEndingSelfsOnly_Body3_BodyStuff_ps_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2629, Grace.__$behaviorFactory11_rfield, Grace.__$precondition3_rfield, null, "bEndingSelfsOnly_Body3_BodyStuff_ps_dia()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2630, Grace.__$behaviorFactory11_rfield, Grace.__$precondition3_rfield, null, "bEndingSelfsOnly_Body3_BodyStuff_ps_dia()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2631, Grace.__$behaviorFactory11_rfield, Grace.__$precondition3_rfield, null, "bEndingSelfsOnly_Body3_BodyStuff_ps_dia2()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2632, Grace.__$behaviorFactory11_rfield, Grace.__$precondition3_rfield, null, "bEndingSelfsOnly_Body3_BodyStuff_ps_dia2()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2634, Grace.__$behaviorFactory11_rfield, null, null, "bEndingSelfsOnly_Body3_BodyStuff_nps_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2635, Grace.__$behaviorFactory11_rfield, Grace.__$precondition3_rfield, null, "bEndingSelfsOnly_Body3_BodyStuff_nps_dia()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2636, Grace.__$behaviorFactory11_rfield, Grace.__$precondition3_rfield, null, "bEndingSelfsOnly_Body3_BodyStuff_nps_dia()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2637, Grace.__$behaviorFactory11_rfield, Grace.__$precondition3_rfield, null, "bEndingSelfsOnly_Body4_Body(int)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2639, Grace.__$behaviorFactory11_rfield, null, null, "bEndingSelfsOnly_Body4_BodyStuff_ps_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2640, Grace.__$behaviorFactory11_rfield, Grace.__$precondition3_rfield, null, "bEndingSelfsOnly_Body4_BodyStuff_ps_dia()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2641, Grace.__$behaviorFactory11_rfield, Grace.__$precondition3_rfield, null, "bEndingSelfsOnly_Body4_BodyStuff_ps_dia()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2643, Grace.__$behaviorFactory11_rfield, null, null, "bEndingSelfsOnly_Body4_BodyStuff_nps_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2644, Grace.__$behaviorFactory11_rfield, null, null, "bEndingSelfsOnly_Body5_Body(int)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2646, Grace.__$behaviorFactory11_rfield, null, null, "bEndingSelfsOnly_Body5_BodyStuff_ps_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2647, Grace.__$behaviorFactory11_rfield, Grace.__$precondition3_rfield, null, "bEndingSelfsOnly_Body5_BodyStuff_ps_dia()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2648, Grace.__$behaviorFactory11_rfield, Grace.__$precondition3_rfield, null, "bEndingSelfsOnly_Body5_BodyStuff_ps_dia()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2649, Grace.__$behaviorFactory11_rfield, Grace.__$precondition3_rfield, null, "bEndingSelfsOnly_Body5_BodyStuff_ps_dia()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2650, Grace.__$behaviorFactory11_rfield, Grace.__$precondition3_rfield, null, "bEndingSelfsOnly_Body5_BodyStuff_ps_dia()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2652, Grace.__$behaviorFactory11_rfield, null, null, "bEndingSelfsOnly_Body5_BodyStuff_nps_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2653, Grace.__$behaviorFactory11_rfield, null, null, "bEndingSelfsOnly_Body5_BodyStuff_nps_upset()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2654, Grace.__$behaviorFactory11_rfield, Grace.__$precondition3_rfield, null, "bEndingSelfsOnly_Body5_BodyStuff_nps_dia()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2655, Grace.__$behaviorFactory11_rfield, Grace.__$precondition3_rfield, null, "bEndingSelfsOnly_Body5_BodyStuff_nps_dia()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2656, Grace.__$behaviorFactory11_rfield, Grace.__$precondition3_rfield, null, "bEndingSelfsOnly_Body5_BodyStuff_nps_dia2()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2657, Grace.__$behaviorFactory11_rfield, Grace.__$precondition3_rfield, null, "bEndingSelfsOnly_Body5_BodyStuff_nps_dia2()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2658, Grace.__$behaviorFactory11_rfield, Grace.__$precondition3_rfield, null, "bEndingSelfsOnly_Body5_BodyStuff_nps_dia2()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2659, Grace.__$behaviorFactory11_rfield, Grace.__$precondition3_rfield, null, "bEndingSelfsOnly_Body5_BodyStuff_nps_dia2()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2660, Grace.__$behaviorFactory11_rfield, null, null, "bEndingSelfsOnly_Body6_Body(int)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2662, Grace.__$behaviorFactory11_rfield, null, null, "bEndingSelfsOnly_Body6_BodyStuff_ps_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2663, Grace.__$behaviorFactory11_rfield, Grace.__$precondition3_rfield, null, "bEndingSelfsOnly_Body6_BodyStuff_ps_dia()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2664, Grace.__$behaviorFactory11_rfield, Grace.__$precondition3_rfield, null, "bEndingSelfsOnly_Body6_BodyStuff_ps_dia()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2666, Grace.__$behaviorFactory11_rfield, null, null, "bEndingSelfsOnly_Body6_BodyStuff_nps_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2667, Grace.__$behaviorFactory11_rfield, null, null, "bEndingSelfsOnly_Body7_Body(int)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2669, Grace.__$behaviorFactory11_rfield, null, null, "bEndingSelfsOnly_Body7_BodyStuff_ps_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2671, Grace.__$behaviorFactory11_rfield, null, null, "bEndingSelfsOnly_Body7_BodyStuff_nps_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2672, Grace.__$behaviorFactory11_rfield, Grace.__$precondition3_rfield, null, "bEndingSelfsOnly_Body7_BodyStuff_nps_dia()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2673, Grace.__$behaviorFactory11_rfield, Grace.__$precondition3_rfield, null, "bEndingSelfsOnly_Body7_BodyStuff_nps_dia()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2674, Grace.__$behaviorFactory11_rfield, Grace.__$precondition3_rfield, null, "bEndingSelfsOnly_Body7_BodyStuff_nps_dia2()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2675, Grace.__$behaviorFactory11_rfield, Grace.__$precondition3_rfield, null, "bEndingSelfsOnly_Body7_BodyStuff_nps_dia2()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2676, Grace.__$behaviorFactory11_rfield, null, null, "bEndingSelfsOnly_Body8_Body(int)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2679, Grace.__$behaviorFactory11_rfield, null, null, "bEndingSelfsOnly_Body8_BodyStuff_nps_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2680, Grace.__$behaviorFactory11_rfield, Grace.__$precondition3_rfield, null, "bEndingSelfsOnly_Body8_BodyStuff_nps_dia()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2681, Grace.__$behaviorFactory11_rfield, Grace.__$precondition3_rfield, null, "bEndingSelfsOnly_Body8_BodyStuff_nps_dia()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2682, Grace.__$behaviorFactory11_rfield, Grace.__$precondition3_rfield, null, "bEndingSelfsOnly_Body8_BodyStuff_nps_dia2()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2683, Grace.__$behaviorFactory11_rfield, Grace.__$precondition3_rfield, null, "bEndingSelfsOnly_Body8_BodyStuff_nps_dia2()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2684, Grace.__$behaviorFactory11_rfield, Grace.__$precondition3_rfield, null, "bEndingSelfsOnly_Body8_BodyStuff_nps_dia3()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2685, Grace.__$behaviorFactory11_rfield, Grace.__$precondition3_rfield, null, "bEndingSelfsOnly_Body8_BodyStuff_nps_dia3()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2687, Grace.__$behaviorFactory11_rfield, Grace.__$precondition3_rfield, null, "bEnding_RecountRevs_BodyStuff_ps_seq(int, boolean)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2688, Grace.__$behaviorFactory11_rfield, Grace.__$precondition3_rfield, null, "bEnding_RecountRevs_BodyStuff_ps_dia(int, int, int)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2689, Grace.__$behaviorFactory11_rfield, Grace.__$precondition3_rfield, null, "bEnding_RecountRevs_BodyStuff_ps_dia(int, int, int)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2690, Grace.__$behaviorFactory11_rfield, Grace.__$precondition3_rfield, null, "bEnding_RecountRevs_BodyStuff_ps_dia(int, int, int)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2691, Grace.__$behaviorFactory11_rfield, Grace.__$precondition3_rfield, null, "bEnding_RecountRevs_BodyStuff_ps_dia(int, int, int)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2692, Grace.__$behaviorFactory11_rfield, Grace.__$precondition3_rfield, null, "bEnding_RecountRevs_BodyStuff_ps_dia(int, int, int)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2693, Grace.__$behaviorFactory11_rfield, Grace.__$precondition3_rfield, null, "bEnding_RecountRevs_BodyStuff_ps_dia(int, int, int)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2694, Grace.__$behaviorFactory11_rfield, Grace.__$precondition3_rfield, null, "bEnding_RecountRevs_BodyStuff_ps_dia(int, int, int)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2695, Grace.__$behaviorFactory11_rfield, Grace.__$precondition3_rfield, null, "bEnding_RecountRevs_BodyStuff_ps_dia(int, int, int)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2696, Grace.__$behaviorFactory11_rfield, Grace.__$precondition3_rfield, null, "bEnding_RecountRevs_BodyStuff_ps_dia(int, int, int)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2697, Grace.__$behaviorFactory11_rfield, Grace.__$precondition3_rfield, null, "bEnding_RecountRevs_BodyStuff_ps_dia(int, int, int)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2698, Grace.__$behaviorFactory11_rfield, Grace.__$precondition3_rfield, null, "bEnding_RecountRevs_BodyStuff_ps_dia(int, int, int)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2699, Grace.__$behaviorFactory11_rfield, Grace.__$precondition3_rfield, null, "bEnding_RecountRevs_BodyStuff_ps_dia(int, int, int)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2700, Grace.__$behaviorFactory11_rfield, null, null, "bEnding_RecountRevs_BodyStuff_ps_dia_doIt(int, int, int, int)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2703, Grace.__$behaviorFactory11_rfield, null, null, "bEndingGorT_ReactiveDialog_BodyStuff_ps_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2705, Grace.__$behaviorFactory11_rfield, null, null, "bEndingGorT_ReactiveDialog_BodyStuff_nps_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2706, Grace.__$behaviorFactory11_rfield, Grace.__$precondition3_rfield, null, "bEndingGorT_PossibleReactiveDialog_Speaker(int)", null, (short)2));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2707, Grace.__$behaviorFactory11_rfield, Grace.__$precondition3_rfield, null, "bEndingGorT_PossibleReactiveDialog_Speaker(int)", null, (short)1));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2708, Grace.__$behaviorFactory11_rfield, Grace.__$precondition3_rfield, null, "bEndingGorT_PossibleReactiveDialog_Speaker_dia(int, int, int)", null, (short)2));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2709, Grace.__$behaviorFactory11_rfield, Grace.__$precondition3_rfield, null, "bEndingGorT_PossibleReactiveDialog_Speaker_dia(int, int, int)", null, (short)2));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2710, Grace.__$behaviorFactory11_rfield, Grace.__$precondition3_rfield, null, "bEndingGorT_PossibleReactiveDialog_Speaker_dia(int, int, int)", null, (short)2));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2711, Grace.__$behaviorFactory11_rfield, Grace.__$precondition3_rfield, null, "bEndingGorT_PossibleReactiveDialog_Speaker_dia(int, int, int)", null, (short)2));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2712, Grace.__$behaviorFactory12_rfield, Grace.__$precondition3_rfield, null, "bEndingGorT_PossibleReactiveDialog_Speaker_dia(int, int, int)", null, (short)2));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2713, Grace.__$behaviorFactory12_rfield, Grace.__$precondition3_rfield, null, "bEndingGorT_PossibleReactiveDialog_Speaker_dia(int, int, int)", null, (short)2));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2714, Grace.__$behaviorFactory12_rfield, Grace.__$precondition3_rfield, null, "bEndingGorT_PossibleReactiveDialog_Speaker_dia(int, int, int)", null, (short)2));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2715, Grace.__$behaviorFactory12_rfield, Grace.__$precondition3_rfield, null, "bEndingGorT_PossibleReactiveDialog_Speaker_dia(int, int, int)", null, (short)2));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2716, Grace.__$behaviorFactory12_rfield, Grace.__$precondition3_rfield, null, "bEndingGorT_PossibleReactiveDialog_Speaker_dia(int, int, int)", null, (short)2));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2717, Grace.__$behaviorFactory12_rfield, Grace.__$precondition3_rfield, null, "bEndingGorT_PossibleReactiveDialog_Speaker_dia(int, int, int)", null, (short)2));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2718, Grace.__$behaviorFactory12_rfield, Grace.__$precondition3_rfield, null, "bEndingGorT_PossibleReactiveDialog_Speaker_dia(int, int, int)", null, (short)2));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2719, Grace.__$behaviorFactory12_rfield, Grace.__$precondition3_rfield, null, "bEndingGorT_PossibleReactiveDialog_Speaker_dia(int, int, int)", null, (short)2));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2720, Grace.__$behaviorFactory12_rfield, Grace.__$precondition3_rfield, null, "bEndingGorT_PossibleReactiveDialog_Speaker_dia(int, int, int)", null, (short)2));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2721, Grace.__$behaviorFactory12_rfield, Grace.__$precondition3_rfield, null, "bEndingGorT_PossibleReactiveDialog_Speaker_dia(int, int, int)", null, (short)2));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2722, Grace.__$behaviorFactory12_rfield, Grace.__$precondition3_rfield, null, "bEndingGorT_PossibleReactiveDialog_Speaker_dia(int, int, int)", null, (short)2));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2723, Grace.__$behaviorFactory12_rfield, Grace.__$precondition3_rfield, null, "bEndingGorT_PossibleReactiveDialog_Speaker_dia(int, int, int)", null, (short)2));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2724, Grace.__$behaviorFactory12_rfield, null, null, "bEndingGorT_PossibleReactiveDialog_Speaker_dia(int, int, int)", null, (short)1));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2725, Grace.__$behaviorFactory12_rfield, Grace.__$precondition3_rfield, null, "bEndingGorT_PossibleReactiveDialog_NonSpeaker()", null, (short)2));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2726, Grace.__$behaviorFactory12_rfield, Grace.__$precondition3_rfield, null, "bEndingGorT_PossibleReactiveDialog_NonSpeaker()", null, (short)1));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2728, Grace.__$behaviorFactory12_rfield, Grace.__$precondition3_rfield, null, "bEndingGorT_Mixin_BodyStuff_facial(int)", null, (short)2));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2729, Grace.__$behaviorFactory12_rfield, Grace.__$precondition3_rfield, null, "bEndingGorT_Mixin_BodyStuff_facial(int)", null, (short)2));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2730, Grace.__$behaviorFactory12_rfield, Grace.__$precondition3_rfield, null, "bEndingGorT_Mixin_BodyStuff_facial(int)", null, (short)2));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2731, Grace.__$behaviorFactory12_rfield, null, null, "bEndingGorT_Mixin_BodyStuff_facial(int)", null, (short)1));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2733, Grace.__$behaviorFactory12_rfield, null, null, "bEndingRelatsOnly_Body3_Body(int)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2735, Grace.__$behaviorFactory12_rfield, null, null, "bEndingRelatsOnly_Body3_BodyStuff_ps_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2736, Grace.__$behaviorFactory12_rfield, Grace.__$precondition3_rfield, null, "bEndingRelatsOnly_Body3_BodyStuff_ps_dia2()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2737, Grace.__$behaviorFactory12_rfield, Grace.__$precondition3_rfield, null, "bEndingRelatsOnly_Body3_BodyStuff_ps_dia2()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2738, Grace.__$behaviorFactory12_rfield, Grace.__$precondition3_rfield, null, "bEndingRelatsOnly_Body3_BodyStuff_ps_dia2()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2739, Grace.__$behaviorFactory12_rfield, Grace.__$precondition3_rfield, null, "bEndingRelatsOnly_Body3_BodyStuff_ps_dia2()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2741, Grace.__$behaviorFactory12_rfield, null, null, "bEndingRelatsOnly_Body3_BodyStuff_nps_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2742, Grace.__$behaviorFactory12_rfield, Grace.__$precondition3_rfield, null, "bEndingRelatsOnly_Body3_BodyStuff_nps_dia()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2743, Grace.__$behaviorFactory12_rfield, Grace.__$precondition3_rfield, null, "bEndingRelatsOnly_Body3_BodyStuff_nps_dia()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2744, Grace.__$behaviorFactory12_rfield, Grace.__$precondition3_rfield, null, "bEndingRelatsOnly_Body3_BodyStuff_nps_dia()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2745, Grace.__$behaviorFactory12_rfield, Grace.__$precondition3_rfield, null, "bEndingRelatsOnly_Body3_BodyStuff_nps_dia()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2746, Grace.__$behaviorFactory12_rfield, null, null, "bEndingRelatsOnly_Body4_Body(int)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2747, Grace.__$behaviorFactory12_rfield, null, null, "bEndingRelatsOnly_Body5_Body(int)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2749, Grace.__$behaviorFactory12_rfield, null, null, "bEndingRelatsOnly_Body5_BodyStuff_ps_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2750, Grace.__$behaviorFactory12_rfield, Grace.__$precondition3_rfield, null, "bEndingRelatsOnly_Body5_BodyStuff_ps_dia()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2751, Grace.__$behaviorFactory12_rfield, Grace.__$precondition3_rfield, null, "bEndingRelatsOnly_Body5_BodyStuff_ps_dia()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2753, Grace.__$behaviorFactory12_rfield, null, null, "bEndingRelatsOnly_Body5_BodyStuff_nps_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2754, Grace.__$behaviorFactory12_rfield, Grace.__$precondition3_rfield, null, "bEndingRelatsOnly_Body5_BodyStuff_nps_dia()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2755, Grace.__$behaviorFactory12_rfield, Grace.__$precondition3_rfield, null, "bEndingRelatsOnly_Body5_BodyStuff_nps_dia()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2756, Grace.__$behaviorFactory12_rfield, null, null, "bEndingRelatsOnly_Body6_Body(int)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2758, Grace.__$behaviorFactory12_rfield, null, null, "bEndingRelatsOnly_Body6_BodyStuff_ps_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2759, Grace.__$behaviorFactory12_rfield, Grace.__$precondition3_rfield, null, "bEndingRelatsOnly_Body6_BodyStuff_ps_dia()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2760, Grace.__$behaviorFactory12_rfield, Grace.__$precondition3_rfield, null, "bEndingRelatsOnly_Body6_BodyStuff_ps_dia()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2762, Grace.__$behaviorFactory12_rfield, null, null, "bEndingRelatsOnly_Body6_BodyStuff_nps_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2764, Grace.__$behaviorFactory12_rfield, null, null, "bEndingSRNotGTR_Body3_Body(int)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2766, Grace.__$behaviorFactory12_rfield, null, null, "bEndingSRNotGTR_Body3_BodyStuff_ps_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2767, Grace.__$behaviorFactory12_rfield, Grace.__$precondition3_rfield, null, "bEndingSRNotGTR_Body3_BodyStuff_ps_dia2()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2768, Grace.__$behaviorFactory12_rfield, Grace.__$precondition3_rfield, null, "bEndingSRNotGTR_Body3_BodyStuff_ps_dia2()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2769, Grace.__$behaviorFactory12_rfield, Grace.__$precondition3_rfield, null, "bEndingSRNotGTR_Body3_BodyStuff_ps_dia2()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2770, Grace.__$behaviorFactory12_rfield, Grace.__$precondition3_rfield, null, "bEndingSRNotGTR_Body3_BodyStuff_ps_dia2()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2772, Grace.__$behaviorFactory12_rfield, null, null, "bEndingSRNotGTR_Body3_BodyStuff_nps_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2773, Grace.__$behaviorFactory12_rfield, Grace.__$precondition3_rfield, null, "bEndingSRNotGTR_Body3_BodyStuff_nps_dia()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2774, Grace.__$behaviorFactory12_rfield, Grace.__$precondition3_rfield, null, "bEndingSRNotGTR_Body3_BodyStuff_nps_dia()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2775, Grace.__$behaviorFactory12_rfield, Grace.__$precondition3_rfield, null, "bEndingSRNotGTR_Body3_BodyStuff_nps_dia()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2776, Grace.__$behaviorFactory12_rfield, Grace.__$precondition3_rfield, null, "bEndingSRNotGTR_Body3_BodyStuff_nps_dia()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2777, Grace.__$behaviorFactory12_rfield, Grace.__$precondition3_rfield, null, "bEndingSRNotGTR_Body4_Body(int)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2779, Grace.__$behaviorFactory12_rfield, null, null, "bEndingSRNotGTR_Body4_BodyStuff_ps_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2780, Grace.__$behaviorFactory12_rfield, Grace.__$precondition3_rfield, null, "bEndingSRNotGTR_Body4_BodyStuff_ps_dia()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2781, Grace.__$behaviorFactory12_rfield, Grace.__$precondition3_rfield, null, "bEndingSRNotGTR_Body4_BodyStuff_ps_dia()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2783, Grace.__$behaviorFactory12_rfield, null, null, "bEndingSRNotGTR_Body4_BodyStuff_nps_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2784, Grace.__$behaviorFactory12_rfield, null, null, "bEndingSRNotGTR_Body5_Body(int)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2786, Grace.__$behaviorFactory12_rfield, null, null, "bEndingSRNotGTR_Body5_BodyStuff_ps_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2787, Grace.__$behaviorFactory12_rfield, Grace.__$precondition3_rfield, null, "bEndingSRNotGTR_Body5_BodyStuff_ps_dia()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2788, Grace.__$behaviorFactory12_rfield, Grace.__$precondition3_rfield, null, "bEndingSRNotGTR_Body5_BodyStuff_ps_dia()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2790, Grace.__$behaviorFactory12_rfield, null, null, "bEndingSRNotGTR_Body5_BodyStuff_nps_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2791, Grace.__$behaviorFactory12_rfield, Grace.__$precondition3_rfield, null, "bEndingSRNotGTR_Body5_BodyStuff_nps_dia()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2792, Grace.__$behaviorFactory12_rfield, Grace.__$precondition3_rfield, null, "bEndingSRNotGTR_Body5_BodyStuff_nps_dia()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2793, Grace.__$behaviorFactory12_rfield, Grace.__$precondition3_rfield, null, "bEndingSRNotGTR_Body5_BodyStuff_nps_dia2()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2794, Grace.__$behaviorFactory12_rfield, Grace.__$precondition3_rfield, null, "bEndingSRNotGTR_Body5_BodyStuff_nps_dia2()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2796, Grace.__$behaviorFactory12_rfield, null, null, "bEndingGTR_Body1_Body(int)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2798, Grace.__$behaviorFactory12_rfield, null, null, "bEndingGTR_Body1_BodyStuff_ps_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2799, Grace.__$behaviorFactory12_rfield, Grace.__$precondition3_rfield, null, "bEndingGTR_Body1_BodyStuff_ps_dia()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2800, Grace.__$behaviorFactory12_rfield, Grace.__$precondition3_rfield, null, "bEndingGTR_Body1_BodyStuff_ps_dia()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2802, Grace.__$behaviorFactory12_rfield, null, null, "bEndingGTR_Body1_BodyStuff_nps_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2803, Grace.__$behaviorFactory12_rfield, Grace.__$precondition3_rfield, null, "bEndingGTR_Body1_BodyStuff_nps_dia()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2804, Grace.__$behaviorFactory12_rfield, Grace.__$precondition3_rfield, null, "bEndingGTR_Body1_BodyStuff_nps_dia()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2806, Grace.__$behaviorFactory12_rfield, null, null, "bEndingGTR_Body2_BodyStuff_ps_seq(int, int)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2807, Grace.__$behaviorFactory12_rfield, Grace.__$precondition3_rfield, null, "bEndingGTR_Body2_BodyStuff_self_dia(int)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2808, Grace.__$behaviorFactory12_rfield, Grace.__$precondition3_rfield, null, "bEndingGTR_Body2_BodyStuff_self_dia(int)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2809, Grace.__$behaviorFactory12_rfield, Grace.__$precondition3_rfield, null, "bEndingGTR_Body2_BodyStuff_self_dia(int)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2810, Grace.__$behaviorFactory12_rfield, Grace.__$precondition3_rfield, null, "bEndingGTR_Body2_BodyStuff_self_dia(int)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2811, Grace.__$behaviorFactory12_rfield, Grace.__$precondition3_rfield, null, "bEndingGTR_Body2_BodyStuff_self_dia(int)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2812, Grace.__$behaviorFactory12_rfield, Grace.__$precondition3_rfield, null, "bEndingGTR_Body2_BodyStuff_self_dia(int)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2814, Grace.__$behaviorFactory12_rfield, null, null, "bEndingGTR_Body2_BodyStuff_nps_seq(int, int)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2815, Grace.__$behaviorFactory12_rfield, Grace.__$precondition3_rfield, null, "bEndingGTR_Body2_BodyStuff_seq2(int)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2816, Grace.__$behaviorFactory12_rfield, Grace.__$precondition3_rfield, null, "bEndingGTR_Body2_BodyStuff_seq2(int)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2817, Grace.__$behaviorFactory12_rfield, Grace.__$precondition3_rfield, null, "bEndingGTR_Body2_BodyStuff_relat_dia(int)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2818, Grace.__$behaviorFactory12_rfield, Grace.__$precondition3_rfield, null, "bEndingGTR_Body2_BodyStuff_relat_dia(int)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2819, Grace.__$behaviorFactory12_rfield, Grace.__$precondition3_rfield, null, "bEndingGTR_Body2_BodyStuff_relat_dia(int)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2820, Grace.__$behaviorFactory12_rfield, Grace.__$precondition3_rfield, null, "bEndingGTR_Body2_BodyStuff_relat_dia(int)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2821, Grace.__$behaviorFactory12_rfield, Grace.__$precondition3_rfield, null, "bEndingGTR_Body2_BodyStuff_relat_dia(int)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2822, Grace.__$behaviorFactory12_rfield, Grace.__$precondition3_rfield, null, "bEndingGTR_Body2_BodyStuff_relat_dia(int)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2823, Grace.__$behaviorFactory12_rfield, null, null, "bEndingGTR_Body3_Body(int)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2825, Grace.__$behaviorFactory12_rfield, null, null, "bEndingGTR_Body3_BodyStuff_grace_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2826, Grace.__$behaviorFactory12_rfield, null, null, "bEndingGTR_Body3_BodyStuff_grace_dia()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2827, Grace.__$behaviorFactory12_rfield, null, null, "bEndingGTR_Body3_BodyStuff_grace_dia2()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2829, Grace.__$behaviorFactory12_rfield, null, null, "bEndingGTR_Body3_BodyStuff_trip_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2830, Grace.__$behaviorFactory12_rfield, null, null, "bEndingGTR_Body3_BodyStuff_trip_dia()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2831, Grace.__$behaviorFactory12_rfield, null, null, "bEndingGTR_Body3_BodyStuff_trip_dia2()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2832, Grace.__$behaviorFactory12_rfield, null, null, "bEndingGTR_Body3_BodyStuff_trip_dia3()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2833, Grace.__$behaviorFactory12_rfield, null, null, "bEndingGTR_Body4_Body()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2835, Grace.__$behaviorFactory12_rfield, null, null, "bEndingGTR_Body4_BodyStuff_grace_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2836, Grace.__$behaviorFactory12_rfield, null, null, "bEndingGTR_Body4_BodyStuff_grace_dia()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2838, Grace.__$behaviorFactory12_rfield, null, null, "bEndingGTR_Body4_BodyStuff_trip_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2840, Grace.__$behaviorFactory12_rfield, null, null, "bEndingGTR_ReactiveDialog_BodyStuff_ps_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2842, Grace.__$behaviorFactory12_rfield, null, null, "bEndingGTR_ReactiveDialog_BodyStuff_nps_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2843, Grace.__$behaviorFactory12_rfield, Grace.__$precondition3_rfield, null, "bEndingGTR_PossibleReactiveDialog_Speaker(int)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2844, Grace.__$behaviorFactory12_rfield, Grace.__$precondition3_rfield, null, "bEndingGTR_PossibleReactiveDialog_Speaker_dia(int, int, int)", null, (short)2));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2845, Grace.__$behaviorFactory12_rfield, Grace.__$precondition3_rfield, null, "bEndingGTR_PossibleReactiveDialog_Speaker_dia(int, int, int)", null, (short)2));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2846, Grace.__$behaviorFactory12_rfield, Grace.__$precondition3_rfield, null, "bEndingGTR_PossibleReactiveDialog_Speaker_dia(int, int, int)", null, (short)2));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2847, Grace.__$behaviorFactory12_rfield, Grace.__$precondition3_rfield, null, "bEndingGTR_PossibleReactiveDialog_Speaker_dia(int, int, int)", null, (short)2));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2848, Grace.__$behaviorFactory12_rfield, Grace.__$precondition3_rfield, null, "bEndingGTR_PossibleReactiveDialog_Speaker_dia(int, int, int)", null, (short)2));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2849, Grace.__$behaviorFactory12_rfield, Grace.__$precondition3_rfield, null, "bEndingGTR_PossibleReactiveDialog_Speaker_dia(int, int, int)", null, (short)2));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2850, Grace.__$behaviorFactory12_rfield, Grace.__$precondition3_rfield, null, "bEndingGTR_PossibleReactiveDialog_Speaker_dia(int, int, int)", null, (short)2));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2851, Grace.__$behaviorFactory12_rfield, Grace.__$precondition3_rfield, null, "bEndingGTR_PossibleReactiveDialog_Speaker_dia(int, int, int)", null, (short)2));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2852, Grace.__$behaviorFactory12_rfield, Grace.__$precondition3_rfield, null, "bEndingGTR_PossibleReactiveDialog_Speaker_dia(int, int, int)", null, (short)2));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2853, Grace.__$behaviorFactory12_rfield, Grace.__$precondition3_rfield, null, "bEndingGTR_PossibleReactiveDialog_Speaker_dia(int, int, int)", null, (short)2));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2854, Grace.__$behaviorFactory12_rfield, Grace.__$precondition3_rfield, null, "bEndingGTR_PossibleReactiveDialog_Speaker_dia(int, int, int)", null, (short)2));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2855, Grace.__$behaviorFactory12_rfield, Grace.__$precondition3_rfield, null, "bEndingGTR_PossibleReactiveDialog_Speaker_dia(int, int, int)", null, (short)2));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2856, Grace.__$behaviorFactory12_rfield, Grace.__$precondition3_rfield, null, "bEndingGTR_PossibleReactiveDialog_Speaker_dia(int, int, int)", null, (short)2));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2857, Grace.__$behaviorFactory12_rfield, Grace.__$precondition3_rfield, null, "bEndingGTR_PossibleReactiveDialog_Speaker_dia(int, int, int)", null, (short)2));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2858, Grace.__$behaviorFactory12_rfield, Grace.__$precondition3_rfield, null, "bEndingGTR_PossibleReactiveDialog_Speaker_dia(int, int, int)", null, (short)2));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2859, Grace.__$behaviorFactory12_rfield, Grace.__$precondition3_rfield, null, "bEndingGTR_PossibleReactiveDialog_Speaker_dia(int, int, int)", null, (short)2));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2860, Grace.__$behaviorFactory12_rfield, null, null, "bEndingGTR_PossibleReactiveDialog_Speaker_dia(int, int, int)", null, (short)1));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2861, Grace.__$behaviorFactory12_rfield, Grace.__$precondition3_rfield, null, "bEndingGTR_PossibleReactiveDialog_NonSpeaker()", null, (short)2));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2862, Grace.__$behaviorFactory12_rfield, null, null, "bEndingGTR_PossibleReactiveDialog_NonSpeaker()", null, (short)1));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2864, Grace.__$behaviorFactory12_rfield, Grace.__$precondition4_rfield, null, "bEndingGTR_Mixin_BodyStuff_facial(int)", null, (short)2));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2865, Grace.__$behaviorFactory12_rfield, Grace.__$precondition4_rfield, null, "bEndingGTR_Mixin_BodyStuff_facial(int)", null, (short)2));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2866, Grace.__$behaviorFactory12_rfield, Grace.__$precondition4_rfield, null, "bEndingGTR_Mixin_BodyStuff_facial(int)", null, (short)2));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2867, Grace.__$behaviorFactory12_rfield, null, null, "bEndingGTR_Mixin_BodyStuff_facial(int)", null, (short)1));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2869, Grace.__$behaviorFactory12_rfield, null, null, "gmT1L1_PraiseAllyG_N_BodyStuff_dia()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2870, Grace.__$behaviorFactory12_rfield, null, null, "gmT1L1_PraiseAllyG_N_BodyStuff_dia()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2873, Grace.__$behaviorFactory12_rfield, null, null, "gmT1L1_PraiseAllyG_GPA_BodyStuff_dia()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2874, Grace.__$behaviorFactory12_rfield, null, null, "gmT1L1_PraiseAllyG_GPA_BodyStuff_dia()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2879, Grace.__$behaviorFactory12_rfield, null, null, "gmT1L1_PraiseAllyT_N_BodyStuff_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2880, Grace.__$behaviorFactory12_rfield, null, null, "gmT1L1_PraiseAllyT_N_BodyStuff_seq_dia()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2881, Grace.__$behaviorFactory12_rfield, null, null, "gmT1L1_PraiseAllyT_N_BodyStuff_seq_dia()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2884, Grace.__$behaviorFactory12_rfield, null, null, "gmT1L1_PraiseAllyT_GPA_BodyStuff_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2885, Grace.__$behaviorFactory12_rfield, null, null, "gmT1L1_PraiseAllyT_GPA_BodyStuff_seq_dia()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2886, Grace.__$behaviorFactory12_rfield, null, null, "gmT1L1_PraiseAllyT_GPA_BodyStuff_seq_dia()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2889, Grace.__$behaviorFactory12_rfield, null, null, "gmT1L1_PraiseAllyT_TPA_BodyStuff_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2890, Grace.__$behaviorFactory12_rfield, null, null, "gmT1L1_PraiseAllyT_TPA_BodyStuff_seq_dia()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2891, Grace.__$behaviorFactory12_rfield, null, null, "gmT1L1_PraiseAllyT_TPA_BodyStuff_seq_dia()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2895, Grace.__$behaviorFactory12_rfield, null, null, "gmT1L1_CriticizeG_N_BodyStuff2_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2898, Grace.__$behaviorFactory12_rfield, null, null, "gmT1L1_CriticizeG_GPA_BodyStuff2_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2901, Grace.__$behaviorFactory12_rfield, null, null, "gmT1L1_CriticizeG_TPA_BodyStuff2_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2902, Grace.__$behaviorFactory12_rfield, Grace.__$precondition4_rfield, Grace.__$preconditionSensorFactory0_rfield, "gmT1L1_CriticizeG_TPA_BodyStuff2_seq_dia()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2903, Grace.__$behaviorFactory12_rfield, Grace.__$precondition4_rfield, Grace.__$preconditionSensorFactory0_rfield, "gmT1L1_CriticizeG_TPA_BodyStuff2_seq_dia()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2905, Grace.__$behaviorFactory12_rfield, null, null, "gmT1L1_CriticizeT_N_BodyStuff_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2908, Grace.__$behaviorFactory12_rfield, null, null, "gmT1L1_CriticizeT_GPA_BodyStuff_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2911, Grace.__$behaviorFactory12_rfield, null, null, "gmT1L1_CriticizeT_TPA_BodyStuff_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2914, Grace.__$behaviorFactory12_rfield, null, null, "gmT1L1_FlirtG_N_BodyStuff_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2915, Grace.__$behaviorFactory12_rfield, Grace.__$precondition4_rfield, null, "gmT1L1_FlirtG_N_BodyStuff_seq_dia()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2916, Grace.__$behaviorFactory12_rfield, Grace.__$precondition4_rfield, null, "gmT1L1_FlirtG_N_BodyStuff_seq_dia()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2917, Grace.__$behaviorFactory12_rfield, null, null, "gmT1L1_FlirtG_N_BodyStuff_seq_dia_mp()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2918, Grace.__$behaviorFactory12_rfield, null, null, "gmT1L1_FlirtG_N_BodyStuff_seq_dia_mp()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2919, Grace.__$behaviorFactory12_rfield, null, null, "gmT1L1_FlirtG_N_BodyStuff_seq_dia_fp()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2920, Grace.__$behaviorFactory12_rfield, null, null, "gmT1L1_FlirtG_N_BodyStuff_seq_dia_fp()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2922, Grace.__$behaviorFactory12_rfield, null, null, "gmT1L1_FlirtG_N_BodyStuff2_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2925, Grace.__$behaviorFactory12_rfield, null, null, "gmT1L1_FlirtG_GPA_BodyStuff_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2926, Grace.__$behaviorFactory12_rfield, Grace.__$precondition4_rfield, null, "gmT1L1_FlirtG_GPA_BodyStuff_seq_dia()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2927, Grace.__$behaviorFactory12_rfield, Grace.__$precondition4_rfield, null, "gmT1L1_FlirtG_GPA_BodyStuff_seq_dia()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2928, Grace.__$behaviorFactory12_rfield, null, null, "gmT1L1_FlirtG_GPA_BodyStuff_seq_dia_mp()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2929, Grace.__$behaviorFactory12_rfield, null, null, "gmT1L1_FlirtG_GPA_BodyStuff_seq_dia_mp()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2930, Grace.__$behaviorFactory12_rfield, null, null, "gmT1L1_FlirtG_GPA_BodyStuff_seq_dia_mp()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2931, Grace.__$behaviorFactory12_rfield, null, null, "gmT1L1_FlirtG_GPA_BodyStuff_seq_dia_fp()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2932, Grace.__$behaviorFactory12_rfield, null, null, "gmT1L1_FlirtG_GPA_BodyStuff_seq_dia_fp()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2934, Grace.__$behaviorFactory12_rfield, null, null, "gmT1L1_FlirtG_GPA_BodyStuff2_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2937, Grace.__$behaviorFactory12_rfield, null, null, "gmT1L1_FlirtG_TPA_BodyStuff_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2938, Grace.__$behaviorFactory13_rfield, Grace.__$precondition4_rfield, null, "gmT1L1_FlirtG_TPA_BodyStuff_seq_dia()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2939, Grace.__$behaviorFactory13_rfield, Grace.__$precondition4_rfield, null, "gmT1L1_FlirtG_TPA_BodyStuff_seq_dia()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2940, Grace.__$behaviorFactory13_rfield, null, null, "gmT1L1_FlirtG_TPA_BodyStuff_seq_dia_mp()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2941, Grace.__$behaviorFactory13_rfield, null, null, "gmT1L1_FlirtG_TPA_BodyStuff_seq_dia_mp()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2942, Grace.__$behaviorFactory13_rfield, null, null, "gmT1L1_FlirtG_TPA_BodyStuff_seq_dia_fp()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2943, Grace.__$behaviorFactory13_rfield, null, null, "gmT1L1_FlirtG_TPA_BodyStuff_seq_dia_fp()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2945, Grace.__$behaviorFactory13_rfield, null, null, "gmT1L1_FlirtG_TPA_BodyStuff2_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2948, Grace.__$behaviorFactory13_rfield, null, null, "gmT1L1_FlirtT_N_BodyStuff_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2950, Grace.__$behaviorFactory13_rfield, null, null, "gmT1L1_FlirtT_N_BodyStuff2_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2951, Grace.__$behaviorFactory13_rfield, Grace.__$precondition4_rfield, null, "gmT1L1_FlirtT_N_BodyStuff2_seq_dia()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2952, Grace.__$behaviorFactory13_rfield, Grace.__$precondition4_rfield, null, "gmT1L1_FlirtT_N_BodyStuff2_seq_dia()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2953, Grace.__$behaviorFactory13_rfield, Grace.__$precondition4_rfield, Grace.__$preconditionSensorFactory0_rfield, "gmT1L1_FlirtT_N_BodyStuff2_seq_dia_mp()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2954, Grace.__$behaviorFactory13_rfield, Grace.__$precondition4_rfield, Grace.__$preconditionSensorFactory0_rfield, "gmT1L1_FlirtT_N_BodyStuff2_seq_dia_mp()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2955, Grace.__$behaviorFactory13_rfield, Grace.__$precondition4_rfield, Grace.__$preconditionSensorFactory0_rfield, "gmT1L1_FlirtT_N_BodyStuff2_seq_dia_fp()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2956, Grace.__$behaviorFactory13_rfield, Grace.__$precondition4_rfield, Grace.__$preconditionSensorFactory0_rfield, "gmT1L1_FlirtT_N_BodyStuff2_seq_dia_fp()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2957, Grace.__$behaviorFactory13_rfield, null, null, "gmT1L1_FlirtT_N_BodyStuff2_seq_dia_mp_nodrinks()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2958, Grace.__$behaviorFactory13_rfield, null, null, "gmT1L1_FlirtT_N_BodyStuff2_seq_dia_mp_nodrinks()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2959, Grace.__$behaviorFactory13_rfield, null, null, "gmT1L1_FlirtT_N_BodyStuff2_seq_dia_mp_drinks()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2960, Grace.__$behaviorFactory13_rfield, null, null, "gmT1L1_FlirtT_N_BodyStuff2_seq_dia_mp_drinks()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2961, Grace.__$behaviorFactory13_rfield, null, null, "gmT1L1_FlirtT_N_BodyStuff2_seq_dia_fp_nodrinks()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2962, Grace.__$behaviorFactory13_rfield, null, null, "gmT1L1_FlirtT_N_BodyStuff2_seq_dia_fp_nodrinks()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2963, Grace.__$behaviorFactory13_rfield, null, null, "gmT1L1_FlirtT_N_BodyStuff2_seq_dia_fp_drinks()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2964, Grace.__$behaviorFactory13_rfield, null, null, "gmT1L1_FlirtT_N_BodyStuff2_seq_dia_fp_drinks()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2967, Grace.__$behaviorFactory13_rfield, null, null, "gmT1L1_FlirtT_GPA_BodyStuff_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2969, Grace.__$behaviorFactory13_rfield, null, null, "gmT1L1_FlirtT_GPA_BodyStuff2_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2970, Grace.__$behaviorFactory13_rfield, Grace.__$precondition4_rfield, null, "gmT1L1_FlirtT_GPA_BodyStuff2_seq_dia()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2971, Grace.__$behaviorFactory13_rfield, Grace.__$precondition4_rfield, null, "gmT1L1_FlirtT_GPA_BodyStuff2_seq_dia()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2972, Grace.__$behaviorFactory13_rfield, null, null, "gmT1L1_FlirtT_GPA_BodyStuff2_seq_dia_mp()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2973, Grace.__$behaviorFactory13_rfield, null, null, "gmT1L1_FlirtT_GPA_BodyStuff2_seq_dia_mp()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2974, Grace.__$behaviorFactory13_rfield, null, null, "gmT1L1_FlirtT_GPA_BodyStuff2_seq_dia_fp()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2975, Grace.__$behaviorFactory13_rfield, null, null, "gmT1L1_FlirtT_GPA_BodyStuff2_seq_dia_fp()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2978, Grace.__$behaviorFactory13_rfield, null, null, "gmT1L1_FlirtT_TPA_BodyStuff_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2980, Grace.__$behaviorFactory13_rfield, null, null, "gmT1L1_FlirtT_TPA_BodyStuff2_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2981, Grace.__$behaviorFactory13_rfield, Grace.__$precondition4_rfield, null, "gmT1L1_FlirtT_TPA_BodyStuff2_seq_dia()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2982, Grace.__$behaviorFactory13_rfield, Grace.__$precondition4_rfield, null, "gmT1L1_FlirtT_TPA_BodyStuff2_seq_dia()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2983, Grace.__$behaviorFactory13_rfield, Grace.__$precondition4_rfield, Grace.__$preconditionSensorFactory0_rfield, "gmT1L1_FlirtT_TPA_BodyStuff2_seq_dia_mp()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2984, Grace.__$behaviorFactory13_rfield, Grace.__$precondition4_rfield, Grace.__$preconditionSensorFactory0_rfield, "gmT1L1_FlirtT_TPA_BodyStuff2_seq_dia_mp()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2985, Grace.__$behaviorFactory13_rfield, Grace.__$precondition4_rfield, Grace.__$preconditionSensorFactory0_rfield, "gmT1L1_FlirtT_TPA_BodyStuff2_seq_dia_fp()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2986, Grace.__$behaviorFactory13_rfield, Grace.__$precondition4_rfield, Grace.__$preconditionSensorFactory0_rfield, "gmT1L1_FlirtT_TPA_BodyStuff2_seq_dia_fp()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2987, Grace.__$behaviorFactory13_rfield, null, null, "gmT1L1_FlirtT_TPA_BodyStuff2_seq_dia_mp_nodrinks()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2988, Grace.__$behaviorFactory13_rfield, null, null, "gmT1L1_FlirtT_TPA_BodyStuff2_seq_dia_mp_nodrinks()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2989, Grace.__$behaviorFactory13_rfield, null, null, "gmT1L1_FlirtT_TPA_BodyStuff2_seq_dia_mp_drinks()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2990, Grace.__$behaviorFactory13_rfield, null, null, "gmT1L1_FlirtT_TPA_BodyStuff2_seq_dia_mp_drinks()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2991, Grace.__$behaviorFactory13_rfield, null, null, "gmT1L1_FlirtT_TPA_BodyStuff2_seq_dia_fp_nodrinks()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2992, Grace.__$behaviorFactory13_rfield, null, null, "gmT1L1_FlirtT_TPA_BodyStuff2_seq_dia_fp_nodrinks()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2993, Grace.__$behaviorFactory13_rfield, null, null, "gmT1L1_FlirtT_TPA_BodyStuff2_seq_dia_fp_drinks()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2994, Grace.__$behaviorFactory13_rfield, null, null, "gmT1L1_FlirtT_TPA_BodyStuff2_seq_dia_fp_drinks()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2997, Grace.__$behaviorFactory13_rfield, Grace.__$precondition4_rfield, null, "gmT1L1_HugComfortG_GPA_BodyStuff_seq(int)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2998, Grace.__$behaviorFactory13_rfield, null, null, "gmT1L1_HugComfortG_GPA_BodyStuff_hugging_dia()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2999, Grace.__$behaviorFactory13_rfield, null, null, "gmT1L1_HugComfortG_GPA_BodyStuff_hugging_dia()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3000, Grace.__$behaviorFactory13_rfield, Grace.__$precondition4_rfield, null, "gmT1L1_HugComfortG_GPA_BodyStuff_seq(int)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3001, Grace.__$behaviorFactory13_rfield, null, null, "gmT1L1_HugComfortG_GPA_BodyStuff_hugged_dia()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3002, Grace.__$behaviorFactory13_rfield, Grace.__$precondition4_rfield, null, "gmT1L1_HugComfortG_GPA_BodyStuff_seq(int)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3003, Grace.__$behaviorFactory13_rfield, null, null, "gmT1L1_HugComfortG_GPA_BodyStuff_comforting_dia()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3004, Grace.__$behaviorFactory13_rfield, null, null, "gmT1L1_HugComfortG_GPA_BodyStuff_comforting_dia()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3005, Grace.__$behaviorFactory13_rfield, Grace.__$precondition4_rfield, null, "gmT1L1_HugComfortG_GPA_BodyStuff_seq(int)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3006, Grace.__$behaviorFactory13_rfield, null, null, "gmT1L1_HugComfortG_GPA_BodyStuff_comforted_dia()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3007, Grace.__$behaviorFactory13_rfield, null, null, "gmT1L1_HugComfortG_GPA_BodyStuff_comforted_dia()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3010, Grace.__$behaviorFactory13_rfield, Grace.__$precondition4_rfield, null, "gmT1L1_HugComfortG_NTPA_BodyStuff_seq(int)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3011, Grace.__$behaviorFactory13_rfield, null, null, "gmT1L1_HugComfortG_NTPA_BodyStuff_hugging_dia()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3012, Grace.__$behaviorFactory13_rfield, null, null, "gmT1L1_HugComfortG_NTPA_BodyStuff_hugging_dia()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3013, Grace.__$behaviorFactory13_rfield, Grace.__$precondition4_rfield, null, "gmT1L1_HugComfortG_NTPA_BodyStuff_seq(int)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3014, Grace.__$behaviorFactory13_rfield, null, null, "gmT1L1_HugComfortG_NTPA_BodyStuff_hugged_dia()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3015, Grace.__$behaviorFactory13_rfield, null, null, "gmT1L1_HugComfortG_NTPA_BodyStuff_hugged_dia()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3016, Grace.__$behaviorFactory13_rfield, Grace.__$precondition4_rfield, null, "gmT1L1_HugComfortG_NTPA_BodyStuff_seq(int)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3017, Grace.__$behaviorFactory13_rfield, null, null, "gmT1L1_HugComfortG_NTPA_BodyStuff_comforting_dia()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3018, Grace.__$behaviorFactory13_rfield, null, null, "gmT1L1_HugComfortG_NTPA_BodyStuff_comforting_dia()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3019, Grace.__$behaviorFactory13_rfield, Grace.__$precondition4_rfield, null, "gmT1L1_HugComfortG_NTPA_BodyStuff_seq(int)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3020, Grace.__$behaviorFactory13_rfield, null, null, "gmT1L1_HugComfortG_NTPA_BodyStuff_comforted_dia()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3021, Grace.__$behaviorFactory13_rfield, null, null, "gmT1L1_HugComfortG_NTPA_BodyStuff_comforted_dia()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3024, Grace.__$behaviorFactory13_rfield, null, null, "gmT1L1_HugComfortT_NGPA_BodyStuff_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3025, Grace.__$behaviorFactory13_rfield, null, null, "gmT1L1_HugComfortT_NGPA_BodyStuff_seq_dia()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3026, Grace.__$behaviorFactory13_rfield, null, null, "gmT1L1_HugComfortT_NGPA_BodyStuff_seq_dia()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3029, Grace.__$behaviorFactory13_rfield, null, null, "gmT1L1_HugComfortT_TPA_BodyStuff_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3030, Grace.__$behaviorFactory13_rfield, null, null, "gmT1L1_HugComfortT_TPA_BodyStuff_seq_dia()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3031, Grace.__$behaviorFactory13_rfield, null, null, "gmT1L1_HugComfortT_TPA_BodyStuff_seq_dia()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3041, Grace.__$behaviorFactory13_rfield, null, null, "gmT1L1_Satl_Marriage_NTPA_BodyStuff2_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3044, Grace.__$behaviorFactory13_rfield, null, null, "gmT1L1_Satl_Marriage_GPA_BodyStuff2_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3046, Grace.__$behaviorFactory13_rfield, null, null, "gmT1L1_Satl_Divorce_NTPA_BodyStuff_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3048, Grace.__$behaviorFactory13_rfield, null, null, "gmT1L1_Satl_Divorce_GPA_BodyStuff_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3051, Grace.__$behaviorFactory13_rfield, null, null, "gmT1L1_Satl_Sex_NTPA_BodyStuff2_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3055, Grace.__$behaviorFactory13_rfield, null, null, "gmT1L1_Satl_Sex_GPA_BodyStuff2_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3062, Grace.__$behaviorFactory13_rfield, null, null, "gmT1L1_Satl_Therapy_TPA_BodyStuff_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3065, Grace.__$behaviorFactory13_rfield, null, null, "gmT1L1_Satl_Therapy_NGPA_BodyStuff_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3069, Grace.__$behaviorFactory13_rfield, null, null, "gmT1L1_Obj_WeddingPic_NTPA_BodyStuff2_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3072, Grace.__$behaviorFactory13_rfield, null, null, "gmT1L1_Obj_WeddingPic_NTPA_BodyStuff4_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3076, Grace.__$behaviorFactory13_rfield, null, null, "gmT1L1_Obj_WeddingPic_GPA_BodyStuff2_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3079, Grace.__$behaviorFactory13_rfield, null, null, "gmT1L1_Obj_WeddingPic_GPA_BodyStuff4_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3083, Grace.__$behaviorFactory13_rfield, null, null, "gmT1L1_Obj_FurnishingsApt_TPA_BodyStuff2_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3085, Grace.__$behaviorFactory13_rfield, null, null, "gmT1L1_Obj_FurnishingsApt_TPA_BodyStuff3_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3088, Grace.__$behaviorFactory13_rfield, null, null, "gmT1L1_Obj_FurnishingsApt_NGPA_BodyStuff2_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3091, Grace.__$behaviorFactory13_rfield, null, null, "gmT1L1_Obj_ItalyPic_NTPA_BodyStuff2_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3094, Grace.__$behaviorFactory13_rfield, null, null, "gmT1L1_Obj_ItalyPic_GPA_BodyStuff2_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3096, Grace.__$behaviorFactory13_rfield, null, null, "gmT1L1_Obj_Trinkets_TPA_BodyStuff_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3099, Grace.__$behaviorFactory13_rfield, null, null, "gmT1L1_Obj_Trinkets_TPA_BodyStuff3_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3101, Grace.__$behaviorFactory13_rfield, null, null, "gmT1L1_Obj_Trinkets_NGPA_BodyStuff_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3104, Grace.__$behaviorFactory13_rfield, null, null, "gmT1L1_Obj_Trinkets_NGPA_BodyStuff3_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3107, Grace.__$behaviorFactory13_rfield, null, null, "gmT1L1_Obj_Trinkets_NGPA_BodyStuff5_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3110, Grace.__$behaviorFactory13_rfield, null, null, "gmT1L1_Obj_WorkTable_NGPA_BodyStuff2_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3112, Grace.__$behaviorFactory13_rfield, null, null, "gmT1L1_Obj_WorkTable_NGPA_BodyStuff3_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3114, Grace.__$behaviorFactory13_rfield, null, null, "gmT1L1_Obj_WorkTable_NGPA_BodyStuff4_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3115, Grace.__$behaviorFactory13_rfield, Grace.__$precondition4_rfield, null, "gmT1L1_Obj_WorkTable_NGPA_BodyStuff4_dia()", null, (short)2));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3116, Grace.__$behaviorFactory13_rfield, null, null, "gmT1L1_Obj_WorkTable_NGPA_BodyStuff4_dia()", null, (short)1));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3118, Grace.__$behaviorFactory13_rfield, null, null, "gmT1L1_Obj_WorkTable_TPA_BodyStuff_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3120, Grace.__$behaviorFactory13_rfield, null, null, "gmT1L1_Obj_WorkTable_TPA_BodyStuff2_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3122, Grace.__$behaviorFactory13_rfield, null, null, "gmT1L1_Obj_WorkTable_TPA_BodyStuff3_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3124, Grace.__$behaviorFactory13_rfield, null, null, "gmT1L1_Obj_WorkTable_TPA_BodyStuff4_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3126, Grace.__$behaviorFactory13_rfield, null, null, "gmT1L1_Obj_Painting_TPA_BodyStuff_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3129, Grace.__$behaviorFactory13_rfield, null, null, "gmT1L1_Obj_Painting_TPA_BodyStuff3_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3131, Grace.__$behaviorFactory13_rfield, null, null, "gmT1L1_Obj_Painting_NGPA_BodyStuff_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3134, Grace.__$behaviorFactory13_rfield, null, null, "gmT1L1_Obj_Painting_NGPA_BodyStuff3_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3136, Grace.__$behaviorFactory13_rfield, null, null, "gmT1L1_Obj_BrassBull_NTPA_BodyStuff_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3139, Grace.__$behaviorFactory13_rfield, null, null, "gmT1L1_Obj_BrassBull_NTPA_BodyStuff3_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3141, Grace.__$behaviorFactory13_rfield, null, null, "gmT1L1_Obj_BrassBull_GPA_BodyStuff_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3143, Grace.__$behaviorFactory13_rfield, null, null, "gmT1L1_Obj_BrassBull_GPA_BodyStuff2_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3146, Grace.__$behaviorFactory13_rfield, null, null, "gmT1L1_Obj_BarStuff_NTPA_BodyStuff2_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3149, Grace.__$behaviorFactory13_rfield, null, null, "gmT1L1_Obj_BarStuff_GPA_BodyStuff2_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3151, Grace.__$behaviorFactory13_rfield, null, null, "gmT1L1_Obj_Eightball_NTPA_BodyStuff_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3153, Grace.__$behaviorFactory13_rfield, null, null, "gmT1L1_Obj_Eightball_NTPA_BodyStuff2_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3156, Grace.__$behaviorFactory13_rfield, null, null, "gmT1L1_Obj_Eightball_GPA_BodyStuff_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3158, Grace.__$behaviorFactory13_rfield, null, null, "gmT1L1_Obj_Eightball_GPA_BodyStuff2_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3162, Grace.__$behaviorFactory13_rfield, null, null, "gmT1L1_Obj_ViewBalcony_NTPA_BodyStuff2_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3166, Grace.__$behaviorFactory14_rfield, null, null, "gmT1L1_Obj_ViewBalcony_GPA_BodyStuff2_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3182, Grace.__$behaviorFactory14_rfield, null, null, "gmT1_Deflect_Acknowledge_MildAgreement_T_BodyStuff_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3183, Grace.__$behaviorFactory14_rfield, null, null, "gmT1_Deflect_Acknowledge_MildAgreement_T_BodyStuff_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3184, Grace.__$behaviorFactory14_rfield, null, null, "gmT1_Deflect_Acknowledge_MildAgreement_T_BodyStuff_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3187, Grace.__$behaviorFactory14_rfield, null, null, "gmT1_Deflect_Acknowledge_StrongAgreement_T_BodyStuff_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3188, Grace.__$behaviorFactory14_rfield, null, null, "gmT1_Deflect_Acknowledge_StrongAgreement_T_BodyStuff_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3189, Grace.__$behaviorFactory14_rfield, null, null, "gmT1_Deflect_Acknowledge_StrongAgreement_T_BodyStuff_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3192, Grace.__$behaviorFactory14_rfield, null, null, "gmT1_Deflect_Acknowledge_MildDisagreement_T_BodyStuff_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3193, Grace.__$behaviorFactory14_rfield, null, null, "gmT1_Deflect_Acknowledge_MildDisagreement_T_BodyStuff_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3194, Grace.__$behaviorFactory14_rfield, null, null, "gmT1_Deflect_Acknowledge_MildDisagreement_T_BodyStuff_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3197, Grace.__$behaviorFactory14_rfield, null, null, "gmT1_Deflect_Acknowledge_StrongDisagreement_T_BodyStuff_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3198, Grace.__$behaviorFactory14_rfield, null, null, "gmT1_Deflect_Acknowledge_StrongDisagreement_T_BodyStuff_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3199, Grace.__$behaviorFactory14_rfield, null, null, "gmT1_Deflect_Acknowledge_StrongDisagreement_T_BodyStuff_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3202, Grace.__$behaviorFactory14_rfield, null, null, "gmT1_Deflect_Acknowledge_Awkward_T_BodyStuff_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3203, Grace.__$behaviorFactory14_rfield, null, null, "gmT1_Deflect_Acknowledge_Awkward_T_BodyStuff_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3204, Grace.__$behaviorFactory14_rfield, null, null, "gmT1_Deflect_Acknowledge_Awkward_T_BodyStuff_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3207, Grace.__$behaviorFactory14_rfield, null, null, "gmT1_Deflect_Acknowledge_WantMore_T_BodyStuff_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3208, Grace.__$behaviorFactory14_rfield, null, null, "gmT1_Deflect_Acknowledge_WantMore_T_BodyStuff_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3209, Grace.__$behaviorFactory14_rfield, null, null, "gmT1_Deflect_Acknowledge_WantMore_T_BodyStuff_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3212, Grace.__$behaviorFactory14_rfield, null, null, "gmT1_Deflect_Acknowledge_Unknown_T_BodyStuff_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3213, Grace.__$behaviorFactory14_rfield, null, null, "gmT1_Deflect_Acknowledge_Unknown_T_BodyStuff_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3214, Grace.__$behaviorFactory14_rfield, null, null, "gmT1_Deflect_Acknowledge_Unknown_T_BodyStuff_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3215, Grace.__$behaviorFactory14_rfield, null, null, "gmT1_Deflect_Acknowledge_Unknown_T_BodyStuff_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3218, Grace.__$behaviorFactory14_rfield, null, null, "gmT1_Deflect_HoldOn_MildAgreement_T_BodyStuff_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3219, Grace.__$behaviorFactory14_rfield, null, null, "gmT1_Deflect_HoldOn_MildAgreement_T_BodyStuff_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3220, Grace.__$behaviorFactory14_rfield, null, null, "gmT1_Deflect_HoldOn_MildAgreement_T_BodyStuff_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3223, Grace.__$behaviorFactory14_rfield, null, null, "gmT1_Deflect_HoldOn_StrongAgreement_T_BodyStuff_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3224, Grace.__$behaviorFactory14_rfield, null, null, "gmT1_Deflect_HoldOn_StrongAgreement_T_BodyStuff_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3225, Grace.__$behaviorFactory14_rfield, null, null, "gmT1_Deflect_HoldOn_StrongAgreement_T_BodyStuff_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3228, Grace.__$behaviorFactory14_rfield, null, null, "gmT1_Deflect_HoldOn_MildDisagreement_T_BodyStuff_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3229, Grace.__$behaviorFactory14_rfield, null, null, "gmT1_Deflect_HoldOn_MildDisagreement_T_BodyStuff_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3230, Grace.__$behaviorFactory14_rfield, null, null, "gmT1_Deflect_HoldOn_MildDisagreement_T_BodyStuff_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3233, Grace.__$behaviorFactory14_rfield, null, null, "gmT1_Deflect_HoldOn_StrongDisagreement_T_BodyStuff_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3234, Grace.__$behaviorFactory14_rfield, null, null, "gmT1_Deflect_HoldOn_StrongDisagreement_T_BodyStuff_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3235, Grace.__$behaviorFactory14_rfield, null, null, "gmT1_Deflect_HoldOn_StrongDisagreement_T_BodyStuff_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3238, Grace.__$behaviorFactory14_rfield, null, null, "gmT1_Deflect_HoldOn_Awkward_T_BodyStuff_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3239, Grace.__$behaviorFactory14_rfield, null, null, "gmT1_Deflect_HoldOn_Awkward_T_BodyStuff_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3240, Grace.__$behaviorFactory14_rfield, null, null, "gmT1_Deflect_HoldOn_Awkward_T_BodyStuff_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3243, Grace.__$behaviorFactory14_rfield, null, null, "gmT1_Deflect_HoldOn_WantMore_T_BodyStuff_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3244, Grace.__$behaviorFactory14_rfield, null, null, "gmT1_Deflect_HoldOn_WantMore_T_BodyStuff_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3245, Grace.__$behaviorFactory14_rfield, null, null, "gmT1_Deflect_HoldOn_WantMore_T_BodyStuff_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3248, Grace.__$behaviorFactory14_rfield, null, null, "gmT1_Deflect_HoldOn_Unknown_T_BodyStuff_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3249, Grace.__$behaviorFactory14_rfield, null, null, "gmT1_Deflect_HoldOn_Unknown_T_BodyStuff_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3250, Grace.__$behaviorFactory14_rfield, null, null, "gmT1_Deflect_HoldOn_Unknown_T_BodyStuff_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3252, Grace.__$behaviorFactory14_rfield, null, null, "gmT1L1_Explain_BodyStuff_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3253, Grace.__$behaviorFactory14_rfield, null, null, "gmT1L1_Explain_BodyStuff_seq_dia()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3254, Grace.__$behaviorFactory14_rfield, null, null, "gmT1L1_Explain_BodyStuff_seq_dia()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3257, Grace.__$behaviorFactory14_rfield, Grace.__$precondition4_rfield, null, "gmT12L1_Provocative_BodyStuff_seq1_dia(int)", null, (short)1));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3258, Grace.__$behaviorFactory14_rfield, Grace.__$precondition4_rfield, null, "gmT12L1_Provocative_BodyStuff_seq1_dia(int)", null, (short)1));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3259, Grace.__$behaviorFactory14_rfield, Grace.__$precondition4_rfield, null, "gmT12L1_Provocative_BodyStuff_seq1_dia(int)", null, (short)1));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3260, Grace.__$behaviorFactory14_rfield, Grace.__$precondition4_rfield, null, "gmT12L1_Provocative_BodyStuff_seq1_dia(int)", null, (short)1));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3261, Grace.__$behaviorFactory14_rfield, Grace.__$precondition4_rfield, null, "gmT12L1_Provocative_BodyStuff_seq1_dia(int)", null, (short)1));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3262, Grace.__$behaviorFactory14_rfield, Grace.__$precondition4_rfield, null, "gmT12L1_Provocative_BodyStuff_seq1_dia(int)", null, (short)1));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3263, Grace.__$behaviorFactory14_rfield, Grace.__$precondition4_rfield, null, "gmT12L1_Provocative_BodyStuff_seq1_dia(int)", null, (short)2));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3264, Grace.__$behaviorFactory14_rfield, Grace.__$precondition4_rfield, null, "gmT12L1_Provocative_BodyStuff_seq1_dia(int)", null, (short)2));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3265, Grace.__$behaviorFactory14_rfield, Grace.__$precondition4_rfield, null, "gmT12L1_Provocative_BodyStuff_seq1_dia(int)", null, (short)2));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3266, Grace.__$behaviorFactory14_rfield, Grace.__$precondition4_rfield, null, "gmT12L1_Provocative_BodyStuff_seq1_dia3(int)", null, (short)1));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3267, Grace.__$behaviorFactory14_rfield, Grace.__$precondition4_rfield, null, "gmT12L1_Provocative_BodyStuff_seq1_dia3(int)", null, (short)1));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3268, Grace.__$behaviorFactory14_rfield, Grace.__$precondition4_rfield, null, "gmT12L1_Provocative_BodyStuff_seq1_dia3(int)", null, (short)1));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3269, Grace.__$behaviorFactory14_rfield, Grace.__$precondition4_rfield, null, "gmT12L1_Provocative_BodyStuff_seq1_dia3(int)", null, (short)1));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3270, Grace.__$behaviorFactory14_rfield, Grace.__$precondition4_rfield, null, "gmT12L1_Provocative_BodyStuff_seq1_dia3(int)", null, (short)1));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3271, Grace.__$behaviorFactory14_rfield, Grace.__$precondition4_rfield, null, "gmT12L1_Provocative_BodyStuff_seq1_dia3(int)", null, (short)1));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3272, Grace.__$behaviorFactory14_rfield, Grace.__$precondition4_rfield, null, "gmT12L1_Provocative_BodyStuff_seq1_dia3(int)", null, (short)2));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3273, Grace.__$behaviorFactory14_rfield, Grace.__$precondition4_rfield, null, "gmT12L1_Provocative_BodyStuff_seq1_dia3(int)", null, (short)2));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3274, Grace.__$behaviorFactory14_rfield, Grace.__$precondition4_rfield, null, "gmT12L1_Provocative_BodyStuff_seq1_dia3(int)", null, (short)2));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3275, Grace.__$behaviorFactory14_rfield, Grace.__$precondition4_rfield, null, "gmT12L1_Provocative_BodyStuff_seq1_dia3(int)", null, (short)1));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3276, Grace.__$behaviorFactory14_rfield, Grace.__$precondition4_rfield, null, "gmT12L1_Provocative_BodyStuff_seq1_dia3(int)", null, (short)1));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3277, Grace.__$behaviorFactory14_rfield, Grace.__$precondition4_rfield, null, "gmT12L1_Provocative_BodyStuff_seq1_dia3(int)", null, (short)1));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3278, Grace.__$behaviorFactory14_rfield, Grace.__$precondition4_rfield, null, "gmT12L1_Provocative_BodyStuff_seq1_dia3(int)", null, (short)1));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3279, Grace.__$behaviorFactory14_rfield, Grace.__$precondition4_rfield, null, "gmT12L1_Provocative_BodyStuff_seq1_dia3(int)", null, (short)1));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3280, Grace.__$behaviorFactory14_rfield, Grace.__$precondition4_rfield, null, "gmT12L1_Provocative_BodyStuff_seq1_dia3(int)", null, (short)1));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3281, Grace.__$behaviorFactory14_rfield, Grace.__$precondition4_rfield, null, "gmT12L1_Provocative_BodyStuff_seq1_dia3(int)", null, (short)2));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3282, Grace.__$behaviorFactory14_rfield, Grace.__$precondition4_rfield, null, "gmT12L1_Provocative_BodyStuff_seq1_dia3(int)", null, (short)2));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3283, Grace.__$behaviorFactory14_rfield, Grace.__$precondition4_rfield, null, "gmT12L1_Provocative_BodyStuff_seq1_dia3(int)", null, (short)2));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3284, Grace.__$behaviorFactory14_rfield, Grace.__$precondition4_rfield, null, "gmT12L1_Provocative_BodyStuff_seq1_dia4()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3285, Grace.__$behaviorFactory14_rfield, Grace.__$precondition4_rfield, null, "gmT12L1_Provocative_BodyStuff_seq1_dia4()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3286, Grace.__$behaviorFactory14_rfield, Grace.__$precondition4_rfield, null, "gmT12L1_Provocative_BodyStuff_seq1_dia4()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3287, Grace.__$behaviorFactory14_rfield, Grace.__$precondition4_rfield, null, "gmT12L1_Provocative_BodyStuff_seq1_dia4()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3288, Grace.__$behaviorFactory14_rfield, null, null, "gmT12L1_Provocative_BodyStuff_seq1_dia5()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3289, Grace.__$behaviorFactory14_rfield, null, null, "gmT12L1_Provocative_BodyStuff_seq1_dia5()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3291, Grace.__$behaviorFactory14_rfield, null, null, "gmT12L1_Provocative_BodyStuff_seq2_dia1()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3292, Grace.__$behaviorFactory14_rfield, null, null, "gmT12L1_Provocative_BodyStuff_seq2_dia1()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3295, Grace.__$behaviorFactory14_rfield, null, null, "gmT12L1_Provocative_glances_loop()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3296, Grace.__$behaviorFactory14_rfield, null, null, "gmT12L1_Provocative_glances_possibleThink()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3297, Grace.__$behaviorFactory14_rfield, null, null, "gmT12L1_Provocative_glances_possibleThink()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3298, Grace.__$behaviorFactory14_rfield, null, null, "gmT12L1_Provocative_glances_possibleThink()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3299, Grace.__$behaviorFactory14_rfield, null, null, "gmT12L1_Provocative_glances_possibleThink()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3300, Grace.__$behaviorFactory14_rfield, null, null, "gmT12L1_Provocative_glances_possibleThink()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3301, Grace.__$behaviorFactory14_rfield, null, null, "gmT12L1_Provocative_glances_possibleThink()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3302, Grace.__$behaviorFactory14_rfield, null, null, "gmT12L1_Provocative_glances_possibleSerious()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3303, Grace.__$behaviorFactory14_rfield, null, null, "gmT12L1_Provocative_glances_possibleSerious()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3306, Grace.__$behaviorFactory14_rfield, null, null, "gmT1_DeflectSpecial_TooManyDeflects_T_BodyStuff_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3308, Grace.__$behaviorFactory14_rfield, null, null, "gmT1_DeflectSpecial_TooManyDeflects_G_BodyStuff_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3310, Grace.__$behaviorFactory14_rfield, null, null, "gmT12L1_LeaveApartment_BodyStuff_seq(float, float, float)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3311, Grace.__$behaviorFactory14_rfield, null, null, "gmT12L1_LeaveApartment_BodyStuff_seq2()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3312, Grace.__$behaviorFactory14_rfield, null, null, "gmT12L1_LeaveApartment_BodyStuff_seq3()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3314, Grace.__$behaviorFactory14_rfield, null, null, "gmT12L1_LeaveForKitchen_BodyStuff_seq3()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3316, Grace.__$behaviorFactory14_rfield, null, null, "gmT12L1_PlayerUncoop_BodyStuff_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3317, Grace.__$behaviorFactory14_rfield, null, null, "gmT12L1_PlayerUncoop_BodyStuff_seq2()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3318, Grace.__$behaviorFactory14_rfield, null, null, "gmT12L1_PlayerUncoopNotSpeaking_BodyStuff_seq3()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3320, Grace.__$behaviorFactory14_rfield, null, null, "gmT12L1_PlayerUncoopNotMoving_BodyStuff_seq3()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3323, Grace.__$behaviorFactory14_rfield, null, null, "gmT12L1_PlayerUncoopFidgety_BodyStuff_seq3()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3325, Grace.__$behaviorFactory14_rfield, null, null, "gmT1L2_PraiseAllyG_NTPA_BodyStuff_dia()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3326, Grace.__$behaviorFactory14_rfield, null, null, "gmT1L2_PraiseAllyG_NTPA_BodyStuff_dia()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3328, Grace.__$behaviorFactory14_rfield, null, null, "gmT1L2_PraiseAllyG_NTPA_BodyStuff2_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3330, Grace.__$behaviorFactory14_rfield, null, null, "gmT1L2_PraiseAllyG_GPA_BodyStuff_dia()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3331, Grace.__$behaviorFactory14_rfield, null, null, "gmT1L2_PraiseAllyG_GPA_BodyStuff_dia()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3333, Grace.__$behaviorFactory14_rfield, null, null, "gmT1L2_PraiseAllyG_GPA_BodyStuff2_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3335, Grace.__$behaviorFactory14_rfield, null, null, "gmT1L2_PraiseAllyT_NGPA_BodyStuff_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3336, Grace.__$behaviorFactory14_rfield, null, null, "gmT1L2_PraiseAllyT_NGPA_BodyStuff_seq_dia()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3337, Grace.__$behaviorFactory14_rfield, null, null, "gmT1L2_PraiseAllyT_NGPA_BodyStuff_seq_dia()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3339, Grace.__$behaviorFactory14_rfield, null, null, "gmT1L2_PraiseAllyT_NGPA_BodyStuff2_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3341, Grace.__$behaviorFactory14_rfield, null, null, "gmT1L2_PraiseAllyT_TPA_BodyStuff_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3342, Grace.__$behaviorFactory14_rfield, null, null, "gmT1L2_PraiseAllyT_TPA_BodyStuff_seq_dia()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3343, Grace.__$behaviorFactory14_rfield, null, null, "gmT1L2_PraiseAllyT_TPA_BodyStuff_seq_dia()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3345, Grace.__$behaviorFactory14_rfield, null, null, "gmT1L2_PraiseAllyT_TPA_BodyStuff2_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3348, Grace.__$behaviorFactory14_rfield, null, null, "gmT1L2_CriticizeG_NTPA_BodyStuff2_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3351, Grace.__$behaviorFactory14_rfield, null, null, "gmT1L2_CriticizeG_GPA_BodyStuff2_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3353, Grace.__$behaviorFactory14_rfield, null, null, "gmT1L2_CriticizeT_NGPA_BodyStuff_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3355, Grace.__$behaviorFactory14_rfield, null, null, "gmT1L2_CriticizeT_NGPA_BodyStuff2_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3357, Grace.__$behaviorFactory14_rfield, null, null, "gmT1L2_CriticizeT_TPA_BodyStuff_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3359, Grace.__$behaviorFactory14_rfield, null, null, "gmT1L2_CriticizeT_TPA_BodyStuff2_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3361, Grace.__$behaviorFactory14_rfield, null, null, "gmT1L2_FlirtG_NTPA_BodyStuff_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3363, Grace.__$behaviorFactory14_rfield, null, null, "gmT1L2_FlirtG_NTPA_BodyStuff2_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3365, Grace.__$behaviorFactory14_rfield, null, null, "gmT1L2_FlirtG_GPA_BodyStuff_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3367, Grace.__$behaviorFactory14_rfield, null, null, "gmT1L2_FlirtG_GPA_BodyStuff2_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3369, Grace.__$behaviorFactory14_rfield, null, null, "gmT1L2_FlirtT_NGPA_BodyStuff_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3371, Grace.__$behaviorFactory14_rfield, null, null, "gmT1L2_FlirtT_NGPA_BodyStuff2_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3373, Grace.__$behaviorFactory14_rfield, null, null, "gmT1L2_FlirtT_TPA_BodyStuff_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3375, Grace.__$behaviorFactory14_rfield, null, null, "gmT1L2_FlirtT_TPA_BodyStuff2_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3377, Grace.__$behaviorFactory14_rfield, null, null, "gmT1L2_HugComfortG_NTPA_BodyStuff_dia()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3379, Grace.__$behaviorFactory14_rfield, null, null, "gmT1L2_HugComfortG_NTPA_BodyStuff2_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3381, Grace.__$behaviorFactory14_rfield, null, null, "gmT1L2_HugComfortG_GPA_BodyStuff_dia()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3383, Grace.__$behaviorFactory14_rfield, null, null, "gmT1L2_HugComfortG_GPA_BodyStuff2_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3385, Grace.__$behaviorFactory14_rfield, null, null, "gmT1L2_HugComfortT_NGPA_BodyStuff_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3386, Grace.__$behaviorFactory14_rfield, null, null, "gmT1L2_HugComfortT_NGPA_BodyStuff_seq_dia()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3388, Grace.__$behaviorFactory14_rfield, null, null, "gmT1L2_HugComfortT_NGPA_BodyStuff2_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3390, Grace.__$behaviorFactory15_rfield, null, null, "gmT1L2_HugComfortT_TPA_BodyStuff_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3391, Grace.__$behaviorFactory15_rfield, null, null, "gmT1L2_HugComfortT_TPA_BodyStuff_seq_dia()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3393, Grace.__$behaviorFactory15_rfield, null, null, "gmT1L2_HugComfortT_TPA_BodyStuff2_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3396, Grace.__$behaviorFactory15_rfield, null, null, "gmT1L2_Pacify_NGPA_BodyStuff_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3397, Grace.__$behaviorFactory15_rfield, null, null, "gmT1L2_Pacify_NGPA_BodyStuff_seq2()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3407, Grace.__$behaviorFactory15_rfield, null, null, "gmT1L2_Satl_Marriage_BodyStuff_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3408, Grace.__$behaviorFactory15_rfield, null, null, "gmT1L2_Satl_Marriage_BodyStuff_dia()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3409, Grace.__$behaviorFactory15_rfield, null, null, "gmT1L2_Satl_Marriage_BodyStuff_dia()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3413, Grace.__$behaviorFactory15_rfield, null, null, "gmT1L2_Satl_Divorce_BodyStuff2_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3415, Grace.__$behaviorFactory15_rfield, null, null, "gmT1L2_Satl_Sex_Garbage_BodyStuff_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3417, Grace.__$behaviorFactory15_rfield, null, null, "gmT1L2_Satl_Sex_Garbage_BodyStuff2_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3419, Grace.__$behaviorFactory15_rfield, null, null, "gmT1L2_Satl_Sex_BodyStuff3_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3420, Grace.__$behaviorFactory15_rfield, null, null, "gmT1L2_Satl_Sex_BodyStuff3_dia()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3421, Grace.__$behaviorFactory15_rfield, null, null, "gmT1L2_Satl_Sex_BodyStuff3_dia()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3422, Grace.__$behaviorFactory15_rfield, null, null, "gmT1L2_Satl_Sex_BodyStuff3_dia()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3424, Grace.__$behaviorFactory15_rfield, null, null, "gmT1L2_Satl_Sex_DryCleaning_BodyStuff_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3426, Grace.__$behaviorFactory15_rfield, null, null, "gmT1L2_Satl_Sex_DryCleaning_BodyStuff2_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3428, Grace.__$behaviorFactory15_rfield, null, null, "gmT1L2_Satl_Sex_CleaningWoman_BodyStuff_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3430, Grace.__$behaviorFactory15_rfield, null, null, "gmT1L2_Satl_Sex_CleaningWoman_BodyStuff2_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3434, Grace.__$behaviorFactory15_rfield, null, null, "gmT1L2_Satl_Therapy_BodyStuff_FirstMention_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3436, Grace.__$behaviorFactory15_rfield, null, null, "gmT1L2_Satl_Therapy_BodyStuff_SecondMention_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3438, Grace.__$behaviorFactory15_rfield, null, null, "gmT1L2_Satl_Therapy_BodyStuff2_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3441, Grace.__$behaviorFactory15_rfield, null, null, "gmT1L2_Obj_WeddingPic_BodyStuff2_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3444, Grace.__$behaviorFactory15_rfield, null, null, "gmT1L2_Obj_FurnishingsApt_BodyStuff2_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3448, Grace.__$behaviorFactory15_rfield, null, null, "gmT1L2_Obj_ItalyPic_BodyStuff2_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3450, Grace.__$behaviorFactory15_rfield, null, null, "gmT1L2_Obj_Trinkets_BodyStuff_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3452, Grace.__$behaviorFactory15_rfield, null, null, "gmT1L2_Obj_Trinkets_BodyStuf2_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3454, Grace.__$behaviorFactory15_rfield, null, null, "gmT1L2_Obj_Trinkets_BodyStuff3_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3456, Grace.__$behaviorFactory15_rfield, null, null, "gmT1L2_Obj_WorkTable_NGPA_BodyStuff_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3459, Grace.__$behaviorFactory15_rfield, null, null, "gmT1L2_Obj_WorkTable_NGPA_BodyStuff3_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3461, Grace.__$behaviorFactory15_rfield, null, null, "gmT1L2_Obj_WorkTable_NGPA_BodyStuff4_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3463, Grace.__$behaviorFactory15_rfield, null, null, "gmT1L2_Obj_WorkTable_TPA_BodyStuff_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3465, Grace.__$behaviorFactory15_rfield, null, null, "gmT1L2_Obj_WorkTable_TPA_BodyStuff2_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3467, Grace.__$behaviorFactory15_rfield, null, null, "gmT1L2_Obj_WorkTable_TPA_BodyStuff3_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3469, Grace.__$behaviorFactory15_rfield, null, null, "gmT1L2_Obj_Painting_BodyStuff_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3472, Grace.__$behaviorFactory15_rfield, null, null, "gmT1L2_Obj_Painting_BodyStuff3_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3473, Grace.__$behaviorFactory15_rfield, null, null, "gmT1L2_Obj_Painting_BodyStuff3_dia()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3475, Grace.__$behaviorFactory15_rfield, null, null, "gmT1L2_Obj_BrassBull_BodyStuff_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3478, Grace.__$behaviorFactory15_rfield, null, null, "gmT1L2_Obj_BarStuff_BodyStuff_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3480, Grace.__$behaviorFactory15_rfield, null, null, "gmT1L2_Obj_Eightball_BodyStuff_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3482, Grace.__$behaviorFactory15_rfield, null, null, "gmT1L2_Obj_Eightball_BodyStuff2_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3485, Grace.__$behaviorFactory15_rfield, null, null, "gmT1L2_Obj_ViewBalcony_BodyStuff2_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3488, Grace.__$behaviorFactory15_rfield, null, null, "gmT1L2_Explain_BodyStuff_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3489, Grace.__$behaviorFactory15_rfield, null, null, "gmT1L2_Explain_BodyStuff_seq_dia()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3490, Grace.__$behaviorFactory15_rfield, null, null, "gmT1L2_Explain_BodyStuff_seq_dia()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3492, Grace.__$behaviorFactory15_rfield, null, null, "gmT12L2_Provocative_BodyStuff_seq(int, int, int)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3493, Grace.__$behaviorFactory15_rfield, null, null, "gmT12L2_Provocative_BodyStuff_seq1(int)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3494, Grace.__$behaviorFactory15_rfield, Grace.__$precondition4_rfield, null, "gmT12L2_Provocative_BodyStuff_seq2(int)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3496, Grace.__$behaviorFactory15_rfield, Grace.__$precondition4_rfield, null, "gmT12L2_Provocative_BodyStuff2_seq(boolean)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3497, Grace.__$behaviorFactory15_rfield, null, null, "gmT12L2_Provocative_BodyStuff2_seq_graceRambles_dia1()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3498, Grace.__$behaviorFactory15_rfield, null, null, "gmT12L2_Provocative_BodyStuff2_seq_graceRambles_dia2()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3499, Grace.__$behaviorFactory15_rfield, null, null, "gmT12L2_Provocative_BodyStuff2_seq_graceRambles_dia3()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3500, Grace.__$behaviorFactory15_rfield, null, null, "gmT12L2_Provocative_BodyStuff2_seq_graceRambles_dia4()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3501, Grace.__$behaviorFactory15_rfield, null, null, "gmT12L2_Provocative_BodyStuff2_seq_graceRambles_dia5()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3502, Grace.__$behaviorFactory15_rfield, Grace.__$precondition4_rfield, null, "gmT12L2_Provocative_BodyStuff2_seq(boolean)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3503, Grace.__$behaviorFactory15_rfield, null, null, "gmT12L2_Provocative_BodyStuff2_seq_tripRambles_dia1()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3504, Grace.__$behaviorFactory15_rfield, null, null, "gmT12L2_Provocative_BodyStuff2_seq_tripRambles_dia2()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3505, Grace.__$behaviorFactory15_rfield, null, null, "gmT12L2_Provocative_BodyStuff2_seq_tripRambles_dia3()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3507, Grace.__$behaviorFactory15_rfield, null, null, "gmT12L2_LeaveApartment_BodyStuff_seq(float, float, float)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3508, Grace.__$behaviorFactory15_rfield, null, null, "gmT12L2_LeaveApartment_BodyStuff_seq2()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3509, Grace.__$behaviorFactory15_rfield, null, null, "gmT12L2_LeaveApartment_BodyStuff_seq3()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3511, Grace.__$behaviorFactory15_rfield, null, null, "gmT12L2_LeaveForKitchen_BodyStuff_seq3()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3517, Grace.__$behaviorFactory15_rfield, null, null, "gmT1L3_PushTooFar_PraiseAllyG_BodyStuff_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3519, Grace.__$behaviorFactory15_rfield, null, null, "gmT1L3_PushTooFar_PraiseAllyT_BodyStuff_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3521, Grace.__$behaviorFactory15_rfield, null, null, "gmT1L3_PushTooFar_CriticizeG_BodyStuff_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3523, Grace.__$behaviorFactory15_rfield, null, null, "gmT1L3_PushTooFar_CriticizeT_BodyStuff_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3525, Grace.__$behaviorFactory15_rfield, null, null, "gmT1L3_PushTooFar_FlirtG_BodyStuff_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3527, Grace.__$behaviorFactory15_rfield, null, null, "gmT1L3_PushTooFar_FlirtT_BodyStuff_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3529, Grace.__$behaviorFactory15_rfield, null, null, "gmT1L3_PushTooFar_PacifyNGPA_BodyStuff_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3531, Grace.__$behaviorFactory15_rfield, null, null, "gmT1L3_PushTooFar_PacifyNTPA_BodyStuff_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3533, Grace.__$behaviorFactory15_rfield, null, null, "gmT1L3_PushTooFar_IntimateSupportG_BodyStuff_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3535, Grace.__$behaviorFactory15_rfield, null, null, "gmT1L3_PushTooFar_IntimateSupportT_BodyStuff_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3537, Grace.__$behaviorFactory15_rfield, null, null, "gmT1L3_PushTooFar_ArtistAdvG_BodyStuff_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3539, Grace.__$behaviorFactory15_rfield, null, null, "gmT1L3_PushTooFar_FacadeG_BodyStuff_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3541, Grace.__$behaviorFactory15_rfield, null, null, "gmT1L3_PushTooFar_FacadeT_BodyStuff_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3543, Grace.__$behaviorFactory15_rfield, null, null, "gmT1L3_PushTooFar_RockyMarriageG_BodyStuff_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3545, Grace.__$behaviorFactory15_rfield, null, null, "gmT1L3_PushTooFar_RockyMarriageT_BodyStuff_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3547, Grace.__$behaviorFactory15_rfield, null, null, "gmT12L3_PushTooFar_Provocative_BodyStuff_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3549, Grace.__$behaviorFactory15_rfield, null, null, "gmT12L3_PushTooFar_Provocative_BodyStuff1b_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3550, Grace.__$behaviorFactory15_rfield, null, null, "gmT12L3_PushTooFar_Provocative_BodyStuff1b_dia1()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3551, Grace.__$behaviorFactory15_rfield, null, null, "gmT12L3_PushTooFar_Provocative_BodyStuff1b_dia1()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3552, Grace.__$behaviorFactory15_rfield, null, null, "gmT12L3_PushTooFar_Provocative_BodyStuff1b_dia2()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3553, Grace.__$behaviorFactory15_rfield, null, null, "gmT12L3_PushTooFar_Provocative_BodyStuff1b_dia2()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3556, Grace.__$behaviorFactory15_rfield, null, null, "gmT12L3_PushTooFar_LeaveRoom_BodyStuff_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3558, Grace.__$behaviorFactory15_rfield, null, null, "gmT12L3_PushTooFar_Uncoop_BodyStuff_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3561, Grace.__$behaviorFactory15_rfield, null, null, "gmT12_DeflectSpecial_AlmostPushTooFar_G_BodyStuff_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3562, Grace.__$behaviorFactory15_rfield, null, null, "gmT1_AverseRxnSpeak_BodyStuff_seq(int, int, int, int, int, int)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3563, Grace.__$behaviorFactory15_rfield, null, null, "gmT1_AverseRxnSpeak_BodyStuff_v1_seq_dia(int, int, int, int, int, int)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3564, Grace.__$behaviorFactory15_rfield, null, null, "gmT1_AverseRxnSpeak_BodyStuff_v1_seq_dia(int, int, int, int, int, int)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3565, Grace.__$behaviorFactory15_rfield, null, null, "gmT1_AverseRxnSpeak_BodyStuff_v1_diaseq(int, int, int, int, int, int)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3566, Grace.__$behaviorFactory15_rfield, null, null, "gmT1_AverseRxnSpeak_BodyStuff_seq(int, int, int, int, int, int)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3567, Grace.__$behaviorFactory15_rfield, null, null, "gmT1_AverseRxnSpeak_BodyStuff_v2_seq_dia(int, int, int, int, int, int)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3568, Grace.__$behaviorFactory15_rfield, null, null, "gmT1_AverseRxnSpeak_BodyStuff_v2_seq_dia(int, int, int, int, int, int)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3569, Grace.__$behaviorFactory15_rfield, null, null, "gmT1_AverseRxnSpeak_BodyStuff_v2_diaseq(int, int, int, int, int, int)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3570, Grace.__$behaviorFactory15_rfield, null, null, "gmT1_AverseRxnSpeak_RaiseArms()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3571, Grace.__$behaviorFactory15_rfield, null, null, "gmT1_AverseRxnSpeak_RaiseArms()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3572, Grace.__$behaviorFactory15_rfield, null, null, "gmT1_AverseRxnSpeak_BodyStuff_seq2()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3573, Grace.__$behaviorFactory15_rfield, null, null, "gmT1_AverseRxnSpeak_BodyStuff_seq2()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3574, Grace.__$behaviorFactory15_rfield, null, null, "gmT1_AverseRxnSpeak_BodyStuff_seq2()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3575, Grace.__$behaviorFactory15_rfield, null, null, "gmT1_AverseRxnListen_BodyStuff_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3576, Grace.__$behaviorFactory15_rfield, null, null, "gmT1_AverseRxnListen_BodyStuff_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3577, Grace.__$behaviorFactory15_rfield, null, null, "gm_GlanceAtPlayerOrAway()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3578, Grace.__$behaviorFactory15_rfield, null, null, "gm_GlanceAtPlayerOrAway()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3579, Grace.__$behaviorFactory15_rfield, Grace.__$precondition4_rfield, null, "gm_ProvocativeFreshAlternateGlance(int)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3580, Grace.__$behaviorFactory15_rfield, Grace.__$precondition4_rfield, null, "gm_ProvocativeFreshAlternateGlance(int)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3581, Grace.__$behaviorFactory15_rfield, Grace.__$precondition4_rfield, null, "gm_ProvocativeFreshAlternateGlance(int)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3582, Grace.__$behaviorFactory15_rfield, Grace.__$precondition4_rfield, null, "gm_ProvocativeFreshAlternateGlance(int)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3583, Grace.__$behaviorFactory15_rfield, Grace.__$precondition4_rfield, null, "gm_ProvocativeBlinkQuiver(int)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3584, Grace.__$behaviorFactory15_rfield, Grace.__$precondition4_rfield, null, "gm_ProvocativeBlinkQuiver(int)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3585, Grace.__$behaviorFactory15_rfield, Grace.__$precondition4_rfield, null, "gm_ProvocativeBlinkQuiver(int)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3586, Grace.__$behaviorFactory15_rfield, Grace.__$precondition4_rfield, null, "gm_ProvocativeBlinkQuiver(int)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3587, Grace.__$behaviorFactory15_rfield, Grace.__$precondition4_rfield, null, "gm_ProvocativeBlinkQuiver(int)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3588, Grace.__$behaviorFactory15_rfield, null, null, "gmT1_PushedTooFar_NonAffChr_stuff1()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3589, Grace.__$behaviorFactory15_rfield, null, null, "gmT1_PushedTooFar_NonAffChr_stuff2(int, int)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3590, Grace.__$behaviorFactory15_rfield, Grace.__$precondition4_rfield, null, "gmT1_PushedTooFar_NonAffChr_stuff2_dia1(int, int)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3591, Grace.__$behaviorFactory15_rfield, Grace.__$precondition4_rfield, null, "gmT1_PushedTooFar_NonAffChr_stuff2_dia1(int, int)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3592, Grace.__$behaviorFactory15_rfield, null, null, "gmT1_PushedTooFar_NonAffChr_stuff2b(int, int, int)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3593, Grace.__$behaviorFactory15_rfield, null, null, "gmT1_PushedTooFar_NonAffChr_stuff3(int)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3594, Grace.__$behaviorFactory15_rfield, null, null, "gmT1_PushedTooFar_AffChr_stuff1()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3595, Grace.__$behaviorFactory15_rfield, null, null, "gmT1_PushedTooFar_AffChr_stuff2(int)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3596, Grace.__$behaviorFactory15_rfield, null, null, "gmT1_PushedTooFar_AffChr_stuff2b(int, int)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3597, Grace.__$behaviorFactory15_rfield, Grace.__$precondition4_rfield, Grace.__$preconditionSensorFactory0_rfield, "gmT1_PushedTooFar_AffChr_stuff3(int)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3598, Grace.__$behaviorFactory15_rfield, Grace.__$precondition4_rfield, Grace.__$preconditionSensorFactory0_rfield, "gmT1_PushedTooFar_AffChr_stuff3b(int, int, int)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3599, Grace.__$behaviorFactory15_rfield, null, null, "gmT1_DenialSpeak_BodyStuff_seq(int, int, int, int, int, int, int, int, int, int, int)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3600, Grace.__$behaviorFactory15_rfield, Grace.__$precondition4_rfield, null, "gmT1_DenialSpeak_BodyStuff_dia3(int, int)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3601, Grace.__$behaviorFactory15_rfield, null, null, "gmT1_DenialSpeak_BodyStuff_seq2()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3602, Grace.__$behaviorFactory15_rfield, null, null, "gmT1_DenialShortSpeak_BodyStuff_seq(int, int, int, int, int, int, int, int)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3603, Grace.__$behaviorFactory15_rfield, null, null, "gmT1_DenialShortSpeak_BodyStuff_setmood(int)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3604, Grace.__$behaviorFactory15_rfield, null, null, "gm_StandBackIfPlayerTooClose()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3605, Grace.__$behaviorFactory15_rfield, Grace.__$precondition4_rfield, Grace.__$preconditionSensorFactory0_rfield, "gm_StandBackIfPlayerTooClose_Body()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3606, Grace.__$behaviorFactory15_rfield, Grace.__$precondition4_rfield, Grace.__$preconditionSensorFactory0_rfield, "gm_Provocative_StammerAndHesitate(long)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3607, Grace.__$behaviorFactory15_rfield, Grace.__$precondition4_rfield, null, "gm_Provocative_StammerAndHesitate_WalkOrJustTurn(float, float)", null, (short)2));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3608, Grace.__$behaviorFactory15_rfield, Grace.__$precondition4_rfield, null, "gm_Provocative_StammerAndHesitate_WalkOrJustTurn(float, float)", null, (short)1));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3609, Grace.__$behaviorFactory15_rfield, Grace.__$precondition4_rfield, null, "gm_Provocative_StammerAndHesitate_dia1()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3610, Grace.__$behaviorFactory15_rfield, Grace.__$precondition4_rfield, null, "gm_Provocative_StammerAndHesitate_dia2()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3611, Grace.__$behaviorFactory15_rfield, Grace.__$precondition4_rfield, null, "gm_Provocative_StammerAndHesitate_dia2_gaze(int)", null, (short)2));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3612, Grace.__$behaviorFactory15_rfield, null, null, "gm_Provocative_StammerAndHesitate_dia2_gaze(int)", null, (short)1));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3613, Grace.__$behaviorFactory15_rfield, Grace.__$precondition4_rfield, null, "gm_Provocative_StammerAndHesitate_dia_doIt(int)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3614, Grace.__$behaviorFactory15_rfield, null, null, "gmT1_Deflect_Minimal_SpeakerStuff(int, int, int, int, int)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3615, Grace.__$behaviorFactory15_rfield, Grace.__$precondition4_rfield, null, "gmT1_Deflect_Minimal_SpeakerStuff_mood(int, int)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3616, Grace.__$behaviorFactory16_rfield, Grace.__$precondition4_rfield, null, "gmT1_Deflect_Minimal_SpeakerStuff_littleaction(int)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3617, Grace.__$behaviorFactory16_rfield, null, null, "gmT1_Deflect_Minimal_SpeakerStuff_more1()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3618, Grace.__$behaviorFactory16_rfield, null, null, "gmT1_Deflect_Minimal_SpeakerStuff_more1()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3619, Grace.__$behaviorFactory16_rfield, null, null, "gmT1_Deflect_Minimal_SpeakerStuff_more2()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3620, Grace.__$behaviorFactory16_rfield, null, null, "gmT1_Deflect_Minimal_SpeakerStuff_more2()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3621, Grace.__$behaviorFactory16_rfield, null, null, "gmT1_Deflect_Minimal_ListenerStuff()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3622, Grace.__$behaviorFactory16_rfield, null, null, "gmT1_Deflect_Minimal_ListenerStuff_more1()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3623, Grace.__$behaviorFactory16_rfield, null, null, "gmT1_Deflect_Minimal_ListenerStuff_more1()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3624, Grace.__$behaviorFactory16_rfield, null, null, "gmT1_Deflect_Acknowledge_SpeakerStuff(int, int, int, int, int, int, int)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3625, Grace.__$behaviorFactory16_rfield, Grace.__$precondition4_rfield, null, "gmT1_Deflect_Acknowledge_SpeakerStuff_mood(int, int)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3626, Grace.__$behaviorFactory16_rfield, Grace.__$precondition4_rfield, null, "gmT1_Deflect_Acknowledge_SpeakerStuff_littleaction(int)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3627, Grace.__$behaviorFactory16_rfield, null, null, "gmT1_Deflect_Acknowledge_SpeakerStuff_more1()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3628, Grace.__$behaviorFactory16_rfield, null, null, "gmT1_Deflect_Acknowledge_SpeakerStuff_more1()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3629, Grace.__$behaviorFactory16_rfield, null, null, "gmT1_Deflect_Acknowledge_SpeakerStuff_more2()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3630, Grace.__$behaviorFactory16_rfield, null, null, "gmT1_Deflect_Acknowledge_SpeakerStuff_more2()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3631, Grace.__$behaviorFactory16_rfield, null, null, "gmT1_Deflect_Acknowledge_ListenerStuff()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3632, Grace.__$behaviorFactory16_rfield, null, null, "gmT1_Deflect_Acknowledge_ListenerStuff_more1()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3633, Grace.__$behaviorFactory16_rfield, null, null, "gmT1_Deflect_Acknowledge_ListenerStuff_more1()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3634, Grace.__$behaviorFactory16_rfield, null, null, "gmT1_Deflect_HoldOn_SpeakerStuff(int, int, int, int, int, int, int)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3635, Grace.__$behaviorFactory16_rfield, Grace.__$precondition4_rfield, null, "gmT1_Deflect_HoldOn_SpeakerStuff_mood(int, int)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3636, Grace.__$behaviorFactory16_rfield, Grace.__$precondition4_rfield, null, "gmT1_Deflect_HoldOn_SpeakerStuff_littleaction(int)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3637, Grace.__$behaviorFactory16_rfield, null, null, "gmT1_Deflect_HoldOn_SpeakerStuff_more1()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3638, Grace.__$behaviorFactory16_rfield, null, null, "gmT1_Deflect_HoldOn_SpeakerStuff_more1()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3639, Grace.__$behaviorFactory16_rfield, null, null, "gmT1_Deflect_HoldOn_SpeakerStuff_more2()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3640, Grace.__$behaviorFactory16_rfield, null, null, "gmT1_Deflect_HoldOn_SpeakerStuff_more2()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3641, Grace.__$behaviorFactory16_rfield, null, null, "gmT1_Deflect_HoldOn_ListenerStuff()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3642, Grace.__$behaviorFactory16_rfield, null, null, "gmT1_Deflect_HoldOn_ListenerStuff_more1()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3643, Grace.__$behaviorFactory16_rfield, null, null, "gmT1_Deflect_HoldOn_ListenerStuff_more1()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3645, Grace.__$behaviorFactory16_rfield, Grace.__$precondition4_rfield, null, "gmT1_Deflect_Reestablish_Positive_Speaker_BodyStuff_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3646, Grace.__$behaviorFactory16_rfield, null, null, "gmT1_Deflect_Reestablish_Positive_Speaker_BodyStuff_more1()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3647, Grace.__$behaviorFactory16_rfield, null, null, "gmT1_Deflect_Reestablish_Positive_Speaker_BodyStuff_more1()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3648, Grace.__$behaviorFactory16_rfield, null, null, "gmT1_Deflect_Reestablish_Positive_Speaker_BodyStuff_more2()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3649, Grace.__$behaviorFactory16_rfield, null, null, "gmT1_Deflect_Reestablish_Positive_Speaker_BodyStuff_more2()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3651, Grace.__$behaviorFactory16_rfield, null, null, "gmT1_Deflect_Reestablish_Positive_Listener_BodyStuff_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3652, Grace.__$behaviorFactory16_rfield, null, null, "gmT1_Deflect_Reestablish_Positive_Listener_BodyStuff_more1()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3653, Grace.__$behaviorFactory16_rfield, null, null, "gmT1_Deflect_Reestablish_Positive_Listener_BodyStuff_more1()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3655, Grace.__$behaviorFactory16_rfield, null, null, "gmT1_Deflect_Reestablish_Positive_Speaker_BodyStuff2_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3657, Grace.__$behaviorFactory16_rfield, Grace.__$precondition4_rfield, null, "gmT1_Deflect_Reestablish_Positive_Listener_BodyStuff2_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3659, Grace.__$behaviorFactory16_rfield, Grace.__$precondition4_rfield, null, "gmT1_Deflect_Reestablish_Negative_Speaker_BodyStuff_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3660, Grace.__$behaviorFactory16_rfield, null, null, "gmT1_Deflect_Reestablish_Negative_Speaker_BodyStuff_more1()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3661, Grace.__$behaviorFactory16_rfield, null, null, "gmT1_Deflect_Reestablish_Negative_Speaker_BodyStuff_more1()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3662, Grace.__$behaviorFactory16_rfield, null, null, "gmT1_Deflect_Reestablish_Negative_Speaker_BodyStuff_more2()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3663, Grace.__$behaviorFactory16_rfield, null, null, "gmT1_Deflect_Reestablish_Negative_Speaker_BodyStuff_more2()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3665, Grace.__$behaviorFactory16_rfield, null, null, "gmT1_Deflect_Reestablish_Negative_Listener_BodyStuff_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3666, Grace.__$behaviorFactory16_rfield, null, null, "gmT1_Deflect_Reestablish_Negative_Listener_BodyStuff_more1()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3667, Grace.__$behaviorFactory16_rfield, null, null, "gmT1_Deflect_Reestablish_Negative_Listener_BodyStuff_more1()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3669, Grace.__$behaviorFactory16_rfield, null, null, "gmT1_Deflect_Reestablish_Negative_Speaker_BodyStuff2_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3671, Grace.__$behaviorFactory16_rfield, Grace.__$precondition4_rfield, null, "gmT1_Deflect_Reestablish_Negative_Listener_BodyStuff2_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3673, Grace.__$behaviorFactory16_rfield, Grace.__$precondition4_rfield, null, "gmT1_Deflect_Reestablish_Neutral_Speaker_BodyStuff_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3674, Grace.__$behaviorFactory16_rfield, null, null, "gmT1_Deflect_Reestablish_Neutral_Speaker_BodyStuff_more1()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3675, Grace.__$behaviorFactory16_rfield, null, null, "gmT1_Deflect_Reestablish_Neutral_Speaker_BodyStuff_more1()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3676, Grace.__$behaviorFactory16_rfield, null, null, "gmT1_Deflect_Reestablish_Neutral_Speaker_BodyStuff_more2()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3677, Grace.__$behaviorFactory16_rfield, null, null, "gmT1_Deflect_Reestablish_Neutral_Speaker_BodyStuff_more2()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3679, Grace.__$behaviorFactory16_rfield, null, null, "gmT1_Deflect_Reestablish_Neutral_Listener_BodyStuff_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3680, Grace.__$behaviorFactory16_rfield, null, null, "gmT1_Deflect_Reestablish_Neutral_Listener_BodyStuff_more1()", null, (short)0));
}
private static final void registerBehaviors_2(final BehaviorLibrary behaviorLibrary) {
behaviorLibrary.registerBehavior(new __BehaviorDesc(3681, Grace.__$behaviorFactory16_rfield, null, null, "gmT1_Deflect_Reestablish_Neutral_Listener_BodyStuff_more1()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3683, Grace.__$behaviorFactory16_rfield, null, null, "gmT1_Deflect_Reestablish_Neutral_Speaker_BodyStuff2_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3685, Grace.__$behaviorFactory16_rfield, Grace.__$precondition4_rfield, null, "gmT1_Deflect_Reestablish_Neutral_Listener_BodyStuff2_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3687, Grace.__$behaviorFactory16_rfield, null, null, "gmT12L12_Explain_PrefaceBodyStuff_speaker_seq(int, int, int, int, int)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3688, Grace.__$behaviorFactory16_rfield, Grace.__$precondition4_rfield, null, "gmT12L12_Explain_PrefaceBodyStuff_speaker_dia1(int, int, int, int, int)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3689, Grace.__$behaviorFactory16_rfield, Grace.__$precondition4_rfield, null, "gmT12L12_Explain_PrefaceBodyStuff_speaker_dia1(int, int, int, int, int)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3690, Grace.__$behaviorFactory16_rfield, Grace.__$precondition4_rfield, null, "gmT12L12_Explain_PrefaceBodyStuff_speaker_dia2(int, boolean, int, int, int, int)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3691, Grace.__$behaviorFactory16_rfield, Grace.__$precondition4_rfield, null, "gmT12L12_Explain_PrefaceBodyStuff_speaker_dia2(int, boolean, int, int, int, int)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3693, Grace.__$behaviorFactory16_rfield, null, null, "gmT12L12_Explain_PrefaceBodyStuff_listener_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3695, Grace.__$behaviorFactory16_rfield, null, null, "gmT2L1_PraiseAllyG_GPA_BodyStuff_dia()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3696, Grace.__$behaviorFactory16_rfield, null, null, "gmT2L1_PraiseAllyG_GPA_BodyStuff_dia()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3701, Grace.__$behaviorFactory16_rfield, null, null, "gmT2L1_PraiseAllyT_GPA_BodyStuff_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3702, Grace.__$behaviorFactory16_rfield, null, null, "gmT2L1_PraiseAllyT_GPA_BodyStuff_seq_dia()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3703, Grace.__$behaviorFactory16_rfield, null, null, "gmT2L1_PraiseAllyT_GPA_BodyStuff_seq_dia()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3706, Grace.__$behaviorFactory16_rfield, null, null, "gmT2L1_PraiseAllyT_TPA_BodyStuff_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3707, Grace.__$behaviorFactory16_rfield, null, null, "gmT2L1_PraiseAllyT_TPA_BodyStuff_seq_dia()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3708, Grace.__$behaviorFactory16_rfield, null, null, "gmT2L1_PraiseAllyT_TPA_BodyStuff_seq_dia()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3712, Grace.__$behaviorFactory16_rfield, null, null, "gmT2L1_CriticizeG_GPA_BodyStuff2_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3715, Grace.__$behaviorFactory16_rfield, null, null, "gmT2L1_CriticizeG_TPA_BodyStuff2_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3716, Grace.__$behaviorFactory16_rfield, null, null, "gmT2L1_CriticizeG_TPA_BodyStuff2_seq_dia()", null, (short)1));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3717, Grace.__$behaviorFactory16_rfield, Grace.__$precondition4_rfield, Grace.__$preconditionSensorFactory0_rfield, "gmT2L1_CriticizeG_TPA_BodyStuff2_seq_dia()", null, (short)2));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3719, Grace.__$behaviorFactory16_rfield, null, null, "gmT2L1_CriticizeT_GPA_BodyStuff_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3722, Grace.__$behaviorFactory16_rfield, null, null, "gmT2L1_CriticizeT_TPA_BodyStuff_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3725, Grace.__$behaviorFactory16_rfield, null, null, "gmT2L1_FlirtG_GPA_BodyStuff_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3726, Grace.__$behaviorFactory16_rfield, Grace.__$precondition4_rfield, null, "gmT2L1_FlirtG_GPA_BodyStuff_seq_dia()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3727, Grace.__$behaviorFactory16_rfield, Grace.__$precondition4_rfield, null, "gmT2L1_FlirtG_GPA_BodyStuff_seq_dia()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3728, Grace.__$behaviorFactory16_rfield, null, null, "gmT2L1_FlirtG_GPA_BodyStuff_seq_dia_mp()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3729, Grace.__$behaviorFactory16_rfield, null, null, "gmT2L1_FlirtG_GPA_BodyStuff_seq_dia_mp()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3730, Grace.__$behaviorFactory16_rfield, null, null, "gmT2L1_FlirtG_GPA_BodyStuff_seq_dia_mp()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3731, Grace.__$behaviorFactory16_rfield, null, null, "gmT2L1_FlirtG_GPA_BodyStuff_seq_dia_fp()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3732, Grace.__$behaviorFactory16_rfield, null, null, "gmT2L1_FlirtG_GPA_BodyStuff_seq_dia_fp()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3734, Grace.__$behaviorFactory16_rfield, null, null, "gmT2L1_FlirtG_GPA_BodyStuff2_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3737, Grace.__$behaviorFactory16_rfield, null, null, "gmT2L1_FlirtG_TPA_BodyStuff_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3738, Grace.__$behaviorFactory16_rfield, Grace.__$precondition4_rfield, null, "gmT2L1_FlirtG_TPA_BodyStuff_seq_dia()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3739, Grace.__$behaviorFactory16_rfield, Grace.__$precondition4_rfield, null, "gmT2L1_FlirtG_TPA_BodyStuff_seq_dia()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3740, Grace.__$behaviorFactory16_rfield, null, null, "gmT2L1_FlirtG_TPA_BodyStuff_seq_dia_mp()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3741, Grace.__$behaviorFactory16_rfield, null, null, "gmT2L1_FlirtG_TPA_BodyStuff_seq_dia_mp()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3742, Grace.__$behaviorFactory16_rfield, null, null, "gmT2L1_FlirtG_TPA_BodyStuff_seq_dia_fp()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3743, Grace.__$behaviorFactory16_rfield, null, null, "gmT2L1_FlirtG_TPA_BodyStuff_seq_dia_fp()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3745, Grace.__$behaviorFactory16_rfield, null, null, "gmT2L1_FlirtG_TPA_BodyStuff2_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3748, Grace.__$behaviorFactory16_rfield, null, null, "gmT2L1_FlirtT_GPA_BodyStuff_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3750, Grace.__$behaviorFactory16_rfield, null, null, "gmT2L1_FlirtT_GPA_BodyStuff2_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3751, Grace.__$behaviorFactory16_rfield, Grace.__$precondition4_rfield, null, "gmT2L1_FlirtT_GPA_BodyStuff2_seq_dia()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3752, Grace.__$behaviorFactory16_rfield, Grace.__$precondition4_rfield, null, "gmT2L1_FlirtT_GPA_BodyStuff2_seq_dia()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3753, Grace.__$behaviorFactory16_rfield, null, null, "gmT2L1_FlirtT_GPA_BodyStuff2_seq_dia_mp()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3754, Grace.__$behaviorFactory16_rfield, null, null, "gmT2L1_FlirtT_GPA_BodyStuff2_seq_dia_mp()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3755, Grace.__$behaviorFactory16_rfield, null, null, "gmT2L1_FlirtT_GPA_BodyStuff2_seq_dia_fp()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3756, Grace.__$behaviorFactory16_rfield, null, null, "gmT2L1_FlirtT_GPA_BodyStuff2_seq_dia_fp()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3759, Grace.__$behaviorFactory16_rfield, null, null, "gmT2L1_FlirtT_TPA_BodyStuff_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3761, Grace.__$behaviorFactory16_rfield, null, null, "gmT2L1_FlirtT_TPA_BodyStuff2_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3762, Grace.__$behaviorFactory16_rfield, Grace.__$precondition4_rfield, null, "gmT2L1_FlirtT_TPA_BodyStuff2_seq_dia()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3763, Grace.__$behaviorFactory16_rfield, Grace.__$precondition4_rfield, null, "gmT2L1_FlirtT_TPA_BodyStuff2_seq_dia()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3764, Grace.__$behaviorFactory16_rfield, Grace.__$precondition4_rfield, Grace.__$preconditionSensorFactory0_rfield, "gmT2L1_FlirtT_TPA_BodyStuff2_seq_dia_mp()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3765, Grace.__$behaviorFactory16_rfield, Grace.__$precondition4_rfield, Grace.__$preconditionSensorFactory0_rfield, "gmT2L1_FlirtT_TPA_BodyStuff2_seq_dia_mp()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3766, Grace.__$behaviorFactory16_rfield, Grace.__$precondition4_rfield, Grace.__$preconditionSensorFactory0_rfield, "gmT2L1_FlirtT_TPA_BodyStuff2_seq_dia_fp()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3767, Grace.__$behaviorFactory16_rfield, Grace.__$precondition4_rfield, Grace.__$preconditionSensorFactory0_rfield, "gmT2L1_FlirtT_TPA_BodyStuff2_seq_dia_fp()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3768, Grace.__$behaviorFactory16_rfield, null, null, "gmT2L1_FlirtT_TPA_BodyStuff2_seq_dia_mp_nodrinks()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3769, Grace.__$behaviorFactory16_rfield, null, null, "gmT2L1_FlirtT_TPA_BodyStuff2_seq_dia_mp_nodrinks()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3770, Grace.__$behaviorFactory16_rfield, null, null, "gmT2L1_FlirtT_TPA_BodyStuff2_seq_dia_mp_drinks()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3771, Grace.__$behaviorFactory16_rfield, null, null, "gmT2L1_FlirtT_TPA_BodyStuff2_seq_dia_mp_drinks()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3772, Grace.__$behaviorFactory16_rfield, null, null, "gmT2L1_FlirtT_TPA_BodyStuff2_seq_dia_fp_nodrinks()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3773, Grace.__$behaviorFactory16_rfield, null, null, "gmT2L1_FlirtT_TPA_BodyStuff2_seq_dia_fp_nodrinks()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3774, Grace.__$behaviorFactory16_rfield, null, null, "gmT2L1_FlirtT_TPA_BodyStuff2_seq_dia_fp_drinks()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3775, Grace.__$behaviorFactory16_rfield, null, null, "gmT2L1_FlirtT_TPA_BodyStuff2_seq_dia_fp_drinks()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3778, Grace.__$behaviorFactory16_rfield, Grace.__$precondition4_rfield, null, "gmT2L1_HugComfortG_GPA_BodyStuff_seq(int)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3779, Grace.__$behaviorFactory16_rfield, null, null, "gmT2L1_HugComfortG_GPA_BodyStuff_hugging_dia()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3780, Grace.__$behaviorFactory16_rfield, null, null, "gmT2L1_HugComfortG_GPA_BodyStuff_hugging_dia()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3781, Grace.__$behaviorFactory16_rfield, Grace.__$precondition4_rfield, null, "gmT2L1_HugComfortG_GPA_BodyStuff_seq(int)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3782, Grace.__$behaviorFactory16_rfield, null, null, "gmT2L1_HugComfortG_GPA_BodyStuff_hugged_dia()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3783, Grace.__$behaviorFactory16_rfield, null, null, "gmT2L1_HugComfortG_GPA_BodyStuff_hugged_dia()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3784, Grace.__$behaviorFactory16_rfield, Grace.__$precondition4_rfield, null, "gmT2L1_HugComfortG_GPA_BodyStuff_seq(int)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3785, Grace.__$behaviorFactory16_rfield, null, null, "gmT2L1_HugComfortG_GPA_BodyStuff_comforting_dia()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3786, Grace.__$behaviorFactory16_rfield, null, null, "gmT2L1_HugComfortG_GPA_BodyStuff_comforting_dia()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3787, Grace.__$behaviorFactory16_rfield, Grace.__$precondition4_rfield, null, "gmT2L1_HugComfortG_GPA_BodyStuff_seq(int)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3788, Grace.__$behaviorFactory16_rfield, null, null, "gmT2L1_HugComfortG_GPA_BodyStuff_comforted_dia()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3789, Grace.__$behaviorFactory16_rfield, null, null, "gmT2L1_HugComfortG_GPA_BodyStuff_comforted_dia()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3792, Grace.__$behaviorFactory16_rfield, Grace.__$precondition4_rfield, null, "gmT2L1_HugComfortG_NTPA_BodyStuff_seq(int)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3793, Grace.__$behaviorFactory16_rfield, null, null, "gmT2L1_HugComfortG_NTPA_BodyStuff_hugging_dia()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3794, Grace.__$behaviorFactory16_rfield, null, null, "gmT2L1_HugComfortG_NTPA_BodyStuff_hugging_dia()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3795, Grace.__$behaviorFactory16_rfield, Grace.__$precondition4_rfield, null, "gmT2L1_HugComfortG_NTPA_BodyStuff_seq(int)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3796, Grace.__$behaviorFactory16_rfield, null, null, "gmT2L1_HugComfortG_NTPA_BodyStuff_hugged_dia()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3797, Grace.__$behaviorFactory16_rfield, null, null, "gmT2L1_HugComfortG_NTPA_BodyStuff_hugged_dia()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3798, Grace.__$behaviorFactory16_rfield, Grace.__$precondition4_rfield, null, "gmT2L1_HugComfortG_NTPA_BodyStuff_seq(int)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3799, Grace.__$behaviorFactory16_rfield, null, null, "gmT2L1_HugComfortG_NTPA_BodyStuff_comforting_dia()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3800, Grace.__$behaviorFactory16_rfield, null, null, "gmT2L1_HugComfortG_NTPA_BodyStuff_comforting_dia()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3801, Grace.__$behaviorFactory16_rfield, Grace.__$precondition4_rfield, null, "gmT2L1_HugComfortG_NTPA_BodyStuff_seq(int)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3802, Grace.__$behaviorFactory16_rfield, null, null, "gmT2L1_HugComfortG_NTPA_BodyStuff_comforted_dia()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3803, Grace.__$behaviorFactory16_rfield, null, null, "gmT2L1_HugComfortG_NTPA_BodyStuff_comforted_dia()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3806, Grace.__$behaviorFactory16_rfield, null, null, "gmT2L1_HugComfortT_NGPA_BodyStuff_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3807, Grace.__$behaviorFactory16_rfield, null, null, "gmT2L1_HugComfortT_NGPA_BodyStuff_seq_dia()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3808, Grace.__$behaviorFactory16_rfield, null, null, "gmT2L1_HugComfortT_NGPA_BodyStuff_seq_dia()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3811, Grace.__$behaviorFactory16_rfield, null, null, "gmT2L1_HugComfortT_TPA_BodyStuff_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3812, Grace.__$behaviorFactory16_rfield, null, null, "gmT2L1_HugComfortT_TPA_BodyStuff_seq_dia()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3813, Grace.__$behaviorFactory16_rfield, null, null, "gmT2L1_HugComfortT_TPA_BodyStuff_seq_dia()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3823, Grace.__$behaviorFactory16_rfield, null, null, "gmT2L1_Satl_Marriage_NTPA_BodyStuff2_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3826, Grace.__$behaviorFactory16_rfield, null, null, "gmT2L1_Satl_Marriage_GPA_BodyStuff2_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3828, Grace.__$behaviorFactory16_rfield, null, null, "gmT2L1_Satl_Divorce_NTPA_BodyStuff_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3830, Grace.__$behaviorFactory16_rfield, null, null, "gmT2L1_Satl_Divorce_GPA_BodyStuff_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3833, Grace.__$behaviorFactory16_rfield, null, null, "gmT2L1_Satl_Sex_NTPA_BodyStuff2_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3837, Grace.__$behaviorFactory16_rfield, null, null, "gmT2L1_Satl_Sex_GPA_BodyStuff2_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3844, Grace.__$behaviorFactory17_rfield, null, null, "gmT2L1_Satl_Therapy_TPA_BodyStuff_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3847, Grace.__$behaviorFactory17_rfield, null, null, "gmT2L1_Satl_Therapy_NGPA_BodyStuff_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3851, Grace.__$behaviorFactory17_rfield, null, null, "gmT2L1_Obj_WeddingPic_NTPA_BodyStuff2_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3854, Grace.__$behaviorFactory17_rfield, null, null, "gmT2L1_Obj_WeddingPic_NTPA_BodyStuff4_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3858, Grace.__$behaviorFactory17_rfield, null, null, "gmT2L1_Obj_WeddingPic_GPA_BodyStuff2_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3861, Grace.__$behaviorFactory17_rfield, null, null, "gmT2L1_Obj_WeddingPic_GPA_BodyStuff4_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3865, Grace.__$behaviorFactory17_rfield, null, null, "gmT2L1_Obj_FurnishingsApt_TPA_BodyStuff2_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3867, Grace.__$behaviorFactory17_rfield, null, null, "gmT2L1_Obj_FurnishingsApt_TPA_BodyStuff3_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3870, Grace.__$behaviorFactory17_rfield, null, null, "gmT2L1_Obj_FurnishingsApt_NGPA_BodyStuff2_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3873, Grace.__$behaviorFactory17_rfield, null, null, "gmT2L1_Obj_ItalyPic_NTPA_BodyStuff2_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3876, Grace.__$behaviorFactory17_rfield, null, null, "gmT2L1_Obj_ItalyPic_GPA_BodyStuff2_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3878, Grace.__$behaviorFactory17_rfield, null, null, "gmT2L1_Obj_Trinkets_TPA_BodyStuff_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3881, Grace.__$behaviorFactory17_rfield, null, null, "gmT2L1_Obj_Trinkets_TPA_BodyStuff3_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3883, Grace.__$behaviorFactory17_rfield, null, null, "gmT2L1_Obj_Trinkets_NGPA_BodyStuff_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3886, Grace.__$behaviorFactory17_rfield, null, null, "gmT2L1_Obj_Trinkets_NGPA_BodyStuff3_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3889, Grace.__$behaviorFactory17_rfield, null, null, "gmT2L1_Obj_Trinkets_NGPA_BodyStuff5_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3892, Grace.__$behaviorFactory17_rfield, null, null, "gmT2L1_Obj_WorkTable_NGPA_BodyStuff2_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3894, Grace.__$behaviorFactory17_rfield, null, null, "gmT2L1_Obj_WorkTable_NGPA_BodyStuff3_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3896, Grace.__$behaviorFactory17_rfield, null, null, "gmT2L1_Obj_WorkTable_NGPA_BodyStuff4_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3897, Grace.__$behaviorFactory17_rfield, Grace.__$precondition4_rfield, null, "gmT2L1_Obj_WorkTable_NGPA_BodyStuff4_dia()", null, (short)2));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3898, Grace.__$behaviorFactory17_rfield, null, null, "gmT2L1_Obj_WorkTable_NGPA_BodyStuff4_dia()", null, (short)1));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3900, Grace.__$behaviorFactory17_rfield, null, null, "gmT2L1_Obj_WorkTable_TPA_BodyStuff_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3902, Grace.__$behaviorFactory17_rfield, null, null, "gmT2L1_Obj_WorkTable_TPA_BodyStuff2_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3904, Grace.__$behaviorFactory17_rfield, null, null, "gmT2L1_Obj_WorkTable_TPA_BodyStuff3_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3906, Grace.__$behaviorFactory17_rfield, null, null, "gmT2L1_Obj_WorkTable_TPA_BodyStuff4_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3908, Grace.__$behaviorFactory17_rfield, null, null, "gmT2L1_Obj_Painting_TPA_BodyStuff_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3911, Grace.__$behaviorFactory17_rfield, null, null, "gmT2L1_Obj_Painting_TPA_BodyStuff3_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3913, Grace.__$behaviorFactory17_rfield, null, null, "gmT2L1_Obj_Painting_NGPA_BodyStuff_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3916, Grace.__$behaviorFactory17_rfield, null, null, "gmT2L1_Obj_Painting_NGPA_BodyStuff3_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3918, Grace.__$behaviorFactory17_rfield, null, null, "gmT2L1_Obj_BrassBull_NTPA_BodyStuff_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3921, Grace.__$behaviorFactory17_rfield, null, null, "gmT2L1_Obj_BrassBull_NTPA_BodyStuff3_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3923, Grace.__$behaviorFactory17_rfield, null, null, "gmT2L1_Obj_BrassBull_GPA_BodyStuff_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3925, Grace.__$behaviorFactory17_rfield, null, null, "gmT2L1_Obj_BrassBull_GPA_BodyStuff2_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3928, Grace.__$behaviorFactory17_rfield, null, null, "gmT2L1_Obj_BarStuff_NTPA_BodyStuff2_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3931, Grace.__$behaviorFactory17_rfield, null, null, "gmT2L1_Obj_BarStuff_GPA_BodyStuff2_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3933, Grace.__$behaviorFactory17_rfield, null, null, "gmT2L1_Obj_Eightball_NTPA_BodyStuff_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3935, Grace.__$behaviorFactory17_rfield, null, null, "gmT2L1_Obj_Eightball_NTPA_BodyStuff2_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3938, Grace.__$behaviorFactory17_rfield, null, null, "gmT2L1_Obj_Eightball_GPA_BodyStuff_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3940, Grace.__$behaviorFactory17_rfield, null, null, "gmT2L1_Obj_Eightball_GPA_BodyStuff2_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3944, Grace.__$behaviorFactory17_rfield, null, null, "gmT2L1_Obj_ViewBalcony_NTPA_BodyStuff2_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3948, Grace.__$behaviorFactory17_rfield, null, null, "gmT2L1_Obj_ViewBalcony_GPA_BodyStuff2_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3964, Grace.__$behaviorFactory17_rfield, null, null, "gmT1_Deflect_Acknowledge_MildAgreement_T_BodyStuff_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3965, Grace.__$behaviorFactory17_rfield, null, null, "gmT1_Deflect_Acknowledge_MildAgreement_T_BodyStuff_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3966, Grace.__$behaviorFactory17_rfield, null, null, "gmT1_Deflect_Acknowledge_MildAgreement_T_BodyStuff_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3969, Grace.__$behaviorFactory17_rfield, null, null, "gmT1_Deflect_Acknowledge_StrongAgreement_T_BodyStuff_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3970, Grace.__$behaviorFactory17_rfield, null, null, "gmT1_Deflect_Acknowledge_StrongAgreement_T_BodyStuff_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3971, Grace.__$behaviorFactory17_rfield, null, null, "gmT1_Deflect_Acknowledge_StrongAgreement_T_BodyStuff_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3974, Grace.__$behaviorFactory17_rfield, null, null, "gmT1_Deflect_Acknowledge_MildDisagreement_T_BodyStuff_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3975, Grace.__$behaviorFactory17_rfield, null, null, "gmT1_Deflect_Acknowledge_MildDisagreement_T_BodyStuff_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3976, Grace.__$behaviorFactory17_rfield, null, null, "gmT1_Deflect_Acknowledge_MildDisagreement_T_BodyStuff_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3979, Grace.__$behaviorFactory17_rfield, null, null, "gmT1_Deflect_Acknowledge_StrongDisagreement_T_BodyStuff_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3980, Grace.__$behaviorFactory17_rfield, null, null, "gmT1_Deflect_Acknowledge_StrongDisagreement_T_BodyStuff_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3981, Grace.__$behaviorFactory17_rfield, null, null, "gmT1_Deflect_Acknowledge_StrongDisagreement_T_BodyStuff_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3984, Grace.__$behaviorFactory17_rfield, null, null, "gmT1_Deflect_Acknowledge_Awkward_T_BodyStuff_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3985, Grace.__$behaviorFactory17_rfield, null, null, "gmT1_Deflect_Acknowledge_Awkward_T_BodyStuff_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3986, Grace.__$behaviorFactory17_rfield, null, null, "gmT1_Deflect_Acknowledge_Awkward_T_BodyStuff_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3989, Grace.__$behaviorFactory17_rfield, null, null, "gmT1_Deflect_Acknowledge_WantMore_T_BodyStuff_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3990, Grace.__$behaviorFactory17_rfield, null, null, "gmT1_Deflect_Acknowledge_WantMore_T_BodyStuff_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3991, Grace.__$behaviorFactory17_rfield, null, null, "gmT1_Deflect_Acknowledge_WantMore_T_BodyStuff_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3994, Grace.__$behaviorFactory17_rfield, null, null, "gmT1_Deflect_Acknowledge_Unknown_T_BodyStuff_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3995, Grace.__$behaviorFactory17_rfield, null, null, "gmT1_Deflect_Acknowledge_Unknown_T_BodyStuff_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3996, Grace.__$behaviorFactory17_rfield, null, null, "gmT1_Deflect_Acknowledge_Unknown_T_BodyStuff_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3997, Grace.__$behaviorFactory17_rfield, null, null, "gmT1_Deflect_Acknowledge_Unknown_T_BodyStuff_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4000, Grace.__$behaviorFactory17_rfield, null, null, "gmT1_Deflect_HoldOn_MildAgreement_T_BodyStuff_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4001, Grace.__$behaviorFactory17_rfield, null, null, "gmT1_Deflect_HoldOn_MildAgreement_T_BodyStuff_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4002, Grace.__$behaviorFactory17_rfield, null, null, "gmT1_Deflect_HoldOn_MildAgreement_T_BodyStuff_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4005, Grace.__$behaviorFactory17_rfield, null, null, "gmT1_Deflect_HoldOn_StrongAgreement_T_BodyStuff_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4006, Grace.__$behaviorFactory17_rfield, null, null, "gmT1_Deflect_HoldOn_StrongAgreement_T_BodyStuff_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4007, Grace.__$behaviorFactory17_rfield, null, null, "gmT1_Deflect_HoldOn_StrongAgreement_T_BodyStuff_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4010, Grace.__$behaviorFactory17_rfield, null, null, "gmT1_Deflect_HoldOn_MildDisagreement_T_BodyStuff_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4011, Grace.__$behaviorFactory17_rfield, null, null, "gmT1_Deflect_HoldOn_MildDisagreement_T_BodyStuff_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4012, Grace.__$behaviorFactory17_rfield, null, null, "gmT1_Deflect_HoldOn_MildDisagreement_T_BodyStuff_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4015, Grace.__$behaviorFactory17_rfield, null, null, "gmT1_Deflect_HoldOn_StrongDisagreement_T_BodyStuff_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4016, Grace.__$behaviorFactory17_rfield, null, null, "gmT1_Deflect_HoldOn_StrongDisagreement_T_BodyStuff_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4017, Grace.__$behaviorFactory17_rfield, null, null, "gmT1_Deflect_HoldOn_StrongDisagreement_T_BodyStuff_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4020, Grace.__$behaviorFactory17_rfield, null, null, "gmT1_Deflect_HoldOn_Awkward_T_BodyStuff_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4021, Grace.__$behaviorFactory17_rfield, null, null, "gmT1_Deflect_HoldOn_Awkward_T_BodyStuff_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4022, Grace.__$behaviorFactory17_rfield, null, null, "gmT1_Deflect_HoldOn_Awkward_T_BodyStuff_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4025, Grace.__$behaviorFactory17_rfield, null, null, "gmT1_Deflect_HoldOn_WantMore_T_BodyStuff_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4026, Grace.__$behaviorFactory17_rfield, null, null, "gmT1_Deflect_HoldOn_WantMore_T_BodyStuff_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4027, Grace.__$behaviorFactory17_rfield, null, null, "gmT1_Deflect_HoldOn_WantMore_T_BodyStuff_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4030, Grace.__$behaviorFactory17_rfield, null, null, "gmT1_Deflect_HoldOn_Unknown_T_BodyStuff_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4031, Grace.__$behaviorFactory17_rfield, null, null, "gmT1_Deflect_HoldOn_Unknown_T_BodyStuff_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4032, Grace.__$behaviorFactory17_rfield, null, null, "gmT1_Deflect_HoldOn_Unknown_T_BodyStuff_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4033, Grace.__$behaviorFactory17_rfield, null, null, "gmT1_GraceGenericZingerZinger_dia()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4034, Grace.__$behaviorFactory17_rfield, null, null, "gmT1_GraceGenericZingerZinger_dia()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4035, Grace.__$behaviorFactory17_rfield, null, null, "gmT1_GraceGenericZingerZinger_dia()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4036, Grace.__$behaviorFactory17_rfield, null, null, "gmT1_GraceGenericZingerZinger_dia()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4038, Grace.__$behaviorFactory17_rfield, null, null, "gmT2L1_Explain_BodyStuff_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4039, Grace.__$behaviorFactory17_rfield, null, null, "gmT2L1_Explain_BodyStuff_seq_dia()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4040, Grace.__$behaviorFactory17_rfield, null, null, "gmT2L1_Explain_BodyStuff_seq_dia()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4042, Grace.__$behaviorFactory17_rfield, null, null, "gmT2L2_PraiseAllyG_NTPA_BodyStuff_dia()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4043, Grace.__$behaviorFactory17_rfield, null, null, "gmT2L2_PraiseAllyG_NTPA_BodyStuff_dia()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4045, Grace.__$behaviorFactory17_rfield, null, null, "gmT2L2_PraiseAllyG_NTPA_BodyStuff2_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4047, Grace.__$behaviorFactory17_rfield, null, null, "gmT2L2_PraiseAllyG_GPA_BodyStuff_dia()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4048, Grace.__$behaviorFactory17_rfield, null, null, "gmT2L2_PraiseAllyG_GPA_BodyStuff_dia()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4050, Grace.__$behaviorFactory17_rfield, null, null, "gmT2L2_PraiseAllyG_GPA_BodyStuff2_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4052, Grace.__$behaviorFactory17_rfield, null, null, "gmT2L2_PraiseAllyT_NGPA_BodyStuff_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4053, Grace.__$behaviorFactory17_rfield, null, null, "gmT2L2_PraiseAllyT_NGPA_BodyStuff_seq_dia()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4054, Grace.__$behaviorFactory17_rfield, null, null, "gmT2L2_PraiseAllyT_NGPA_BodyStuff_seq_dia()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4056, Grace.__$behaviorFactory17_rfield, null, null, "gmT2L2_PraiseAllyT_NGPA_BodyStuff2_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4058, Grace.__$behaviorFactory17_rfield, null, null, "gmT2L2_PraiseAllyT_TPA_BodyStuff_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4059, Grace.__$behaviorFactory17_rfield, null, null, "gmT2L2_PraiseAllyT_TPA_BodyStuff_seq_dia()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4060, Grace.__$behaviorFactory17_rfield, null, null, "gmT2L2_PraiseAllyT_TPA_BodyStuff_seq_dia()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4062, Grace.__$behaviorFactory17_rfield, null, null, "gmT2L2_PraiseAllyT_TPA_BodyStuff2_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4065, Grace.__$behaviorFactory17_rfield, null, null, "gmT2L2_CriticizeG_NTPA_BodyStuff2_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4068, Grace.__$behaviorFactory18_rfield, null, null, "gmT2L2_CriticizeG_GPA_BodyStuff2_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4070, Grace.__$behaviorFactory18_rfield, null, null, "gmT2L2_CriticizeT_NGPA_BodyStuff_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4072, Grace.__$behaviorFactory18_rfield, null, null, "gmT2L2_CriticizeT_NGPA_BodyStuff2_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4074, Grace.__$behaviorFactory18_rfield, null, null, "gmT2L2_CriticizeT_TPA_BodyStuff_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4076, Grace.__$behaviorFactory18_rfield, null, null, "gmT2L2_CriticizeT_TPA_BodyStuff2_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4078, Grace.__$behaviorFactory18_rfield, null, null, "gmT2L2_FlirtG_NTPA_BodyStuff_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4080, Grace.__$behaviorFactory18_rfield, null, null, "gmT2L2_FlirtG_NTPA_BodyStuff2_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4082, Grace.__$behaviorFactory18_rfield, null, null, "gmT2L2_FlirtG_GPA_BodyStuff_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4084, Grace.__$behaviorFactory18_rfield, null, null, "gmT2L2_FlirtG_GPA_BodyStuff2_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4086, Grace.__$behaviorFactory18_rfield, null, null, "gmT2L2_FlirtT_NGPA_BodyStuff_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4088, Grace.__$behaviorFactory18_rfield, null, null, "gmT2L2_FlirtT_NGPA_BodyStuff2_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4090, Grace.__$behaviorFactory18_rfield, null, null, "gmT2L2_FlirtT_TPA_BodyStuff_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4092, Grace.__$behaviorFactory18_rfield, null, null, "gmT2L2_FlirtT_TPA_BodyStuff2_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4094, Grace.__$behaviorFactory18_rfield, null, null, "gmT2L2_HugComfortG_NTPA_BodyStuff_dia()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4096, Grace.__$behaviorFactory18_rfield, null, null, "gmT2L2_HugComfortG_NTPA_BodyStuff2_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4098, Grace.__$behaviorFactory18_rfield, null, null, "gmT2L2_HugComfortG_GPA_BodyStuff_dia()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4100, Grace.__$behaviorFactory18_rfield, null, null, "gmT2L2_HugComfortG_GPA_BodyStuff2_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4102, Grace.__$behaviorFactory18_rfield, null, null, "gmT2L2_HugComfortT_NGPA_BodyStuff_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4103, Grace.__$behaviorFactory18_rfield, null, null, "gmT2L2_HugComfortT_NGPA_BodyStuff_seq_dia()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4105, Grace.__$behaviorFactory18_rfield, null, null, "gmT2L2_HugComfortT_NGPA_BodyStuff2_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4107, Grace.__$behaviorFactory18_rfield, null, null, "gmT2L2_HugComfortT_TPA_BodyStuff_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4108, Grace.__$behaviorFactory18_rfield, null, null, "gmT2L2_HugComfortT_TPA_BodyStuff_seq_dia()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4110, Grace.__$behaviorFactory18_rfield, null, null, "gmT2L2_HugComfortT_TPA_BodyStuff2_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4113, Grace.__$behaviorFactory18_rfield, null, null, "gmT2L2_Pacify_NGPA_BodyStuff_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4114, Grace.__$behaviorFactory18_rfield, null, null, "gmT2L2_Pacify_NGPA_BodyStuff_seq2()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4124, Grace.__$behaviorFactory18_rfield, null, null, "gmT2L2_Satl_Marriage_BodyStuff_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4125, Grace.__$behaviorFactory18_rfield, null, null, "gmT2L2_Satl_Marriage_BodyStuff_dia()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4126, Grace.__$behaviorFactory18_rfield, null, null, "gmT2L2_Satl_Marriage_BodyStuff_dia()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4130, Grace.__$behaviorFactory18_rfield, null, null, "gmT2L2_Satl_Divorce_BodyStuff2_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4132, Grace.__$behaviorFactory18_rfield, null, null, "gmT2L2_Satl_Sex_Garbage_BodyStuff_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4134, Grace.__$behaviorFactory18_rfield, null, null, "gmT2L2_Satl_Sex_Garbage_BodyStuff2_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4136, Grace.__$behaviorFactory18_rfield, null, null, "gmT2L2_Satl_Sex_BodyStuff3_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4137, Grace.__$behaviorFactory18_rfield, null, null, "gmT2L2_Satl_Sex_BodyStuff3_dia()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4138, Grace.__$behaviorFactory18_rfield, null, null, "gmT2L2_Satl_Sex_BodyStuff3_dia()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4139, Grace.__$behaviorFactory18_rfield, null, null, "gmT2L2_Satl_Sex_BodyStuff3_dia()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4141, Grace.__$behaviorFactory18_rfield, null, null, "gmT2L2_Satl_Sex_DryCleaning_BodyStuff_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4143, Grace.__$behaviorFactory18_rfield, null, null, "gmT2L2_Satl_Sex_DryCleaning_BodyStuff2_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4145, Grace.__$behaviorFactory18_rfield, null, null, "gmT2L2_Satl_Sex_CleaningWoman_BodyStuff_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4147, Grace.__$behaviorFactory18_rfield, null, null, "gmT2L2_Satl_Sex_CleaningWoman_BodyStuff2_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4151, Grace.__$behaviorFactory18_rfield, null, null, "gmT2L2_Satl_Therapy_BodyStuff_FirstMention_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4153, Grace.__$behaviorFactory18_rfield, null, null, "gmT2L2_Satl_Therapy_BodyStuff_SecondMention_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4155, Grace.__$behaviorFactory18_rfield, null, null, "gmT2L2_Satl_Therapy_BodyStuff2_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4158, Grace.__$behaviorFactory18_rfield, null, null, "gmT2L2_Obj_WeddingPic_BodyStuff2_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4161, Grace.__$behaviorFactory18_rfield, null, null, "gmT2L2_Obj_FurnishingsApt_BodyStuff2_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4165, Grace.__$behaviorFactory18_rfield, null, null, "gmT2L2_Obj_ItalyPic_BodyStuff2_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4167, Grace.__$behaviorFactory18_rfield, null, null, "gmT2L2_Obj_Trinkets_BodyStuff_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4169, Grace.__$behaviorFactory18_rfield, null, null, "gmT2L2_Obj_Trinkets_BodyStuf2_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4171, Grace.__$behaviorFactory18_rfield, null, null, "gmT2L2_Obj_Trinkets_BodyStuff3_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4174, Grace.__$behaviorFactory18_rfield, null, null, "gmT2L2_Obj_WorkTable_GPA_BodyStuff2_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4176, Grace.__$behaviorFactory18_rfield, null, null, "gmT2L2_Obj_WorkTable_GPA_BodyStuff3_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4178, Grace.__$behaviorFactory18_rfield, null, null, "gmT2L2_Obj_WorkTable_TPA_BodyStuff_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4180, Grace.__$behaviorFactory18_rfield, null, null, "gmT2L2_Obj_WorkTable_TPA_BodyStuff2_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4182, Grace.__$behaviorFactory18_rfield, null, null, "gmT2L2_Obj_WorkTable_TPA_BodyStuff3_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4184, Grace.__$behaviorFactory18_rfield, null, null, "gmT2L2_Obj_Painting_BodyStuff_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4187, Grace.__$behaviorFactory18_rfield, null, null, "gmT2L2_Obj_Painting_BodyStuff3_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4188, Grace.__$behaviorFactory18_rfield, null, null, "gmT2L2_Obj_Painting_BodyStuff3_dia()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4190, Grace.__$behaviorFactory18_rfield, null, null, "gmT2L2_Obj_BrassBull_BodyStuff_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4193, Grace.__$behaviorFactory18_rfield, null, null, "gmT2L2_Obj_BarStuff_BodyStuff_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4195, Grace.__$behaviorFactory18_rfield, null, null, "gmT2L2_Obj_Eightball_BodyStuff_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4197, Grace.__$behaviorFactory18_rfield, null, null, "gmT2L2_Obj_Eightball_BodyStuff2_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4200, Grace.__$behaviorFactory18_rfield, null, null, "gmT2L2_Obj_ViewBalcony_BodyStuff2_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4203, Grace.__$behaviorFactory18_rfield, null, null, "gmT2L2_Explain_BodyStuff_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4204, Grace.__$behaviorFactory18_rfield, null, null, "gmT2L2_Explain_BodyStuff_seq_dia()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4205, Grace.__$behaviorFactory18_rfield, null, null, "gmT2L2_Explain_BodyStuff_seq_dia()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4208, Grace.__$behaviorFactory18_rfield, null, null, "gmT2L3_PraiseT_BodyStuff_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4209, Grace.__$behaviorFactory18_rfield, null, null, "gmT2L3_PraiseT_BodyStuff_dia()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4210, Grace.__$behaviorFactory18_rfield, null, null, "gmT2L3_PraiseT_BodyStuff_dia()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4212, Grace.__$behaviorFactory18_rfield, null, null, "gmT2L3_CriticizeG_BodyStuff_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4213, Grace.__$behaviorFactory18_rfield, null, null, "gmT2L3_CriticizeG_BodyStuff_dia()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4214, Grace.__$behaviorFactory18_rfield, null, null, "gmT2L3_CriticizeG_BodyStuff_dia()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4218, Grace.__$behaviorFactory18_rfield, null, null, "gmT2L3_FlirtT_BodyStuff_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4219, Grace.__$behaviorFactory18_rfield, null, null, "gmT2L3_FlirtT_BodyStuff_dia()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4220, Grace.__$behaviorFactory18_rfield, null, null, "gmT2L3_FlirtT_BodyStuff_dia()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4223, Grace.__$behaviorFactory18_rfield, null, null, "gmT2L3_HugComfortT_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4224, Grace.__$behaviorFactory18_rfield, null, null, "gmT2L3_HugComfortT_dia()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4226, Grace.__$behaviorFactory18_rfield, null, null, "gmT2L3_PacifyG_BodyStuff_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4227, Grace.__$behaviorFactory18_rfield, null, null, "gmT2L3_PacifyG_BodyStuff_dia()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4230, Grace.__$behaviorFactory18_rfield, null, null, "gmT2L3_IntimateG_BodyStuff_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4231, Grace.__$behaviorFactory18_rfield, null, null, "gmT2L3_IntimateG_BodyStuff_dia()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4234, Grace.__$behaviorFactory18_rfield, null, null, "gmT2L3_SupportG_BodyStuff_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4235, Grace.__$behaviorFactory18_rfield, null, null, "gmT2L3_SupportG_BodyStuff_dia()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4238, Grace.__$behaviorFactory18_rfield, null, null, "gmT2L3_Satl_Marriage_BodyStuff_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4239, Grace.__$behaviorFactory18_rfield, null, null, "gmT2L3_Satl_Marriage_BodyStuff_dia()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4242, Grace.__$behaviorFactory18_rfield, null, null, "gmT2L3_Satl_Sex_BodyStuff_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4243, Grace.__$behaviorFactory18_rfield, null, null, "gmT2L3_Satl_Sex_BodyStuff_dia()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4246, Grace.__$behaviorFactory18_rfield, null, null, "gmT2L3_Satl_Therapy_BodyStuff_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4247, Grace.__$behaviorFactory18_rfield, null, null, "gmT2L3_Satl_Therapy_BodyStuff_dia()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4250, Grace.__$behaviorFactory18_rfield, null, null, "gmT2L3_Obj_FurnishingsApt_BodyStuff_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4251, Grace.__$behaviorFactory18_rfield, null, null, "gmT2L3_Obj_FurnishingsApt_BodyStuff_dia()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4254, Grace.__$behaviorFactory18_rfield, null, null, "gmT2L3_Obj_Trinkets_BodyStuff_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4255, Grace.__$behaviorFactory18_rfield, null, null, "gmT2L3_Obj_Trinkets_BodyStuff_dia()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4258, Grace.__$behaviorFactory18_rfield, null, null, "gmT2L3_Obj_Painting_BodyStuff_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4259, Grace.__$behaviorFactory18_rfield, null, null, "gmT2L3_Obj_Painting_BodyStuff_dia()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4262, Grace.__$behaviorFactory18_rfield, null, null, "gmT2L3_Obj_BarStuff_BodyStuff_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4263, Grace.__$behaviorFactory18_rfield, null, null, "gmT2L3_Obj_BarStuff_BodyStuff_dia()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4266, Grace.__$behaviorFactory18_rfield, null, null, "gmT2L3_Obj_ViewBalcony_BodyStuff_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4267, Grace.__$behaviorFactory18_rfield, null, null, "gmT2L3_Obj_ViewBalcony_BodyStuff_dia()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4268, Grace.__$behaviorFactory18_rfield, null, null, "gmT2L3_Speaker_BodyStuff()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4269, Grace.__$behaviorFactory18_rfield, null, null, "gmT2L3_Speaker_BodyStuff_seq1()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4270, Grace.__$behaviorFactory18_rfield, null, null, "gmT2L3_Speaker_BodyStuff_seq2()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4271, Grace.__$behaviorFactory18_rfield, null, null, "gmT2L3_Listener_BodyStuff()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4272, Grace.__$behaviorFactory18_rfield, null, null, "gmT2L3_Listener_BodyStuff_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4273, Grace.__$behaviorFactory18_rfield, null, null, "gmT2_AverseRxnSpeak_BodyStuff_seq(int, int, int, int, int, int)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4274, Grace.__$behaviorFactory18_rfield, null, null, "gmT2_AverseRxnSpeak_BodyStuff_v1_seq_dia(int, int, int, int, int, int)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4275, Grace.__$behaviorFactory18_rfield, null, null, "gmT2_AverseRxnSpeak_BodyStuff_v1_seq_dia(int, int, int, int, int, int)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4276, Grace.__$behaviorFactory18_rfield, null, null, "gmT2_AverseRxnSpeak_BodyStuff_v1_diaseq(int, int, int, int, int, int)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4277, Grace.__$behaviorFactory18_rfield, null, null, "gmT2_AverseRxnSpeak_BodyStuff_seq(int, int, int, int, int, int)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4278, Grace.__$behaviorFactory18_rfield, null, null, "gmT2_AverseRxnSpeak_BodyStuff_v2_seq_dia(int, int, int, int, int, int)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4279, Grace.__$behaviorFactory18_rfield, null, null, "gmT2_AverseRxnSpeak_BodyStuff_v2_seq_dia(int, int, int, int, int, int)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4280, Grace.__$behaviorFactory18_rfield, null, null, "gmT2_AverseRxnSpeak_BodyStuff_v2_diaseq(int, int, int, int, int, int)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4281, Grace.__$behaviorFactory18_rfield, null, null, "gmT2_AverseRxnSpeak_RaiseArms()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4282, Grace.__$behaviorFactory18_rfield, null, null, "gmT2_AverseRxnSpeak_RaiseArms()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4283, Grace.__$behaviorFactory18_rfield, null, null, "gmT2_AverseRxnSpeak_BodyStuff_seq2()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4284, Grace.__$behaviorFactory18_rfield, null, null, "gmT2_AverseRxnSpeak_BodyStuff_seq2()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4285, Grace.__$behaviorFactory18_rfield, null, null, "gmT2_AverseRxnSpeak_BodyStuff_seq2()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4286, Grace.__$behaviorFactory18_rfield, null, null, "gmT2_AverseRxnListen_BodyStuff_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4287, Grace.__$behaviorFactory18_rfield, null, null, "gmT2_AverseRxnListen_BodyStuff_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4288, Grace.__$behaviorFactory18_rfield, null, null, "gmT2_DenialSpeak_BodyStuff_seq(int, int, int, int, int, int, int, int, int, int, int)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4289, Grace.__$behaviorFactory18_rfield, Grace.__$precondition4_rfield, null, "gmT2_DenialSpeak_BodyStuff_dia3(int, int)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4290, Grace.__$behaviorFactory18_rfield, null, null, "gmT2_DenialSpeak_BodyStuff_seq2()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4291, Grace.__$behaviorFactory18_rfield, null, null, "gmT2_DenialShortSpeak_BodyStuff_seq(int, int, int, int, int, int, int, int)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4292, Grace.__$behaviorFactory18_rfield, null, null, "gmT2_DenialShortSpeak_BodyStuff_setmood(int)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4293, Grace.__$behaviorFactory18_rfield, null, null, "gmT2_Deflect_Minimal_SpeakerStuff(int, int, int, int, int)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4294, Grace.__$behaviorFactory19_rfield, Grace.__$precondition4_rfield, null, "gmT2_Deflect_Minimal_SpeakerStuff_mood(int, int)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4295, Grace.__$behaviorFactory19_rfield, Grace.__$precondition4_rfield, null, "gmT2_Deflect_Minimal_SpeakerStuff_littleaction(int)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4296, Grace.__$behaviorFactory19_rfield, null, null, "gmT2_Deflect_Minimal_SpeakerStuff_more1()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4297, Grace.__$behaviorFactory19_rfield, null, null, "gmT2_Deflect_Minimal_SpeakerStuff_more1()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4298, Grace.__$behaviorFactory19_rfield, null, null, "gmT2_Deflect_Minimal_SpeakerStuff_more2()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4299, Grace.__$behaviorFactory19_rfield, null, null, "gmT2_Deflect_Minimal_SpeakerStuff_more2()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4300, Grace.__$behaviorFactory19_rfield, null, null, "gmT2_Deflect_Minimal_ListenerStuff()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4301, Grace.__$behaviorFactory19_rfield, null, null, "gmT2_Deflect_Minimal_ListenerStuff_more1()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4302, Grace.__$behaviorFactory19_rfield, null, null, "gmT2_Deflect_Minimal_ListenerStuff_more1()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4303, Grace.__$behaviorFactory19_rfield, null, null, "gmT2_Deflect_Acknowledge_SpeakerStuff(int, int, int, int, int, int, int)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4304, Grace.__$behaviorFactory19_rfield, Grace.__$precondition4_rfield, null, "gmT2_Deflect_Acknowledge_SpeakerStuff_mood(int, int)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4305, Grace.__$behaviorFactory19_rfield, Grace.__$precondition4_rfield, null, "gmT2_Deflect_Acknowledge_SpeakerStuff_littleaction(int)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4306, Grace.__$behaviorFactory19_rfield, null, null, "gmT2_Deflect_Acknowledge_SpeakerStuff_more1()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4307, Grace.__$behaviorFactory19_rfield, null, null, "gmT2_Deflect_Acknowledge_SpeakerStuff_more1()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4308, Grace.__$behaviorFactory19_rfield, null, null, "gmT2_Deflect_Acknowledge_SpeakerStuff_more2()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4309, Grace.__$behaviorFactory19_rfield, null, null, "gmT2_Deflect_Acknowledge_SpeakerStuff_more2()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4310, Grace.__$behaviorFactory19_rfield, null, null, "gmT2_Deflect_Acknowledge_ListenerStuff()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4311, Grace.__$behaviorFactory19_rfield, null, null, "gmT2_Deflect_Acknowledge_ListenerStuff_more1()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4312, Grace.__$behaviorFactory19_rfield, null, null, "gmT2_Deflect_Acknowledge_ListenerStuff_more1()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4313, Grace.__$behaviorFactory19_rfield, null, null, "gmT2_Deflect_HoldOn_SpeakerStuff(int, int, int, int, int, int, int)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4314, Grace.__$behaviorFactory19_rfield, Grace.__$precondition4_rfield, null, "gmT2_Deflect_HoldOn_SpeakerStuff_mood(int, int)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4315, Grace.__$behaviorFactory19_rfield, Grace.__$precondition4_rfield, null, "gmT2_Deflect_HoldOn_SpeakerStuff_littleaction(int)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4316, Grace.__$behaviorFactory19_rfield, null, null, "gmT2_Deflect_HoldOn_SpeakerStuff_more1()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4317, Grace.__$behaviorFactory19_rfield, null, null, "gmT2_Deflect_HoldOn_SpeakerStuff_more1()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4318, Grace.__$behaviorFactory19_rfield, null, null, "gmT2_Deflect_HoldOn_SpeakerStuff_more2()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4319, Grace.__$behaviorFactory19_rfield, null, null, "gmT2_Deflect_HoldOn_SpeakerStuff_more2()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4320, Grace.__$behaviorFactory19_rfield, null, null, "gmT2_Deflect_HoldOn_ListenerStuff()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4321, Grace.__$behaviorFactory19_rfield, null, null, "gmT2_Deflect_HoldOn_ListenerStuff_more1()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4322, Grace.__$behaviorFactory19_rfield, null, null, "gmT2_Deflect_HoldOn_ListenerStuff_more1()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4324, Grace.__$behaviorFactory19_rfield, null, null, "gmP1_PostBeat_RepeatGrace_BodyStuff_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4326, Grace.__$behaviorFactory19_rfield, null, null, "gmP1_PostBeat_RepeatTrip_BodyStuff_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4328, Grace.__$behaviorFactory19_rfield, null, null, "gmP1_PostBeat_speaker_nonAffinity_BodyStuff_seq(int, int, int, int, int, int)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4330, Grace.__$behaviorFactory19_rfield, null, null, "gmP1_PostBeat_listener_nonAffinity_BodyStuff_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4332, Grace.__$behaviorFactory19_rfield, null, null, "gmP1_PostBeat_speaker_affinity_BodyStuff_seq(int, int, int, int, int, int)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4334, Grace.__$behaviorFactory19_rfield, null, null, "gmP1_PostBeat_listener_affinity_BodyStuff_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4336, Grace.__$behaviorFactory19_rfield, Grace.__$precondition4_rfield, null, "BeatHandlers_more()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4337, Grace.__$behaviorFactory19_rfield, null, null, "SynchronizeGT(String)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4338, Grace.__$behaviorFactory19_rfield, Grace.__$precondition4_rfield, null, "SynchronizeGT_Cleanup(String)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4343, Grace.__$behaviorFactory19_rfield, null, null, "BodyResources_Initialize()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4344, Grace.__$behaviorFactory19_rfield, Grace.__$precondition4_rfield, null, "BodyResources_InitializeCleanupDemons()", null, (short)2));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4345, Grace.__$behaviorFactory19_rfield, null, null, "BodyResources_InitializeCleanupDemons()", null, (short)1));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4346, Grace.__$behaviorFactory19_rfield, null, null, "BodyResources_CleanupRoot()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4347, Grace.__$behaviorFactory19_rfield, Grace.__$precondition4_rfield, null, "BodyResources_CleanupDemon(int)", null, (short)1));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4348, Grace.__$behaviorFactory19_rfield, null, null, "BodyResources_CleanupDemon(int)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4349, Grace.__$behaviorFactory19_rfield, Grace.__$precondition4_rfield, null, "BodyResources_CleanupDemon_Step2(int)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4350, Grace.__$behaviorFactory19_rfield, Grace.__$precondition4_rfield, null, "BodyResources_CleanupDemon_WaitForOwnerToDisappear(int)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4351, Grace.__$behaviorFactory19_rfield, Grace.__$precondition4_rfield, null, "BodyResources_CleanupDemon_WaitForOwnerToDisappear_Step2(String, BehaviorWME)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4352, Grace.__$behaviorFactory19_rfield, Grace.__$precondition4_rfield, null, "BodyResources_CleanupDemon_WaitForOwnerToDisappear_Step2(String, BehaviorWME)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4353, Grace.__$behaviorFactory19_rfield, Grace.__$precondition4_rfield, null, "BodyResources_CleanupDemon_WaitForOwnerToDisappear_Step2(String, BehaviorWME)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4354, Grace.__$behaviorFactory19_rfield, Grace.__$precondition4_rfield, null, "BodyResources_TimeoutDemon(int, int, BehaviorWME)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4355, Grace.__$behaviorFactory19_rfield, Grace.__$precondition4_rfield, null, "BodyResources_IsOwner(int)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4356, Grace.__$behaviorFactory19_rfield, Grace.__$precondition4_rfield, null, "BodyResources_IsOwner(int)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4357, Grace.__$behaviorFactory19_rfield, Grace.__$precondition4_rfield, null, "BodyResources_IsOwner(int)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4358, Grace.__$behaviorFactory19_rfield, Grace.__$precondition4_rfield, null, "BodyResources_IsOwner(int)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4359, Grace.__$behaviorFactory19_rfield, Grace.__$precondition4_rfield, null, "BodyResource_FailOrSucceed(boolean, int)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4360, Grace.__$behaviorFactory19_rfield, Grace.__$precondition4_rfield, null, "BodyResource_FailOrSucceed(boolean, int)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4361, Grace.__$behaviorFactory19_rfield, null, null, "RequestBodyResource(int, int, int)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4362, Grace.__$behaviorFactory19_rfield, null, null, "RequestBodyResource(int, int, int, int)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4363, Grace.__$behaviorFactory19_rfield, null, null, "RequestBodyResource(int, int, int, BehaviorWME)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4364, Grace.__$behaviorFactory19_rfield, Grace.__$precondition4_rfield, null, "RequestBodyResource(int, int, int, int, BehaviorWME)", null, (short)3));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4365, Grace.__$behaviorFactory19_rfield, Grace.__$precondition4_rfield, null, "RequestBodyResource(int, int, int, int, BehaviorWME)", null, (short)3));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4366, Grace.__$behaviorFactory19_rfield, Grace.__$precondition4_rfield, null, "RequestBodyResource(int, int, int, int, BehaviorWME)", null, (short)2));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4367, Grace.__$behaviorFactory19_rfield, Grace.__$precondition4_rfield, null, "RequestBodyResource(int, int, int, int, BehaviorWME)", null, (short)1));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4368, Grace.__$behaviorFactory19_rfield, Grace.__$precondition4_rfield, null, "PrintRequestBodyResourceABTError(boolean, int)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4369, Grace.__$behaviorFactory19_rfield, Grace.__$precondition4_rfield, null, "RequestBodyResource(int, int, int, int, BehaviorWME)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4370, Grace.__$behaviorFactory19_rfield, Grace.__$precondition4_rfield, null, "RequestBodyResource(int, int, int, int, BehaviorWME)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4371, Grace.__$behaviorFactory19_rfield, Grace.__$precondition4_rfield, null, "ReleaseBodyResource(int)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4372, Grace.__$behaviorFactory19_rfield, null, null, "ReleaseBodyResource_CheckIsOwner(int)", null, (short)2));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4373, Grace.__$behaviorFactory19_rfield, null, null, "ReleaseBodyResource_CheckIsOwner(int)", null, (short)1));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4374, Grace.__$behaviorFactory19_rfield, Grace.__$precondition4_rfield, null, "BodyResource_SpawnTimeoutDemon(int, int, BehaviorWME)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4375, Grace.__$behaviorFactory19_rfield, null, null, "RequestOrConfirmBodyResource(int, int, int)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4376, Grace.__$behaviorFactory19_rfield, Grace.__$precondition4_rfield, null, "RequestOrConfirmBodyResource(int, int, int, BehaviorWME)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4377, Grace.__$behaviorFactory19_rfield, Grace.__$precondition4_rfield, null, "RequestOrConfirmBodyResource(int, int, int, BehaviorWME)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4378, Grace.__$behaviorFactory19_rfield, Grace.__$precondition4_rfield, null, "RequestOrConfirmBodyResource(int, int, int, BehaviorWME)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4379, Grace.__$behaviorFactory19_rfield, null, null, "BodyResources_IsOwner_WithErrorMessage(int, BehaviorWME)", null, (short)2));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4380, Grace.__$behaviorFactory19_rfield, null, null, "BodyResources_IsOwner_WithErrorMessage(int, BehaviorWME)", null, (short)1));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4381, Grace.__$behaviorFactory19_rfield, Grace.__$precondition4_rfield, null, "PrintIfResourceIsGettable(int, int)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4382, Grace.__$behaviorFactory19_rfield, null, null, "handlerLookAtPlayerIfTyping()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4383, Grace.__$behaviorFactory19_rfield, Grace.__$precondition4_rfield, null, "handlerLookAtPlayerIfTyping_Body()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4384, Grace.__$behaviorFactory19_rfield, Grace.__$precondition4_rfield, null, "handlerLookAtPlayerIfTyping_delaySecs(int, float)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4385, Grace.__$behaviorFactory19_rfield, Grace.__$precondition4_rfield, null, "PerformLittleAction(int, int, int, int)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4386, Grace.__$behaviorFactory19_rfield, Grace.__$precondition4_rfield, null, "PerformLittleActionAtDialogCue(int, int, int, int, int, int)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4387, Grace.__$behaviorFactory19_rfield, Grace.__$precondition4_rfield, null, "PerformLittleActionAtDialogCue(int, int, int, int, int, int)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4388, Grace.__$behaviorFactory19_rfield, null, null, "PerformLittleActionAfterDelay(int, int, int, int, float)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4389, Grace.__$behaviorFactory19_rfield, Grace.__$precondition4_rfield, null, "PerformLittleAction_Body(int, int, int)", null, (short)2));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4390, Grace.__$behaviorFactory19_rfield, Grace.__$precondition4_rfield, null, "PerformLittleAction_Body(int, int, int)", null, (short)2));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4391, Grace.__$behaviorFactory19_rfield, Grace.__$precondition4_rfield, null, "PerformLittleAction_Body(int, int, int)", null, (short)2));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4392, Grace.__$behaviorFactory19_rfield, Grace.__$precondition4_rfield, null, "PerformLittleAction_Body(int, int, int)", null, (short)2));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4393, Grace.__$behaviorFactory19_rfield, Grace.__$precondition4_rfield, null, "PerformLittleAction_Body(int, int, int)", null, (short)2));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4394, Grace.__$behaviorFactory19_rfield, Grace.__$precondition4_rfield, null, "PerformLittleAction_Body(int, int, int)", null, (short)2));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4395, Grace.__$behaviorFactory19_rfield, Grace.__$precondition4_rfield, null, "PerformLittleAction_Body(int, int, int)", null, (short)2));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4396, Grace.__$behaviorFactory19_rfield, Grace.__$precondition4_rfield, null, "PerformLittleAction_Body(int, int, int)", null, (short)2));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4397, Grace.__$behaviorFactory19_rfield, Grace.__$precondition4_rfield, null, "PerformLittleAction_Body(int, int, int)", null, (short)2));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4398, Grace.__$behaviorFactory19_rfield, Grace.__$precondition4_rfield, null, "PerformLittleAction_Body(int, int, int)", null, (short)2));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4399, Grace.__$behaviorFactory19_rfield, Grace.__$precondition4_rfield, null, "PerformLittleAction_Body(int, int, int)", null, (short)2));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4400, Grace.__$behaviorFactory19_rfield, Grace.__$precondition4_rfield, null, "PerformLittleAction_Body(int, int, int)", null, (short)2));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4401, Grace.__$behaviorFactory19_rfield, Grace.__$precondition4_rfield, null, "PerformLittleAction_Body(int, int, int)", null, (short)2));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4402, Grace.__$behaviorFactory19_rfield, Grace.__$precondition4_rfield, null, "PerformLittleAction_Body(int, int, int)", null, (short)2));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4403, Grace.__$behaviorFactory19_rfield, Grace.__$precondition4_rfield, null, "PerformLittleAction_Body(int, int, int)", null, (short)2));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4404, Grace.__$behaviorFactory19_rfield, Grace.__$precondition4_rfield, null, "PerformLittleAction_Body(int, int, int)", null, (short)2));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4405, Grace.__$behaviorFactory19_rfield, Grace.__$precondition4_rfield, null, "PerformLittleAction_Body(int, int, int)", null, (short)2));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4406, Grace.__$behaviorFactory19_rfield, Grace.__$precondition4_rfield, null, "PerformLittleAction_Body(int, int, int)", null, (short)2));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4407, Grace.__$behaviorFactory19_rfield, Grace.__$precondition4_rfield, null, "PerformLittleAction_Body(int, int, int)", null, (short)2));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4408, Grace.__$behaviorFactory19_rfield, Grace.__$precondition4_rfield, null, "PerformLittleAction_Body(int, int, int)", null, (short)2));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4409, Grace.__$behaviorFactory19_rfield, Grace.__$precondition4_rfield, null, "PerformLittleAction_Body(int, int, int)", null, (short)2));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4410, Grace.__$behaviorFactory19_rfield, Grace.__$precondition4_rfield, null, "PerformLittleAction_Body(int, int, int)", null, (short)2));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4411, Grace.__$behaviorFactory19_rfield, Grace.__$precondition4_rfield, null, "PerformLittleAction_Body(int, int, int)", null, (short)2));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4412, Grace.__$behaviorFactory19_rfield, Grace.__$precondition4_rfield, null, "PerformLittleAction_Body(int, int, int)", null, (short)2));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4413, Grace.__$behaviorFactory19_rfield, Grace.__$precondition4_rfield, null, "PerformLittleAction_Body(int, int, int)", null, (short)2));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4414, Grace.__$behaviorFactory19_rfield, Grace.__$precondition4_rfield, null, "PerformLittleAction_Body(int, int, int)", null, (short)2));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4415, Grace.__$behaviorFactory19_rfield, Grace.__$precondition4_rfield, null, "PerformLittleAction_Body(int, int, int)", null, (short)2));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4416, Grace.__$behaviorFactory19_rfield, Grace.__$precondition4_rfield, null, "PerformLittleAction_Body(int, int, int)", null, (short)2));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4417, Grace.__$behaviorFactory19_rfield, Grace.__$precondition4_rfield, null, "PerformLittleAction_Body(int, int, int)", null, (short)2));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4418, Grace.__$behaviorFactory19_rfield, Grace.__$precondition4_rfield, null, "PerformLittleAction_Body(int, int, int)", null, (short)2));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4419, Grace.__$behaviorFactory19_rfield, Grace.__$precondition4_rfield, null, "PerformLittleAction_Body(int, int, int)", null, (short)2));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4420, Grace.__$behaviorFactory19_rfield, Grace.__$precondition4_rfield, null, "PerformLittleAction_Body(int, int, int)", null, (short)2));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4421, Grace.__$behaviorFactory19_rfield, Grace.__$precondition4_rfield, null, "PerformLittleAction_Body(int, int, int)", null, (short)2));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4422, Grace.__$behaviorFactory19_rfield, Grace.__$precondition4_rfield, null, "PerformLittleAction_Body(int, int, int)", null, (short)2));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4423, Grace.__$behaviorFactory19_rfield, Grace.__$precondition4_rfield, null, "PerformLittleAction_Body(int, int, int)", null, (short)2));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4424, Grace.__$behaviorFactory19_rfield, Grace.__$precondition4_rfield, null, "PerformLittleAction_Body(int, int, int)", null, (short)2));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4425, Grace.__$behaviorFactory19_rfield, Grace.__$precondition4_rfield, null, "PerformLittleAction_Body(int, int, int)", null, (short)2));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4426, Grace.__$behaviorFactory19_rfield, null, null, "PerformLittleAction_Body(int, int, int)", null, (short)1));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4427, Grace.__$behaviorFactory19_rfield, null, null, "PerformLittleAction_ThinkBarelyOrLow(int, int)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4428, Grace.__$behaviorFactory19_rfield, null, null, "PerformLittleAction_ThinkMedium(int, int)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4429, Grace.__$behaviorFactory19_rfield, null, null, "PerformLittleAction_ThinkMedium(int, int)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4430, Grace.__$behaviorFactory19_rfield, null, null, "PerformLittleAction_ThinkMedium(int, int)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4431, Grace.__$behaviorFactory19_rfield, null, null, "PerformLittleAction_ThinkHigh(int, int)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4432, Grace.__$behaviorFactory19_rfield, null, null, "PerformLittleAction_ThinkHigh(int, int)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4433, Grace.__$behaviorFactory19_rfield, null, null, "PerformLittleAction_ThinkHigh(int, int)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4434, Grace.__$behaviorFactory19_rfield, null, null, "PerformLittleAction_ReactBarelyOrLow(int, boolean, int)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4435, Grace.__$behaviorFactory19_rfield, null, null, "PerformLittleAction_ReactBarelyOrLow_TwoAlts(int, float, int, float, int, float, int, int)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4436, Grace.__$behaviorFactory19_rfield, Grace.__$precondition4_rfield, null, "PerformLittleAction_ReactBarelyOrLow_Stuff(int, float)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4437, Grace.__$behaviorFactory19_rfield, Grace.__$precondition4_rfield, null, "PerformLittleAction_ReactBarelyOrLow_Stuff(int, float)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4438, Grace.__$behaviorFactory19_rfield, Grace.__$precondition4_rfield, null, "PerformLittleAction_ReactBarelyOrLow_Stuff(int, float)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4439, Grace.__$behaviorFactory19_rfield, Grace.__$precondition4_rfield, null, "PerformLittleAction_ReactBarelyOrLow_Stuff(int, float)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4440, Grace.__$behaviorFactory19_rfield, Grace.__$precondition4_rfield, null, "PerformLittleAction_PossiblyDoAdditionalEyeLook(int)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4441, Grace.__$behaviorFactory19_rfield, null, null, "PerformLittleAction_ReactSeriousMedium()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4442, Grace.__$behaviorFactory19_rfield, null, null, "PerformLittleAction_ReactSeriousMedium1_p1(float, float, float, int, int, int)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4443, Grace.__$behaviorFactory19_rfield, null, null, "PerformLittleAction_ReactSeriousMedium1_p2(float, float, float, int, int, int)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4444, Grace.__$behaviorFactory19_rfield, null, null, "PerformLittleAction_ReactSeriousMedium()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4445, Grace.__$behaviorFactory19_rfield, null, null, "PerformLittleAction_ReactSeriousMedium2_p1(float, float, float, int, int, int)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4446, Grace.__$behaviorFactory19_rfield, null, null, "PerformLittleAction_ReactSeriousMedium2_p1b(float)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4447, Grace.__$behaviorFactory19_rfield, null, null, "PerformLittleAction_ReactSeriousMedium2_p2(float, float, float, int, int, int)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4448, Grace.__$behaviorFactory19_rfield, null, null, "PerformLittleAction_ReactAnxiousMedium()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4449, Grace.__$behaviorFactory19_rfield, null, null, "PerformLittleAction_ReactAnxiousMedium1_p1(float, float, float, int, int, int, int, int, int)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4450, Grace.__$behaviorFactory19_rfield, null, null, "PerformLittleAction_ReactAnxiousMedium1_p2(float, float, float, int, int, int)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4451, Grace.__$behaviorFactory19_rfield, null, null, "PerformLittleAction_ReactAngryMedium()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4452, Grace.__$behaviorFactory19_rfield, null, null, "PerformLittleAction_ReactAngryMedium1_p1(float, float, float, int, int, int, int)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4453, Grace.__$behaviorFactory19_rfield, null, null, "PerformLittleAction_ReactAngryMedium1_p2(float, float, float, int, int, int)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4454, Grace.__$behaviorFactory19_rfield, null, null, "PerformLittleAction_ReactAngryMedium()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4455, Grace.__$behaviorFactory19_rfield, null, null, "PerformLittleAction_ReactAngryMedium2_p1(float, float, float, int, int, int)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4456, Grace.__$behaviorFactory19_rfield, null, null, "PerformLittleAction_ReactAngryMedium2_p2(float, float, float, int, int, int)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4457, Grace.__$behaviorFactory19_rfield, null, null, "PerformLittleAction_ReactAngryMedium()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4458, Grace.__$behaviorFactory19_rfield, null, null, "PerformLittleAction_ReactAngryMedium3_p1(float, float, float, int, int, int, int)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4459, Grace.__$behaviorFactory19_rfield, null, null, "PerformLittleAction_ReactAngryMedium3_p2(float, float, float, int, int, int, int)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4460, Grace.__$behaviorFactory19_rfield, null, null, "PerformLittleAction_ReactAngryMedium3_p3(float, float, float, int, int, int, int)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4461, Grace.__$behaviorFactory19_rfield, null, null, "PerformLittleAction_ReactSeriousHigh()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4462, Grace.__$behaviorFactory19_rfield, null, null, "PerformLittleAction_ReactSeriousHigh1_p1(float, float, float, int, int, int, int)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4463, Grace.__$behaviorFactory19_rfield, null, null, "PerformLittleAction_ReactSeriousHigh1_p2(float, float, float, int, int, int)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4464, Grace.__$behaviorFactory19_rfield, null, null, "PerformLittleAction_ReactSeriousHigh()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4465, Grace.__$behaviorFactory19_rfield, null, null, "PerformLittleAction_ReactSeriousHigh2_p1(float, float, float, int, int, int, int)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4466, Grace.__$behaviorFactory19_rfield, null, null, "PerformLittleAction_ReactSeriousHigh2_p1b(float, float)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4467, Grace.__$behaviorFactory19_rfield, null, null, "PerformLittleAction_ReactSeriousHigh2_p2(float, float, float, int, int, int)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4468, Grace.__$behaviorFactory19_rfield, null, null, "PerformLittleAction_ReactAnxiousHigh()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4469, Grace.__$behaviorFactory19_rfield, null, null, "PerformLittleAction_ReactAnxiousHigh1_p1a(float, float, float, int, int, int, int, int, int)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4470, Grace.__$behaviorFactory19_rfield, null, null, "PerformLittleAction_ReactAnxiousHigh1_p1(float, float, float, int, int, int, int, int, int)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4471, Grace.__$behaviorFactory19_rfield, null, null, "PerformLittleAction_ReactAnxiousHigh1_p2(float, float, float, int, int, int)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4472, Grace.__$behaviorFactory19_rfield, null, null, "PerformLittleAction_ReactAngryHigh()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4473, Grace.__$behaviorFactory19_rfield, null, null, "PerformLittleAction_ReactAngryHigh1_p1(float, float, float, int, int, int)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4474, Grace.__$behaviorFactory19_rfield, null, null, "PerformLittleAction_ReactAngryHigh1_p2(float, float, float, int, int, int)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4475, Grace.__$behaviorFactory19_rfield, null, null, "PerformLittleAction_ReactAngryHigh()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4476, Grace.__$behaviorFactory19_rfield, null, null, "PerformLittleAction_ReactAngryHigh2_p1(float, float, float, int, int, int)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4477, Grace.__$behaviorFactory19_rfield, null, null, "PerformLittleAction_ReactAngryHigh2_p2(float, float, float, int, int, int)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4478, Grace.__$behaviorFactory19_rfield, null, null, "PerformLittleAction_ReactAngryHigh()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4479, Grace.__$behaviorFactory19_rfield, null, null, "PerformLittleAction_ReactAngryHigh3_p1(float, float, float, int, int, int, int)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4480, Grace.__$behaviorFactory19_rfield, null, null, "PerformLittleAction_ReactAngryHigh3_p2(float, float, float, int, int, int, int)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4481, Grace.__$behaviorFactory19_rfield, null, null, "PerformLittleAction_ReactAngryHigh3_p3(float, float, float, int, int, int, int)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4482, Grace.__$behaviorFactory19_rfield, Grace.__$precondition4_rfield, null, "PerformLittleAction_FacialMod(int, float)", null, (short)2));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4483, Grace.__$behaviorFactory19_rfield, null, null, "PerformLittleAction_FacialMod(int, float)", null, (short)1));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4484, Grace.__$behaviorFactory19_rfield, null, null, "PerformLittleAction_BlinkFastOrFlutter()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4485, Grace.__$behaviorFactory19_rfield, null, null, "PerformLittleAction_BlinkFastOrFlutter()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4486, Grace.__$behaviorFactory19_rfield, null, null, "PerformLittleAction_PossibleHeadQuiver()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4487, Grace.__$behaviorFactory19_rfield, null, null, "PerformLittleAction_PossibleHeadQuiver()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4488, Grace.__$behaviorFactory19_rfield, null, null, "DoMiscLittleAction(int, int, float)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4489, Grace.__$behaviorFactory19_rfield, null, null, "DoMiscLittleActionAfterDelay(int, int, float, float)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4490, Grace.__$behaviorFactory19_rfield, null, null, "InitMoodManager()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4491, Grace.__$behaviorFactory19_rfield, null, null, "SetMood(int, int, int, int)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4492, Grace.__$behaviorFactory19_rfield, null, null, "SetMood(int, int, int, int, float)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4493, Grace.__$behaviorFactory19_rfield, Grace.__$precondition4_rfield, null, "SetMood(int, int, int, int, float, int, float, int, int)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4494, Grace.__$behaviorFactory19_rfield, Grace.__$precondition4_rfield, null, "SetMoodAtDialogCue(int, int, int, int, int, int)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4495, Grace.__$behaviorFactory19_rfield, Grace.__$precondition4_rfield, null, "SetMoodAtDialogCue(int, int, int, int, int, int)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4496, Grace.__$behaviorFactory19_rfield, null, null, "SetMoodAfterDelay(int, int, int, int, float)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4497, Grace.__$behaviorFactory19_rfield, Grace.__$precondition4_rfield, null, "SetMoodWMEStagingConverseInfo(float, float)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4498, Grace.__$behaviorFactory19_rfield, Grace.__$precondition4_rfield, null, "MoodManager()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4499, Grace.__$behaviorFactory19_rfield, Grace.__$precondition4_rfield, Grace.__$preconditionSensorFactory0_rfield, "MoodManager_GetIfHoldingObject()", null, (short)2));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4500, Grace.__$behaviorFactory19_rfield, Grace.__$precondition4_rfield, null, "MoodManager_GetIfHoldingObject()", null, (short)1));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4501, Grace.__$behaviorFactory19_rfield, null, null, "MoodManager_Body(boolean)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4502, Grace.__$behaviorFactory19_rfield, Grace.__$precondition4_rfield, null, "MoodManager_dispatcher(boolean)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4503, Grace.__$behaviorFactory19_rfield, Grace.__$precondition4_rfield, null, "MoodDecay()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4504, Grace.__$behaviorFactory19_rfield, Grace.__$precondition4_rfield, null, "MoodBurstDecay()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4505, Grace.__$behaviorFactory19_rfield, null, null, "TryToDoGaze(int, int, int)", null, (short)2));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4506, Grace.__$behaviorFactory19_rfield, null, null, "TryToDoGaze(int, int, int)", null, (short)1));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4507, Grace.__$behaviorFactory19_rfield, Grace.__$precondition4_rfield, null, "TryToDoArmLGesture(int, int, boolean)", null, (short)2));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4508, Grace.__$behaviorFactory19_rfield, null, null, "TryToDoArmLGesture(int, int, boolean)", null, (short)1));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4509, Grace.__$behaviorFactory19_rfield, Grace.__$precondition4_rfield, null, "TryToDoArmRGesture(int, int, boolean)", null, (short)2));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4510, Grace.__$behaviorFactory19_rfield, null, null, "TryToDoArmRGesture(int, int, boolean)", null, (short)1));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4511, Grace.__$behaviorFactory19_rfield, Grace.__$precondition4_rfield, null, "TryToDoArmsBothGesture(int, int, boolean)", null, (short)2));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4512, Grace.__$behaviorFactory19_rfield, null, null, "TryToDoArmsBothGesture(int, int, boolean)", null, (short)1));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4513, Grace.__$behaviorFactory19_rfield, Grace.__$precondition4_rfield, null, "PerformMood_getResources(BehaviorWME, boolean)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4514, Grace.__$behaviorFactory19_rfield, Grace.__$precondition4_rfield, null, "PerformMood(boolean)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4515, Grace.__$behaviorFactory19_rfield, Grace.__$precondition4_rfield, null, "PerformMood_getResources(BehaviorWME, boolean)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4516, Grace.__$behaviorFactory19_rfield, Grace.__$precondition4_rfield, null, "PerformMood(boolean)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4517, Grace.__$behaviorFactory19_rfield, Grace.__$precondition4_rfield, null, "PerformMood_getResources(BehaviorWME, boolean)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4518, Grace.__$behaviorFactory19_rfield, Grace.__$precondition4_rfield, null, "PerformMood(boolean)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4519, Grace.__$behaviorFactory19_rfield, Grace.__$precondition4_rfield, null, "PerformMood_getResources(BehaviorWME, boolean)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4520, Grace.__$behaviorFactory20_rfield, Grace.__$precondition4_rfield, null, "PerformMood(boolean)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4521, Grace.__$behaviorFactory20_rfield, Grace.__$precondition4_rfield, null, "PerformMood_getResources(BehaviorWME, boolean)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4522, Grace.__$behaviorFactory20_rfield, Grace.__$precondition4_rfield, null, "PerformMood(boolean)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4523, Grace.__$behaviorFactory20_rfield, Grace.__$precondition4_rfield, null, "PerformMood_getResources(BehaviorWME, boolean)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4524, Grace.__$behaviorFactory20_rfield, Grace.__$precondition4_rfield, null, "PerformMood(boolean)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4525, Grace.__$behaviorFactory20_rfield, Grace.__$precondition4_rfield, null, "PerformMood_getResources(BehaviorWME, boolean)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4526, Grace.__$behaviorFactory20_rfield, Grace.__$precondition4_rfield, null, "PerformMood(boolean)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4527, Grace.__$behaviorFactory20_rfield, Grace.__$precondition4_rfield, null, "PerformMood_getResources(BehaviorWME, boolean)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4528, Grace.__$behaviorFactory20_rfield, Grace.__$precondition4_rfield, null, "PerformMood(boolean)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4529, Grace.__$behaviorFactory20_rfield, Grace.__$precondition4_rfield, null, "PerformMood_getResources(BehaviorWME, boolean)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4530, Grace.__$behaviorFactory20_rfield, Grace.__$precondition4_rfield, null, "PerformMood(boolean)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4531, Grace.__$behaviorFactory20_rfield, Grace.__$precondition4_rfield, null, "PerformMood_getResources(BehaviorWME, boolean)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4532, Grace.__$behaviorFactory20_rfield, Grace.__$precondition4_rfield, null, "PerformMood(boolean)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4533, Grace.__$behaviorFactory20_rfield, Grace.__$precondition4_rfield, null, "PerformMood_getResources(BehaviorWME, boolean)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4534, Grace.__$behaviorFactory20_rfield, Grace.__$precondition4_rfield, null, "PerformMood(boolean)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4535, Grace.__$behaviorFactory20_rfield, null, null, "PerformMood_anxiousLow_Loop(int, int)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4536, Grace.__$behaviorFactory20_rfield, Grace.__$precondition4_rfield, null, "PerformMood_anxiousLow_LoopBody(int, int)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4537, Grace.__$behaviorFactory20_rfield, Grace.__$precondition4_rfield, null, "PerformMood_getResources(BehaviorWME, boolean)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4538, Grace.__$behaviorFactory20_rfield, Grace.__$precondition4_rfield, null, "PerformMood(boolean)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4539, Grace.__$behaviorFactory20_rfield, null, null, "PerformMood_anxiousLow_stuff(boolean)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4540, Grace.__$behaviorFactory20_rfield, Grace.__$precondition4_rfield, null, "PerformMood_getResources(BehaviorWME, boolean)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4541, Grace.__$behaviorFactory20_rfield, Grace.__$precondition4_rfield, null, "PerformMood(boolean)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4542, Grace.__$behaviorFactory20_rfield, Grace.__$precondition4_rfield, null, "PerformMood_getResources(BehaviorWME, boolean)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4543, Grace.__$behaviorFactory20_rfield, Grace.__$precondition4_rfield, null, "PerformMood(boolean)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4544, Grace.__$behaviorFactory20_rfield, Grace.__$precondition4_rfield, null, "PerformMood_getResources(BehaviorWME, boolean)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4545, Grace.__$behaviorFactory20_rfield, Grace.__$precondition4_rfield, null, "PerformMood(boolean)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4546, Grace.__$behaviorFactory20_rfield, Grace.__$precondition4_rfield, null, "PerformMood_getResources(BehaviorWME, boolean)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4547, Grace.__$behaviorFactory20_rfield, Grace.__$precondition4_rfield, null, "PerformMood(boolean)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4548, Grace.__$behaviorFactory20_rfield, Grace.__$precondition4_rfield, null, "PerformMood_getResources(BehaviorWME, boolean)", null, (short)3));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4549, Grace.__$behaviorFactory20_rfield, Grace.__$precondition4_rfield, null, "PerformMood_getResources(BehaviorWME, boolean)", null, (short)2));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4550, Grace.__$behaviorFactory20_rfield, Grace.__$precondition4_rfield, null, "PerformMood(boolean)", null, (short)2));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4551, Grace.__$behaviorFactory20_rfield, Grace.__$precondition4_rfield, null, "PerformMood_rejectedLow_burstStuff(boolean)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4552, Grace.__$behaviorFactory20_rfield, Grace.__$precondition4_rfield, null, "PerformMood_getResources(BehaviorWME, boolean)", null, (short)1));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4553, Grace.__$behaviorFactory20_rfield, Grace.__$precondition4_rfield, null, "PerformMood(boolean)", null, (short)1));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4554, Grace.__$behaviorFactory20_rfield, Grace.__$precondition4_rfield, null, "PerformMood_rejectedLow_stuff(boolean)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4555, Grace.__$behaviorFactory20_rfield, Grace.__$precondition4_rfield, null, "PerformMood_rejectedLow_stuff(boolean)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4556, Grace.__$behaviorFactory20_rfield, Grace.__$precondition4_rfield, null, "PerformMood_getResources(BehaviorWME, boolean)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4557, Grace.__$behaviorFactory20_rfield, Grace.__$precondition4_rfield, null, "PerformMood(boolean)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4558, Grace.__$behaviorFactory20_rfield, Grace.__$precondition4_rfield, null, "PerformMood_getResources(BehaviorWME, boolean)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4559, Grace.__$behaviorFactory20_rfield, Grace.__$precondition4_rfield, null, "PerformMood(boolean)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4560, Grace.__$behaviorFactory20_rfield, Grace.__$precondition5_rfield, null, "PerformMood_getResources(BehaviorWME, boolean)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4561, Grace.__$behaviorFactory20_rfield, Grace.__$precondition5_rfield, null, "PerformMood(boolean)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4562, Grace.__$behaviorFactory20_rfield, Grace.__$precondition5_rfield, null, "PerformMood_getResources(BehaviorWME, boolean)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4563, Grace.__$behaviorFactory20_rfield, Grace.__$precondition5_rfield, null, "PerformMood(boolean)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4564, Grace.__$behaviorFactory20_rfield, null, null, "PerformMood_impatientLow_stuff(boolean)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4565, Grace.__$behaviorFactory20_rfield, null, null, "PerformMood_impatientLow_stuff(boolean)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4566, Grace.__$behaviorFactory20_rfield, Grace.__$precondition5_rfield, null, "PerformMood_getResources(BehaviorWME, boolean)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4567, Grace.__$behaviorFactory20_rfield, Grace.__$precondition5_rfield, null, "PerformMood(boolean)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4568, Grace.__$behaviorFactory20_rfield, Grace.__$precondition5_rfield, null, "PerformMood_getResources(BehaviorWME, boolean)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4569, Grace.__$behaviorFactory20_rfield, Grace.__$precondition5_rfield, null, "PerformMood(boolean)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4570, Grace.__$behaviorFactory20_rfield, Grace.__$precondition5_rfield, null, "SetBeatCommitPointReached(boolean)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4571, Grace.__$behaviorFactory20_rfield, Grace.__$precondition5_rfield, null, "SetBeatGistPointReached(boolean)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4572, Grace.__$behaviorFactory20_rfield, Grace.__$precondition5_rfield, null, "SetBeatGistPointReached_ifTrue(boolean)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4573, Grace.__$behaviorFactory20_rfield, Grace.__$precondition5_rfield, null, "SetBeatTxningOut()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4574, Grace.__$behaviorFactory20_rfield, Grace.__$precondition5_rfield, null, "SetBeatGoalCommitPointReached()", null, (short)2));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4575, Grace.__$behaviorFactory20_rfield, null, null, "SetBeatGoalCommitPointReached()", null, (short)1));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4576, Grace.__$behaviorFactory20_rfield, Grace.__$precondition5_rfield, null, "SetBeatGoalGistPointReached()", null, (short)2));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4577, Grace.__$behaviorFactory20_rfield, null, null, "SetBeatGoalGistPointReached()", null, (short)1));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4578, Grace.__$behaviorFactory20_rfield, Grace.__$precondition5_rfield, null, "SetLetBeatGoalFinishFlag_opt(boolean)", null, (short)2));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4579, Grace.__$behaviorFactory20_rfield, null, null, "SetLetBeatGoalFinishFlag_opt(boolean)", null, (short)1));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4580, Grace.__$behaviorFactory20_rfield, Grace.__$precondition5_rfield, null, "SetLetBeatGoalFinishFlag(boolean)", null, (short)4));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4581, Grace.__$behaviorFactory20_rfield, Grace.__$precondition5_rfield, null, "SetLetBeatGoalFinishFlag(boolean)", null, (short)3));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4582, Grace.__$behaviorFactory20_rfield, Grace.__$precondition5_rfield, null, "SetLetBeatGoalFinishFlag(boolean)", null, (short)2));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4583, Grace.__$behaviorFactory20_rfield, null, null, "SetLetBeatGoalFinishFlag(boolean)", null, (short)1));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4584, Grace.__$behaviorFactory20_rfield, null, null, "SetLetBeatGoalFinishFlagAfterDelay(boolean, float)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4585, Grace.__$behaviorFactory20_rfield, Grace.__$precondition5_rfield, null, "SetBeatGoalSatisfied(String, boolean)", null, (short)3));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4586, Grace.__$behaviorFactory20_rfield, Grace.__$precondition5_rfield, null, "SetBeatGoalSatisfied(String, boolean)", null, (short)2));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4587, Grace.__$behaviorFactory20_rfield, null, null, "SetBeatGoalSatisfied(String, boolean)", null, (short)1));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4588, Grace.__$behaviorFactory20_rfield, Grace.__$precondition5_rfield, null, "WaitABitLongerIfPlayerIsTyping(float)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4589, Grace.__$behaviorFactory20_rfield, null, null, "WaitForPlayerKeypressesToBeOverWithTimeout(float)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4590, Grace.__$behaviorFactory20_rfield, null, null, "WaitForPlayerKeypressesToBeOverWithTimeout_body(float)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4591, Grace.__$behaviorFactory20_rfield, Grace.__$precondition5_rfield, null, "WaitForPlayerKeypressesToBeOverWithTimeout_body2()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4592, Grace.__$behaviorFactory20_rfield, null, null, "SetBeatFlagInStoryMemory(String)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4593, Grace.__$behaviorFactory20_rfield, Grace.__$precondition5_rfield, null, "SetDeflectMode(int)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4594, Grace.__$behaviorFactory20_rfield, null, null, "SetDeflectModeReest(int, int, int, int, int, int, int, int, int, int, boolean)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4595, Grace.__$behaviorFactory20_rfield, Grace.__$precondition5_rfield, null, "SetDeflectModeReest(int, int, int, int, int, int, int, int, int, int, int, int, boolean)", null, (short)2));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4596, Grace.__$behaviorFactory20_rfield, null, null, "SetDeflectModeReest(int, int, int, int, int, int, int, int, int, int, int, int, boolean)", null, (short)1));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4597, Grace.__$behaviorFactory20_rfield, null, null, "CustomBeatHandlers()", null, (short)1));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4598, Grace.__$behaviorFactory20_rfield, Grace.__$precondition5_rfield, null, "FailIfOtherAmbIsAlreadyRunning(String)", null, (short)2));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4599, Grace.__$behaviorFactory20_rfield, null, null, "FailIfOtherAmbIsAlreadyRunning(String)", null, (short)1));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4600, Grace.__$behaviorFactory20_rfield, null, null, "PollForBeatGoalGistReached(int)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4601, Grace.__$behaviorFactory20_rfield, null, null, "PollForBeatGoalGistReached_body(int)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4602, Grace.__$behaviorFactory20_rfield, Grace.__$precondition5_rfield, null, "PollForBeatGoalGistReached_test()", null, (short)2));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4603, Grace.__$behaviorFactory20_rfield, null, null, "PollForBeatGoalGistReached_test()", null, (short)1));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4604, Grace.__$behaviorFactory20_rfield, Grace.__$precondition5_rfield, null, "SetDAHandlersActive(boolean)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4605, Grace.__$behaviorFactory20_rfield, null, null, "DoDialog(int, boolean, int)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4606, Grace.__$behaviorFactory20_rfield, null, null, "DoDialog(int, boolean, int, int)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4607, Grace.__$behaviorFactory20_rfield, null, null, "DoDialog(int, boolean, int, int, int)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4608, Grace.__$behaviorFactory20_rfield, null, null, "DoDialog(int, boolean, int, int, int, int)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4609, Grace.__$behaviorFactory20_rfield, null, null, "DoDialog(int, boolean, int, boolean)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4610, Grace.__$behaviorFactory20_rfield, null, null, "DoDialogAfterDelay(int, boolean, int, float)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4611, Grace.__$behaviorFactory20_rfield, null, null, "DoDialogAfterDelay(int, boolean, int, int, float)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4612, Grace.__$behaviorFactory20_rfield, null, null, "DoDialog(int, boolean, int, int, int, int, boolean)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4613, Grace.__$behaviorFactory20_rfield, Grace.__$precondition5_rfield, null, "DoDialog_SetYouRef(boolean)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4614, Grace.__$behaviorFactory20_rfield, Grace.__$precondition5_rfield, null, "DoDialog_SetYouRef(boolean)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4615, Grace.__$behaviorFactory20_rfield, Grace.__$precondition5_rfield, null, "DoDialog_SetYouRef(boolean)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4616, Grace.__$behaviorFactory20_rfield, null, null, "DoDialog_Body(int, int, int, int, boolean)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4617, Grace.__$behaviorFactory20_rfield, null, null, "DoDialog_Body2(int, int, int, int)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4618, Grace.__$behaviorFactory20_rfield, Grace.__$precondition5_rfield, null, "SetBeatCommitPointSoonIfNeeded()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4619, Grace.__$behaviorFactory20_rfield, null, null, "SetBeatCommitPointSoonIfNeeded_Body()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4620, Grace.__$behaviorFactory20_rfield, null, null, "WaitForAnimCueWithTimeout(int, int, int)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4621, Grace.__$behaviorFactory20_rfield, null, null, "WaitForDialogCommitCue()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4622, Grace.__$behaviorFactory20_rfield, null, null, "WaitForDialogCommitCue_Stuff()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4623, Grace.__$behaviorFactory20_rfield, null, null, "WaitForDialogCommitCue_TimeoutAssert()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4624, Grace.__$behaviorFactory20_rfield, null, null, "WaitForDialogGistCue(boolean)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4625, Grace.__$behaviorFactory20_rfield, null, null, "WaitForDialogGistDoneTurnOffLetDialogFinishCue(boolean)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4626, Grace.__$behaviorFactory20_rfield, Grace.__$precondition5_rfield, null, "WaitForDialogGistDoneTurnOffLetDialogFinishCue_CueWait(boolean)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4627, Grace.__$behaviorFactory20_rfield, Grace.__$precondition5_rfield, null, "WaitForDialogGistDoneTurnOffLetDialogFinishCue_Stuff(boolean, String)", null, (short)2));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4628, Grace.__$behaviorFactory20_rfield, Grace.__$precondition5_rfield, null, "WaitForDialogGistDoneTurnOffLetDialogFinishCue_Stuff(boolean, String)", null, (short)1));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4629, Grace.__$behaviorFactory20_rfield, null, null, "WaitForDialogGistDoneTurnOffLetDialogFinishCue_Timeout()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4630, Grace.__$behaviorFactory20_rfield, null, null, "WaitForDialogTurnOffLetDialogFinishCue(boolean)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4631, Grace.__$behaviorFactory20_rfield, Grace.__$precondition5_rfield, null, "WaitForDialogTurnOffLetDialogFinishCue_CueWait(boolean)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4632, Grace.__$behaviorFactory20_rfield, Grace.__$precondition5_rfield, null, "WaitForDialogTurnOffLetDialogFinishCue_Stuff(boolean, String)", null, (short)2));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4633, Grace.__$behaviorFactory20_rfield, Grace.__$precondition5_rfield, null, "WaitForDialogTurnOffLetDialogFinishCue_Stuff(boolean, String)", null, (short)1));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4634, Grace.__$behaviorFactory20_rfield, null, null, "WaitForDialogTurnOffLetDialogFinishCue_Timeout()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4635, Grace.__$behaviorFactory20_rfield, Grace.__$precondition5_rfield, null, "WaitForDialogCueWithTimeout(int, int)", null, (short)2));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4636, Grace.__$behaviorFactory20_rfield, null, null, "WaitForDialogCueWithTimeout(int, int)", null, (short)1));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4637, Grace.__$behaviorFactory20_rfield, Grace.__$precondition5_rfield, null, "WaitForDialogCueWithTimeout_cueWait(int, int)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4638, Grace.__$behaviorFactory20_rfield, Grace.__$precondition5_rfield, null, "WaitForDialogCueWithTimeout_cueWait(int, int)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4639, Grace.__$behaviorFactory20_rfield, null, null, "WaitForDialog_timeout(int)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4640, Grace.__$behaviorFactory20_rfield, null, null, "WaitForDialogToStartAndStopWithTimeout(int)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4641, Grace.__$behaviorFactory20_rfield, Grace.__$precondition5_rfield, null, "WaitForDialogToStartAndStopWithTimeout(int, int)", null, (short)2));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4642, Grace.__$behaviorFactory20_rfield, null, null, "WaitForDialogToStartAndStopWithTimeout(int, int)", null, (short)1));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4643, Grace.__$behaviorFactory20_rfield, null, null, "WaitForDialogToStartAndStop(int)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4644, Grace.__$behaviorFactory20_rfield, null, null, "WaitForDialogToStartAndStop(int, int)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4645, Grace.__$behaviorFactory20_rfield, Grace.__$precondition5_rfield, null, "WaitUntilStartsSpeakingWithTimeout(int)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4646, Grace.__$behaviorFactory20_rfield, Grace.__$precondition5_rfield, null, "WaitUntilStartsSpeakingWithTimeout(int, int)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4647, Grace.__$behaviorFactory20_rfield, Grace.__$precondition5_rfield, null, "WaitUntilStartsSpeakingWithTimeout(int)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4648, Grace.__$behaviorFactory20_rfield, Grace.__$precondition5_rfield, null, "WaitUntilStartsSpeakingWithTimeout(int, int)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4649, Grace.__$behaviorFactory20_rfield, Grace.__$precondition5_rfield, null, "WaitUntilStopsSpeaking(int)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4650, Grace.__$behaviorFactory20_rfield, Grace.__$precondition5_rfield, null, "WaitUntilStopsSpeaking(int)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4651, Grace.__$behaviorFactory20_rfield, null, null, "WaitForSomeoneToStartSpeakingWithTimeout(int)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4652, Grace.__$behaviorFactory20_rfield, null, null, "DoGaze(int, int, int)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4653, Grace.__$behaviorFactory20_rfield, Grace.__$precondition5_rfield, null, "DoGaze(int, int, int, int)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4654, Grace.__$behaviorFactory20_rfield, Grace.__$precondition5_rfield, null, "RefreshGaze()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4655, Grace.__$behaviorFactory20_rfield, Grace.__$precondition5_rfield, null, "DoGaze_Body(int, int, int)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4656, Grace.__$behaviorFactory20_rfield, Grace.__$precondition5_rfield, null, "DoGaze(int, int, int, int)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4657, Grace.__$behaviorFactory20_rfield, null, null, "DoGazeAfterDelay(int, int, int, float)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4658, Grace.__$behaviorFactory20_rfield, null, null, "DoGazeAfterDelay(int, int, int, int, float)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4659, Grace.__$behaviorFactory20_rfield, Grace.__$precondition5_rfield, null, "SetStagingInfoWME(int, int, Point3D, float, int)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4660, Grace.__$behaviorFactory20_rfield, Grace.__$precondition5_rfield, null, "DeleteStagingInfoWME()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4661, Grace.__$behaviorFactory20_rfield, Grace.__$precondition5_rfield, null, "RestartStagingBody()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4662, Grace.__$behaviorFactory20_rfield, Grace.__$precondition5_rfield, null, "StopStaging()", null, (short)2));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4663, Grace.__$behaviorFactory20_rfield, null, null, "StopStaging()", null, (short)1));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4664, Grace.__$behaviorFactory20_rfield, null, null, "StagingWalkToPoint(int, Point3D, float, int)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4665, Grace.__$behaviorFactory20_rfield, null, null, "StagingWalkToPoint(int, Point3D, int, int)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4666, Grace.__$behaviorFactory20_rfield, Grace.__$precondition5_rfield, Grace.__$preconditionSensorFactory0_rfield, "StagingWalkToPoint_Body(int, Point3D, float, int, int)", null, (short)2));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4667, Grace.__$behaviorFactory20_rfield, null, null, "StagingWalkToPoint_Body(int, Point3D, float, int, int)", null, (short)1));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4668, Grace.__$behaviorFactory20_rfield, null, null, "StagingWalkToPoint_BodyStuff(int, Point3D, float, int)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4669, Grace.__$behaviorFactory20_rfield, null, null, "StagingConverse(int, int, int, int)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4670, Grace.__$behaviorFactory20_rfield, null, null, "StagingConverse(int, int, int, float, int)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4671, Grace.__$behaviorFactory20_rfield, null, null, "StagingConverse(int, int, int, float, int, float)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4672, Grace.__$behaviorFactory20_rfield, Grace.__$precondition5_rfield, Grace.__$preconditionSensorFactory0_rfield, "StagingConverse_Body(int, int, int, float, int, float)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4673, Grace.__$behaviorFactory20_rfield, null, null, "StagingFace(int, int)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4674, Grace.__$behaviorFactory20_rfield, null, null, "StagingFace(int, int, float)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4675, Grace.__$behaviorFactory20_rfield, null, null, "StagingFace(int, float)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4676, Grace.__$behaviorFactory20_rfield, Grace.__$precondition5_rfield, Grace.__$preconditionSensorFactory0_rfield, "StagingFace_Body(int, int, float)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4677, Grace.__$behaviorFactory20_rfield, Grace.__$precondition5_rfield, Grace.__$preconditionSensorFactory0_rfield, "StagingFace_Body(int, float)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4678, Grace.__$behaviorFactory20_rfield, null, null, "TryToKeepFacingSprite(int, int)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4679, Grace.__$behaviorFactory20_rfield, Grace.__$precondition5_rfield, Grace.__$preconditionSensorFactory0_rfield, "TryToKeepFacingSprite_Body(int, int)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4680, Grace.__$behaviorFactory20_rfield, null, null, "StagingObjectPickup(int, int, int, int)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4681, Grace.__$behaviorFactory20_rfield, Grace.__$precondition5_rfield, Grace.__$preconditionSensorFactory0_rfield, "StagingObjectPickup_Body(int, int, int, int)", null, (short)2));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4682, Grace.__$behaviorFactory20_rfield, Grace.__$precondition5_rfield, Grace.__$preconditionSensorFactory0_rfield, "StagingObjectPickup_Body(int, int, int, int)", null, (short)2));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4683, Grace.__$behaviorFactory20_rfield, Grace.__$precondition5_rfield, Grace.__$preconditionSensorFactory0_rfield, "StagingObjectPickup_Body(int, int, int, int)", null, (short)1));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4684, Grace.__$behaviorFactory20_rfield, Grace.__$precondition5_rfield, null, "StagingObjectPickup_Body_failIfIllegalCoordinates(int, float, float)", null, (short)2));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4685, Grace.__$behaviorFactory20_rfield, null, null, "StagingObjectPickup_Body_failIfIllegalCoordinates(int, float, float)", null, (short)1));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4686, Grace.__$behaviorFactory20_rfield, Grace.__$precondition5_rfield, Grace.__$preconditionSensorFactory0_rfield, "StagingObjectPickup_Body(int, int)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4687, Grace.__$behaviorFactory20_rfield, Grace.__$precondition5_rfield, Grace.__$preconditionSensorFactory0_rfield, "StagingObjectPickup_Body(int, int)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4688, Grace.__$behaviorFactory20_rfield, null, null, "StagingObjectPickup_Body_WithContextCondition(int, int, Point3D, float, int)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4689, Grace.__$behaviorFactory20_rfield, null, null, "StagingObjectDrop(int, int, int, int, int)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4690, Grace.__$behaviorFactory20_rfield, Grace.__$precondition5_rfield, Grace.__$preconditionSensorFactory0_rfield, "StagingObjectDrop_Body(int, int, int, int, int)", null, (short)2));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4691, Grace.__$behaviorFactory20_rfield, Grace.__$precondition5_rfield, Grace.__$preconditionSensorFactory0_rfield, "StagingObjectDrop_Body(int, int, int, int, int)", null, (short)2));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4692, Grace.__$behaviorFactory20_rfield, Grace.__$precondition5_rfield, Grace.__$preconditionSensorFactory0_rfield, "StagingObjectDrop_Body(int, int, int, int, int)", null, (short)1));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4693, Grace.__$behaviorFactory20_rfield, Grace.__$precondition5_rfield, Grace.__$preconditionSensorFactory0_rfield, "StagingObjectDrop_Body(int, int, int, int)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4694, Grace.__$behaviorFactory20_rfield, Grace.__$precondition5_rfield, Grace.__$preconditionSensorFactory0_rfield, "StagingObjectDrop_Body(int, int, int, int)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4695, Grace.__$behaviorFactory20_rfield, null, null, "StagingObjectOffer(int, int, int)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4696, Grace.__$behaviorFactory20_rfield, Grace.__$precondition5_rfield, Grace.__$preconditionSensorFactory0_rfield, "StagingObjectOffer_Body(int, int, int)", null, (short)2));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4697, Grace.__$behaviorFactory20_rfield, Grace.__$precondition5_rfield, Grace.__$preconditionSensorFactory0_rfield, "StagingObjectOffer_Body(int, int, int)", null, (short)2));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4698, Grace.__$behaviorFactory20_rfield, null, null, "StagingObjectOffer_Body(int, int, int)", null, (short)1));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4699, Grace.__$behaviorFactory20_rfield, Grace.__$precondition5_rfield, Grace.__$preconditionSensorFactory0_rfield, "StagingObjectOffer_Body_p2(int, int)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4700, Grace.__$behaviorFactory20_rfield, null, null, "WaitForOfferedObjectToBeTaken(int)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4701, Grace.__$behaviorFactory20_rfield, null, null, "WaitForOfferedObjectToBeTaken_Body(int)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4702, Grace.__$behaviorFactory20_rfield, null, null, "WaitForOfferedObjectToBeTaken_BodyStuff()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4703, Grace.__$behaviorFactory20_rfield, Grace.__$precondition5_rfield, Grace.__$preconditionSensorFactory0_rfield, "WaitForOfferedObjectToBeTaken_RetractHand(int)", null, (short)2));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4704, Grace.__$behaviorFactory20_rfield, null, null, "WaitForOfferedObjectToBeTaken_RetractHand(int)", null, (short)1));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4705, Grace.__$behaviorFactory20_rfield, null, null, "StagingObjectTake(int, int, int)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4706, Grace.__$behaviorFactory20_rfield, Grace.__$precondition5_rfield, Grace.__$preconditionSensorFactory0_rfield, "StagingObjectTake_Body(int, int, int)", null, (short)2));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4707, Grace.__$behaviorFactory20_rfield, Grace.__$precondition5_rfield, Grace.__$preconditionSensorFactory0_rfield, "StagingObjectTake_Body(int, int, int)", null, (short)2));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4708, Grace.__$behaviorFactory20_rfield, null, null, "StagingObjectTake_Body(int, int, int)", null, (short)1));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4709, Grace.__$behaviorFactory20_rfield, null, null, "WaitForOfferedObjectToBeGiven(int)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4710, Grace.__$behaviorFactory20_rfield, null, null, "WaitForOfferedObjectToBeGiven_Body(int)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4711, Grace.__$behaviorFactory20_rfield, null, null, "WaitForOfferedObjectToBeGiven_BodyStuff()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4712, Grace.__$behaviorFactory20_rfield, Grace.__$precondition5_rfield, Grace.__$preconditionSensorFactory0_rfield, "WaitForOfferedObjectToBeGiven_RetractHand(int)", null, (short)2));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4713, Grace.__$behaviorFactory20_rfield, null, null, "WaitForOfferedObjectToBeGiven_RetractHand(int)", null, (short)1));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4714, Grace.__$behaviorFactory20_rfield, null, null, "StagingOpenDoor(int, int, int)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4715, Grace.__$behaviorFactory20_rfield, null, null, "StagingOpenDoor_Body(int, int, int)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4716, Grace.__$behaviorFactory20_rfield, Grace.__$precondition5_rfield, null, "StagingOpenDoor_gracehack()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4717, Grace.__$behaviorFactory20_rfield, Grace.__$precondition5_rfield, null, "StagingCloseDoor_gracehack()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4718, Grace.__$behaviorFactory20_rfield, null, null, "StagingCloseDoor(int, int, int)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4719, Grace.__$behaviorFactory20_rfield, null, null, "StagingCloseDoor_Body(int, int, int)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4720, Grace.__$behaviorFactory20_rfield, null, null, "StagingGrabPlayer(int, int)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4721, Grace.__$behaviorFactory20_rfield, null, null, "StagingGrabPlayer_Body(int, int)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4722, Grace.__$behaviorFactory20_rfield, Grace.__$precondition5_rfield, Grace.__$preconditionSensorFactory0_rfield, "StagingGrabPlayer_BodyStuff(int, int)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4723, Grace.__$behaviorFactory20_rfield, null, null, "StagingGrabPlayer_BodyStuff_par()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4724, Grace.__$behaviorFactory20_rfield, null, null, "StagingGrabPlayer_BodyStuff_walkAndFail()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4725, Grace.__$behaviorFactory20_rfield, null, null, "StagingGrabPlayer_BodyStuff_positionTest()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4726, Grace.__$behaviorFactory20_rfield, Grace.__$precondition5_rfield, null, "StopWalkingAndFailIfNeeded(boolean)", null, (short)2));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4727, Grace.__$behaviorFactory20_rfield, Grace.__$precondition5_rfield, null, "StopWalkingAndFailIfNeeded(boolean)", null, (short)1));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4728, Grace.__$behaviorFactory20_rfield, null, null, "LowerArmsBeforeWalkingFixme()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4729, Grace.__$behaviorFactory20_rfield, null, null, "WalkToPoint(float)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4730, Grace.__$behaviorFactory20_rfield, null, null, "WalkToPoint()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4731, Grace.__$behaviorFactory20_rfield, Grace.__$precondition5_rfield, Grace.__$preconditionSensorFactory0_rfield, "WalkToPoint_Body()", null, (short)2));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4732, Grace.__$behaviorFactory20_rfield, Grace.__$precondition5_rfield, Grace.__$preconditionSensorFactory0_rfield, "WalkToPoint_Body()", null, (short)2));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4733, Grace.__$behaviorFactory20_rfield, Grace.__$precondition5_rfield, Grace.__$preconditionSensorFactory0_rfield, "WalkToPoint_Body()", null, (short)1));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4734, Grace.__$behaviorFactory20_rfield, Grace.__$precondition5_rfield, null, "WalkStep()", null, (short)2));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4735, Grace.__$behaviorFactory20_rfield, Grace.__$precondition5_rfield, null, "WalkStep()", null, (short)2));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4736, Grace.__$behaviorFactory20_rfield, null, null, "WalkStep()", null, (short)1));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4737, Grace.__$behaviorFactory20_rfield, Grace.__$precondition5_rfield, Grace.__$preconditionSensorFactory0_rfield, "WalkStep_AbortIfPlayerMoved(boolean)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4738, Grace.__$behaviorFactory20_rfield, null, null, "WalkStep_MonitorIfPlayerMoved()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4739, Grace.__$behaviorFactory20_rfield, Grace.__$precondition5_rfield, null, "WalkStep_MonitorIfPlayerMoved_SetStagingInfoWMEFlag()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4740, Grace.__$behaviorFactory20_rfield, Grace.__$precondition5_rfield, null, "DoGesture(int, int, int, boolean)", null, (short)2));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4741, Grace.__$behaviorFactory20_rfield, Grace.__$precondition5_rfield, null, "DoGesture(int, int, int, boolean)", null, (short)1));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4742, Grace.__$behaviorFactory20_rfield, Grace.__$precondition5_rfield, null, "DoGesture(int, int, int, boolean)", null, (short)1));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4743, Grace.__$behaviorFactory20_rfield, Grace.__$precondition5_rfield, null, "DoGesture_SuppressOrDoIt(int, int)", null, (short)2));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4744, Grace.__$behaviorFactory20_rfield, Grace.__$precondition5_rfield, null, "DoGesture_SuppressOrDoIt(int, int)", null, (short)1));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4745, Grace.__$behaviorFactory20_rfield, Grace.__$precondition5_rfield, null, "DoPickupObjGesture(int, int, int, boolean, int)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4746, Grace.__$behaviorFactory21_rfield, Grace.__$precondition5_rfield, null, "DoPickupObjGesture(int, int, int, boolean, int)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4747, Grace.__$behaviorFactory21_rfield, Grace.__$precondition5_rfield, null, "DoPickupObjGesture_SuppressOrDoIt(int, int, int)", null, (short)2));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4748, Grace.__$behaviorFactory21_rfield, Grace.__$precondition5_rfield, null, "DoPickupObjGesture_SuppressOrDoIt(int, int, int)", null, (short)1));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4749, Grace.__$behaviorFactory21_rfield, Grace.__$precondition5_rfield, Grace.__$preconditionSensorFactory0_rfield, "DoHoldObjGesture(int, int, int)", null, (short)2));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4750, Grace.__$behaviorFactory21_rfield, null, null, "DoHoldObjGesture(int, int, int)", null, (short)1));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4751, Grace.__$behaviorFactory21_rfield, Grace.__$precondition5_rfield, null, "DoPutdownObjGesture(int, int, int, boolean, int, int, float, float, float, int)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4752, Grace.__$behaviorFactory21_rfield, Grace.__$precondition5_rfield, null, "DoPutdownObjGesture(int, int, int, boolean, int, int, float, float, float, int)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4753, Grace.__$behaviorFactory21_rfield, Grace.__$precondition5_rfield, null, "DoPutdownObjGesture_SuppressOrDoIt(int, int, int, int, float, float, float, int)", null, (short)2));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4754, Grace.__$behaviorFactory21_rfield, Grace.__$precondition5_rfield, null, "DoPutdownObjGesture_SuppressOrDoIt(int, int, int, int, float, float, float, int)", null, (short)1));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4755, Grace.__$behaviorFactory21_rfield, Grace.__$precondition5_rfield, null, "DoGesture_Dispatch(int, int, int)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4756, Grace.__$behaviorFactory21_rfield, null, null, "DoGesture_ArmL(int, int)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4757, Grace.__$behaviorFactory21_rfield, Grace.__$precondition5_rfield, null, "DoPickupObjGesture_Dispatch(int, int, int, int)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4758, Grace.__$behaviorFactory21_rfield, null, null, "DoPickupObjGesture_ArmL(int, int, int)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4759, Grace.__$behaviorFactory21_rfield, Grace.__$precondition5_rfield, null, "DoPutdownObjGesture_Dispatch(int, int, int, int, int, float, float, float, int)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4760, Grace.__$behaviorFactory21_rfield, null, null, "DoPutdownObjGesture_ArmL(int, int, int, int, float, float, float, int)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4761, Grace.__$behaviorFactory21_rfield, Grace.__$precondition5_rfield, null, "DoGesture_Dispatch(int, int, int)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4762, Grace.__$behaviorFactory21_rfield, null, null, "DoGesture_ArmR(int, int)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4763, Grace.__$behaviorFactory21_rfield, Grace.__$precondition5_rfield, null, "DoPickupObjGesture_Dispatch(int, int, int, int)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4764, Grace.__$behaviorFactory21_rfield, null, null, "DoPickupObjGesture_ArmR(int, int, int)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4765, Grace.__$behaviorFactory21_rfield, Grace.__$precondition5_rfield, null, "DoPutdownObjGesture_Dispatch(int, int, int, int, int, float, float, float, int)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4766, Grace.__$behaviorFactory21_rfield, null, null, "DoPutdownObjGesture_ArmR(int, int, int, int, float, float, float, int)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4767, Grace.__$behaviorFactory21_rfield, Grace.__$precondition5_rfield, null, "DoGesture_Dispatch(int, int, int)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4768, Grace.__$behaviorFactory21_rfield, null, null, "DoGesture_ArmsBoth(int, int)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4769, Grace.__$behaviorFactory21_rfield, null, null, "DoPickupObjGesture_ArmsBoth(int, int, int, int)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4770, Grace.__$behaviorFactory21_rfield, null, null, "DoPutdownObjGesture_ArmsBoth(int, int, int, int, float, float, float, int)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4771, Grace.__$behaviorFactory21_rfield, null, null, "PerformOneOfTwoGestures(int, int, int, int, int)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4772, Grace.__$behaviorFactory21_rfield, Grace.__$precondition5_rfield, null, "PerformOneOfTwoGestures_Body(int, int, int, int, int, int)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4773, Grace.__$behaviorFactory21_rfield, Grace.__$precondition5_rfield, null, "PerformOneOfTwoGestures_Body(int, int, int, int, int, int)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4774, Grace.__$behaviorFactory21_rfield, Grace.__$precondition5_rfield, null, "MapSuppressOrKeepGesture(int, int)", null, (short)3));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4775, Grace.__$behaviorFactory21_rfield, Grace.__$precondition5_rfield, Grace.__$preconditionSensorFactory0_rfield, "MapSuppressOrKeepGesture(int, int)", null, (short)2));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4776, Grace.__$behaviorFactory21_rfield, Grace.__$precondition5_rfield, Grace.__$preconditionSensorFactory0_rfield, "MapSuppressOrKeepGesture(int, int)", null, (short)2));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4777, Grace.__$behaviorFactory21_rfield, null, null, "MapSuppressOrKeepGesture(int, int)", null, (short)1));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4778, Grace.__$behaviorFactory21_rfield, null, null, "DoFullExpressionMood(int, int)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4779, Grace.__$behaviorFactory21_rfield, null, null, "DoFullExpressionMood(int, int, int, int)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4780, Grace.__$behaviorFactory21_rfield, null, null, "DoFullExpressionBase(int, int)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4781, Grace.__$behaviorFactory21_rfield, null, null, "DoFullExpressionBaseAfterDelay(int, int, float)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4782, Grace.__$behaviorFactory21_rfield, null, null, "DoFullExpressionBase(int, int, int, int)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4783, Grace.__$behaviorFactory21_rfield, null, null, "DoFullExpressionBase_doIt(int, int, int, int)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4784, Grace.__$behaviorFactory21_rfield, null, null, "DoFullExpressionBase_timeout()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4785, Grace.__$behaviorFactory21_rfield, null, null, "WaitFor(float)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4786, Grace.__$behaviorFactory21_rfield, null, null, "WaitFor(int)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4787, Grace.__$behaviorFactory21_rfield, null, null, "bgTestWaitFor(int)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4788, Grace.__$behaviorFactory21_rfield, null, null, "WaitFor(float, float)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4789, Grace.__$behaviorFactory21_rfield, null, null, "WaitFor(int, int)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4790, Grace.__$behaviorFactory21_rfield, null, null, "TeleportPlayer(float, float, float)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4793, Grace.__$behaviorFactory21_rfield, null, null, "ResetEntireBody()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4794, Grace.__$behaviorFactory21_rfield, null, null, "ResetEntireBody_ReplaceThisWithMetaAbl()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4795, Grace.__$behaviorFactory21_rfield, null, null, "WaitForDoorPercentOpen(int)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4796, Grace.__$behaviorFactory21_rfield, Grace.__$precondition5_rfield, null, "FailIfFalse(boolean)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4797, Grace.__$behaviorFactory21_rfield, null, null, "SetSignal(String)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4798, Grace.__$behaviorFactory21_rfield, Grace.__$precondition5_rfield, null, "SucceedGoal(String)", null, (short)2));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4799, Grace.__$behaviorFactory21_rfield, null, null, "SucceedGoal(String)", null, (short)1));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4800, Grace.__$behaviorFactory21_rfield, Grace.__$precondition5_rfield, null, "FailGoal(String)", null, (short)2));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4801, Grace.__$behaviorFactory21_rfield, null, null, "FailGoal(String)", null, (short)1));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4802, Grace.__$behaviorFactory21_rfield, null, null, "SetPerformanceInfo(int, int, int, int, int, int, int, int, int)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4803, Grace.__$behaviorFactory21_rfield, null, null, "SetPerformanceInfo(int, int, int, int, int, int, int, int, int, int, int, int, int, int)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4804, Grace.__$behaviorFactory21_rfield, null, null, "SetPerformanceInfo(int, int, int, int, int, int, int, int, int, int, int, int, int, int, int, int, int, int, int)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4805, Grace.__$behaviorFactory21_rfield, null, null, "SetPerformanceInfo(int, int, int, int, int, int, int, int, int, int, int, int, int, int, int, int, int)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4806, Grace.__$behaviorFactory21_rfield, null, null, "SetPerformanceInfo(int, int, int, int, int, int, int, int, int, int, int, int, int, int, int, int, int, int, int, int, int, int, int, int, int, int, int, int, int, int)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4807, Grace.__$behaviorFactory21_rfield, Grace.__$precondition5_rfield, null, "SetPerformanceInfo(int, int, int, int, int, int, int, int, int, int, int, int, int, int, int, int, int, int, int, int, int, int, int, int, int, int, int, int, int, int, int, int, int, int, int, int, int, int, int, int, int, int, int)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4808, Grace.__$behaviorFactory21_rfield, Grace.__$precondition5_rfield, null, "SetPerformanceInfo_CheckIfResourceIsFree(int)", null, (short)2));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4809, Grace.__$behaviorFactory21_rfield, Grace.__$precondition5_rfield, null, "SetPerformanceInfo_CheckIfResourceIsFree(int)", null, (short)1));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4810, Grace.__$behaviorFactory21_rfield, Grace.__$precondition5_rfield, null, "SetPerformanceInfo_RequestResource(int, int, BehaviorWME)", null, (short)2));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4811, Grace.__$behaviorFactory21_rfield, Grace.__$precondition5_rfield, null, "SetPerformanceInfo_RequestResource(int, int, BehaviorWME)", null, (short)1));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4812, Grace.__$behaviorFactory21_rfield, Grace.__$precondition5_rfield, null, "SetPerformanceInfo_CheckIfResourceOwned(int)", null, (short)2));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4813, Grace.__$behaviorFactory21_rfield, Grace.__$precondition5_rfield, null, "SetPerformanceInfo_CheckIfResourceOwned(int)", null, (short)1));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4814, Grace.__$behaviorFactory21_rfield, Grace.__$precondition5_rfield, null, "SetPerformanceInfo_DoStartWithIfAny_Gaze(int, int, int, int)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4815, Grace.__$behaviorFactory21_rfield, Grace.__$precondition5_rfield, null, "SetPerformanceInfo_DoStartWithIfAny_Gaze(int, int, int, int)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4816, Grace.__$behaviorFactory21_rfield, Grace.__$precondition5_rfield, null, "SetPerformanceInfo_DoStartWithIfAny_FullExprAndGesture(int, int, int, int, int, int, int, int, int, int, int)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4817, Grace.__$behaviorFactory21_rfield, Grace.__$precondition5_rfield, null, "SetPerformanceInfo_DoStartWithIfAny_FullExprAndGesture(int, int, int, int, int, int, int, int, int, int, int)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4818, Grace.__$behaviorFactory21_rfield, Grace.__$precondition5_rfield, null, "SetPerformanceInfo_EmphasisSetupArms(int, int)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4819, Grace.__$behaviorFactory21_rfield, Grace.__$precondition5_rfield, null, "SetPerformanceInfo_EmphasisSetupArms(int, int)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4820, Grace.__$behaviorFactory21_rfield, Grace.__$precondition5_rfield, null, "SetPerformanceInfo_ReleaseAfterTimeout(int)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4821, Grace.__$behaviorFactory21_rfield, Grace.__$precondition5_rfield, Grace.__$preconditionSensorFactory0_rfield, "SetPerformanceInfo_GetArmBase()", null, (short)2));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4822, Grace.__$behaviorFactory21_rfield, Grace.__$precondition5_rfield, Grace.__$preconditionSensorFactory0_rfield, "SetPerformanceInfo_GetArmBase()", null, (short)2));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4823, Grace.__$behaviorFactory21_rfield, Grace.__$precondition5_rfield, null, "SetPerformanceInfo_GetArmBase()", null, (short)1));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4824, Grace.__$behaviorFactory21_rfield, null, null, "AddEventWME(int, int, int, int, boolean, int, int, float)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4825, Grace.__$behaviorFactory21_rfield, null, null, "DoNoticePlayerInteractionLittleAction()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4826, Grace.__$behaviorFactory21_rfield, null, null, "DoRaiseArms()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4827, Grace.__$behaviorFactory21_rfield, null, null, "DoLowerArms()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4828, Grace.__$behaviorFactory21_rfield, null, null, "DoLowerArmsAfterDelay(int)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4829, Grace.__$behaviorFactory21_rfield, Grace.__$precondition5_rfield, null, "DoClearThroat_PossibleFinalLook(int)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4830, Grace.__$behaviorFactory21_rfield, null, null, "DoClearThroat(int)", null, (short)2));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4831, Grace.__$behaviorFactory21_rfield, null, null, "DoClearThroat(int)", null, (short)1));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4832, Grace.__$behaviorFactory21_rfield, null, null, "DoClearThroatAfterDelay(int, float)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4833, Grace.__$behaviorFactory21_rfield, null, null, "DoTemporaryAnnoyedSpouseGlanceAfterDelay(float)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4834, Grace.__$behaviorFactory21_rfield, null, null, "DoLittlePetulantReactionTo(int)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4835, Grace.__$behaviorFactory21_rfield, null, null, "DoLittlePetulantReactionAfterDelayTo(int, float)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4836, Grace.__$behaviorFactory21_rfield, null, null, "MaybeDoLittlePetulantReactionAfterDelayTo(int, float)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4837, Grace.__$behaviorFactory21_rfield, null, null, "MaybeDoLittlePetulantReactionAfterDelayTo(int, float)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4838, Grace.__$behaviorFactory21_rfield, Grace.__$precondition5_rfield, null, "SetMonitorPlayerBehavior(boolean, boolean, boolean)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4839, Grace.__$behaviorFactory21_rfield, Grace.__$precondition5_rfield, null, "SetMonitorPlayerBehaviorLeavingForKitchenZ(float)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4840, Grace.__$behaviorFactory21_rfield, Grace.__$precondition5_rfield, null, "CheckLongTermPriority()", null, (short)3));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4841, Grace.__$behaviorFactory21_rfield, Grace.__$precondition5_rfield, null, "CheckLongTermPriority()", null, (short)2));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4842, Grace.__$behaviorFactory21_rfield, null, null, "CheckLongTermPriority()", null, (short)1));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4843, Grace.__$behaviorFactory21_rfield, Grace.__$precondition5_rfield, null, "SetHeRef(int)", null, (short)2));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4844, Grace.__$behaviorFactory21_rfield, null, null, "SetHeRef(int)", null, (short)1));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4845, Grace.__$behaviorFactory21_rfield, Grace.__$precondition5_rfield, null, "SetHeRefDefault(int)", null, (short)2));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4846, Grace.__$behaviorFactory21_rfield, null, null, "SetHeRefDefault(int)", null, (short)1));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4847, Grace.__$behaviorFactory21_rfield, Grace.__$precondition5_rfield, null, "SetHeRefTimeout(int)", null, (short)2));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4848, Grace.__$behaviorFactory21_rfield, null, null, "SetHeRefTimeout(int)", null, (short)1));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4849, Grace.__$behaviorFactory21_rfield, Grace.__$precondition5_rfield, null, "SetSheRef(int)", null, (short)2));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4850, Grace.__$behaviorFactory21_rfield, null, null, "SetSheRef(int)", null, (short)1));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4851, Grace.__$behaviorFactory21_rfield, Grace.__$precondition5_rfield, null, "SetSheRefDefault(int)", null, (short)2));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4852, Grace.__$behaviorFactory21_rfield, null, null, "SetSheRefDefault(int)", null, (short)1));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4853, Grace.__$behaviorFactory21_rfield, Grace.__$precondition5_rfield, null, "SetSheRefTimeout(int)", null, (short)2));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4854, Grace.__$behaviorFactory21_rfield, null, null, "SetSheRefTimeout(int)", null, (short)1));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4855, Grace.__$behaviorFactory21_rfield, Grace.__$precondition5_rfield, null, "SetYouRef(int)", null, (short)2));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4856, Grace.__$behaviorFactory21_rfield, null, null, "SetYouRef(int)", null, (short)1));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4857, Grace.__$behaviorFactory21_rfield, Grace.__$precondition5_rfield, null, "SetYouRefDefault(int)", null, (short)2));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4858, Grace.__$behaviorFactory21_rfield, null, null, "SetYouRefDefault(int)", null, (short)1));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4859, Grace.__$behaviorFactory21_rfield, Grace.__$precondition5_rfield, null, "SetYouRefTimeout(int)", null, (short)2));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4860, Grace.__$behaviorFactory21_rfield, null, null, "SetYouRefTimeout(int)", null, (short)1));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4861, Grace.__$behaviorFactory21_rfield, Grace.__$precondition5_rfield, null, "SetYouRefNoOverride(int)", null, (short)2));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4862, Grace.__$behaviorFactory21_rfield, null, null, "SetYouRefNoOverride(int)", null, (short)1));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4863, Grace.__$behaviorFactory21_rfield, null, null, "SetItRefAndDefault(int)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4864, Grace.__$behaviorFactory21_rfield, Grace.__$precondition5_rfield, null, "SetTemporaryItRef(int, int)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4865, Grace.__$behaviorFactory21_rfield, Grace.__$precondition5_rfield, null, "SetItRef(int)", null, (short)2));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4866, Grace.__$behaviorFactory21_rfield, null, null, "SetItRef(int)", null, (short)1));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4867, Grace.__$behaviorFactory21_rfield, Grace.__$precondition5_rfield, null, "SetItRefDefault(int)", null, (short)2));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4868, Grace.__$behaviorFactory21_rfield, null, null, "SetItRefDefault(int)", null, (short)1));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4869, Grace.__$behaviorFactory21_rfield, Grace.__$precondition5_rfield, null, "SetItRefTimeout(int)", null, (short)2));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4870, Grace.__$behaviorFactory21_rfield, null, null, "SetItRefTimeout(int)", null, (short)1));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4871, Grace.__$behaviorFactory21_rfield, Grace.__$precondition5_rfield, Grace.__$preconditionSensorFactory0_rfield, "SetThisRef(int)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4872, Grace.__$behaviorFactory21_rfield, Grace.__$precondition5_rfield, Grace.__$preconditionSensorFactory0_rfield, "SetThisRef(int)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4873, Grace.__$behaviorFactory21_rfield, Grace.__$precondition5_rfield, null, "SetThisRef_Body(int)", null, (short)2));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4874, Grace.__$behaviorFactory21_rfield, null, null, "SetThisRef_Body(int)", null, (short)1));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4875, Grace.__$behaviorFactory21_rfield, Grace.__$precondition5_rfield, null, "SetThisRefDefault(int)", null, (short)2));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4876, Grace.__$behaviorFactory21_rfield, null, null, "SetThisRefDefault(int)", null, (short)1));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4877, Grace.__$behaviorFactory21_rfield, Grace.__$precondition5_rfield, null, "SetThisRefTimeout(int)", null, (short)2));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4878, Grace.__$behaviorFactory21_rfield, null, null, "SetThisRefTimeout(int)", null, (short)1));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4879, Grace.__$behaviorFactory21_rfield, null, null, "SetPostBeatMixin(int)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4880, Grace.__$behaviorFactory21_rfield, Grace.__$precondition5_rfield, null, "SetPostBeatMixin(int, int)", null, (short)2));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4881, Grace.__$behaviorFactory21_rfield, null, null, "SetPostBeatMixin(int, int)", null, (short)1));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4882, Grace.__$behaviorFactory21_rfield, Grace.__$precondition5_rfield, null, "TurnOnPostBeatMixinNLURule(int, boolean)", null, (short)2));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4883, Grace.__$behaviorFactory21_rfield, null, null, "TurnOnPostBeatMixinNLURule(int, boolean)", null, (short)1));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4884, Grace.__$behaviorFactory21_rfield, Grace.__$precondition5_rfield, Grace.__$preconditionSensorFactory0_rfield, "PutDownHeldObject()", null, (short)2));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4885, Grace.__$behaviorFactory21_rfield, Grace.__$precondition5_rfield, Grace.__$preconditionSensorFactory0_rfield, "PutDownHeldObject()", null, (short)1));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4886, Grace.__$behaviorFactory21_rfield, Grace.__$precondition5_rfield, null, "PutDownHeldObject_Obj()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4887, Grace.__$behaviorFactory21_rfield, Grace.__$precondition5_rfield, null, "PutDownHeldObject_Drink()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4888, Grace.__$behaviorFactory21_rfield, null, null, "UserTestingDemon()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4889, Grace.__$behaviorFactory21_rfield, Grace.__$precondition5_rfield, null, "UserTestingDemon_Body()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4890, Grace.__$behaviorFactory21_rfield, Grace.__$precondition5_rfield, null, "UserTestingDemon_Body()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4891, Grace.__$behaviorFactory21_rfield, Grace.__$precondition5_rfield, null, "UserTestingDemon_Body()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4892, Grace.__$behaviorFactory21_rfield, Grace.__$precondition5_rfield, null, "UserTestingDemon_Body()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4893, Grace.__$behaviorFactory21_rfield, Grace.__$precondition5_rfield, Grace.__$preconditionSensorFactory0_rfield, "bOneOnOneAffChrT2_FaceTheKitchen()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4894, Grace.__$behaviorFactory21_rfield, null, null, "bOneOnOneAffChrT2_TxnIn_BodyStuff2_seq(int, int)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4895, Grace.__$behaviorFactory21_rfield, null, null, "bOneOnOneAffChrT2_TxnIn_BodyStuff2_arms()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4896, Grace.__$behaviorFactory21_rfield, null, null, "bOneOnOneAffChrT2_AnxiousDialog_seq1()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4897, Grace.__$behaviorFactory21_rfield, null, null, "bOneOnOneAffChrT2_AnxiousDialog_seq1()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4898, Grace.__$behaviorFactory21_rfield, null, null, "bOneOnOneAffChrT2_AnxiousDialog_arms()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4899, Grace.__$behaviorFactory21_rfield, null, null, "bOneOnOneAffChrT2_AnxiousDialog_seq2(int)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4900, Grace.__$behaviorFactory21_rfield, Grace.__$precondition5_rfield, null, "bOneOnOneAffChrT2_AnxiousDialog_seq2a_p2(int)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4901, Grace.__$behaviorFactory21_rfield, Grace.__$precondition5_rfield, null, "bOneOnOneAffChrT2_AnxiousDialog_seq2a_p2(int)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4902, Grace.__$behaviorFactory21_rfield, null, null, "bOneOnOneAffChrT2_AnxiousDialog_seq2(int)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4903, Grace.__$behaviorFactory21_rfield, Grace.__$precondition5_rfield, null, "bOneOnOneAffChrT2_AnxiousDialog_seq2b_p2(int)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4904, Grace.__$behaviorFactory21_rfield, Grace.__$precondition5_rfield, null, "bOneOnOneAffChrT2_AnxiousDialog_seq2_dia(int)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4905, Grace.__$behaviorFactory21_rfield, null, null, "bOneOnOneAffChrT2_Mixin_Mild_seq(int, int, int, int, int, int, int, int, boolean)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4906, Grace.__$behaviorFactory21_rfield, Grace.__$precondition5_rfield, null, "bOneOnOneAffChrT2_Mixin_Mild_seq_lookaway(boolean)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4907, Grace.__$behaviorFactory21_rfield, null, null, "bOneOnOneAffChrT2_NervousGlancesAtKitchen()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4908, Grace.__$behaviorFactory21_rfield, Grace.__$precondition5_rfield, null, "SetAffinity_LeanToGPA()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4909, Grace.__$behaviorFactory21_rfield, Grace.__$precondition5_rfield, null, "SetAffinity_LeanToTPA()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4910, Grace.__$behaviorFactory21_rfield, Grace.__$precondition5_rfield, null, "SetAffinity_GPA()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4911, Grace.__$behaviorFactory21_rfield, Grace.__$precondition5_rfield, null, "SetAffinity_TPA()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4912, Grace.__$behaviorFactory21_rfield, Grace.__$precondition5_rfield, null, "SetAffinity_SetNeutralIfGPA()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4913, Grace.__$behaviorFactory21_rfield, Grace.__$precondition5_rfield, null, "SetAffinity_SetNeutralIfTPA()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4914, Grace.__$behaviorFactory21_rfield, Grace.__$precondition5_rfield, null, "CreateBeatRMp1WME()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4915, Grace.__$behaviorFactory21_rfield, null, null, "bRM_WalkToItalyPic()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4916, Grace.__$behaviorFactory21_rfield, Grace.__$precondition5_rfield, Grace.__$preconditionSensorFactory0_rfield, "bRM_WalkToMiddleOfRoomIfNeeded()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4917, Grace.__$behaviorFactory21_rfield, null, null, "bRM_WalkToCouch()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4918, Grace.__$behaviorFactory21_rfield, Grace.__$precondition5_rfield, null, "CreateBeatTAt1WME()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4919, Grace.__$behaviorFactory21_rfield, Grace.__$precondition5_rfield, null, "CreateBeatFAskDrinkT1WME(int)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4920, Grace.__$behaviorFactory21_rfield, Grace.__$precondition5_rfield, null, "CreateBeatFAskDrinkT1WME(int)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4921, Grace.__$behaviorFactory21_rfield, Grace.__$precondition5_rfield, null, "CreateBeatFAskDrinkT1WME_DecideInitialDrinkSuggestion(int)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4922, Grace.__$behaviorFactory21_rfield, Grace.__$precondition5_rfield, null, "CreateBeatFAskDrinkT1WME_DecideWhenToGoToBar()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4923, Grace.__$behaviorFactory21_rfield, Grace.__$precondition5_rfield, null, "CreateBeatFAskDrinkT1WME_SetNewDrinkSuggestion(int)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4924, Grace.__$behaviorFactory21_rfield, Grace.__$precondition5_rfield, null, "CreateBeatFAskDrinkT1WME_DecideGraceSuggestion()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4925, Grace.__$behaviorFactory21_rfield, Grace.__$precondition5_rfield, null, "bFAskDrinkT1_GoFixDrinkAtBarIf(int)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4926, Grace.__$behaviorFactory21_rfield, Grace.__$precondition5_rfield, null, "bFAskDrink_GoFixDrinkAtBarIfNotAlready()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4927, Grace.__$behaviorFactory21_rfield, null, null, "SetupTripAndPlayerDrinksBasedOnPlayerDecision(int)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4928, Grace.__$behaviorFactory21_rfield, Grace.__$precondition5_rfield, null, "SetFixDrink_PlayerDrink(int)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4929, Grace.__$behaviorFactory21_rfield, Grace.__$precondition5_rfield, null, "SetFixDrink_TripDrink(int)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4930, Grace.__$behaviorFactory21_rfield, Grace.__$precondition5_rfield, null, "SetFixDrink_GraceDrink(int)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4931, Grace.__$behaviorFactory21_rfield, Grace.__$precondition5_rfield, null, "CreateNewPlayerDrink(int)", null, (short)2));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4932, Grace.__$behaviorFactory21_rfield, null, null, "CreateNewPlayerDrink(int)", null, (short)1));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4933, Grace.__$behaviorFactory21_rfield, Grace.__$precondition5_rfield, null, "CreateNewTripDrink(int)", null, (short)2));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4934, Grace.__$behaviorFactory21_rfield, null, null, "CreateNewTripDrink(int)", null, (short)1));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4935, Grace.__$behaviorFactory21_rfield, Grace.__$precondition5_rfield, null, "CreateNewGraceDrink(int)", null, (short)2));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4936, Grace.__$behaviorFactory21_rfield, null, null, "CreateNewGraceDrink(int)", null, (short)1));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4937, Grace.__$behaviorFactory21_rfield, Grace.__$precondition5_rfield, null, "CreateBeatFAskDrinkT2WME(int)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4938, Grace.__$behaviorFactory21_rfield, Grace.__$precondition5_rfield, null, "CreateBeatFAskDrinkT2WME(int)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4939, Grace.__$behaviorFactory21_rfield, Grace.__$precondition5_rfield, null, "CreateBeatFAskDrinkT2WME_DecideInitialDrinkSuggestion(int)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4940, Grace.__$behaviorFactory21_rfield, Grace.__$precondition5_rfield, null, "CreateBeatFAskDrinkT2WME_SetNewDrinkSuggestion(int)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4941, Grace.__$behaviorFactory21_rfield, Grace.__$precondition5_rfield, null, "CreateBeatFAskDrinkT2WME_DecideGraceSuggestion()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4942, Grace.__$behaviorFactory21_rfield, Grace.__$precondition5_rfield, Grace.__$preconditionSensorFactory0_rfield, "CreateBeatOneOnOneAffChrT2WME()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4943, Grace.__$behaviorFactory21_rfield, Grace.__$precondition5_rfield, Grace.__$preconditionSensorFactory0_rfield, "CreateBeatOneOnOneNonAffChrT2WME()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4944, Grace.__$behaviorFactory21_rfield, Grace.__$precondition5_rfield, Grace.__$preconditionSensorFactory0_rfield, "CreateBeatRomPrpWME()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4945, Grace.__$behaviorFactory21_rfield, Grace.__$precondition5_rfield, null, "CreateBeatCrisisP1WME()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4946, Grace.__$behaviorFactory21_rfield, Grace.__$precondition5_rfield, null, "UpdateBeatCrisisP1WMEPositions(boolean)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4947, Grace.__$behaviorFactory21_rfield, Grace.__$precondition5_rfield, Grace.__$preconditionSensorFactory0_rfield, "BigQuestion_PossiblyWalkTowardsPlayer()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4948, Grace.__$behaviorFactory21_rfield, Grace.__$precondition5_rfield, null, "BigQuestion_PossiblyWalkTowardsPlayer_stage(boolean)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4949, Grace.__$behaviorFactory21_rfield, null, null, "AmbInit_Sipdrink()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4950, Grace.__$behaviorFactory21_rfield, null, null, "Handler_SipDrinkOverTime()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4951, Grace.__$behaviorFactory21_rfield, Grace.__$precondition5_rfield, Grace.__$preconditionSensorFactory0_rfield, "CheckIfHaveDrinkInHand()", null, (short)2));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4952, Grace.__$behaviorFactory21_rfield, null, null, "CheckIfHaveDrinkInHand()", null, (short)1));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4953, Grace.__$behaviorFactory21_rfield, null, null, "Amb_Sipdrink_SipDrinkOverTime()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4954, Grace.__$behaviorFactory21_rfield, null, null, "Amb_Sipdrink_SipDrinkOverTime_Body()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4955, Grace.__$behaviorFactory21_rfield, Grace.__$precondition5_rfield, Grace.__$preconditionSensorFactory0_rfield, "Amb_Sipdrink_SipDrinkOverTime_BodyStuff()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4956, Grace.__$behaviorFactory21_rfield, Grace.__$precondition5_rfield, Grace.__$preconditionSensorFactory0_rfield, "Amb_Sipdrink_SipDrinkOverTime_TryToTakeSipThenWait()", null, (short)2));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4957, Grace.__$behaviorFactory21_rfield, null, null, "Amb_Sipdrink_SipDrinkOverTime_TryToTakeSipThenWait()", null, (short)1));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4958, Grace.__$behaviorFactory21_rfield, null, null, "Amb_Sipdrink_SipDrinkOverTime_TakeTheSip(int)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4959, Grace.__$behaviorFactory21_rfield, null, null, "Amb_Sipdrink_SipDrinkOverTime_TakeTheSip_Gaze(int)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4960, Grace.__$behaviorFactory21_rfield, Grace.__$precondition5_rfield, Grace.__$preconditionSensorFactory0_rfield, "Amb_Sipdrink_SipDrinkOverTime_WaitBetweenSips()", null, (short)3));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4961, Grace.__$behaviorFactory21_rfield, Grace.__$precondition5_rfield, null, "Amb_Sipdrink_SipDrinkOverTime_WaitBetweenSips()", null, (short)2));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4962, Grace.__$behaviorFactory21_rfield, null, null, "Amb_Sipdrink_SipDrinkOverTime_WaitBetweenSips()", null, (short)1));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4963, Grace.__$behaviorFactory21_rfield, Grace.__$precondition5_rfield, null, "Amb_Sipdrink_SipDrinkOverTime_SwishLookAt(boolean)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4964, Grace.__$behaviorFactory21_rfield, null, null, "Amb_Sipdrink_SipDrinkOverTime_SwishLookAt_Body(int, boolean, boolean)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4965, Grace.__$behaviorFactory21_rfield, Grace.__$precondition5_rfield, null, "Amb_Sipdrink_SipDrinkOverTime_Swish_BodyStuff(boolean, int)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4966, Grace.__$behaviorFactory21_rfield, null, null, "Amb_Sipdrink_SipDrinkOverTime_Swish_BodyStuff2(int)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4967, Grace.__$behaviorFactory21_rfield, Grace.__$precondition5_rfield, null, "Amb_Sipdrink_SipDrinkOverTime_LookAt_BodyStuff(boolean, int)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4968, Grace.__$behaviorFactory21_rfield, Grace.__$precondition5_rfield, Grace.__$preconditionSensorFactory0_rfield, "Amb_Sipdrink_SipDrinkOverTime_ReturnEmptyToBar()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4969, Grace.__$behaviorFactory21_rfield, Grace.__$precondition5_rfield, null, "SetSipDrinkChance(int)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4970, Grace.__$behaviorFactory21_rfield, Grace.__$precondition5_rfield, null, "SetSipDrinkWME(int, int)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4972, Grace.__$behaviorFactory22_rfield, null, null, "Amb_bgMixin_Eightball_R1_BodyStuff_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4974, Grace.__$behaviorFactory22_rfield, null, null, "Amb_bgMixin_Eightball_R1_BodyStuff2_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4976, Grace.__$behaviorFactory22_rfield, null, null, "Amb_bgMixin_Eightball_R2GPA_BodyStuff_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4978, Grace.__$behaviorFactory22_rfield, null, null, "Amb_bgMixin_Eightball_R2GPA_BodyStuff2_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4979, Grace.__$behaviorFactory22_rfield, null, null, "Amb_bgMixin_Eightball_R2GPA_BodyStuff2_dia()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4980, Grace.__$behaviorFactory22_rfield, null, null, "Amb_bgMixin_Eightball_R2GPA_BodyStuff2_dia()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4982, Grace.__$behaviorFactory22_rfield, null, null, "Amb_bgMixin_Eightball_R2NTPA_BodyStuff_seq()", null, (short)0));
}
private static final void registerBehaviors_3(final BehaviorLibrary behaviorLibrary) {
behaviorLibrary.registerBehavior(new __BehaviorDesc(4984, Grace.__$behaviorFactory22_rfield, null, null, "Amb_bgMixin_Eightball_R2NTPA_BodyStuff2_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4985, Grace.__$behaviorFactory22_rfield, null, null, "Amb_bgMixin_Eightball_R2NTPA_BodyStuff2_dia()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4986, Grace.__$behaviorFactory22_rfield, null, null, "Amb_bgMixin_Eightball_R2NTPA_BodyStuff2_dia()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4988, Grace.__$behaviorFactory22_rfield, null, null, "Amb_bgMixin_Eightball_R3GPA_BodyStuff_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4990, Grace.__$behaviorFactory22_rfield, null, null, "Amb_bgMixin_Eightball_R3GPA_BodyStuff2_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4991, Grace.__$behaviorFactory22_rfield, null, null, "Amb_bgMixin_Eightball_R3GPA_BodyStuff2_dia()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4992, Grace.__$behaviorFactory22_rfield, null, null, "Amb_bgMixin_Eightball_R3GPA_BodyStuff2_dia()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4994, Grace.__$behaviorFactory22_rfield, null, null, "Amb_bgMixin_Eightball_R3TPA_BodyStuff_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4996, Grace.__$behaviorFactory22_rfield, null, null, "Amb_bgMixin_Eightball_R3TPA_BodyStuff2_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4997, Grace.__$behaviorFactory22_rfield, null, null, "Amb_bgMixin_Eightball_R3TPA_BodyStuff2_dia()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4998, Grace.__$behaviorFactory22_rfield, null, null, "Amb_bgMixin_Eightball_R3TPA_BodyStuff2_dia()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4999, Grace.__$behaviorFactory22_rfield, null, null, "LongTermBehavior_FixDrink()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(5002, Grace.__$behaviorFactory22_rfield, null, null, "Global_bgMixin_LTBFixDrink_GraceDrinkReady_HerOwnChardonnay_BodyStuff2_dia()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(5005, Grace.__$behaviorFactory22_rfield, null, null, "Global_bgMixin_LTBFixDrink_GraceDrinkReady_TripAndPlayersFancy_BodyStuff2_dia()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(5008, Grace.__$behaviorFactory22_rfield, null, null, "Global_bgMixin_LTBFixDrink_GraceDrinkReady_MerlotCompromise_BodyStuff2_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(5009, Grace.__$behaviorFactory22_rfield, null, null, "Global_bgMixin_LTBFixDrink_GraceDrinkReady_MerlotCompromise_BodyStuff2_dia()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(5010, Grace.__$behaviorFactory22_rfield, null, null, "Global_bgMixin_LTBFixDrink_GraceDrinkReady_MerlotCompromise_BodyStuff2_dia()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(5013, Grace.__$behaviorFactory22_rfield, null, null, "Global_bgMixin_LTBFixDrink_GraceDrinkReady_PlayersNonFancy_BodyStuff2_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(5014, Grace.__$behaviorFactory22_rfield, null, null, "Global_bgMixin_LTBFixDrink_GraceDrinkReady_PlayersNonFancy_BodyStuff2_dia()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(5015, Grace.__$behaviorFactory22_rfield, null, null, "Global_bgMixin_LTBFixDrink_GraceDrinkReady_PlayersNonFancy_BodyStuff2_dia()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(5018, Grace.__$behaviorFactory22_rfield, null, null, "Global_bgMixin_LTBFixDrink_GraceDrinkReady_HerOwnNonFancy_BodyStuff2_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(5019, Grace.__$behaviorFactory22_rfield, null, null, "Global_bgMixin_LTBFixDrink_GraceDrinkReady_HerOwnNonFancy_BodyStuff2_dia()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(5020, Grace.__$behaviorFactory22_rfield, null, null, "Global_bgMixin_LTBFixDrink_GraceDrinkReady_HerOwnNonFancy_BodyStuff2_dia()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(5022, Grace.__$behaviorFactory22_rfield, null, null, "Global_bgMixin_LTBFixDrink_BreakGlassBehindBar_BodyStuff_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(5023, Grace.__$behaviorFactory22_rfield, null, null, "Global_bgMixin_LTBFixDrink_BreakGlassBehindBar_BodyStuff_dia()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(5024, Grace.__$behaviorFactory22_rfield, null, null, "Global_bgMixin_LTBFixDrink_BreakGlassBehindBar_BodyStuff_dia()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(5025, Grace.__$behaviorFactory22_rfield, null, null, "Global_bgMixin_LTBFixDrink_BreakGlassBehindBar_BodyStuff_dia()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(5028, Grace.__$behaviorFactory22_rfield, null, null, "Global_bgMixin_LTBFixDrink_BreakGlassBehindBar_BodyStuff3_dia()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(5029, Grace.__$behaviorFactory22_rfield, null, null, "Global_bgMixin_LTBFixDrink_BreakGlassBehindBar_BodyStuff3_dia()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(5030, Grace.__$behaviorFactory22_rfield, null, null, "Global_bgMixin_LTBFixDrink_BreakGlassBehindBar_BodyStuff3_dia()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(5034, Grace.__$behaviorFactory22_rfield, null, null, "Global_bgMixin_LTBFixDrink_RunOutOfGracesDrink_BodyStuff2_dia()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(5035, Grace.__$behaviorFactory22_rfield, null, null, "Global_bgMixin_LTBFixDrink_RunOutOfGracesDrink_BodyStuff2_dia()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(5037, Grace.__$behaviorFactory22_rfield, null, null, "Global_bgMixin_LTBFixDrink_RunOutOfGracesDrink_BodyStuff3_dia()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(5038, Grace.__$behaviorFactory22_rfield, null, null, "Global_bgMixin_LTBFixDrink_RunOutOfGracesDrink_BodyStuff3_dia()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(5040, Grace.__$behaviorFactory22_rfield, null, null, "Global_bgMixin_LTBFixDrink_RunOutOfGracesDrink_BodyStuff4_dia()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(5041, Grace.__$behaviorFactory22_rfield, null, null, "Global_bgMixin_LTBFixDrink_RunOutOfGracesDrink_BodyStuff4_dia()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(5043, Grace.__$behaviorFactory22_rfield, null, null, "Global_bgMixin_LTBFixDrink_RunOutOfGracesDrink_BodyStuff5_dia()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(5044, Grace.__$behaviorFactory22_rfield, null, null, "Global_bgMixin_LTBFixDrink_RunOutOfGracesDrink_BodyStuff5_dia()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(5046, Grace.__$behaviorFactory22_rfield, null, null, "Global_bgMixin_LTBFixDrink_BlenderOverGrace_BodyStuff_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(5047, Grace.__$behaviorFactory22_rfield, null, null, "Global_bgMixin_LTBFixDrink_BlenderOverGrace_BodyStuff_predia()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(5048, Grace.__$behaviorFactory22_rfield, null, null, "Global_bgMixin_LTBFixDrink_BlenderOverGrace_BodyStuff_predia()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(5049, Grace.__$behaviorFactory22_rfield, null, null, "Global_bgMixin_LTBFixDrink_BlenderOverGrace_BodyStuff_dia()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(5050, Grace.__$behaviorFactory22_rfield, null, null, "Global_bgMixin_LTBFixDrink_BlenderOverGrace_BodyStuff_dia()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(5053, Grace.__$behaviorFactory22_rfield, null, null, "StagingObjectOffer_Mixin()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(5054, Grace.__$behaviorFactory22_rfield, null, null, "EventuallyTurnOffIgnoreThanks(int)", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(5058, Grace.__$behaviorFactory22_rfield, null, null, "Global_bgMixin_LTBFixDrink_OfferDrink_NonFancyWithGrace_BodyStuff2_dia()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(5059, Grace.__$behaviorFactory22_rfield, null, null, "Global_bgMixin_LTBFixDrink_OfferDrink_NonFancyWithGrace_BodyStuff2_dia()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(5060, Grace.__$behaviorFactory22_rfield, null, null, "Global_bgMixin_LTBFixDrink_OfferDrink_NonFancyWithGrace_BodyStuff2_dia()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(5062, Grace.__$behaviorFactory22_rfield, null, null, "StagingObjectOfferRetract_Mixin()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(5065, Grace.__$behaviorFactory22_rfield, null, null, "Amb_bgMixin_MetaCommentary_NtoGPA_BodyStuff_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(5067, Grace.__$behaviorFactory22_rfield, null, null, "Amb_bgMixin_MetaCommentary_NtoTPA_BodyStuff_dia()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(5069, Grace.__$behaviorFactory22_rfield, null, null, "Amb_bgMixin_MetaCommentary_TPAtoGPA_BodyStuff_dia()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(5071, Grace.__$behaviorFactory22_rfield, null, null, "Amb_bgMixin_MetaCommentary_GPAtoTPA_BodyStuff_seq()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(5072, Grace.__$behaviorFactory22_rfield, null, null, "OverallControl()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(5073, Grace.__$behaviorFactory22_rfield, Grace.__$precondition5_rfield, null, "OverallControl_Body()", null, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(5074, Grace.__$behaviorFactory22_rfield, null, null, "Grace_RootCollectionBehavior()", null, (short)0));
}
private static final void registerBehaviors_4(final BehaviorLibrary behaviorLibrary) {
behaviorLibrary.registerBehavior(new __BehaviorDesc(0, Grace.__$behaviorFactory0_rfield, Grace.__$precondition0_rfield, null, "BeatInit()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1, Grace.__$behaviorFactory0_rfield, Grace.__$precondition0_rfield, null, "bPBehindDoorT1_ArgueBehindDoor_BodyStuff(int)", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3, Grace.__$behaviorFactory0_rfield, Grace.__$precondition0_rfield, null, "bPBehindDoorT1_ArgueBehindDoor_BodyStuff(int)", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(5, Grace.__$behaviorFactory0_rfield, null, null, "bPBehindDoorT1_TxnOut_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(8, Grace.__$behaviorFactory0_rfield, Grace.__$precondition0_rfield, null, "BeatInit()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(9, Grace.__$behaviorFactory0_rfield, null, null, "bTGreetsPT1_GreetP_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(10, Grace.__$behaviorFactory0_rfield, null, null, "bTGreetsPT1_WaitTimeout_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(11, Grace.__$behaviorFactory0_rfield, null, null, "bTGreetsPT1_TxnOut_Greet_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(12, Grace.__$behaviorFactory0_rfield, null, null, "bTGreetsPT1_TxnOut_HowAreYou_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(13, Grace.__$behaviorFactory0_rfield, null, null, "bTGreetsPT1_TxnOut_IsOkayQuestion_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(14, Grace.__$behaviorFactory0_rfield, null, null, "bTGreetsPT1_TxnOut_Positive_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(15, Grace.__$behaviorFactory0_rfield, null, null, "bTGreetsPT1_TxnOut_Praise_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(16, Grace.__$behaviorFactory0_rfield, null, null, "bTGreetsPT1_TxnOut_Negative_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(17, Grace.__$behaviorFactory0_rfield, null, null, "bTGreetsPT1_TxnOut_Distraction_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(18, Grace.__$behaviorFactory0_rfield, null, null, "bTGreetsPT1_TxnOut_MildConfusion_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(19, Grace.__$behaviorFactory0_rfield, null, null, "bTGreetsPT1_TxnOut_FlirtFP_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(20, Grace.__$behaviorFactory0_rfield, null, null, "bTGreetsPT1_TxnOut_FlirtMP_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(21, Grace.__$behaviorFactory0_rfield, null, null, "bTGreetsPT1_TxnOut_KissFP_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(22, Grace.__$behaviorFactory0_rfield, null, null, "bTGreetsPT1_TxnOut_KissMP_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(23, Grace.__$behaviorFactory0_rfield, null, null, "bTGreetsPT1_TxnOut_EnterApt_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(24, Grace.__$behaviorFactory0_rfield, null, null, "bTGreetsPT1_TxnOut_Annoying_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(25, Grace.__$behaviorFactory0_rfield, null, null, "bTGreetsPT1_TxnOut_Inappropriate_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(26, Grace.__$behaviorFactory0_rfield, null, null, "bTGreetsPT1_TxnOut_Explain_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(27, Grace.__$behaviorFactory0_rfield, null, null, "bTGreetsPT1_TxnOut_Timeout_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(28, Grace.__$behaviorFactory0_rfield, null, null, "bTGreetsPT1_TxnOut_PosComeIn_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(29, Grace.__$behaviorFactory0_rfield, null, null, "bTGreetsPT1_TxnOut_NeutralComeIn_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(30, Grace.__$behaviorFactory0_rfield, null, null, "bTGreetsPT1_TxnOut_NegComeIn_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(31, Grace.__$behaviorFactory0_rfield, null, null, "bTGreetsPT1_TxnOut_FetchGrace_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(32, Grace.__$behaviorFactory0_rfield, Grace.__$precondition0_rfield, null, "BeatInit()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(33, Grace.__$behaviorFactory0_rfield, null, null, "bTFetchesGT1_ArgueInKitchen_BodyStuff(int)", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(34, Grace.__$behaviorFactory0_rfield, null, null, "bTFetchesGT1_TxnOut_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(38, Grace.__$behaviorFactory0_rfield, Grace.__$precondition0_rfield, null, "BeatInit()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(39, Grace.__$behaviorFactory0_rfield, null, null, "bGGreetsPT1_GreetP_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(46, Grace.__$behaviorFactory0_rfield, null, null, "bGGreetsPT1_GreetP_Quibble_alt1_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(47, Grace.__$behaviorFactory0_rfield, null, null, "bGGreetsPT1_GreetP_Quibble_alt1_BodyStuff2()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(53, Grace.__$behaviorFactory0_rfield, null, null, "bGGreetsPT1_GreetP_Quibble_alt2_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(54, Grace.__$behaviorFactory0_rfield, null, null, "bGGreetsPT1_GreetP_Quibble_alt2_BodyStuff2()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(57, Grace.__$behaviorFactory0_rfield, null, null, "bGGreetsPT1_GreetP_Quibble_alt2_BodyStuff3()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(58, Grace.__$behaviorFactory0_rfield, null, null, "bGGreetsPT1_GreetP_Quibble_alt2_BodyStuff4()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(61, Grace.__$behaviorFactory0_rfield, null, null, "bGGreetsPT1_WaitTimeout_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(63, Grace.__$behaviorFactory0_rfield, null, null, "bGGreetsPT1_TxnOut_Greet_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(68, Grace.__$behaviorFactory0_rfield, null, null, "bGGreetsPT1_TxnOut_HowAreYou_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(76, Grace.__$behaviorFactory0_rfield, null, null, "bGGreetsPT1_TxnOut_IsOkayQuestion_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(82, Grace.__$behaviorFactory0_rfield, null, null, "bGGreetsPT1_TxnOut_Positive_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(87, Grace.__$behaviorFactory0_rfield, null, null, "bGGreetsPT1_TxnOut_Praise_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(91, Grace.__$behaviorFactory0_rfield, null, null, "bGGreetsPT1_TxnOut_Negative_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(95, Grace.__$behaviorFactory0_rfield, null, null, "bGGreetsPT1_TxnOut_Distraction_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(99, Grace.__$behaviorFactory0_rfield, null, null, "bGGreetsPT1_TxnOut_MildConfusion_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(103, Grace.__$behaviorFactory0_rfield, null, null, "bGGreetsPT1_TxnOut_MildConfusionTripComment_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(107, Grace.__$behaviorFactory0_rfield, null, null, "bGGreetsPT1_TxnOut_FlirtFP_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(111, Grace.__$behaviorFactory0_rfield, null, null, "bGGreetsPT1_TxnOut_FlirtMP_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(115, Grace.__$behaviorFactory0_rfield, null, null, "bGGreetsPT1_TxnOut_KissFP_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(119, Grace.__$behaviorFactory0_rfield, null, null, "bGGreetsPT1_TxnOut_KissMP_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(123, Grace.__$behaviorFactory0_rfield, null, null, "bGGreetsPT1_TxnOut_KissT_FP_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(124, Grace.__$behaviorFactory0_rfield, null, null, "bGGreetsPT1_TxnOut_KissT_FP_BodyStuff2()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(128, Grace.__$behaviorFactory0_rfield, null, null, "bGGreetsPT1_TxnOut_KissT_MP_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(129, Grace.__$behaviorFactory0_rfield, null, null, "bGGreetsPT1_TxnOut_KissT_MP_BodyStuff2()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(133, Grace.__$behaviorFactory0_rfield, null, null, "bGGreetsPT1_TxnOut_Annoying_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(138, Grace.__$behaviorFactory0_rfield, null, null, "bGGreetsPT1_TxnOut_TimeoutComeIn_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(146, Grace.__$behaviorFactory0_rfield, null, null, "bGGreetsPT1_TxnOut_PosComeIn_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(156, Grace.__$behaviorFactory0_rfield, null, null, "bGGreetsPT1_TxnOut_NeutralComeIn_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(164, Grace.__$behaviorFactory0_rfield, null, null, "bGGreetsPT1_TxnOut_NegComeIn_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(171, Grace.__$behaviorFactory0_rfield, Grace.__$precondition0_rfield, null, "BeatInit()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(172, Grace.__$behaviorFactory0_rfield, null, null, "bExplDatAnnivT1_TxnIn_N_alt1_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(174, Grace.__$behaviorFactory0_rfield, null, null, "bExplDatAnnivT1_TxnIn_N_alt1_BodyStuff2()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(175, Grace.__$behaviorFactory0_rfield, null, null, "bExplDatAnnivT1_TxnIn_N_alt2_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(176, Grace.__$behaviorFactory0_rfield, null, null, "bExplDatAnnivT1_TxnIn_N_alt2_BodyStuff2()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(178, Grace.__$behaviorFactory0_rfield, null, null, "bExplDatAnnivT1_TxnIn_NTPA_REPEAT_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(179, Grace.__$behaviorFactory0_rfield, null, null, "bExplDatAnnivT1_TxnIn_GPA_alt1_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(180, Grace.__$behaviorFactory0_rfield, null, null, "bExplDatAnnivT1_TxnIn_GPA_alt1_BodyStuff2()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(182, Grace.__$behaviorFactory0_rfield, null, null, "bExplDatAnnivT1_TxnIn_GPA_alt2_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(183, Grace.__$behaviorFactory0_rfield, null, null, "bExplDatAnnivT1_TxnIn_GPA_alt2_BodyStuff2()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(185, Grace.__$behaviorFactory0_rfield, null, null, "bExplDatAnnivT1_TxnIn_GPA_REPEAT_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(186, Grace.__$behaviorFactory0_rfield, null, null, "bExplDatAnnivT1_TxnIn_TPA_alt1_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(188, Grace.__$behaviorFactory0_rfield, null, null, "bExplDatAnnivT1_TxnIn_TPA_alt1_BodyStuff2()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(189, Grace.__$behaviorFactory0_rfield, null, null, "bExplDatAnnivT1_TxnIn_TPA_alt2_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(191, Grace.__$behaviorFactory0_rfield, null, null, "bExplDatAnnivT1_TxnIn_TPA_alt2_BodyStuff2()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(192, Grace.__$behaviorFactory0_rfield, null, null, "bExplDatAnnivT1_JustRealized_N_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(193, Grace.__$behaviorFactory0_rfield, null, null, "bExplDatAnnivT1_JustRealized_N_BodyStuff2()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(194, Grace.__$behaviorFactory0_rfield, null, null, "bExplDatAnnivT1_JustRealized_N_BodyStuff3()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(196, Grace.__$behaviorFactory0_rfield, null, null, "bExplDatAnnivT1_JustRealized_N_BodyStuff4()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(199, Grace.__$behaviorFactory0_rfield, null, null, "bExplDatAnnivT1_JustRealized_NTPA_REPEAT_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(200, Grace.__$behaviorFactory0_rfield, null, null, "bExplDatAnnivT1_JustRealized_GPA_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(201, Grace.__$behaviorFactory0_rfield, null, null, "bExplDatAnnivT1_JustRealized_GPA_BodyStuff2()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(202, Grace.__$behaviorFactory0_rfield, null, null, "bExplDatAnnivT1_JustRealized_GPA_BodyStuff3()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(204, Grace.__$behaviorFactory0_rfield, null, null, "bExplDatAnnivT1_JustRealized_GPA_BodyStuff4()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(207, Grace.__$behaviorFactory0_rfield, null, null, "bExplDatAnnivT1_JustRealized_GPA_REPEAT_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(208, Grace.__$behaviorFactory0_rfield, null, null, "bExplDatAnnivT1_JustRealized_TPA_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(209, Grace.__$behaviorFactory0_rfield, null, null, "bExplDatAnnivT1_JustRealized_TPA_BodyStuff2()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(210, Grace.__$behaviorFactory0_rfield, null, null, "bExplDatAnnivT1_JustRealized_TPA_BodyStuff3()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(212, Grace.__$behaviorFactory0_rfield, null, null, "bExplDatAnnivT1_JustRealized_TPA_BodyStuff4()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(215, Grace.__$behaviorFactory0_rfield, null, null, "bExplDatAnnivT1_RememberThat_N_ReestablishStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(216, Grace.__$behaviorFactory0_rfield, null, null, "bExplDatAnnivT1_RememberThat_N_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(218, Grace.__$behaviorFactory0_rfield, null, null, "bExplDatAnnivT1_RememberThat_N_BodyStuff2()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(220, Grace.__$behaviorFactory0_rfield, null, null, "bExplDatAnnivT1_RememberThat_N_BodyStuff3()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(221, Grace.__$behaviorFactory0_rfield, null, null, "bExplDatAnnivT1_RememberThat_NTPA_REPEAT_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(222, Grace.__$behaviorFactory0_rfield, null, null, "bExplDatAnnivT1_RememberThat_GPA_ReestablishStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(223, Grace.__$behaviorFactory0_rfield, null, null, "bExplDatAnnivT1_RememberThat_GPA_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(225, Grace.__$behaviorFactory0_rfield, null, null, "bExplDatAnnivT1_RememberThat_GPA_BodyStuff2()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(228, Grace.__$behaviorFactory1_rfield, null, null, "bExplDatAnnivT1_RememberThat_GPA_BodyStuff3()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(229, Grace.__$behaviorFactory1_rfield, null, null, "bExplDatAnnivT1_RememberThat_GPA_REPEAT_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(230, Grace.__$behaviorFactory1_rfield, null, null, "bExplDatAnnivT1_RememberThat_TPA_ReestablishStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(231, Grace.__$behaviorFactory1_rfield, null, null, "bExplDatAnnivT1_RememberThat_TPA_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(233, Grace.__$behaviorFactory1_rfield, null, null, "bExplDatAnnivT1_RememberThat_TPA_BodyStuff2()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(236, Grace.__$behaviorFactory1_rfield, null, null, "bExplDatAnnivT1_RememberThat_TPA_BodyStuff3()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(237, Grace.__$behaviorFactory1_rfield, null, null, "bExplDatAnnivT1_WaitTimeout_ReestablishStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(238, Grace.__$behaviorFactory1_rfield, Grace.__$precondition0_rfield, null, "bExplDatAnnivT1_WaitTimeout_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(239, Grace.__$behaviorFactory1_rfield, Grace.__$precondition0_rfield, null, "bExplDatAnnivT1_WaitTimeout_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(240, Grace.__$behaviorFactory1_rfield, null, null, "bExplDatAnnivT1_TxnOut_MildOrStrongAgreement_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(241, Grace.__$behaviorFactory1_rfield, null, null, "bExplDatAnnivT1_TxnOut_MildOrStrongAgreement_BodyStuff2(boolean)", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(242, Grace.__$behaviorFactory1_rfield, null, null, "bExplDatAnnivT1_TxnOut_MildOrStrongAgreement_BodyStuff3()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(243, Grace.__$behaviorFactory1_rfield, null, null, "bExplDatAnnivT1_TxnOut_MildOrStrongAgreement_BodyStuff4()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(244, Grace.__$behaviorFactory1_rfield, null, null, "bExplDatAnnivT1_TxnOut_MildOrStrongAgreement_BodyStuff5()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(246, Grace.__$behaviorFactory1_rfield, null, null, "bExplDatAnnivT1_TxnOut_MildOrStrongAgreement_BodyStuff6()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(248, Grace.__$behaviorFactory1_rfield, null, null, "bExplDatAnnivT1_TxnOut_MildDisagreement_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(249, Grace.__$behaviorFactory1_rfield, null, null, "bExplDatAnnivT1_TxnOut_MildDisagreement_BodyStuff2()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(250, Grace.__$behaviorFactory1_rfield, null, null, "bExplDatAnnivT1_TxnOut_StrongDisagreement_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(251, Grace.__$behaviorFactory1_rfield, null, null, "bExplDatAnnivT1_TxnOut_StrongDisagreement_BodyStuff2()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(252, Grace.__$behaviorFactory1_rfield, null, null, "bExplDatAnnivT1_TxnOut_NonAnswer_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(253, Grace.__$behaviorFactory1_rfield, null, null, "bExplDatAnnivT1_TxnOut_NonAnswer_BodyStuff2()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(254, Grace.__$behaviorFactory1_rfield, Grace.__$precondition0_rfield, null, "BeatInit()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(256, Grace.__$behaviorFactory1_rfield, null, null, "bPhoneCallT1NGPA_TxnIn_Grace_N_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(261, Grace.__$behaviorFactory1_rfield, null, null, "bPhoneCallT1NGPA_TxnIn_Grace_GPA_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(267, Grace.__$behaviorFactory1_rfield, null, null, "bPhoneCallT1NGPA_TxnIn_Trip_N_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(269, Grace.__$behaviorFactory1_rfield, null, null, "bPhoneCallT1NGPA_TxnIn_Trip_GPA_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(271, Grace.__$behaviorFactory1_rfield, null, null, "bPhoneCallT1NGPA_TxnIn_interrupted_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(272, Grace.__$behaviorFactory1_rfield, null, null, "bPhoneCallT1NGPA_TxnIn_BodyStuff2()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(274, Grace.__$behaviorFactory1_rfield, null, null, "bPhoneCallT1NGPA_TxnIn_default_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(277, Grace.__$behaviorFactory1_rfield, null, null, "bPhoneCallT1NGPA_Body_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(280, Grace.__$behaviorFactory1_rfield, null, null, "bPhoneCallT1NGPA_Body_BodyStuff2(int)", new String[] { "Trip", "Grace" }, (short)1));
behaviorLibrary.registerBehavior(new __BehaviorDesc(282, Grace.__$behaviorFactory1_rfield, Grace.__$precondition0_rfield, null, "bPhoneCallT1NGPA_Body_BodyStuff2(int)", new String[] { "Trip", "Grace" }, (short)2));
behaviorLibrary.registerBehavior(new __BehaviorDesc(284, Grace.__$behaviorFactory1_rfield, Grace.__$precondition0_rfield, null, "bPhoneCallT1NGPA_Body_BodyStuff2(int)", new String[] { "Trip", "Grace" }, (short)2));
behaviorLibrary.registerBehavior(new __BehaviorDesc(286, Grace.__$behaviorFactory1_rfield, null, null, "bPhoneCallT1NGPA_Mixin_Mild_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(288, Grace.__$behaviorFactory1_rfield, null, null, "bPhoneCallT1NGPA_Mixin_PraiseFlirt_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(290, Grace.__$behaviorFactory1_rfield, null, null, "bPhoneCallT1NGPA_Mixin_Negative_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(292, Grace.__$behaviorFactory1_rfield, null, null, "bPhoneCallT1NGPA_Mixin_PlayerPicksUp_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(294, Grace.__$behaviorFactory1_rfield, null, null, "bPhoneCallT1NGPA_TxnOut_p1_PreBodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(296, Grace.__$behaviorFactory1_rfield, null, null, "bPhoneCallT1NGPA_TxnOut_p1_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(298, Grace.__$behaviorFactory1_rfield, null, null, "bPhoneCallT1NGPA_TxnOut_p1_BodyStuff2()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(302, Grace.__$behaviorFactory1_rfield, null, null, "bPhoneCallT1NGPA_TxnOut_p2_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(304, Grace.__$behaviorFactory1_rfield, Grace.__$precondition0_rfield, null, "BeatInit()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(306, Grace.__$behaviorFactory1_rfield, null, null, "bPhoneCallT1NTPA_TxnIn_Grace_N_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(311, Grace.__$behaviorFactory1_rfield, null, null, "bPhoneCallT1NTPA_TxnIn_Grace_TPA_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(315, Grace.__$behaviorFactory1_rfield, null, null, "bPhoneCallT1NTPA_TxnIn_Trip_N_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(317, Grace.__$behaviorFactory1_rfield, null, null, "bPhoneCallT1NTPA_TxnIn_Trip_TPA_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(319, Grace.__$behaviorFactory1_rfield, null, null, "bPhoneCallT1NTPA_TxnIn_interrupted_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(320, Grace.__$behaviorFactory1_rfield, null, null, "bPhoneCallT1NTPA_TxnIn_BodyStuff2()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(322, Grace.__$behaviorFactory1_rfield, null, null, "bPhoneCallT1NTPA_Body_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(325, Grace.__$behaviorFactory1_rfield, null, null, "bPhoneCallT1NTPA_Body_BodyStuff2(int)", new String[] { "Trip", "Grace" }, (short)1));
behaviorLibrary.registerBehavior(new __BehaviorDesc(327, Grace.__$behaviorFactory1_rfield, Grace.__$precondition0_rfield, null, "bPhoneCallT1NTPA_Body_BodyStuff2(int)", new String[] { "Trip", "Grace" }, (short)2));
behaviorLibrary.registerBehavior(new __BehaviorDesc(329, Grace.__$behaviorFactory1_rfield, Grace.__$precondition0_rfield, null, "bPhoneCallT1NTPA_Body_BodyStuff2(int)", new String[] { "Trip", "Grace" }, (short)2));
behaviorLibrary.registerBehavior(new __BehaviorDesc(332, Grace.__$behaviorFactory1_rfield, null, null, "bPhoneCallT1NTPA_Mixin_Mild_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(334, Grace.__$behaviorFactory1_rfield, null, null, "bPhoneCallT1NTPA_Mixin_PraiseFlirt_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(336, Grace.__$behaviorFactory1_rfield, null, null, "bPhoneCallT1NTPA_Mixin_Negative_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(338, Grace.__$behaviorFactory1_rfield, null, null, "bPhoneCallT1NTPA_Mixin_PlayerPicksUp_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(342, Grace.__$behaviorFactory1_rfield, null, null, "bPhoneCallT1NTPA_TxnOut_p1_PreBodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(344, Grace.__$behaviorFactory1_rfield, null, null, "bPhoneCallT1NTPA_TxnOut_p1_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(346, Grace.__$behaviorFactory1_rfield, null, null, "bPhoneCallT1NTPA_TxnOut_p1_BodyStuff2()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(348, Grace.__$behaviorFactory1_rfield, null, null, "bPhoneCallT1NTPA_TxnOut_p2_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(360, Grace.__$behaviorFactory1_rfield, Grace.__$precondition0_rfield, null, "BeatInit()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(361, Grace.__$behaviorFactory1_rfield, null, null, "bAAt1N_TxnIn_NoSubtopic_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(362, Grace.__$behaviorFactory1_rfield, Grace.__$precondition0_rfield, null, "bAAt1N_TxnIn_NoSubtopic_BodyStuff2()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(363, Grace.__$behaviorFactory1_rfield, null, null, "bAAt1N_TxnIn_NoSubtopic_BodyStuff3()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(364, Grace.__$behaviorFactory1_rfield, null, null, "bAAt1N_TxnIn_NoSubtopic_BodyStuff4()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(365, Grace.__$behaviorFactory1_rfield, null, null, "bAAt1N_TxnIn_GivenSubtopic_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(366, Grace.__$behaviorFactory1_rfield, null, null, "bAAt1N_TxnIn_REPEAT_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(367, Grace.__$behaviorFactory1_rfield, Grace.__$precondition0_rfield, null, "bAAt1N_TxnIn_InTripletAffinitySwitch_BodyStuff()", new String[] { "Trip", "Grace" }, (short)2));
behaviorLibrary.registerBehavior(new __BehaviorDesc(368, Grace.__$behaviorFactory1_rfield, null, null, "bAAt1N_TxnIn_InTripletAffinitySwitch_BodyStuff()", new String[] { "Trip", "Grace" }, (short)1));
behaviorLibrary.registerBehavior(new __BehaviorDesc(369, Grace.__$behaviorFactory1_rfield, Grace.__$precondition0_rfield, null, "bAAt1N_AddressSubtopic_style_RewindStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(370, Grace.__$behaviorFactory1_rfield, Grace.__$precondition0_rfield, null, "bAAt1N_AddressSubtopic_style_ReestablishStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(371, Grace.__$behaviorFactory1_rfield, Grace.__$precondition0_rfield, null, "bAAt1N_AddressSubtopic_style_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(372, Grace.__$behaviorFactory1_rfield, null, null, "bAAt1N_AddressSubtopic_style_BodyStuff2(boolean)", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(373, Grace.__$behaviorFactory1_rfield, null, null, "bAAt1N_AddressSubtopic_style_part2_ReestablishStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(374, Grace.__$behaviorFactory1_rfield, null, null, "bAAt1N_AddressSubtopic_style_part2_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(375, Grace.__$behaviorFactory1_rfield, null, null, "bAAt1N_AddressSubtopic_style_part2_BodyStuff2(boolean)", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(376, Grace.__$behaviorFactory1_rfield, Grace.__$precondition0_rfield, null, "bAAt1N_AddressSubtopic_couch_RewindStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(377, Grace.__$behaviorFactory1_rfield, Grace.__$precondition0_rfield, null, "bAAt1N_AddressSubtopic_couch_ReestablishStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(378, Grace.__$behaviorFactory1_rfield, Grace.__$precondition0_rfield, null, "bAAt1N_AddressSubtopic_couch_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(379, Grace.__$behaviorFactory1_rfield, null, null, "bAAt1N_AddressSubtopic_couch_BodyStuff2(boolean)", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(380, Grace.__$behaviorFactory1_rfield, Grace.__$precondition0_rfield, null, "bAAt1N_AddressSubtopic_couch_part2_ReestablishStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(381, Grace.__$behaviorFactory1_rfield, Grace.__$precondition0_rfield, null, "bAAt1N_AddressSubtopic_couch_part2_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(382, Grace.__$behaviorFactory1_rfield, null, null, "bAAt1N_AddressSubtopic_couch_part2_BodyStuff2(boolean)", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(383, Grace.__$behaviorFactory1_rfield, Grace.__$precondition0_rfield, null, "bAAt1N_AddressSubtopic_armoire_RewindStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(384, Grace.__$behaviorFactory1_rfield, Grace.__$precondition0_rfield, null, "bAAt1N_AddressSubtopic_armoire_ReestablishStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(385, Grace.__$behaviorFactory1_rfield, Grace.__$precondition0_rfield, null, "bAAt1N_AddressSubtopic_armoire_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(386, Grace.__$behaviorFactory1_rfield, null, null, "bAAt1N_AddressSubtopic_armoire_BodyStuff2(boolean)", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(387, Grace.__$behaviorFactory1_rfield, Grace.__$precondition0_rfield, null, "bAAt1N_AddressSubtopic_armoire_part2_ReestablishStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(388, Grace.__$behaviorFactory1_rfield, Grace.__$precondition0_rfield, null, "bAAt1N_AddressSubtopic_armoire_part2_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(389, Grace.__$behaviorFactory1_rfield, null, null, "bAAt1N_AddressSubtopic_armoire_part2_BodyStuff2(boolean)", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(390, Grace.__$behaviorFactory1_rfield, Grace.__$precondition0_rfield, null, "bAAt1N_AddressSubtopic_trinkets_RewindStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(391, Grace.__$behaviorFactory1_rfield, Grace.__$precondition0_rfield, null, "bAAt1N_AddressSubtopic_trinkets_ReestablishStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(392, Grace.__$behaviorFactory1_rfield, Grace.__$precondition0_rfield, null, "bAAt1N_AddressSubtopic_trinkets_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(393, Grace.__$behaviorFactory1_rfield, null, null, "bAAt1N_AddressSubtopic_trinkets_BodyStuff2(boolean)", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(394, Grace.__$behaviorFactory1_rfield, Grace.__$precondition0_rfield, null, "bAAt1N_AddressSubtopic_trinkets_part2_ReestablishStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(395, Grace.__$behaviorFactory1_rfield, Grace.__$precondition0_rfield, null, "bAAt1N_AddressSubtopic_trinkets_part2_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(396, Grace.__$behaviorFactory1_rfield, null, null, "bAAt1N_AddressSubtopic_trinkets_part2_BodyStuff2(boolean)", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(397, Grace.__$behaviorFactory1_rfield, Grace.__$precondition0_rfield, null, "bAAt1N_AddressSubtopic_weddingPic_RewindStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(398, Grace.__$behaviorFactory1_rfield, Grace.__$precondition0_rfield, null, "bAAt1N_AddressSubtopic_weddingPic_ReestablishStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(399, Grace.__$behaviorFactory1_rfield, Grace.__$precondition0_rfield, null, "bAAt1N_AddressSubtopic_weddingPic_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(400, Grace.__$behaviorFactory1_rfield, Grace.__$precondition0_rfield, null, "bAAt1N_AddressSubtopic_weddingPic_BodyStuff2(boolean)", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(401, Grace.__$behaviorFactory1_rfield, Grace.__$precondition0_rfield, null, "bAAt1N_AddressSubtopic_weddingPic_part2_ReestablishStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(402, Grace.__$behaviorFactory1_rfield, Grace.__$precondition0_rfield, null, "bAAt1N_AddressSubtopic_weddingPic_part2_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(403, Grace.__$behaviorFactory1_rfield, null, null, "bAAt1N_AddressSubtopic_weddingPic_part2_BodyStuff2(boolean)", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(404, Grace.__$behaviorFactory1_rfield, Grace.__$precondition0_rfield, null, "bAAt1N_AddressSubtopic_painting_RewindStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(405, Grace.__$behaviorFactory1_rfield, Grace.__$precondition0_rfield, null, "bAAt1N_AddressSubtopic_painting_ReestablishStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(406, Grace.__$behaviorFactory1_rfield, Grace.__$precondition0_rfield, null, "bAAt1N_AddressSubtopic_painting_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(407, Grace.__$behaviorFactory1_rfield, null, null, "bAAt1N_AddressSubtopic_painting_BodyStuff2(boolean)", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(408, Grace.__$behaviorFactory1_rfield, Grace.__$precondition0_rfield, null, "bAAt1N_AddressSubtopic_painting_part2_ReestablishStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(409, Grace.__$behaviorFactory1_rfield, Grace.__$precondition0_rfield, null, "bAAt1N_AddressSubtopic_painting_part2_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(410, Grace.__$behaviorFactory1_rfield, null, null, "bAAt1N_AddressSubtopic_painting_part2_BodyStuff2(boolean)", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(411, Grace.__$behaviorFactory1_rfield, Grace.__$precondition0_rfield, null, "bAAt1N_AddressSubtopic_viewBalcony_RewindStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(412, Grace.__$behaviorFactory1_rfield, Grace.__$precondition0_rfield, null, "bAAt1N_AddressSubtopic_viewBalcony_ReestablishStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(413, Grace.__$behaviorFactory1_rfield, Grace.__$precondition0_rfield, null, "bAAt1N_AddressSubtopic_viewBalcony_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(414, Grace.__$behaviorFactory1_rfield, null, null, "bAAt1N_AddressSubtopic_viewBalcony_BodyStuff2(boolean)", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(415, Grace.__$behaviorFactory1_rfield, Grace.__$precondition0_rfield, null, "bAAt1N_AddressSubtopic_viewBalcony_part2_ReestablishStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(416, Grace.__$behaviorFactory1_rfield, Grace.__$precondition0_rfield, null, "bAAt1N_AddressSubtopic_viewBalcony_part2_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(417, Grace.__$behaviorFactory1_rfield, null, null, "bAAt1N_AddressSubtopic_viewBalcony_part2_BodyStuff2(boolean)", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(418, Grace.__$behaviorFactory1_rfield, Grace.__$precondition0_rfield, null, "bAAt1N_AddressSubtopic_miscObj_RewindStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(419, Grace.__$behaviorFactory1_rfield, Grace.__$precondition0_rfield, null, "bAAt1N_AddressSubtopic_miscObj_ReestablishStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(420, Grace.__$behaviorFactory1_rfield, Grace.__$precondition0_rfield, null, "bAAt1N_AddressSubtopic_miscObj_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(421, Grace.__$behaviorFactory1_rfield, null, null, "bAAt1N_AddressSubtopic_miscObj_BodyStuff2(boolean)", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(422, Grace.__$behaviorFactory1_rfield, Grace.__$precondition0_rfield, null, "bAAt1N_AddressSubtopic_miscObj_part2_ReestablishStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(423, Grace.__$behaviorFactory1_rfield, Grace.__$precondition0_rfield, null, "bAAt1N_AddressSubtopic_miscObj_part2_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(424, Grace.__$behaviorFactory1_rfield, null, null, "bAAt1N_AddressSubtopic_miscObj_part2_BodyStuff2(boolean)", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(425, Grace.__$behaviorFactory1_rfield, Grace.__$precondition0_rfield, null, "bAAt1N_WaitTimeout_ReestablishStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(426, Grace.__$behaviorFactory1_rfield, null, null, "bAAt1N_WaitTimeout_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(427, Grace.__$behaviorFactory1_rfield, null, null, "bAAt1N_TxnOut_NoAffinityChange_posSpin_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(428, Grace.__$behaviorFactory1_rfield, null, null, "bAAt1N_TxnOut_NoAffinityChange_posSpin_BodyStuff2()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(429, Grace.__$behaviorFactory1_rfield, null, null, "bAAt1N_TxnOut_NoAffinityChange_posSpin_BodyStuff3()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(430, Grace.__$behaviorFactory1_rfield, null, null, "bAAt1N_TxnOut_NoAffinityChange_negSpin_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(431, Grace.__$behaviorFactory1_rfield, null, null, "bAAt1N_TxnOut_NoAffinityChange_negSpin_BodyStuff2()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(432, Grace.__$behaviorFactory1_rfield, null, null, "bAAt1N_TxnOut_NoAffinityChange_negSpin_BodyStuff3()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(433, Grace.__$behaviorFactory1_rfield, null, null, "bAAt1N_TxnOut_NoAffinityChange_negSpinPaintings_BodyStuff1b()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(434, Grace.__$behaviorFactory1_rfield, null, null, "bAAt1N_TxnOut_NoAffinityChange_negSpinPaintings_BodyStuff2()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(435, Grace.__$behaviorFactory1_rfield, Grace.__$precondition0_rfield, null, "bAAt1N_TxnOut_NoAffinityChange_negSpinPaintings_BodyStuff2b()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(436, Grace.__$behaviorFactory1_rfield, null, null, "bAAt1N_TxnOut_NoAffinityChange_negSpinPaintings_BodyStuff3()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(437, Grace.__$behaviorFactory1_rfield, null, null, "bAAt1N_TxnOut_LeanToGPA_posSpin_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(438, Grace.__$behaviorFactory1_rfield, null, null, "bAAt1N_TxnOut_LeanToGPA_posSpin_BodyStuff2()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(439, Grace.__$behaviorFactory1_rfield, null, null, "bAAt1N_TxnOut_LeanToGPA_posSpin_BodyStuff3()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(440, Grace.__$behaviorFactory1_rfield, null, null, "bAAt1N_TxnOut_LeanToGPA_posSpin_BodyStuff4()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(441, Grace.__$behaviorFactory1_rfield, null, null, "bAAt1N_TxnOut_LeanToGPA_posSpin_BodyStuff5()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(442, Grace.__$behaviorFactory1_rfield, null, null, "bAAt1N_TxnOut_LeanToGPA_posSpin_BodyStuff6()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(443, Grace.__$behaviorFactory1_rfield, null, null, "bAAt1N_TxnOut_LeanToGPA_negSpin_BodyStuff5()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(445, Grace.__$behaviorFactory1_rfield, null, null, "bAAt1N_TxnOut_LeanToGPA_negSpin_BodyStuff6()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(446, Grace.__$behaviorFactory1_rfield, Grace.__$precondition0_rfield, null, "bAAt1N_TxnOut_LeanToTPA_posSpin_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(447, Grace.__$behaviorFactory1_rfield, Grace.__$precondition0_rfield, null, "bAAt1N_TxnOut_LeanToTPA_posSpin_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(448, Grace.__$behaviorFactory1_rfield, null, null, "bAAt1N_TxnOut_LeanToTPA_posSpin_BodyStuff2()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(449, Grace.__$behaviorFactory1_rfield, null, null, "bAAt1N_TxnOut_LeanToTPA_posSpin_BodyStuff3()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(450, Grace.__$behaviorFactory1_rfield, null, null, "bAAt1N_TxnOut_LeanToTPA_posSpin_BodyStuff4()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(451, Grace.__$behaviorFactory1_rfield, null, null, "bAAt1N_TxnOut_LeanToTPA_posSpin_BodyStuff5()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(452, Grace.__$behaviorFactory2_rfield, null, null, "bAAt1N_TxnOut_LeanToTPA_negSpin_BodyStuff2()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(453, Grace.__$behaviorFactory2_rfield, null, null, "bAAt1N_TxnOut_LeanToTPA_negSpin_BodyStuff3()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(454, Grace.__$behaviorFactory2_rfield, null, null, "bAAt1N_TxnOut_LeanToTPA_negSpin_BodyStuff4()", new String[] { "Trip", "Grace" }, (short)1));
behaviorLibrary.registerBehavior(new __BehaviorDesc(455, Grace.__$behaviorFactory2_rfield, Grace.__$precondition0_rfield, null, "bAAt1N_TxnOut_LeanToTPA_negSpin_BodyStuff4()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(456, Grace.__$behaviorFactory2_rfield, Grace.__$precondition0_rfield, Grace.__$preconditionSensorFactory0_rfield, "bAAt1N_TxnOut_LeanToTPA_negSpin_BodyStuff4()", new String[] { "Trip", "Grace" }, (short)2));
behaviorLibrary.registerBehavior(new __BehaviorDesc(457, Grace.__$behaviorFactory2_rfield, Grace.__$precondition0_rfield, null, "bAAt1N_TxnOut_LeanToTPA_negSpinPaintings_BodyStuff3()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(458, Grace.__$behaviorFactory2_rfield, Grace.__$precondition0_rfield, null, "bAAt1N_TxnOut_LeanToTPA_negSpinPaintings_BodyStuff4()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(459, Grace.__$behaviorFactory2_rfield, null, null, "bAAt1N_TxnOut_LeanToTPA_negSpinPaintings_BodyStuff5()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(460, Grace.__$behaviorFactory2_rfield, null, null, "bAAt1N_Mixin_TellMeMore_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(461, Grace.__$behaviorFactory2_rfield, null, null, "bAAt1N_Mixin_TellMeMore_BodyStuff2()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(462, Grace.__$behaviorFactory2_rfield, null, null, "bAAt1N_Mixin_SetSubtopicDuringTxnIn_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(463, Grace.__$behaviorFactory2_rfield, null, null, "bAAt1N_Mixin_GetWantedCriticism_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(464, Grace.__$behaviorFactory2_rfield, null, null, "bAAt1N_Mixin_GetUnwantedPraise_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(465, Grace.__$behaviorFactory2_rfield, null, null, "bAAt1N_Mixin_GetUnwantedPraise_BodyStuff2()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(466, Grace.__$behaviorFactory2_rfield, null, null, "bAAt1N_Mixin_LookAndIgnore_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(467, Grace.__$behaviorFactory2_rfield, null, null, "bAAt1N_test_TxnIn_NoSubtopic_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(469, Grace.__$behaviorFactory2_rfield, null, null, "bAAt1N_test_Mixin_TellMeMore_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(471, Grace.__$behaviorFactory2_rfield, Grace.__$precondition0_rfield, null, "BeatInit()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(472, Grace.__$behaviorFactory2_rfield, null, null, "bAAt1GPA_TxnIn_NoSubtopic_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(475, Grace.__$behaviorFactory2_rfield, null, null, "bAAt1GPA_TxnIn_NoSubtopic_BodyStuff4()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(476, Grace.__$behaviorFactory2_rfield, null, null, "bAAt1GPA_TxnIn_GivenSubtopic_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(477, Grace.__$behaviorFactory2_rfield, null, null, "bAAt1GPA_TxnIn_REPEAT_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(478, Grace.__$behaviorFactory2_rfield, Grace.__$precondition0_rfield, null, "bAAt1GPA_TxnIn_InTripletAffinitySwitch_BodyStuff()", new String[] { "Trip", "Grace" }, (short)2));
behaviorLibrary.registerBehavior(new __BehaviorDesc(479, Grace.__$behaviorFactory2_rfield, null, null, "bAAt1GPA_TxnIn_InTripletAffinitySwitch_BodyStuff()", new String[] { "Trip", "Grace" }, (short)1));
behaviorLibrary.registerBehavior(new __BehaviorDesc(480, Grace.__$behaviorFactory2_rfield, Grace.__$precondition0_rfield, null, "bAAt1GPA_AddressSubtopic_style_RewindStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(481, Grace.__$behaviorFactory2_rfield, Grace.__$precondition0_rfield, null, "bAAt1GPA_AddressSubtopic_style_ReestablishStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(482, Grace.__$behaviorFactory2_rfield, Grace.__$precondition0_rfield, null, "bAAt1GPA_AddressSubtopic_style_BodyStuff(boolean)", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(484, Grace.__$behaviorFactory2_rfield, null, null, "bAAt1GPA_AddressSubtopic_style_part2_ReestablishStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(485, Grace.__$behaviorFactory2_rfield, null, null, "bAAt1GPA_AddressSubtopic_style_part2_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(486, Grace.__$behaviorFactory2_rfield, null, null, "bAAt1GPA_AddressSubtopic_style_part2_BodyStuff2(boolean)", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(487, Grace.__$behaviorFactory2_rfield, Grace.__$precondition0_rfield, null, "bAAt1GPA_AddressSubtopic_couch_RewindStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(488, Grace.__$behaviorFactory2_rfield, Grace.__$precondition0_rfield, null, "bAAt1GPA_AddressSubtopic_couch_ReestablishStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(489, Grace.__$behaviorFactory2_rfield, Grace.__$precondition0_rfield, null, "bAAt1GPA_AddressSubtopic_couch_BodyStuff(boolean)", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(490, Grace.__$behaviorFactory2_rfield, Grace.__$precondition0_rfield, null, "bAAt1GPA_AddressSubtopic_couch_part2_ReestablishStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(491, Grace.__$behaviorFactory2_rfield, Grace.__$precondition0_rfield, null, "bAAt1GPA_AddressSubtopic_couch_part2_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(492, Grace.__$behaviorFactory2_rfield, null, null, "bAAt1GPA_AddressSubtopic_couch_part2_BodyStuff2(boolean)", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(493, Grace.__$behaviorFactory2_rfield, Grace.__$precondition0_rfield, null, "bAAt1GPA_AddressSubtopic_armoire_RewindStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(494, Grace.__$behaviorFactory2_rfield, Grace.__$precondition0_rfield, null, "bAAt1GPA_AddressSubtopic_armoire_ReestablishStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(495, Grace.__$behaviorFactory2_rfield, Grace.__$precondition0_rfield, null, "bAAt1GPA_AddressSubtopic_armoire_BodyStuff(boolean)", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(496, Grace.__$behaviorFactory2_rfield, Grace.__$precondition0_rfield, null, "bAAt1GPA_AddressSubtopic_armoire_part2_ReestablishStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(497, Grace.__$behaviorFactory2_rfield, Grace.__$precondition0_rfield, null, "bAAt1GPA_AddressSubtopic_armoire_part2_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(498, Grace.__$behaviorFactory2_rfield, null, null, "bAAt1GPA_AddressSubtopic_armoire_part2_BodyStuff2(boolean)", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(499, Grace.__$behaviorFactory2_rfield, Grace.__$precondition0_rfield, null, "bAAt1GPA_AddressSubtopic_trinkets_RewindStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(500, Grace.__$behaviorFactory2_rfield, Grace.__$precondition0_rfield, null, "bAAt1GPA_AddressSubtopic_trinkets_ReestablishStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(501, Grace.__$behaviorFactory2_rfield, Grace.__$precondition0_rfield, null, "bAAt1GPA_AddressSubtopic_trinkets_BodyStuff(boolean)", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(502, Grace.__$behaviorFactory2_rfield, Grace.__$precondition0_rfield, null, "bAAt1GPA_AddressSubtopic_trinkets_part2_ReestablishStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(503, Grace.__$behaviorFactory2_rfield, Grace.__$precondition0_rfield, null, "bAAt1GPA_AddressSubtopic_trinkets_part2_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(504, Grace.__$behaviorFactory2_rfield, null, null, "bAAt1GPA_AddressSubtopic_trinkets_part2_BodyStuff2(boolean)", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(505, Grace.__$behaviorFactory2_rfield, Grace.__$precondition0_rfield, null, "bAAt1GPA_AddressSubtopic_weddingPic_RewindStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(506, Grace.__$behaviorFactory2_rfield, Grace.__$precondition0_rfield, null, "bAAt1GPA_AddressSubtopic_weddingPic_ReestablishStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(507, Grace.__$behaviorFactory2_rfield, Grace.__$precondition0_rfield, null, "bAAt1GPA_AddressSubtopic_weddingPic_BodyStuff(boolean)", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(508, Grace.__$behaviorFactory2_rfield, Grace.__$precondition0_rfield, null, "bAAt1GPA_AddressSubtopic_weddingPic_part2_ReestablishStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(509, Grace.__$behaviorFactory2_rfield, Grace.__$precondition0_rfield, null, "bAAt1GPA_AddressSubtopic_weddingPic_part2_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(510, Grace.__$behaviorFactory2_rfield, null, null, "bAAt1GPA_AddressSubtopic_weddingPic_part2_BodyStuff2(boolean)", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(511, Grace.__$behaviorFactory2_rfield, Grace.__$precondition0_rfield, null, "bAAt1GPA_AddressSubtopic_painting_RewindStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(512, Grace.__$behaviorFactory2_rfield, Grace.__$precondition0_rfield, null, "bAAt1GPA_AddressSubtopic_painting_ReestablishStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(513, Grace.__$behaviorFactory2_rfield, Grace.__$precondition0_rfield, null, "bAAt1GPA_AddressSubtopic_painting_BodyStuff(boolean)", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(514, Grace.__$behaviorFactory2_rfield, Grace.__$precondition0_rfield, null, "bAAt1GPA_AddressSubtopic_painting_part2_ReestablishStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(515, Grace.__$behaviorFactory2_rfield, Grace.__$precondition0_rfield, null, "bAAt1GPA_AddressSubtopic_painting_part2_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(516, Grace.__$behaviorFactory2_rfield, null, null, "bAAt1GPA_AddressSubtopic_painting_part2_BodyStuff2(boolean)", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(517, Grace.__$behaviorFactory2_rfield, Grace.__$precondition0_rfield, null, "bAAt1GPA_AddressSubtopic_viewBalcony_RewindStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(518, Grace.__$behaviorFactory2_rfield, Grace.__$precondition0_rfield, null, "bAAt1GPA_AddressSubtopic_viewBalcony_ReestablishStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(519, Grace.__$behaviorFactory2_rfield, Grace.__$precondition0_rfield, null, "bAAt1GPA_AddressSubtopic_viewBalcony_BodyStuff(boolean)", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(520, Grace.__$behaviorFactory2_rfield, Grace.__$precondition0_rfield, null, "bAAt1GPA_AddressSubtopic_viewBalcony_part2_ReestablishStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(521, Grace.__$behaviorFactory2_rfield, Grace.__$precondition0_rfield, null, "bAAt1GPA_AddressSubtopic_viewBalcony_part2_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(522, Grace.__$behaviorFactory2_rfield, null, null, "bAAt1GPA_AddressSubtopic_viewBalcony_part2_BodyStuff2(boolean)", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(523, Grace.__$behaviorFactory2_rfield, Grace.__$precondition0_rfield, null, "bAAt1GPA_AddressSubtopic_miscObj_RewindStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(524, Grace.__$behaviorFactory2_rfield, Grace.__$precondition0_rfield, null, "bAAt1GPA_AddressSubtopic_miscObj_ReestablishStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(525, Grace.__$behaviorFactory2_rfield, Grace.__$precondition0_rfield, null, "bAAt1GPA_AddressSubtopic_miscObj_BodyStuff(boolean)", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(526, Grace.__$behaviorFactory2_rfield, Grace.__$precondition0_rfield, null, "bAAt1GPA_AddressSubtopic_miscObj_part2_ReestablishStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(527, Grace.__$behaviorFactory2_rfield, Grace.__$precondition0_rfield, null, "bAAt1GPA_AddressSubtopic_miscObj_part2_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(528, Grace.__$behaviorFactory2_rfield, null, null, "bAAt1GPA_AddressSubtopic_miscObj_part2_BodyStuff2(boolean)", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(529, Grace.__$behaviorFactory2_rfield, Grace.__$precondition0_rfield, null, "bAAt1GPA_WaitTimeout_ReestablishStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(530, Grace.__$behaviorFactory2_rfield, null, null, "bAAt1GPA_WaitTimeout_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(531, Grace.__$behaviorFactory2_rfield, null, null, "bAAt1GPA_TxnOut_NoAffinityChange_posSpin_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(532, Grace.__$behaviorFactory2_rfield, null, null, "bAAt1GPA_TxnOut_NoAffinityChange_posSpin_BodyStuff2()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(533, Grace.__$behaviorFactory2_rfield, null, null, "bAAt1GPA_TxnOut_NoAffinityChange_posSpin_BodyStuff3()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(534, Grace.__$behaviorFactory2_rfield, null, null, "bAAt1GPA_TxnOut_NoAffinityChange_negSpin_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(535, Grace.__$behaviorFactory2_rfield, null, null, "bAAt1GPA_TxnOut_NoAffinityChange_negSpin_BodyStuff2()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(536, Grace.__$behaviorFactory2_rfield, null, null, "bAAt1GPA_TxnOut_NoAffinityChange_negSpin_BodyStuff3()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(537, Grace.__$behaviorFactory2_rfield, null, null, "bAAt1GPA_TxnOut_NoAffinityChange_negSpinPaintings_BodyStuff1b()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(538, Grace.__$behaviorFactory2_rfield, null, null, "bAAt1GPA_TxnOut_NoAffinityChange_negSpinPaintings_BodyStuff2()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(541, Grace.__$behaviorFactory2_rfield, Grace.__$precondition0_rfield, null, "bAAt1GPA_TxnOut_NoAffinityChange_negSpinPaintings_BodyStuff2b()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(542, Grace.__$behaviorFactory2_rfield, null, null, "bAAt1GPA_TxnOut_NoAffinityChange_negSpinPaintings_BodyStuff3()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(543, Grace.__$behaviorFactory2_rfield, null, null, "bAAt1GPA_TxnOut_LeanToGPA_posSpin_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(544, Grace.__$behaviorFactory2_rfield, null, null, "bAAt1GPA_TxnOut_LeanToGPA_posSpin_BodyStuff2()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(545, Grace.__$behaviorFactory2_rfield, null, null, "bAAt1GPA_TxnOut_LeanToGPA_posSpin_BodyStuff3()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(547, Grace.__$behaviorFactory2_rfield, null, null, "bAAt1GPA_TxnOut_LeanToGPA_posSpin_BodyStuff5()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(548, Grace.__$behaviorFactory2_rfield, null, null, "bAAt1GPA_TxnOut_LeanToGPA_posSpin_BodyStuff6()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(549, Grace.__$behaviorFactory2_rfield, null, null, "bAAt1GPA_TxnOut_LeanToGPA_negSpin_BodyStuff5()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(551, Grace.__$behaviorFactory2_rfield, null, null, "bAAt1GPA_TxnOut_LeanToGPA_negSpin_BodyStuff6()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(552, Grace.__$behaviorFactory2_rfield, Grace.__$precondition0_rfield, null, "bAAt1GPA_TxnOut_LeanToTPA_posSpin_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(553, Grace.__$behaviorFactory2_rfield, Grace.__$precondition0_rfield, null, "bAAt1GPA_TxnOut_LeanToTPA_posSpin_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(554, Grace.__$behaviorFactory2_rfield, null, null, "bAAt1GPA_TxnOut_LeanToTPA_posSpin_BodyStuff2()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(555, Grace.__$behaviorFactory2_rfield, null, null, "bAAt1GPA_TxnOut_LeanToTPA_posSpin_BodyStuff3()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(556, Grace.__$behaviorFactory2_rfield, null, null, "bAAt1GPA_TxnOut_LeanToTPA_posSpin_BodyStuff4()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(557, Grace.__$behaviorFactory2_rfield, null, null, "bAAt1GPA_TxnOut_LeanToTPA_posSpin_BodyStuff5()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(558, Grace.__$behaviorFactory2_rfield, null, null, "bAAt1GPA_TxnOut_LeanToTPA_negSpin_BodyStuff2()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(559, Grace.__$behaviorFactory2_rfield, null, null, "bAAt1GPA_TxnOut_LeanToTPA_negSpin_BodyStuff3()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(561, Grace.__$behaviorFactory2_rfield, Grace.__$precondition0_rfield, null, "bAAt1GPA_TxnOut_LeanToTPA_negSpinPaintings_BodyStuff3()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(562, Grace.__$behaviorFactory2_rfield, Grace.__$precondition0_rfield, null, "bAAt1GPA_TxnOut_LeanToTPA_negSpinPaintings_BodyStuff4()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(563, Grace.__$behaviorFactory2_rfield, null, null, "bAAt1GPA_TxnOut_LeanToTPA_negSpinPaintings_BodyStuff5()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(564, Grace.__$behaviorFactory2_rfield, null, null, "bAAt1GPA_Mixin_TellMeMore_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(565, Grace.__$behaviorFactory2_rfield, null, null, "bAAt1GPA_Mixin_TellMeMore_BodyStuff2()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(566, Grace.__$behaviorFactory2_rfield, null, null, "bAAt1GPA_Mixin_SetSubtopicDuringTxnIn_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(567, Grace.__$behaviorFactory2_rfield, null, null, "bAAt1GPA_Mixin_GetWantedCriticism_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(568, Grace.__$behaviorFactory2_rfield, null, null, "bAAt1GPA_Mixin_GetUnwantedPraise_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(569, Grace.__$behaviorFactory2_rfield, null, null, "bAAt1GPA_Mixin_GetUnwantedPraise_BodyStuff2()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(570, Grace.__$behaviorFactory2_rfield, null, null, "bAAt1GPA_Mixin_LookAndIgnore_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(571, Grace.__$behaviorFactory2_rfield, Grace.__$precondition0_rfield, null, "BeatInit()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(572, Grace.__$behaviorFactory2_rfield, null, null, "bAAt1TPA_TxnIn_NoSubtopic_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(573, Grace.__$behaviorFactory2_rfield, Grace.__$precondition0_rfield, null, "bAAt1TPA_TxnIn_NoSubtopic_BodyStuff3()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(574, Grace.__$behaviorFactory2_rfield, null, null, "bAAt1TPA_TxnIn_GivenSubtopic_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(575, Grace.__$behaviorFactory2_rfield, null, null, "bAAt1TPA_TxnIn_REPEAT_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(576, Grace.__$behaviorFactory2_rfield, Grace.__$precondition0_rfield, null, "bAAt1TPA_TxnIn_InTripletAffinitySwitch_BodyStuff()", new String[] { "Trip", "Grace" }, (short)2));
behaviorLibrary.registerBehavior(new __BehaviorDesc(577, Grace.__$behaviorFactory2_rfield, null, null, "bAAt1TPA_TxnIn_InTripletAffinitySwitch_BodyStuff()", new String[] { "Trip", "Grace" }, (short)1));
behaviorLibrary.registerBehavior(new __BehaviorDesc(578, Grace.__$behaviorFactory2_rfield, Grace.__$precondition0_rfield, null, "bAAt1TPA_AddressSubtopic_style_RewindStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(579, Grace.__$behaviorFactory2_rfield, Grace.__$precondition0_rfield, null, "bAAt1TPA_AddressSubtopic_style_ReestablishStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(580, Grace.__$behaviorFactory2_rfield, Grace.__$precondition0_rfield, null, "bAAt1TPA_AddressSubtopic_style_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(581, Grace.__$behaviorFactory2_rfield, null, null, "bAAt1TPA_AddressSubtopic_style_BodyStuff2(boolean)", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(582, Grace.__$behaviorFactory2_rfield, null, null, "bAAt1TPA_AddressSubtopic_style_part2_ReestablishStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(583, Grace.__$behaviorFactory2_rfield, null, null, "bAAt1TPA_AddressSubtopic_style_part2_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(584, Grace.__$behaviorFactory2_rfield, null, null, "bAAt1TPA_AddressSubtopic_style_part2_BodyStuff2(boolean)", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(585, Grace.__$behaviorFactory2_rfield, Grace.__$precondition0_rfield, null, "bAAt1TPA_AddressSubtopic_couch_RewindStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(586, Grace.__$behaviorFactory2_rfield, Grace.__$precondition0_rfield, null, "bAAt1TPA_AddressSubtopic_couch_ReestablishStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(587, Grace.__$behaviorFactory2_rfield, Grace.__$precondition0_rfield, null, "bAAt1TPA_AddressSubtopic_couch_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(588, Grace.__$behaviorFactory2_rfield, null, null, "bAAt1TPA_AddressSubtopic_couch_BodyStuff2(boolean)", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(589, Grace.__$behaviorFactory2_rfield, Grace.__$precondition0_rfield, null, "bAAt1TPA_AddressSubtopic_couch_part2_ReestablishStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(590, Grace.__$behaviorFactory2_rfield, Grace.__$precondition0_rfield, null, "bAAt1TPA_AddressSubtopic_couch_part2_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(591, Grace.__$behaviorFactory2_rfield, null, null, "bAAt1TPA_AddressSubtopic_couch_part2_BodyStuff2(boolean)", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(592, Grace.__$behaviorFactory2_rfield, Grace.__$precondition0_rfield, null, "bAAt1TPA_AddressSubtopic_armoire_RewindStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(593, Grace.__$behaviorFactory2_rfield, Grace.__$precondition0_rfield, null, "bAAt1TPA_AddressSubtopic_armoire_ReestablishStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(594, Grace.__$behaviorFactory2_rfield, Grace.__$precondition0_rfield, null, "bAAt1TPA_AddressSubtopic_armoire_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(595, Grace.__$behaviorFactory2_rfield, null, null, "bAAt1TPA_AddressSubtopic_armoire_BodyStuff2(boolean)", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(596, Grace.__$behaviorFactory2_rfield, Grace.__$precondition0_rfield, null, "bAAt1TPA_AddressSubtopic_armoire_part2_ReestablishStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(597, Grace.__$behaviorFactory2_rfield, Grace.__$precondition0_rfield, null, "bAAt1TPA_AddressSubtopic_armoire_part2_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(598, Grace.__$behaviorFactory2_rfield, null, null, "bAAt1TPA_AddressSubtopic_armoire_part2_BodyStuff2(boolean)", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(599, Grace.__$behaviorFactory2_rfield, Grace.__$precondition0_rfield, null, "bAAt1TPA_AddressSubtopic_trinkets_RewindStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(600, Grace.__$behaviorFactory2_rfield, Grace.__$precondition0_rfield, null, "bAAt1TPA_AddressSubtopic_trinkets_ReestablishStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(601, Grace.__$behaviorFactory2_rfield, Grace.__$precondition0_rfield, null, "bAAt1TPA_AddressSubtopic_trinkets_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(602, Grace.__$behaviorFactory2_rfield, null, null, "bAAt1TPA_AddressSubtopic_trinkets_BodyStuff2(boolean)", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(603, Grace.__$behaviorFactory2_rfield, Grace.__$precondition0_rfield, null, "bAAt1TPA_AddressSubtopic_trinkets_part2_ReestablishStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(604, Grace.__$behaviorFactory2_rfield, Grace.__$precondition0_rfield, null, "bAAt1TPA_AddressSubtopic_trinkets_part2_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(605, Grace.__$behaviorFactory2_rfield, null, null, "bAAt1TPA_AddressSubtopic_trinkets_part2_BodyStuff2(boolean)", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(606, Grace.__$behaviorFactory2_rfield, Grace.__$precondition0_rfield, null, "bAAt1TPA_AddressSubtopic_weddingPic_RewindStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(607, Grace.__$behaviorFactory2_rfield, Grace.__$precondition0_rfield, null, "bAAt1TPA_AddressSubtopic_weddingPic_ReestablishStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(608, Grace.__$behaviorFactory2_rfield, Grace.__$precondition0_rfield, null, "bAAt1TPA_AddressSubtopic_weddingPic_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(609, Grace.__$behaviorFactory2_rfield, Grace.__$precondition0_rfield, null, "bAAt1TPA_AddressSubtopic_weddingPic_BodyStuff2(boolean)", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(610, Grace.__$behaviorFactory2_rfield, Grace.__$precondition0_rfield, null, "bAAt1TPA_AddressSubtopic_weddingPic_part2_ReestablishStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(611, Grace.__$behaviorFactory2_rfield, Grace.__$precondition0_rfield, null, "bAAt1TPA_AddressSubtopic_weddingPic_part2_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(612, Grace.__$behaviorFactory2_rfield, null, null, "bAAt1TPA_AddressSubtopic_weddingPic_part2_BodyStuff2(boolean)", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(613, Grace.__$behaviorFactory2_rfield, Grace.__$precondition0_rfield, null, "bAAt1TPA_AddressSubtopic_painting_RewindStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(614, Grace.__$behaviorFactory2_rfield, Grace.__$precondition0_rfield, null, "bAAt1TPA_AddressSubtopic_painting_ReestablishStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(615, Grace.__$behaviorFactory2_rfield, Grace.__$precondition0_rfield, null, "bAAt1TPA_AddressSubtopic_painting_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(616, Grace.__$behaviorFactory2_rfield, null, null, "bAAt1TPA_AddressSubtopic_painting_BodyStuff2(boolean)", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(617, Grace.__$behaviorFactory2_rfield, Grace.__$precondition0_rfield, null, "bAAt1TPA_AddressSubtopic_painting_part2_ReestablishStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(618, Grace.__$behaviorFactory2_rfield, Grace.__$precondition0_rfield, null, "bAAt1TPA_AddressSubtopic_painting_part2_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(619, Grace.__$behaviorFactory2_rfield, null, null, "bAAt1TPA_AddressSubtopic_painting_part2_BodyStuff2(boolean)", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(620, Grace.__$behaviorFactory2_rfield, Grace.__$precondition0_rfield, null, "bAAt1TPA_AddressSubtopic_viewBalcony_RewindStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(621, Grace.__$behaviorFactory2_rfield, Grace.__$precondition0_rfield, null, "bAAt1TPA_AddressSubtopic_viewBalcony_ReestablishStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(622, Grace.__$behaviorFactory2_rfield, Grace.__$precondition0_rfield, null, "bAAt1TPA_AddressSubtopic_viewBalcony_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(623, Grace.__$behaviorFactory2_rfield, null, null, "bAAt1TPA_AddressSubtopic_viewBalcony_BodyStuff2(boolean)", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(624, Grace.__$behaviorFactory2_rfield, Grace.__$precondition0_rfield, null, "bAAt1TPA_AddressSubtopic_viewBalcony_part2_ReestablishStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(625, Grace.__$behaviorFactory2_rfield, Grace.__$precondition0_rfield, null, "bAAt1TPA_AddressSubtopic_viewBalcony_part2_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(626, Grace.__$behaviorFactory2_rfield, null, null, "bAAt1TPA_AddressSubtopic_viewBalcony_part2_BodyStuff2(boolean)", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(627, Grace.__$behaviorFactory2_rfield, Grace.__$precondition0_rfield, null, "bAAt1TPA_AddressSubtopic_miscObj_RewindStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(628, Grace.__$behaviorFactory2_rfield, Grace.__$precondition0_rfield, null, "bAAt1TPA_AddressSubtopic_miscObj_ReestablishStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(629, Grace.__$behaviorFactory2_rfield, Grace.__$precondition0_rfield, null, "bAAt1TPA_AddressSubtopic_miscObj_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(630, Grace.__$behaviorFactory2_rfield, null, null, "bAAt1TPA_AddressSubtopic_miscObj_BodyStuff2(boolean)", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(631, Grace.__$behaviorFactory2_rfield, Grace.__$precondition0_rfield, null, "bAAt1TPA_AddressSubtopic_miscObj_part2_ReestablishStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(632, Grace.__$behaviorFactory2_rfield, Grace.__$precondition0_rfield, null, "bAAt1TPA_AddressSubtopic_miscObj_part2_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(633, Grace.__$behaviorFactory2_rfield, null, null, "bAAt1TPA_AddressSubtopic_miscObj_part2_BodyStuff2(boolean)", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(634, Grace.__$behaviorFactory2_rfield, Grace.__$precondition0_rfield, null, "bAAt1TPA_WaitTimeout_ReestablishStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(635, Grace.__$behaviorFactory2_rfield, null, null, "bAAt1TPA_WaitTimeout_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(636, Grace.__$behaviorFactory2_rfield, null, null, "bAAt1TPA_TxnOut_NoAffinityChange_posSpin_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(637, Grace.__$behaviorFactory2_rfield, null, null, "bAAt1TPA_TxnOut_NoAffinityChange_posSpin_BodyStuff2()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(638, Grace.__$behaviorFactory2_rfield, null, null, "bAAt1TPA_TxnOut_NoAffinityChange_posSpin_BodyStuff3()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(639, Grace.__$behaviorFactory2_rfield, null, null, "bAAt1TPA_TxnOut_NoAffinityChange_negSpin_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(640, Grace.__$behaviorFactory2_rfield, null, null, "bAAt1TPA_TxnOut_NoAffinityChange_negSpin_BodyStuff2()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(641, Grace.__$behaviorFactory2_rfield, null, null, "bAAt1TPA_TxnOut_NoAffinityChange_negSpin_BodyStuff3()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(642, Grace.__$behaviorFactory2_rfield, null, null, "bAAt1TPA_TxnOut_NoAffinityChange_negSpinPaintings_BodyStuff1b()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(643, Grace.__$behaviorFactory2_rfield, null, null, "bAAt1TPA_TxnOut_NoAffinityChange_negSpinPaintings_BodyStuff2()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(644, Grace.__$behaviorFactory2_rfield, Grace.__$precondition0_rfield, null, "bAAt1TPA_TxnOut_NoAffinityChange_negSpinPaintings_BodyStuff2b()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(645, Grace.__$behaviorFactory2_rfield, null, null, "bAAt1TPA_TxnOut_NoAffinityChange_negSpinPaintings_BodyStuff3()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(646, Grace.__$behaviorFactory2_rfield, null, null, "bAAt1TPA_TxnOut_LeanToGPA_posSpin_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(647, Grace.__$behaviorFactory2_rfield, null, null, "bAAt1TPA_TxnOut_LeanToGPA_posSpin_BodyStuff2()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(648, Grace.__$behaviorFactory2_rfield, null, null, "bAAt1TPA_TxnOut_LeanToGPA_posSpin_BodyStuff3()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(649, Grace.__$behaviorFactory2_rfield, null, null, "bAAt1TPA_TxnOut_LeanToGPA_posSpin_BodyStuff4()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(650, Grace.__$behaviorFactory2_rfield, null, null, "bAAt1TPA_TxnOut_LeanToGPA_posSpin_BodyStuff5()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(651, Grace.__$behaviorFactory2_rfield, null, null, "bAAt1TPA_TxnOut_LeanToGPA_posSpin_BodyStuff6()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(652, Grace.__$behaviorFactory2_rfield, null, null, "bAAt1TPA_TxnOut_LeanToGPA_negSpin_BodyStuff5()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(654, Grace.__$behaviorFactory2_rfield, null, null, "bAAt1TPA_TxnOut_LeanToGPA_negSpin_BodyStuff6()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(655, Grace.__$behaviorFactory2_rfield, Grace.__$precondition0_rfield, null, "bAAt1TPA_TxnOut_LeanToTPA_posSpin_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(656, Grace.__$behaviorFactory2_rfield, Grace.__$precondition0_rfield, null, "bAAt1TPA_TxnOut_LeanToTPA_posSpin_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(657, Grace.__$behaviorFactory2_rfield, null, null, "bAAt1TPA_TxnOut_LeanToTPA_posSpin_BodyStuff2()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(658, Grace.__$behaviorFactory2_rfield, null, null, "bAAt1TPA_TxnOut_LeanToTPA_posSpin_BodyStuff3()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(659, Grace.__$behaviorFactory2_rfield, null, null, "bAAt1TPA_TxnOut_LeanToTPA_posSpin_BodyStuff4()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(660, Grace.__$behaviorFactory2_rfield, null, null, "bAAt1TPA_TxnOut_LeanToTPA_posSpin_BodyStuff5()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(661, Grace.__$behaviorFactory2_rfield, null, null, "bAAt1TPA_TxnOut_LeanToTPA_negSpin_BodyStuff2()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(662, Grace.__$behaviorFactory2_rfield, null, null, "bAAt1TPA_TxnOut_LeanToTPA_negSpin_BodyStuff3()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(663, Grace.__$behaviorFactory2_rfield, null, null, "bAAt1TPA_TxnOut_LeanToTPA_negSpin_BodyStuff4()", new String[] { "Trip", "Grace" }, (short)1));
behaviorLibrary.registerBehavior(new __BehaviorDesc(664, Grace.__$behaviorFactory2_rfield, Grace.__$precondition0_rfield, null, "bAAt1TPA_TxnOut_LeanToTPA_negSpin_BodyStuff4()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(665, Grace.__$behaviorFactory2_rfield, Grace.__$precondition0_rfield, Grace.__$preconditionSensorFactory0_rfield, "bAAt1TPA_TxnOut_LeanToTPA_negSpin_BodyStuff4()", new String[] { "Trip", "Grace" }, (short)2));
behaviorLibrary.registerBehavior(new __BehaviorDesc(666, Grace.__$behaviorFactory2_rfield, Grace.__$precondition0_rfield, null, "bAAt1TPA_TxnOut_LeanToTPA_negSpinPaintings_BodyStuff3()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(667, Grace.__$behaviorFactory2_rfield, Grace.__$precondition0_rfield, null, "bAAt1TPA_TxnOut_LeanToTPA_negSpinPaintings_BodyStuff4()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(668, Grace.__$behaviorFactory2_rfield, null, null, "bAAt1TPA_TxnOut_LeanToTPA_negSpinPaintings_BodyStuff5()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(669, Grace.__$behaviorFactory2_rfield, null, null, "bAAt1TPA_Mixin_TellMeMore_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(670, Grace.__$behaviorFactory2_rfield, null, null, "bAAt1TPA_Mixin_TellMeMore_BodyStuff2()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(671, Grace.__$behaviorFactory2_rfield, null, null, "bAAt1TPA_Mixin_SetSubtopicDuringTxnIn_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(672, Grace.__$behaviorFactory2_rfield, null, null, "bAAt1TPA_Mixin_GetWantedCriticism_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(673, Grace.__$behaviorFactory2_rfield, null, null, "bAAt1TPA_Mixin_GetUnwantedPraise_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(674, Grace.__$behaviorFactory2_rfield, null, null, "bAAt1TPA_Mixin_GetUnwantedPraise_BodyStuff2()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(675, Grace.__$behaviorFactory2_rfield, null, null, "bAAt1TPA_Mixin_LookAndIgnore_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(676, Grace.__$behaviorFactory2_rfield, Grace.__$precondition0_rfield, null, "BeatInit()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(677, Grace.__$behaviorFactory2_rfield, null, null, "bRMt1N_TxnIn_Default_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(679, Grace.__$behaviorFactory3_rfield, null, null, "bRMt1N_TxnIn_Default_BodyStuff2()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(680, Grace.__$behaviorFactory3_rfield, null, null, "bRMt1N_TxnIn_REPEAT_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(681, Grace.__$behaviorFactory3_rfield, null, null, "bRMt1N_TxnIn_ReferTo_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(683, Grace.__$behaviorFactory3_rfield, null, null, "bRMt1N_TxnIn_ReferTo_BodyStuff2()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(684, Grace.__$behaviorFactory3_rfield, null, null, "bRMt1N_LurePlayer_FirstTime_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(685, Grace.__$behaviorFactory3_rfield, null, null, "bRMt1N_LurePlayer_FirstTime_BodyStuff2()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(686, Grace.__$behaviorFactory3_rfield, null, null, "bRMt1N_LurePlayer_FirstTime_BodyStuff3()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(687, Grace.__$behaviorFactory3_rfield, null, null, "bRMt1N_LurePlayer_FirstTime_BodyStuff4()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(688, Grace.__$behaviorFactory3_rfield, null, null, "bRMt1N_LurePlayer_SecondTime_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(689, Grace.__$behaviorFactory3_rfield, null, null, "bRMt1N_LurePlayer_SecondTime_BodyStuff2()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(690, Grace.__$behaviorFactory3_rfield, null, null, "bRMt1N_StartGuessingGame_pre_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(692, Grace.__$behaviorFactory3_rfield, null, null, "bRMt1N_StartGuessingGame_BodyStuff2()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(693, Grace.__$behaviorFactory3_rfield, null, null, "bRMt1N_StartGuessingGame_BodyStuff3()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(694, Grace.__$behaviorFactory3_rfield, null, null, "bRMt1N_StartGuessingGame_BodyStuff4()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(695, Grace.__$behaviorFactory3_rfield, null, null, "bRMt1N_StartGuessingGame_BodyStuff5()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(696, Grace.__$behaviorFactory3_rfield, null, null, "bRMt1N_Mixin_MoreThanAWord_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(697, Grace.__$behaviorFactory3_rfield, null, null, "bRMt1N_Mixin_MoreThanAWord_BodyStuff2()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(700, Grace.__$behaviorFactory3_rfield, null, null, "bRMt1N_Mixin_MoreThanAWord_BodyStuff3()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(701, Grace.__$behaviorFactory3_rfield, null, null, "bRMt1N_Mixin_WrongSingleWord_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(702, Grace.__$behaviorFactory3_rfield, null, null, "bRMt1N_Mixin_WrongSingleWord_BodyStuff2()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(703, Grace.__$behaviorFactory3_rfield, null, null, "bRMt1N_Mixin_WrongSingleWord_BodyStuff3()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(704, Grace.__$behaviorFactory3_rfield, null, null, "bRMt1N_Mixin_FirstGuessTimeout_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(705, Grace.__$behaviorFactory3_rfield, null, null, "bRMt1N_Mixin_FirstGuessTimeout_BodyStuff2()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(706, Grace.__$behaviorFactory3_rfield, null, null, "bRMt1N_Mixin_FirstGuessTimeout_BodyStuff3()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(707, Grace.__$behaviorFactory3_rfield, null, null, "bRMt1N_Mixin_TellMeMore_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(708, Grace.__$behaviorFactory3_rfield, null, null, "bRMt1N_Mixin_TellMeMore_BodyStuff2()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(709, Grace.__$behaviorFactory3_rfield, null, null, "bRMt1N_Mixin_TellMeMore_BodyStuff3()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(710, Grace.__$behaviorFactory3_rfield, null, null, "bRMt1N_Mixin_TellMeMore_BodyStuff4()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(711, Grace.__$behaviorFactory3_rfield, null, null, "bRMt1N_Mixin_LookAndIgnore_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(712, Grace.__$behaviorFactory3_rfield, null, null, "bRMt1N_WaitTimeout_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(713, Grace.__$behaviorFactory3_rfield, null, null, "bRMt1N_TxnOut_WrongAnswer_posSpin_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(714, Grace.__$behaviorFactory3_rfield, null, null, "bRMt1N_TxnOut_WrongAnswer_posSpin_BodyStuff2()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(715, Grace.__$behaviorFactory3_rfield, null, null, "bRMt1N_TxnOut_WrongAnswer_posSpin_BodyStuff3()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(716, Grace.__$behaviorFactory3_rfield, null, null, "bRMt1N_TxnOut_WrongAnswer_negSpin_BodyStuff3()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(717, Grace.__$behaviorFactory3_rfield, null, null, "bRMt1N_TxnOut_WrongAnswer_negSpin_BodyStuff4()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(718, Grace.__$behaviorFactory3_rfield, null, null, "bRMt1N_TxnOut_LeanToTPA_RightAnswer_posSpin_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(719, Grace.__$behaviorFactory3_rfield, null, null, "bRMt1N_TxnOut_LeanToTPA_RightAnswer_posSpin_BodyStuff2()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(720, Grace.__$behaviorFactory3_rfield, null, null, "bRMt1N_TxnOut_LeanToTPA_RightAnswer_posSpin_BodyStuff3()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(721, Grace.__$behaviorFactory3_rfield, null, null, "bRMt1N_TxnOut_LeanToTPA_RightAnswer_posSpin_BodyStuff4()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(723, Grace.__$behaviorFactory3_rfield, null, null, "bRMt1N_TxnOut_LeanToTPA_RightAnswer_negSpin_BodyStuff3()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(724, Grace.__$behaviorFactory3_rfield, null, null, "bRMt1N_TxnOut_LeanToTPA_RightAnswer_negSpin_BodyStuff4()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(726, Grace.__$behaviorFactory3_rfield, null, null, "bRMt1N_TxnOut_PlayerNotAtPicture_posSpin_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(727, Grace.__$behaviorFactory3_rfield, null, null, "bRMt1N_TxnOut_PlayerNotAtPicture_posSpin_BodyStuff2()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(728, Grace.__$behaviorFactory3_rfield, null, null, "bRMt1N_TxnOut_PlayerNotAtPicture_posSpin_BodyStuff3()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(729, Grace.__$behaviorFactory3_rfield, null, null, "bRMt1N_TxnOut_PlayerNotAtPicture_posSpin_BodyStuff4()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(730, Grace.__$behaviorFactory3_rfield, null, null, "bRMt1N_TxnOut_PlayerNotAtPicture_posSpin_BodyStuff5()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(731, Grace.__$behaviorFactory3_rfield, null, null, "bRMt1N_TxnOut_PlayerNotAtPicture_negSpin_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(732, Grace.__$behaviorFactory3_rfield, null, null, "bRMt1N_TxnOut_PlayerNotAtPicture_negSpin_BodyStuff2()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(733, Grace.__$behaviorFactory3_rfield, null, null, "bRMt1N_TxnOut_PlayerNotAtPicture_negSpin_BodyStuff3()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(734, Grace.__$behaviorFactory3_rfield, null, null, "bRMt1N_TxnOut_PlayerNotAtPicture_negSpin_BodyStuff4()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(735, Grace.__$behaviorFactory3_rfield, null, null, "bRMt1N_TxnOut_PlayerNotAtPicture_negSpin_BodyStuff5()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(736, Grace.__$behaviorFactory3_rfield, null, null, "bRMt1N_TxnOut_PlayerNotAtPicture_negSpin_BodyStuff6()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(737, Grace.__$behaviorFactory3_rfield, null, null, "bRMt1N_TxnOut_PlayerNotAtPicture_negSpin_BodyStuff7()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(738, Grace.__$behaviorFactory3_rfield, null, null, "bRMt1N_TxnOut_PlayerNotAtPicture_negSpin_BodyStuff8()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(739, Grace.__$behaviorFactory3_rfield, null, null, "bRMt1N_TxnOut_PlayerNotAtPicture_negSpin_BodyStuff9()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(740, Grace.__$behaviorFactory3_rfield, null, null, "bRMt1N_TxnOut_PlayerNotAtPicture_negSpin_BodyStuff10()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(741, Grace.__$behaviorFactory3_rfield, Grace.__$precondition0_rfield, null, "BeatInit()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(742, Grace.__$behaviorFactory3_rfield, null, null, "bRMt1GPA_TxnIn_Default_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(744, Grace.__$behaviorFactory3_rfield, null, null, "bRMt1GPA_TxnIn_Default_BodyStuff2()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(745, Grace.__$behaviorFactory3_rfield, null, null, "bRMt1GPA_TxnIn_REPEAT_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(746, Grace.__$behaviorFactory3_rfield, null, null, "bRMt1GPA_TxnIn_ReferTo_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(747, Grace.__$behaviorFactory3_rfield, null, null, "bRMt1GPA_TxnIn_ReferTo_BodyStuff2()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(748, Grace.__$behaviorFactory3_rfield, null, null, "bRMt1GPA_LurePlayer_FirstTime_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(749, Grace.__$behaviorFactory3_rfield, null, null, "bRMt1GPA_LurePlayer_FirstTime_BodyStuff2()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(750, Grace.__$behaviorFactory3_rfield, null, null, "bRMt1GPA_LurePlayer_FirstTime_BodyStuff3()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(751, Grace.__$behaviorFactory3_rfield, null, null, "bRMt1GPA_LurePlayer_FirstTime_BodyStuff4()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(752, Grace.__$behaviorFactory3_rfield, null, null, "bRMt1GPA_LurePlayer_SecondTime_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(753, Grace.__$behaviorFactory3_rfield, null, null, "bRMt1GPA_LurePlayer_SecondTime_BodyStuff1b()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(754, Grace.__$behaviorFactory3_rfield, null, null, "bRMt1GPA_LurePlayer_SecondTime_BodyStuff2()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(755, Grace.__$behaviorFactory3_rfield, null, null, "bRMt1GPA_StartGuessingGame_pre_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(757, Grace.__$behaviorFactory3_rfield, null, null, "bRMt1GPA_StartGuessingGame_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(758, Grace.__$behaviorFactory3_rfield, null, null, "bRMt1GPA_StartGuessingGame_BodyStuff3()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(759, Grace.__$behaviorFactory3_rfield, null, null, "bRMt1GPA_StartGuessingGame_BodyStuff4()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(760, Grace.__$behaviorFactory3_rfield, null, null, "bRMt1GPA_StartGuessingGame_BodyStuff5()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(761, Grace.__$behaviorFactory3_rfield, null, null, "bRMt1GPA_Mixin_MoreThanAWord_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(762, Grace.__$behaviorFactory3_rfield, null, null, "bRMt1GPA_Mixin_MoreThanAWord_BodyStuff2()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(765, Grace.__$behaviorFactory3_rfield, null, null, "bRMt1GPA_Mixin_MoreThanAWord_BodyStuff3()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(766, Grace.__$behaviorFactory3_rfield, null, null, "bRMt1GPA_Mixin_WrongSingleWord_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(768, Grace.__$behaviorFactory3_rfield, null, null, "bRMt1GPA_Mixin_WrongSingleWord_BodyStuff3()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(769, Grace.__$behaviorFactory3_rfield, null, null, "bRMt1GPA_Mixin_FirstGuessTimeout_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(770, Grace.__$behaviorFactory3_rfield, null, null, "bRMt1GPA_Mixin_FirstGuessTimeout_BodyStuff2()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(771, Grace.__$behaviorFactory3_rfield, null, null, "bRMt1GPA_Mixin_FirstGuessTimeout_BodyStuff3()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(772, Grace.__$behaviorFactory3_rfield, null, null, "bRMt1GPA_Mixin_TellMeMore_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(773, Grace.__$behaviorFactory3_rfield, null, null, "bRMt1GPA_Mixin_TellMeMore_BodyStuff2()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(774, Grace.__$behaviorFactory3_rfield, null, null, "bRMt1GPA_Mixin_TellMeMore_BodyStuff3()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(775, Grace.__$behaviorFactory3_rfield, null, null, "bRMt1GPA_Mixin_TellMeMore_BodyStuff4()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(776, Grace.__$behaviorFactory3_rfield, null, null, "bRMt1GPA_Mixin_LookAndIgnore_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(777, Grace.__$behaviorFactory3_rfield, null, null, "bRMt1GPA_WaitTimeout_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(778, Grace.__$behaviorFactory3_rfield, null, null, "bRMt1GPA_TxnOut_WrongAnswer_posSpin_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(779, Grace.__$behaviorFactory3_rfield, null, null, "bRMt1GPA_TxnOut_WrongAnswer_posSpin_BodyStuff2()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(780, Grace.__$behaviorFactory3_rfield, null, null, "bRMt1GPA_TxnOut_WrongAnswer_posSpin_BodyStuff3()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(781, Grace.__$behaviorFactory3_rfield, null, null, "bRMt1GPA_TxnOut_WrongAnswer_negSpin_BodyStuff3()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(782, Grace.__$behaviorFactory3_rfield, null, null, "bRMt1GPA_TxnOut_WrongAnswer_negSpin_BodyStuff4()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(783, Grace.__$behaviorFactory3_rfield, null, null, "bRMt1GPA_TxnOut_LeanToTPA_RightAnswer_posSpin_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(784, Grace.__$behaviorFactory3_rfield, null, null, "bRMt1GPA_TxnOut_LeanToTPA_RightAnswer_posSpin_BodyStuff2()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(785, Grace.__$behaviorFactory3_rfield, null, null, "bRMt1GPA_TxnOut_LeanToTPA_RightAnswer_posSpin_BodyStuff3()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(786, Grace.__$behaviorFactory3_rfield, null, null, "bRMt1GPA_TxnOut_LeanToTPA_RightAnswer_posSpin_BodyStuff4()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(788, Grace.__$behaviorFactory3_rfield, null, null, "bRMt1GPA_TxnOut_LeanToTPA_RightAnswer_negSpin_BodyStuff3()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(789, Grace.__$behaviorFactory3_rfield, null, null, "bRMt1GPA_TxnOut_LeanToTPA_RightAnswer_negSpin_BodyStuff4()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(791, Grace.__$behaviorFactory3_rfield, null, null, "bRMt1GPA_TxnOut_PlayerNotAtPicture_posSpin_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(792, Grace.__$behaviorFactory3_rfield, null, null, "bRMt1GPA_TxnOut_PlayerNotAtPicture_posSpin_BodyStuff2()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(793, Grace.__$behaviorFactory3_rfield, null, null, "bRMt1GPA_TxnOut_PlayerNotAtPicture_posSpin_BodyStuff3()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(794, Grace.__$behaviorFactory3_rfield, null, null, "bRMt1GPA_TxnOut_PlayerNotAtPicture_posSpin_BodyStuff5()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(795, Grace.__$behaviorFactory3_rfield, null, null, "bRMt1GPA_TxnOut_PlayerNotAtPicture_negSpin_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(796, Grace.__$behaviorFactory3_rfield, null, null, "bRMt1GPA_TxnOut_PlayerNotAtPicture_negSpin_BodyStuff2()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(797, Grace.__$behaviorFactory3_rfield, null, null, "bRMt1GPA_TxnOut_PlayerNotAtPicture_negSpin_BodyStuff3()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(798, Grace.__$behaviorFactory3_rfield, null, null, "bRMt1GPA_TxnOut_PlayerNotAtPicture_negSpin_BodyStuff4()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(799, Grace.__$behaviorFactory3_rfield, null, null, "bRMt1GPA_TxnOut_PlayerNotAtPicture_negSpin_BodyStuff5()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(800, Grace.__$behaviorFactory3_rfield, null, null, "bRMt1GPA_TxnOut_PlayerNotAtPicture_negSpin_BodyStuff7()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(801, Grace.__$behaviorFactory3_rfield, null, null, "bRMt1GPA_TxnOut_PlayerNotAtPicture_negSpin_BodyStuff8()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(802, Grace.__$behaviorFactory3_rfield, null, null, "bRMt1GPA_TxnOut_PlayerNotAtPicture_negSpin_BodyStuff9()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(803, Grace.__$behaviorFactory3_rfield, null, null, "bRMt1GPA_TxnOut_PlayerNotAtPicture_negSpin_BodyStuff10()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(804, Grace.__$behaviorFactory3_rfield, Grace.__$precondition0_rfield, null, "BeatInit()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(805, Grace.__$behaviorFactory3_rfield, null, null, "bRMt1TPA_TxnIn_Default_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(807, Grace.__$behaviorFactory3_rfield, null, null, "bRMt1TPA_TxnIn_Default_BodyStuff2()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(808, Grace.__$behaviorFactory3_rfield, null, null, "bRMt1TPA_TxnIn_REPEAT_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(809, Grace.__$behaviorFactory3_rfield, null, null, "bRMt1TPA_TxnIn_ReferTo_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(811, Grace.__$behaviorFactory3_rfield, null, null, "bRMt1TPA_TxnIn_ReferTo_BodyStuff2()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(812, Grace.__$behaviorFactory3_rfield, null, null, "bRMt1TPA_LurePlayer_FirstTime_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(813, Grace.__$behaviorFactory3_rfield, null, null, "bRMt1TPA_LurePlayer_FirstTime_BodyStuff2()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(815, Grace.__$behaviorFactory3_rfield, null, null, "bRMt1TPA_LurePlayer_FirstTime_BodyStuff3()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(816, Grace.__$behaviorFactory3_rfield, null, null, "bRMt1TPA_LurePlayer_FirstTime_BodyStuff4()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(817, Grace.__$behaviorFactory3_rfield, null, null, "bRMt1TPA_LurePlayer_SecondTime_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(818, Grace.__$behaviorFactory3_rfield, null, null, "bRMt1TPA_LurePlayer_SecondTime_BodyStuff2()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(820, Grace.__$behaviorFactory3_rfield, null, null, "bRMt1TPA_StartGuessingGame_pre_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(822, Grace.__$behaviorFactory3_rfield, null, null, "bRMt1TPA_StartGuessingGame_BodyStuff2()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(823, Grace.__$behaviorFactory3_rfield, null, null, "bRMt1TPA_StartGuessingGame_BodyStuff3()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(824, Grace.__$behaviorFactory3_rfield, null, null, "bRMt1TPA_StartGuessingGame_BodyStuff4()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(825, Grace.__$behaviorFactory3_rfield, null, null, "bRMt1TPA_StartGuessingGame_BodyStuff5()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(826, Grace.__$behaviorFactory3_rfield, null, null, "bRMt1TPA_Mixin_MoreThanAWord_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(827, Grace.__$behaviorFactory3_rfield, null, null, "bRMt1TPA_Mixin_MoreThanAWord_BodyStuff2()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(828, Grace.__$behaviorFactory3_rfield, null, null, "bRMt1TPA_Mixin_MoreThanAWord_BodyStuff3()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(829, Grace.__$behaviorFactory3_rfield, null, null, "bRMt1TPA_Mixin_WrongSingleWord_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(830, Grace.__$behaviorFactory3_rfield, null, null, "bRMt1TPA_Mixin_WrongSingleWord_BodyStuff2()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(831, Grace.__$behaviorFactory3_rfield, null, null, "bRMt1TPA_Mixin_WrongSingleWord_BodyStuff3()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(833, Grace.__$behaviorFactory3_rfield, null, null, "bRMt1TPA_Mixin_FirstGuessTimeout_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(834, Grace.__$behaviorFactory3_rfield, null, null, "bRMt1TPA_Mixin_FirstGuessTimeout_BodyStuff2()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(835, Grace.__$behaviorFactory3_rfield, null, null, "bRMt1TPA_Mixin_FirstGuessTimeout_BodyStuff3()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(836, Grace.__$behaviorFactory3_rfield, null, null, "bRMt1TPA_Mixin_TellMeMore_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(837, Grace.__$behaviorFactory3_rfield, null, null, "bRMt1TPA_Mixin_TellMeMore_BodyStuff2()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(838, Grace.__$behaviorFactory3_rfield, null, null, "bRMt1TPA_Mixin_TellMeMore_BodyStuff3()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(839, Grace.__$behaviorFactory3_rfield, null, null, "bRMt1TPA_Mixin_TellMeMore_BodyStuff4()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(840, Grace.__$behaviorFactory3_rfield, null, null, "bRMt1TPA_Mixin_LookAndIgnore_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(841, Grace.__$behaviorFactory3_rfield, null, null, "bRMt1TPA_WaitTimeout_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(842, Grace.__$behaviorFactory3_rfield, null, null, "bRMt1TPA_TxnOut_WrongAnswer_posSpin_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(843, Grace.__$behaviorFactory3_rfield, null, null, "bRMt1TPA_TxnOut_WrongAnswer_posSpin_BodyStuff2()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(844, Grace.__$behaviorFactory3_rfield, null, null, "bRMt1TPA_TxnOut_WrongAnswer_posSpin_BodyStuff3()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(845, Grace.__$behaviorFactory3_rfield, null, null, "bRMt1TPA_TxnOut_WrongAnswer_negSpin_BodyStuff3()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(846, Grace.__$behaviorFactory3_rfield, null, null, "bRMt1TPA_TxnOut_WrongAnswer_negSpin_BodyStuff4()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(847, Grace.__$behaviorFactory3_rfield, null, null, "bRMt1TPA_TxnOut_LeanToTPA_RightAnswer_posSpin_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(848, Grace.__$behaviorFactory3_rfield, null, null, "bRMt1TPA_TxnOut_LeanToTPA_RightAnswer_posSpin_BodyStuff2()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(849, Grace.__$behaviorFactory3_rfield, null, null, "bRMt1TPA_TxnOut_LeanToTPA_RightAnswer_posSpin_BodyStuff3()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(850, Grace.__$behaviorFactory3_rfield, null, null, "bRMt1TPA_TxnOut_LeanToTPA_RightAnswer_posSpin_BodyStuff4()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(852, Grace.__$behaviorFactory3_rfield, null, null, "bRMt1TPA_TxnOut_LeanToTPA_RightAnswer_negSpin_BodyStuff3()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(853, Grace.__$behaviorFactory3_rfield, null, null, "bRMt1TPA_TxnOut_LeanToTPA_RightAnswer_negSpin_BodyStuff4()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(855, Grace.__$behaviorFactory3_rfield, null, null, "bRMt1TPA_TxnOut_PlayerNotAtPicture_posSpin_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(856, Grace.__$behaviorFactory3_rfield, null, null, "bRMt1TPA_TxnOut_PlayerNotAtPicture_posSpin_BodyStuff2()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(857, Grace.__$behaviorFactory3_rfield, null, null, "bRMt1TPA_TxnOut_PlayerNotAtPicture_posSpin_BodyStuff3()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(858, Grace.__$behaviorFactory3_rfield, null, null, "bRMt1TPA_TxnOut_PlayerNotAtPicture_posSpin_BodyStuff4()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(859, Grace.__$behaviorFactory3_rfield, null, null, "bRMt1TPA_TxnOut_PlayerNotAtPicture_posSpin_BodyStuff5()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(860, Grace.__$behaviorFactory3_rfield, null, null, "bRMt1TPA_TxnOut_PlayerNotAtPicture_posSpin_BodyStuff6()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(862, Grace.__$behaviorFactory3_rfield, null, null, "bRMt1TPA_TxnOut_PlayerNotAtPicture_posSpin_BodyStuff7()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(863, Grace.__$behaviorFactory3_rfield, null, null, "bRMt1TPA_TxnOut_PlayerNotAtPicture_posSpin_BodyStuff8()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(864, Grace.__$behaviorFactory3_rfield, null, null, "bRMt1TPA_TxnOut_PlayerNotAtPicture_negSpin_BodyStuff5()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(866, Grace.__$behaviorFactory3_rfield, null, null, "bRMt1TPA_TxnOut_PlayerNotAtPicture_negSpin_BodyStuff7()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(867, Grace.__$behaviorFactory3_rfield, null, null, "bRMt1TPA_TxnOut_PlayerNotAtPicture_negSpin_BodyStuff8()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(868, Grace.__$behaviorFactory3_rfield, null, null, "bRMt1TPA_TxnOut_PlayerNotAtPicture_negSpin_BodyStuff9()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(869, Grace.__$behaviorFactory3_rfield, null, null, "bRMt1TPA_TxnOut_PlayerNotAtPicture_negSpin_BodyStuff10()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(870, Grace.__$behaviorFactory3_rfield, null, null, "bRMt1TPA_TxnOut_PlayerNotAtPicture_negSpin_BodyStuff11()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(871, Grace.__$behaviorFactory3_rfield, null, null, "bRMt1TPA_TxnOut_PlayerNotAtPicture_negSpin_BodyStuff12()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(872, Grace.__$behaviorFactory3_rfield, Grace.__$precondition0_rfield, null, "BeatInit()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(873, Grace.__$behaviorFactory3_rfield, null, null, "bFAskDrinkT1NTPA_TxnIn_Default_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(874, Grace.__$behaviorFactory3_rfield, null, null, "bFAskDrinkT1NTPA_TxnIn_ReferToGeneral_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(875, Grace.__$behaviorFactory3_rfield, null, null, "bFAskDrinkT1NTPA_TxnIn_ReferToSpecific_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(876, Grace.__$behaviorFactory3_rfield, null, null, "bFAskDrinkT1NTPA_TxnIn_REPEAT_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(878, Grace.__$behaviorFactory3_rfield, Grace.__$precondition0_rfield, null, "bFAskDrinkT1NTPA_TxnIn_Brag_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(879, Grace.__$behaviorFactory3_rfield, null, null, "bFAskDrinkT1NTPA_TSuggest_ReestablishBodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(880, Grace.__$behaviorFactory3_rfield, null, null, "bFAskDrinkT1NTPA_TSuggest_BodyStuff_DeflectNonFancyRequest()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(881, Grace.__$behaviorFactory3_rfield, null, null, "bFAskDrinkT1NTPA_TSuggest_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(883, Grace.__$behaviorFactory3_rfield, null, null, "bFAskDrinkT1NTPA_TSuggest_BodyStuff2()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(885, Grace.__$behaviorFactory3_rfield, null, null, "bFAskDrinkT1NTPA_TSuggest_BodyStuff3()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(891, Grace.__$behaviorFactory3_rfield, null, null, "bFAskDrinkT1NTPA_InitialWait_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(892, Grace.__$behaviorFactory3_rfield, null, null, "bFAskDrinkT1NTPA_Mixin_GSuggest_AgreeT_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(893, Grace.__$behaviorFactory3_rfield, Grace.__$precondition0_rfield, null, "bFAskDrinkT1NTPA_Mixin_GSuggest_BodyStuff2(boolean)", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(902, Grace.__$behaviorFactory3_rfield, Grace.__$precondition0_rfield, null, "bFAskDrinkT1NTPA_Mixin_GSuggest_BodyStuff2(boolean)", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(910, Grace.__$behaviorFactory4_rfield, null, null, "bFAskDrinkT1NTPA_Mixin_GSuggest_BodyStuff3()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(911, Grace.__$behaviorFactory4_rfield, null, null, "bFAskDrinkT1NTPA_Mixin_GSuggest_DisagreeT_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(912, Grace.__$behaviorFactory4_rfield, null, null, "bFAskDrinkT1NTPA_Mixin_GSuggest_DisagreeT_BodyStuff1b()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(918, Grace.__$behaviorFactory4_rfield, null, null, "bFAskDrinkT1NTPA_Mixin_GSuggest_SpecificRequest_Fancy_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(919, Grace.__$behaviorFactory4_rfield, null, null, "bFAskDrinkT1NTPA_Mixin_GSuggest_SpecificRequest_NotFancy_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(920, Grace.__$behaviorFactory4_rfield, null, null, "bFAskDrinkT1NTPA_Mixin_GSuggest_NonAnswer_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(921, Grace.__$behaviorFactory4_rfield, null, null, "bFAskDrinkT1NTPA_WaitTimeout_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(922, Grace.__$behaviorFactory4_rfield, null, null, "bFAskDrinkT1NTPA_TxnOut_AgreeG_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(927, Grace.__$behaviorFactory4_rfield, null, null, "bFAskDrinkT1NTPA_TxnOut_AgreeG_BodyStuff2()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(928, Grace.__$behaviorFactory4_rfield, null, null, "bFAskDrinkT1NTPA_TxnOut_AgreeG_p2_posSpin_Reestablish_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(929, Grace.__$behaviorFactory4_rfield, null, null, "bFAskDrinkT1NTPA_TxnOut_AgreeG_p2_posSpin_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(930, Grace.__$behaviorFactory4_rfield, null, null, "bFAskDrinkT1NTPA_TxnOut_AgreeG_p2_negSpin_Reestablish_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(931, Grace.__$behaviorFactory4_rfield, null, null, "bFAskDrinkT1NTPA_TxnOut_AgreeG_p2_negSpin_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(932, Grace.__$behaviorFactory4_rfield, null, null, "bFAskDrinkT1NTPA_TxnOut_DisagreeG_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(933, Grace.__$behaviorFactory4_rfield, null, null, "bFAskDrinkT1NTPA_TxnOut_DisagreeG_p2_posSpin_Reestablish_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(934, Grace.__$behaviorFactory4_rfield, null, null, "bFAskDrinkT1NTPA_TxnOut_DisagreeG_p2_posSpin_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(938, Grace.__$behaviorFactory4_rfield, null, null, "bFAskDrinkT1NTPA_TxnOut_DisagreeG_p2_negSpin_Reestablish_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(939, Grace.__$behaviorFactory4_rfield, null, null, "bFAskDrinkT1NTPA_TxnOut_DisagreeG_p2_negSpin_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(944, Grace.__$behaviorFactory4_rfield, null, null, "bFAskDrinkT1NTPA_TxnOut_DisagreeG_p2_negSpin_BodyStuff2()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(947, Grace.__$behaviorFactory4_rfield, null, null, "bFAskDrinkT1NTPA_TxnOut_SpecificRequestFancy_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(948, Grace.__$behaviorFactory4_rfield, null, null, "bFAskDrinkT1NTPA_TxnOut_SpecificRequestFancy_BodyStuff2()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(949, Grace.__$behaviorFactory4_rfield, null, null, "bFAskDrinkT1NTPA_TxnOut_SpecificRequestFancy_p2_posSpin_Reestablish_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(950, Grace.__$behaviorFactory4_rfield, null, null, "bFAskDrinkT1NTPA_TxnOut_SpecificRequestFancy_p2_posSpin_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(951, Grace.__$behaviorFactory4_rfield, null, null, "bFAskDrinkT1NTPA_TxnOut_SpecificRequestFancy_p2_negSpin_Reestablish_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(952, Grace.__$behaviorFactory4_rfield, null, null, "bFAskDrinkT1NTPA_TxnOut_SpecificRequestFancy_p2_negSpin_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(953, Grace.__$behaviorFactory4_rfield, null, null, "bFAskDrinkT1NTPA_TxnOut_NonAnswer_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(954, Grace.__$behaviorFactory4_rfield, null, null, "bFAskDrinkT1NTPA_TxnOut_NonAnswer_p2_Reestablish_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(955, Grace.__$behaviorFactory4_rfield, null, null, "bFAskDrinkT1NTPA_TxnOut_NonAnswer_p2_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(958, Grace.__$behaviorFactory4_rfield, Grace.__$precondition0_rfield, null, "BeatInit()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(959, Grace.__$behaviorFactory4_rfield, null, null, "bFAskDrinkT1GPA_TxnIn_Default_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(960, Grace.__$behaviorFactory4_rfield, null, null, "bFAskDrinkT1GPA_TxnIn_ReferToGeneral_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(961, Grace.__$behaviorFactory4_rfield, null, null, "bFAskDrinkT1GPA_TxnIn_ReferToSpecific_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(962, Grace.__$behaviorFactory4_rfield, null, null, "bFAskDrinkT1GPA_TxnIn_REPEAT_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(964, Grace.__$behaviorFactory4_rfield, Grace.__$precondition0_rfield, null, "bFAskDrinkT1GPA_TxnIn_Brag_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(965, Grace.__$behaviorFactory4_rfield, null, null, "bFAskDrinkT1GPA_TSuggest_ReestablishBodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(966, Grace.__$behaviorFactory4_rfield, null, null, "bFAskDrinkT1GPA_TSuggest_BodyStuff_DeflectNonFancyRequest()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(967, Grace.__$behaviorFactory4_rfield, null, null, "bFAskDrinkT1GPA_TSuggest_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(969, Grace.__$behaviorFactory4_rfield, null, null, "bFAskDrinkT1GPA_TSuggest_BodyStuff2()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(971, Grace.__$behaviorFactory4_rfield, null, null, "bFAskDrinkT1GPA_TSuggest_BodyStuff3()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(977, Grace.__$behaviorFactory4_rfield, null, null, "bFAskDrinkT1GPA_InitialWait_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(978, Grace.__$behaviorFactory4_rfield, null, null, "bFAskDrinkT1GPA_Mixin_GSuggest_AgreeT_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(979, Grace.__$behaviorFactory4_rfield, Grace.__$precondition0_rfield, null, "bFAskDrinkT1GPA_Mixin_GSuggest_BodyStuff2(boolean)", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(985, Grace.__$behaviorFactory4_rfield, Grace.__$precondition0_rfield, null, "bFAskDrinkT1GPA_Mixin_GSuggest_BodyStuff2(boolean)", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(993, Grace.__$behaviorFactory4_rfield, null, null, "bFAskDrinkT1GPA_Mixin_GSuggest_BodyStuff3()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(994, Grace.__$behaviorFactory4_rfield, null, null, "bFAskDrinkT1GPA_Mixin_GSuggest_DisagreeT_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(995, Grace.__$behaviorFactory4_rfield, null, null, "bFAskDrinkT1GPA_Mixin_GSuggest_DisagreeT_BodyStuff1b()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1001, Grace.__$behaviorFactory4_rfield, null, null, "bFAskDrinkT1GPA_Mixin_GSuggest_SpecificRequest_Fancy_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1002, Grace.__$behaviorFactory4_rfield, null, null, "bFAskDrinkT1GPA_Mixin_GSuggest_SpecificRequest_NotFancy_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1003, Grace.__$behaviorFactory4_rfield, null, null, "bFAskDrinkT1GPA_Mixin_GSuggest_NonAnswer_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1004, Grace.__$behaviorFactory4_rfield, null, null, "bFAskDrinkT1GPA_WaitTimeout_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1005, Grace.__$behaviorFactory4_rfield, null, null, "bFAskDrinkT1GPA_TxnOut_AgreeG_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1010, Grace.__$behaviorFactory4_rfield, null, null, "bFAskDrinkT1GPA_TxnOut_AgreeG_BodyStuff2()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1011, Grace.__$behaviorFactory4_rfield, null, null, "bFAskDrinkT1GPA_TxnOut_AgreeG_p2_posSpin_Reestablish_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1012, Grace.__$behaviorFactory4_rfield, null, null, "bFAskDrinkT1GPA_TxnOut_AgreeG_p2_posSpin_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1013, Grace.__$behaviorFactory4_rfield, null, null, "bFAskDrinkT1GPA_TxnOut_AgreeG_p2_negSpin_Reestablish_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1014, Grace.__$behaviorFactory4_rfield, null, null, "bFAskDrinkT1GPA_TxnOut_AgreeG_p2_negSpin_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1015, Grace.__$behaviorFactory4_rfield, null, null, "bFAskDrinkT1GPA_TxnOut_DisagreeG_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1016, Grace.__$behaviorFactory4_rfield, null, null, "bFAskDrinkT1GPA_TxnOut_DisagreeG_p2_posSpin_Reestablish_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1017, Grace.__$behaviorFactory4_rfield, null, null, "bFAskDrinkT1GPA_TxnOut_DisagreeG_p2_posSpin_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1021, Grace.__$behaviorFactory4_rfield, null, null, "bFAskDrinkT1GPA_TxnOut_DisagreeG_p2_negSpin_Reestablish_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1022, Grace.__$behaviorFactory4_rfield, null, null, "bFAskDrinkT1GPA_TxnOut_DisagreeG_p2_negSpin_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1028, Grace.__$behaviorFactory4_rfield, null, null, "bFAskDrinkT1GPA_TxnOut_DisagreeG_p2_negSpin_BodyStuff2()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1031, Grace.__$behaviorFactory4_rfield, null, null, "bFAskDrinkT1GPA_TxnOut_SpecificRequestFancy_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1032, Grace.__$behaviorFactory4_rfield, null, null, "bFAskDrinkT1GPA_TxnOut_SpecificRequestFancy_BodyStuff2()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1033, Grace.__$behaviorFactory4_rfield, null, null, "bFAskDrinkT1GPA_TxnOut_SpecificRequestFancy_p2_posSpin_Reestablish_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1034, Grace.__$behaviorFactory4_rfield, null, null, "bFAskDrinkT1GPA_TxnOut_SpecificRequestFancy_p2_posSpin_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1035, Grace.__$behaviorFactory4_rfield, null, null, "bFAskDrinkT1GPA_TxnOut_SpecificRequestFancy_p2_negSpin_Reestablish_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1036, Grace.__$behaviorFactory4_rfield, null, null, "bFAskDrinkT1GPA_TxnOut_SpecificRequestFancy_p2_negSpin_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1037, Grace.__$behaviorFactory4_rfield, null, null, "bFAskDrinkT1GPA_TxnOut_NonAnswer_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1038, Grace.__$behaviorFactory4_rfield, null, null, "bFAskDrinkT1GPA_TxnOut_NonAnswer_p2_Reestablish_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1039, Grace.__$behaviorFactory4_rfield, null, null, "bFAskDrinkT1GPA_TxnOut_NonAnswer_p2_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1042, Grace.__$behaviorFactory4_rfield, null, null, "bFAskDrinkT1_TxnOut2_TripAsksGrace_Reestablish_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1043, Grace.__$behaviorFactory4_rfield, null, null, "bFAskDrinkT1_TxnOut2_TripAsksGrace_CondescendChardonnay_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1044, Grace.__$behaviorFactory4_rfield, null, null, "bFAskDrinkT1_TxnOut2_TripAsksGrace_AssumeJoinUsFancy_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1045, Grace.__$behaviorFactory4_rfield, null, null, "bFAskDrinkT1_TxnOut2_TripAsksGrace_AskJoinUsFancy_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1046, Grace.__$behaviorFactory4_rfield, null, null, "bFAskDrinkT1_TxnOut2_TripAsksGrace_AskJoinUsCompromise_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1047, Grace.__$behaviorFactory4_rfield, null, null, "bFAskDrinkT1_TxnOut2_TripAsksGrace_AskJoinMeFancy_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1048, Grace.__$behaviorFactory4_rfield, null, null, "bFAskDrinkT1_TxnOut2_TripAsksGrace_MeVersusYouAll_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1049, Grace.__$behaviorFactory4_rfield, null, null, "bFAskDrinkT1_TxnOut2_TripAsksGrace_OpenQuestion_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1050, Grace.__$behaviorFactory4_rfield, null, null, "bFAskDrinkT1_TxnOut3_GraceResponds_Reestablish_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1051, Grace.__$behaviorFactory4_rfield, null, null, "bFAskDrinkT1_TxnOut3_GraceResponds_HerOwnChardonnay_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1056, Grace.__$behaviorFactory4_rfield, null, null, "bFAskDrinkT1_TxnOut3_GraceResponds_HerOwnChardonnay_BodyStuff2()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1057, Grace.__$behaviorFactory4_rfield, Grace.__$precondition0_rfield, null, "bFAskDrinkT1_TxnOut3_GraceResponds_TripAndPlayersFancy_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1060, Grace.__$behaviorFactory4_rfield, null, null, "bFAskDrinkT1_TxnOut3_GraceResponds_TripAndPlayersFancy_BodyStuff2()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1061, Grace.__$behaviorFactory4_rfield, Grace.__$precondition0_rfield, null, "bFAskDrinkT1_TxnOut3_GraceResponds_TripAndPlayersCompromise_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1064, Grace.__$behaviorFactory4_rfield, null, null, "bFAskDrinkT1_TxnOut3_GraceResponds_TripAndPlayersCompromise_BodyStuff2()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1065, Grace.__$behaviorFactory4_rfield, Grace.__$precondition0_rfield, null, "bFAskDrinkT1_TxnOut3_GraceResponds_PlayersNonFancy_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1070, Grace.__$behaviorFactory4_rfield, null, null, "bFAskDrinkT1_TxnOut3_GraceResponds_PlayersNonFancy_BodyStuff2()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1071, Grace.__$behaviorFactory4_rfield, null, null, "bFAskDrinkT1_TxnOut3_GraceResponds_HerOwnNonFancy_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1078, Grace.__$behaviorFactory4_rfield, null, null, "bFAskDrinkT1_TxnOut3_GraceResponds_HerOwnNonFancy_BodyStuff2()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1079, Grace.__$behaviorFactory4_rfield, null, null, "bFAskDrinkT1_TxnOut3_GraceResponds_NothingSolo_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1085, Grace.__$behaviorFactory4_rfield, null, null, "bFAskDrinkT1_TxnOut3_GraceResponds_NothingSolo_BodyStuff2()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1086, Grace.__$behaviorFactory4_rfield, Grace.__$precondition0_rfield, null, "BeatInit()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1087, Grace.__$behaviorFactory4_rfield, null, null, "bTxnT1toT2NGPA_TxnIn_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1089, Grace.__$behaviorFactory4_rfield, null, null, "bTxnT1toT2NGPA_TxnIn_BodyStuff2()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1095, Grace.__$behaviorFactory4_rfield, null, null, "bTxnT1toT2NGPA_TxnIn_p2_BodyStuff2()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1099, Grace.__$behaviorFactory4_rfield, null, null, "bTxnT1toT2NGPA_Mixin_Agree_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1101, Grace.__$behaviorFactory4_rfield, null, null, "bTxnT1toT2NGPA_Mixin_Disagree_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1105, Grace.__$behaviorFactory4_rfield, null, null, "bTxnT1toT2NGPA_TxnOut_Reestablish_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1107, Grace.__$behaviorFactory4_rfield, null, null, "bTxnT1toT2NGPA_TxnOut_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1111, Grace.__$behaviorFactory4_rfield, Grace.__$precondition0_rfield, null, "BeatInit()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1112, Grace.__$behaviorFactory4_rfield, null, null, "bTxnT1toT2TPA_TxnIn_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1114, Grace.__$behaviorFactory4_rfield, null, null, "bTxnT1toT2TPA_TxnIn_BodyStuff2()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1116, Grace.__$behaviorFactory4_rfield, null, null, "bTxnT1toT2TPA_Mixin_Agree_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1120, Grace.__$behaviorFactory4_rfield, null, null, "bTxnT1toT2TPA_Mixin_Disagree_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1122, Grace.__$behaviorFactory4_rfield, null, null, "bTxnT1toT2TPA_TxnOut_Reestablish_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1124, Grace.__$behaviorFactory4_rfield, null, null, "bTxnT1toT2TPA_TxnOut_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1128, Grace.__$behaviorFactory4_rfield, Grace.__$precondition0_rfield, null, "BeatInit()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1129, Grace.__$behaviorFactory4_rfield, null, null, "bAAt2GPA_TxnIn_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1132, Grace.__$behaviorFactory5_rfield, null, null, "bAAt2GPA_TxnIn_p2_ReestablishStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1133, Grace.__$behaviorFactory5_rfield, null, null, "bAAt2GPA_TxnIn_p2_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1135, Grace.__$behaviorFactory5_rfield, null, null, "bAAt2GPA_TxnIn_p2_BodyStuff2()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1136, Grace.__$behaviorFactory5_rfield, Grace.__$precondition0_rfield, null, "bAAt2GPA_TxnIn_InTripletAffinitySwitch_BodyStuff()", new String[] { "Trip", "Grace" }, (short)2));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1137, Grace.__$behaviorFactory5_rfield, null, null, "bAAt2GPA_TxnIn_InTripletAffinitySwitch_BodyStuff()", new String[] { "Trip", "Grace" }, (short)1));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1138, Grace.__$behaviorFactory5_rfield, Grace.__$precondition0_rfield, null, "bAAt2GPA_AddressSubtopic_style_RewindStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1139, Grace.__$behaviorFactory5_rfield, Grace.__$precondition0_rfield, null, "bAAt2GPA_AddressSubtopic_style_ReestablishStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1140, Grace.__$behaviorFactory5_rfield, Grace.__$precondition0_rfield, null, "bAAt2GPA_AddressSubtopic_style_BodyStuff(boolean)", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1142, Grace.__$behaviorFactory5_rfield, null, null, "bAAt2GPA_AddressSubtopic_style_part2_ReestablishStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1143, Grace.__$behaviorFactory5_rfield, null, null, "bAAt2GPA_AddressSubtopic_style_part2_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1144, Grace.__$behaviorFactory5_rfield, null, null, "bAAt2GPA_AddressSubtopic_style_part2_BodyStuff2(boolean)", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1145, Grace.__$behaviorFactory5_rfield, Grace.__$precondition0_rfield, null, "bAAt2GPA_AddressSubtopic_couch_RewindStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1146, Grace.__$behaviorFactory5_rfield, Grace.__$precondition0_rfield, null, "bAAt2GPA_AddressSubtopic_couch_ReestablishStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1147, Grace.__$behaviorFactory5_rfield, Grace.__$precondition0_rfield, null, "bAAt2GPA_AddressSubtopic_couch_BodyStuff(boolean)", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1149, Grace.__$behaviorFactory5_rfield, Grace.__$precondition0_rfield, null, "bAAt2GPA_AddressSubtopic_couch_part2_ReestablishStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1150, Grace.__$behaviorFactory5_rfield, Grace.__$precondition0_rfield, null, "bAAt2GPA_AddressSubtopic_couch_part2_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1151, Grace.__$behaviorFactory5_rfield, null, null, "bAAt2GPA_AddressSubtopic_couch_part2_BodyStuff2(boolean)", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1152, Grace.__$behaviorFactory5_rfield, Grace.__$precondition0_rfield, null, "bAAt2GPA_AddressSubtopic_armoire_RewindStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1153, Grace.__$behaviorFactory5_rfield, Grace.__$precondition0_rfield, null, "bAAt2GPA_AddressSubtopic_armoire_ReestablishStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1154, Grace.__$behaviorFactory5_rfield, Grace.__$precondition0_rfield, null, "bAAt2GPA_AddressSubtopic_armoire_BodyStuff(boolean)", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1156, Grace.__$behaviorFactory5_rfield, Grace.__$precondition0_rfield, null, "bAAt2GPA_AddressSubtopic_armoire_part2_ReestablishStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1157, Grace.__$behaviorFactory5_rfield, Grace.__$precondition0_rfield, null, "bAAt2GPA_AddressSubtopic_armoire_part2_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1158, Grace.__$behaviorFactory5_rfield, null, null, "bAAt2GPA_AddressSubtopic_armoire_part2_BodyStuff2(boolean)", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1159, Grace.__$behaviorFactory5_rfield, Grace.__$precondition0_rfield, null, "bAAt2GPA_AddressSubtopic_trinkets_RewindStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1160, Grace.__$behaviorFactory5_rfield, Grace.__$precondition0_rfield, null, "bAAt2GPA_AddressSubtopic_trinkets_ReestablishStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1161, Grace.__$behaviorFactory5_rfield, Grace.__$precondition0_rfield, null, "bAAt2GPA_AddressSubtopic_trinkets_BodyStuff(boolean)", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1163, Grace.__$behaviorFactory5_rfield, Grace.__$precondition0_rfield, null, "bAAt2GPA_AddressSubtopic_trinkets_part2_ReestablishStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1164, Grace.__$behaviorFactory5_rfield, Grace.__$precondition0_rfield, null, "bAAt2GPA_AddressSubtopic_trinkets_part2_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1165, Grace.__$behaviorFactory5_rfield, null, null, "bAAt2GPA_AddressSubtopic_trinkets_part2_BodyStuff2(boolean)", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1166, Grace.__$behaviorFactory5_rfield, Grace.__$precondition0_rfield, null, "bAAt2GPA_AddressSubtopic_weddingPic_RewindStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1167, Grace.__$behaviorFactory5_rfield, Grace.__$precondition0_rfield, null, "bAAt2GPA_AddressSubtopic_weddingPic_ReestablishStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1168, Grace.__$behaviorFactory5_rfield, Grace.__$precondition0_rfield, null, "bAAt2GPA_AddressSubtopic_weddingPic_BodyStuff(boolean)", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1170, Grace.__$behaviorFactory5_rfield, Grace.__$precondition0_rfield, null, "bAAt2GPA_AddressSubtopic_weddingPic_part2_ReestablishStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1171, Grace.__$behaviorFactory5_rfield, Grace.__$precondition0_rfield, null, "bAAt2GPA_AddressSubtopic_weddingPic_part2_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1172, Grace.__$behaviorFactory5_rfield, null, null, "bAAt2GPA_AddressSubtopic_weddingPic_part2_BodyStuff2(boolean)", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1173, Grace.__$behaviorFactory5_rfield, Grace.__$precondition0_rfield, null, "bAAt2GPA_AddressSubtopic_painting_RewindStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1174, Grace.__$behaviorFactory5_rfield, Grace.__$precondition0_rfield, null, "bAAt2GPA_AddressSubtopic_painting_ReestablishStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1175, Grace.__$behaviorFactory5_rfield, Grace.__$precondition0_rfield, null, "bAAt2GPA_AddressSubtopic_painting_BodyStuff(boolean)", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1177, Grace.__$behaviorFactory5_rfield, Grace.__$precondition0_rfield, null, "bAAt2GPA_AddressSubtopic_painting_part2_ReestablishStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1178, Grace.__$behaviorFactory5_rfield, Grace.__$precondition0_rfield, null, "bAAt2GPA_AddressSubtopic_painting_part2_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1179, Grace.__$behaviorFactory5_rfield, null, null, "bAAt2GPA_AddressSubtopic_painting_part2_BodyStuff2(boolean)", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1180, Grace.__$behaviorFactory5_rfield, Grace.__$precondition0_rfield, null, "bAAt2GPA_AddressSubtopic_viewBalcony_RewindStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1181, Grace.__$behaviorFactory5_rfield, Grace.__$precondition0_rfield, null, "bAAt2GPA_AddressSubtopic_viewBalcony_ReestablishStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1182, Grace.__$behaviorFactory5_rfield, Grace.__$precondition0_rfield, null, "bAAt2GPA_AddressSubtopic_viewBalcony_BodyStuff(boolean)", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1184, Grace.__$behaviorFactory5_rfield, Grace.__$precondition0_rfield, null, "bAAt2GPA_AddressSubtopic_viewBalcony_part2_ReestablishStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1185, Grace.__$behaviorFactory5_rfield, Grace.__$precondition0_rfield, null, "bAAt2GPA_AddressSubtopic_viewBalcony_part2_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1186, Grace.__$behaviorFactory5_rfield, null, null, "bAAt2GPA_AddressSubtopic_viewBalcony_part2_BodyStuff2(boolean)", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1187, Grace.__$behaviorFactory5_rfield, Grace.__$precondition0_rfield, null, "bAAt2GPA_AddressSubtopic_miscObj_RewindStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1188, Grace.__$behaviorFactory5_rfield, Grace.__$precondition0_rfield, null, "bAAt2GPA_AddressSubtopic_miscObj_ReestablishStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1189, Grace.__$behaviorFactory5_rfield, Grace.__$precondition0_rfield, null, "bAAt2GPA_AddressSubtopic_miscObj_BodyStuff(boolean)", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1191, Grace.__$behaviorFactory5_rfield, Grace.__$precondition0_rfield, null, "bAAt2GPA_AddressSubtopic_miscObj_part2_ReestablishStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1192, Grace.__$behaviorFactory5_rfield, Grace.__$precondition0_rfield, null, "bAAt2GPA_AddressSubtopic_miscObj_part2_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1193, Grace.__$behaviorFactory5_rfield, null, null, "bAAt2GPA_AddressSubtopic_miscObj_part2_BodyStuff2(boolean)", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1194, Grace.__$behaviorFactory5_rfield, Grace.__$precondition0_rfield, null, "bAAt2GPA_WaitTimeout_ReestablishStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1195, Grace.__$behaviorFactory5_rfield, null, null, "bAAt2GPA_WaitTimeout_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1197, Grace.__$behaviorFactory5_rfield, null, null, "bAAt2GPA_TxnOut_NoAffinityChange_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1198, Grace.__$behaviorFactory5_rfield, null, null, "bAAt2GPA_TxnOut_NoAffinityChange_BodyStuff2()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1200, Grace.__$behaviorFactory5_rfield, null, null, "bAAt2GPA_TxnOut_NoAffinityChange_BodyStuff3()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1201, Grace.__$behaviorFactory5_rfield, null, null, "bAAt2GPA_TxnOut_NoAffinityChange_BodyStuff4()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1202, Grace.__$behaviorFactory5_rfield, null, null, "bAAt2GPA_TxnOut_NoAffinityChange_BodyStuff5()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1203, Grace.__$behaviorFactory5_rfield, null, null, "bAAt2GPA_TxnOut_LeanToGPA_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1204, Grace.__$behaviorFactory5_rfield, null, null, "bAAt2GPA_TxnOut_LeanToGPA_BodyStuff2()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1206, Grace.__$behaviorFactory5_rfield, null, null, "bAAt2GPA_TxnOut_LeanToGPA_BodyStuff3()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1207, Grace.__$behaviorFactory5_rfield, null, null, "bAAt2GPA_TxnOut_LeanToGPA_BodyStuff4()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1208, Grace.__$behaviorFactory5_rfield, null, null, "bAAt2GPA_TxnOut_LeanToTPA_BodyStuff2()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1210, Grace.__$behaviorFactory5_rfield, null, null, "bAAt2GPA_TxnOut_LeanToTPA_BodyStuff3()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1212, Grace.__$behaviorFactory5_rfield, null, null, "bAAt2GPA_TxnOut_LeanToTPA_BodyStuff4()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1213, Grace.__$behaviorFactory5_rfield, null, null, "bAAt2GPA_TxnOut_LeanToTPA_BodyStuff5()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1214, Grace.__$behaviorFactory5_rfield, null, null, "bAAt2GPA_TxnOut_LeanToTPA_BodyStuff6()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1215, Grace.__$behaviorFactory5_rfield, null, null, "bAAt2GPA_Mixin_TellMeMore_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1217, Grace.__$behaviorFactory5_rfield, null, null, "bAAt2GPA_Mixin_TellMeMore_BodyStuff2()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1218, Grace.__$behaviorFactory5_rfield, null, null, "bAAt2GPA_Mixin_SetSubtopicDuringTxnIn_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1219, Grace.__$behaviorFactory5_rfield, null, null, "bAAt2GPA_Mixin_GetWantedCriticism_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1220, Grace.__$behaviorFactory5_rfield, null, null, "bAAt2GPA_Mixin_GetUnwantedPraise_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1221, Grace.__$behaviorFactory5_rfield, null, null, "bAAt2GPA_Mixin_GetUnwantedPraise_BodyStuff2()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1222, Grace.__$behaviorFactory5_rfield, null, null, "bAAt2GPA_Mixin_LookAndIgnore_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1223, Grace.__$behaviorFactory5_rfield, Grace.__$precondition0_rfield, null, "BeatInit()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1224, Grace.__$behaviorFactory5_rfield, null, null, "bAAt2TPA_TxnIn_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1227, Grace.__$behaviorFactory5_rfield, null, null, "bAAt2TPA_TxnIn_p2_ReestablishStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1228, Grace.__$behaviorFactory5_rfield, null, null, "bAAt2TPA_TxnIn_p2_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1230, Grace.__$behaviorFactory5_rfield, null, null, "bAAt2TPA_TxnIn_p2_BodyStuff2()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1231, Grace.__$behaviorFactory5_rfield, Grace.__$precondition0_rfield, null, "bAAt2TPA_TxnIn_InTripletAffinitySwitch_BodyStuff()", new String[] { "Trip", "Grace" }, (short)2));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1232, Grace.__$behaviorFactory5_rfield, null, null, "bAAt2TPA_TxnIn_InTripletAffinitySwitch_BodyStuff()", new String[] { "Trip", "Grace" }, (short)1));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1233, Grace.__$behaviorFactory5_rfield, Grace.__$precondition0_rfield, null, "bAAt2TPA_AddressSubtopic_style_RewindStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1234, Grace.__$behaviorFactory5_rfield, Grace.__$precondition0_rfield, null, "bAAt2TPA_AddressSubtopic_style_ReestablishStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1235, Grace.__$behaviorFactory5_rfield, Grace.__$precondition0_rfield, null, "bAAt2TPA_AddressSubtopic_style_BodyStuff(boolean)", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1237, Grace.__$behaviorFactory5_rfield, null, null, "bAAt2TPA_AddressSubtopic_style_part2_ReestablishStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1238, Grace.__$behaviorFactory5_rfield, null, null, "bAAt2TPA_AddressSubtopic_style_part2_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1239, Grace.__$behaviorFactory5_rfield, null, null, "bAAt2TPA_AddressSubtopic_style_part2_BodyStuff2(boolean)", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1240, Grace.__$behaviorFactory5_rfield, Grace.__$precondition0_rfield, null, "bAAt2TPA_AddressSubtopic_couch_RewindStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1241, Grace.__$behaviorFactory5_rfield, Grace.__$precondition0_rfield, null, "bAAt2TPA_AddressSubtopic_couch_ReestablishStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1242, Grace.__$behaviorFactory5_rfield, Grace.__$precondition0_rfield, null, "bAAt2TPA_AddressSubtopic_couch_BodyStuff(boolean)", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1244, Grace.__$behaviorFactory5_rfield, Grace.__$precondition0_rfield, null, "bAAt2TPA_AddressSubtopic_couch_part2_ReestablishStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1245, Grace.__$behaviorFactory5_rfield, Grace.__$precondition0_rfield, null, "bAAt2TPA_AddressSubtopic_couch_part2_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1246, Grace.__$behaviorFactory5_rfield, null, null, "bAAt2TPA_AddressSubtopic_couch_part2_BodyStuff2(boolean)", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1247, Grace.__$behaviorFactory5_rfield, Grace.__$precondition0_rfield, null, "bAAt2TPA_AddressSubtopic_armoire_RewindStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1248, Grace.__$behaviorFactory5_rfield, Grace.__$precondition0_rfield, null, "bAAt2TPA_AddressSubtopic_armoire_ReestablishStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1249, Grace.__$behaviorFactory5_rfield, Grace.__$precondition1_rfield, null, "bAAt2TPA_AddressSubtopic_armoire_BodyStuff(boolean)", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1251, Grace.__$behaviorFactory5_rfield, Grace.__$precondition1_rfield, null, "bAAt2TPA_AddressSubtopic_armoire_part2_ReestablishStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1252, Grace.__$behaviorFactory5_rfield, Grace.__$precondition1_rfield, null, "bAAt2TPA_AddressSubtopic_armoire_part2_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1253, Grace.__$behaviorFactory5_rfield, null, null, "bAAt2TPA_AddressSubtopic_armoire_part2_BodyStuff2(boolean)", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1254, Grace.__$behaviorFactory5_rfield, Grace.__$precondition1_rfield, null, "bAAt2TPA_AddressSubtopic_trinkets_RewindStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1255, Grace.__$behaviorFactory5_rfield, Grace.__$precondition1_rfield, null, "bAAt2TPA_AddressSubtopic_trinkets_ReestablishStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1256, Grace.__$behaviorFactory5_rfield, Grace.__$precondition1_rfield, null, "bAAt2TPA_AddressSubtopic_trinkets_BodyStuff(boolean)", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1258, Grace.__$behaviorFactory5_rfield, Grace.__$precondition1_rfield, null, "bAAt2TPA_AddressSubtopic_trinkets_part2_ReestablishStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1259, Grace.__$behaviorFactory5_rfield, Grace.__$precondition1_rfield, null, "bAAt2TPA_AddressSubtopic_trinkets_part2_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1260, Grace.__$behaviorFactory5_rfield, null, null, "bAAt2TPA_AddressSubtopic_trinkets_part2_BodyStuff2(boolean)", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1261, Grace.__$behaviorFactory5_rfield, Grace.__$precondition1_rfield, null, "bAAt2TPA_AddressSubtopic_weddingPic_RewindStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1262, Grace.__$behaviorFactory5_rfield, Grace.__$precondition1_rfield, null, "bAAt2TPA_AddressSubtopic_weddingPic_ReestablishStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1263, Grace.__$behaviorFactory5_rfield, Grace.__$precondition1_rfield, null, "bAAt2TPA_AddressSubtopic_weddingPic_BodyStuff(boolean)", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1265, Grace.__$behaviorFactory5_rfield, Grace.__$precondition1_rfield, null, "bAAt2TPA_AddressSubtopic_weddingPic_part2_ReestablishStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1266, Grace.__$behaviorFactory5_rfield, Grace.__$precondition1_rfield, null, "bAAt2TPA_AddressSubtopic_weddingPic_part2_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1267, Grace.__$behaviorFactory5_rfield, null, null, "bAAt2TPA_AddressSubtopic_weddingPic_part2_BodyStuff2(boolean)", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1268, Grace.__$behaviorFactory5_rfield, Grace.__$precondition1_rfield, null, "bAAt2TPA_AddressSubtopic_painting_RewindStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1269, Grace.__$behaviorFactory5_rfield, Grace.__$precondition1_rfield, null, "bAAt2TPA_AddressSubtopic_painting_ReestablishStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1270, Grace.__$behaviorFactory5_rfield, Grace.__$precondition1_rfield, null, "bAAt2TPA_AddressSubtopic_painting_BodyStuff(boolean)", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1272, Grace.__$behaviorFactory5_rfield, Grace.__$precondition1_rfield, null, "bAAt2TPA_AddressSubtopic_painting_part2_ReestablishStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1273, Grace.__$behaviorFactory5_rfield, Grace.__$precondition1_rfield, null, "bAAt2TPA_AddressSubtopic_painting_part2_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1274, Grace.__$behaviorFactory5_rfield, null, null, "bAAt2TPA_AddressSubtopic_painting_part2_BodyStuff2(boolean)", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1275, Grace.__$behaviorFactory5_rfield, Grace.__$precondition1_rfield, null, "bAAt2TPA_AddressSubtopic_viewBalcony_RewindStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1276, Grace.__$behaviorFactory5_rfield, Grace.__$precondition1_rfield, null, "bAAt2TPA_AddressSubtopic_viewBalcony_ReestablishStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1277, Grace.__$behaviorFactory5_rfield, Grace.__$precondition1_rfield, null, "bAAt2TPA_AddressSubtopic_viewBalcony_BodyStuff(boolean)", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1279, Grace.__$behaviorFactory5_rfield, Grace.__$precondition1_rfield, null, "bAAt2TPA_AddressSubtopic_viewBalcony_part2_ReestablishStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1280, Grace.__$behaviorFactory5_rfield, Grace.__$precondition1_rfield, null, "bAAt2TPA_AddressSubtopic_viewBalcony_part2_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1281, Grace.__$behaviorFactory5_rfield, null, null, "bAAt2TPA_AddressSubtopic_viewBalcony_part2_BodyStuff2(boolean)", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1282, Grace.__$behaviorFactory5_rfield, Grace.__$precondition1_rfield, null, "bAAt2TPA_AddressSubtopic_miscObj_RewindStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1283, Grace.__$behaviorFactory5_rfield, Grace.__$precondition1_rfield, null, "bAAt2TPA_AddressSubtopic_miscObj_ReestablishStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1284, Grace.__$behaviorFactory5_rfield, Grace.__$precondition1_rfield, null, "bAAt2TPA_AddressSubtopic_miscObj_BodyStuff(boolean)", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1286, Grace.__$behaviorFactory5_rfield, Grace.__$precondition1_rfield, null, "bAAt2TPA_AddressSubtopic_miscObj_part2_ReestablishStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1287, Grace.__$behaviorFactory5_rfield, Grace.__$precondition1_rfield, null, "bAAt2TPA_AddressSubtopic_miscObj_part2_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1288, Grace.__$behaviorFactory5_rfield, null, null, "bAAt2TPA_AddressSubtopic_miscObj_part2_BodyStuff2(boolean)", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1289, Grace.__$behaviorFactory5_rfield, Grace.__$precondition1_rfield, null, "bAAt2TPA_WaitTimeout_ReestablishStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1290, Grace.__$behaviorFactory5_rfield, null, null, "bAAt2TPA_WaitTimeout_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1292, Grace.__$behaviorFactory5_rfield, null, null, "bAAt2TPA_TxnOut_NoAffinityChange_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1294, Grace.__$behaviorFactory5_rfield, null, null, "bAAt2TPA_TxnOut_NoAffinityChange_BodyStuff2()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1295, Grace.__$behaviorFactory5_rfield, null, null, "bAAt2TPA_TxnOut_LeanToGPA_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1296, Grace.__$behaviorFactory5_rfield, null, null, "bAAt2TPA_TxnOut_LeanToGPA_BodyStuff2()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1298, Grace.__$behaviorFactory5_rfield, null, null, "bAAt2TPA_TxnOut_LeanToGPA_BodyStuff3()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1299, Grace.__$behaviorFactory5_rfield, null, null, "bAAt2TPA_TxnOut_LeanToGPA_BodyStuff4()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1300, Grace.__$behaviorFactory5_rfield, null, null, "bAAt2TPA_TxnOut_LeanToTPA_BodyStuff2()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1302, Grace.__$behaviorFactory5_rfield, null, null, "bAAt2TPA_TxnOut_LeanToTPA_BodyStuff3()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1304, Grace.__$behaviorFactory5_rfield, null, null, "bAAt2TPA_TxnOut_LeanToTPA_BodyStuff4()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1305, Grace.__$behaviorFactory5_rfield, null, null, "bAAt2TPA_TxnOut_LeanToTPA_BodyStuff5()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1306, Grace.__$behaviorFactory5_rfield, null, null, "bAAt2TPA_TxnOut_LeanToTPA_BodyStuff6()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1307, Grace.__$behaviorFactory5_rfield, null, null, "bAAt2TPA_Mixin_TellMeMore_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1309, Grace.__$behaviorFactory5_rfield, null, null, "bAAt2TPA_Mixin_TellMeMore_BodyStuff2()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1310, Grace.__$behaviorFactory5_rfield, null, null, "bAAt2TPA_Mixin_SetSubtopicDuringTxnIn_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1311, Grace.__$behaviorFactory5_rfield, null, null, "bAAt2TPA_Mixin_GetWantedCriticism_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1313, Grace.__$behaviorFactory5_rfield, null, null, "bAAt2TPA_Mixin_GetUnwantedPraise_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1314, Grace.__$behaviorFactory5_rfield, null, null, "bAAt2TPA_Mixin_GetUnwantedPraise_BodyStuff2()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1315, Grace.__$behaviorFactory5_rfield, null, null, "bAAt2TPA_Mixin_LookAndIgnore_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1316, Grace.__$behaviorFactory5_rfield, Grace.__$precondition1_rfield, null, "BeatInit()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1317, Grace.__$behaviorFactory5_rfield, null, null, "bRMt2GPA_TxnIn_Default_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1318, Grace.__$behaviorFactory5_rfield, null, null, "bRMt2GPA_TxnIn_Default_BodyStuff2()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1319, Grace.__$behaviorFactory5_rfield, null, null, "bRMt2GPA_TxnIn_REPEAT_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1320, Grace.__$behaviorFactory5_rfield, null, null, "bRMt2GPA_TxnIn_ReferTo_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1321, Grace.__$behaviorFactory5_rfield, null, null, "bRMt2GPA_LurePlayer_FirstTime_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1322, Grace.__$behaviorFactory5_rfield, null, null, "bRMt2GPA_LurePlayer_FirstTime_BodyStuff2()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1324, Grace.__$behaviorFactory5_rfield, null, null, "bRMt2GPA_LurePlayer_FirstTime_BodyStuff3()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1325, Grace.__$behaviorFactory5_rfield, null, null, "bRMt2GPA_LurePlayer_FirstTime_BodyStuff4()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1326, Grace.__$behaviorFactory5_rfield, null, null, "bRMt2GPA_LurePlayer_SecondTime_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1327, Grace.__$behaviorFactory5_rfield, null, null, "bRMt2GPA_LurePlayer_SecondTime_BodyStuff2()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1329, Grace.__$behaviorFactory5_rfield, null, null, "bRMt2GPA_StartGuessingGame_pre_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1330, Grace.__$behaviorFactory5_rfield, null, null, "bRMt2GPA_StartGuessingGame_pre_BodyStuff2()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1331, Grace.__$behaviorFactory5_rfield, null, null, "bRMt2GPA_StartGuessingGame_BodyStuff2()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1332, Grace.__$behaviorFactory5_rfield, null, null, "bRMt2GPA_StartGuessingGame_BodyStuff3()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1333, Grace.__$behaviorFactory5_rfield, null, null, "bRMt2GPA_StartGuessingGame_p2_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1334, Grace.__$behaviorFactory5_rfield, null, null, "bRMt2GPA_StartGuessingGame_p2_BodyStuff2()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1335, Grace.__$behaviorFactory5_rfield, null, null, "bRMt2GPA_Mixin_MoreThanAWord_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1336, Grace.__$behaviorFactory5_rfield, null, null, "bRMt2GPA_Mixin_MoreThanAWord_BodyStuff2()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1339, Grace.__$behaviorFactory5_rfield, null, null, "bRMt2GPA_Mixin_MoreThanAWord_BodyStuff3()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1340, Grace.__$behaviorFactory5_rfield, null, null, "bRMt2GPA_Mixin_WrongSingleWord_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1342, Grace.__$behaviorFactory5_rfield, null, null, "bRMt2GPA_Mixin_WrongSingleWord_BodyStuff2()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1343, Grace.__$behaviorFactory5_rfield, null, null, "bRMt2GPA_Mixin_FirstGuessTimeout_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1344, Grace.__$behaviorFactory5_rfield, null, null, "bRMt2GPA_Mixin_TellMeMore_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1345, Grace.__$behaviorFactory5_rfield, null, null, "bRMt2GPA_Mixin_TellMeMore_BodyStuff2()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1346, Grace.__$behaviorFactory5_rfield, null, null, "bRMt2GPA_Mixin_TellMeMore_BodyStuff2b()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1347, Grace.__$behaviorFactory5_rfield, null, null, "bRMt2GPA_Mixin_TellMeMore_BodyStuff3()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1348, Grace.__$behaviorFactory5_rfield, null, null, "bRMt2GPA_Mixin_TellMeMore_BodyStuff4()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1349, Grace.__$behaviorFactory5_rfield, null, null, "bRMt2GPA_Mixin_LookAndIgnore_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1350, Grace.__$behaviorFactory5_rfield, null, null, "bRMt2GPA_WaitTimeout_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1351, Grace.__$behaviorFactory5_rfield, null, null, "bRMt2GPA_TxnOut_WrongAnswer_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1352, Grace.__$behaviorFactory5_rfield, null, null, "bRMt2GPA_TxnOut_WrongAnswer_BodyStuff2()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1353, Grace.__$behaviorFactory5_rfield, null, null, "bRMt2GPA_TxnOut_WrongAnswer_BodyStuff3()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1354, Grace.__$behaviorFactory5_rfield, null, null, "bRMt2GPA_TxnOut_WrongAnswer_BodyStuff4()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1356, Grace.__$behaviorFactory6_rfield, null, null, "bRMt2GPA_TxnOut_WrongAnswer_BodyStuff5()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1358, Grace.__$behaviorFactory6_rfield, null, null, "bRMt2GPA_TxnOut_LeanToTPA_p2_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1359, Grace.__$behaviorFactory6_rfield, null, null, "bRMt2GPA_TxnOut_LeanToTPA_p2_BodyStuff2()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1361, Grace.__$behaviorFactory6_rfield, null, null, "bRMt2GPA_TxnOut_LeanToTPA_p2_BodyStuff3()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1362, Grace.__$behaviorFactory6_rfield, null, null, "bRMt2GPA_TxnOut_LeanToTPA_p2_BodyStuff4()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1363, Grace.__$behaviorFactory6_rfield, null, null, "bRMt2GPA_TxnOut_LeanToTPA_RightAnswer_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1364, Grace.__$behaviorFactory6_rfield, null, null, "bRMt2GPA_TxnOut_LeanToTPA_RightAnswer_BodyStuff2()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1365, Grace.__$behaviorFactory6_rfield, null, null, "bRMt2GPA_TxnOut_PlayerNotAtPicture_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1366, Grace.__$behaviorFactory6_rfield, null, null, "bRMt2GPA_TxnOut_PlayerNotAtPicture_BodyStuff2()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1367, Grace.__$behaviorFactory6_rfield, null, null, "bRMt2GPA_TxnOut_PlayerNotAtPicture_BodyStuff3()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1368, Grace.__$behaviorFactory6_rfield, null, null, "bRMt2GPA_TxnOut_PlayerNotAtPicture_BodyStuff4()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1369, Grace.__$behaviorFactory6_rfield, null, null, "bRMt2GPA_TxnOut_PlayerNotAtPicture_BodyStuff5()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1370, Grace.__$behaviorFactory6_rfield, null, null, "bRMt2GPA_TxnOut_PlayerNotAtPicture_BodyStuff6()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1371, Grace.__$behaviorFactory6_rfield, null, null, "bRMt2GPA_TxnOut_PlayerNotAtPicture_BodyStuff7()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1372, Grace.__$behaviorFactory6_rfield, Grace.__$precondition1_rfield, null, "BeatInit()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1373, Grace.__$behaviorFactory6_rfield, null, null, "bRMt2TPA_TxnIn_Default_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1375, Grace.__$behaviorFactory6_rfield, null, null, "bRMt2TPA_TxnIn_Default_BodyStuff2()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1376, Grace.__$behaviorFactory6_rfield, null, null, "bRMt2TPA_TxnIn_REPEAT_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1377, Grace.__$behaviorFactory6_rfield, null, null, "bRMt2TPA_TxnIn_ReferTo_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1379, Grace.__$behaviorFactory6_rfield, null, null, "bRMt2TPA_TxnIn_ReferTo_BodyStuff2()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1380, Grace.__$behaviorFactory6_rfield, null, null, "bRMt2TPA_LurePlayer_FirstTime_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1381, Grace.__$behaviorFactory6_rfield, null, null, "bRMt2TPA_LurePlayer_FirstTime_BodyStuff2()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1383, Grace.__$behaviorFactory6_rfield, null, null, "bRMt2TPA_LurePlayer_FirstTime_BodyStuff3()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1384, Grace.__$behaviorFactory6_rfield, null, null, "bRMt2TPA_LurePlayer_FirstTime_BodyStuff4()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1385, Grace.__$behaviorFactory6_rfield, null, null, "bRMt2TPA_LurePlayer_SecondTime_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1386, Grace.__$behaviorFactory6_rfield, null, null, "bRMt2TPA_LurePlayer_SecondTime_BodyStuff2()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1388, Grace.__$behaviorFactory6_rfield, null, null, "bRMt2TPA_StartGuessingGame_pre_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1389, Grace.__$behaviorFactory6_rfield, null, null, "bRMt2TPA_StartGuessingGame_BodyStuff2()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1390, Grace.__$behaviorFactory6_rfield, null, null, "bRMt2TPA_StartGuessingGame_BodyStuff3()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1391, Grace.__$behaviorFactory6_rfield, null, null, "bRMt2TPA_StartGuessingGame_p2_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1392, Grace.__$behaviorFactory6_rfield, null, null, "bRMt2TPA_Mixin_MoreThanAWord_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1393, Grace.__$behaviorFactory6_rfield, null, null, "bRMt2TPA_Mixin_MoreThanAWord_BodyStuff2()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1396, Grace.__$behaviorFactory6_rfield, null, null, "bRMt2TPA_Mixin_MoreThanAWord_BodyStuff3()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1397, Grace.__$behaviorFactory6_rfield, null, null, "bRMt2TPA_Mixin_WrongSingleWord_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1398, Grace.__$behaviorFactory6_rfield, null, null, "bRMt2TPA_Mixin_WrongSingleWord_BodyStuff2()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1399, Grace.__$behaviorFactory6_rfield, null, null, "bRMt2TPA_Mixin_WrongSingleWord_BodyStuff3()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1400, Grace.__$behaviorFactory6_rfield, null, null, "bRMt2TPA_Mixin_FirstGuessTimeout_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1401, Grace.__$behaviorFactory6_rfield, null, null, "bRMt2TPA_Mixin_TellMeMore_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1402, Grace.__$behaviorFactory6_rfield, null, null, "bRMt2TPA_Mixin_TellMeMore_BodyStuff2()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1403, Grace.__$behaviorFactory6_rfield, null, null, "bRMt2TPA_Mixin_TellMeMore_BodyStuff2b()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1404, Grace.__$behaviorFactory6_rfield, null, null, "bRMt2TPA_Mixin_TellMeMore_BodyStuff3()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1405, Grace.__$behaviorFactory6_rfield, null, null, "bRMt2TPA_Mixin_TellMeMore_BodyStuff4()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1406, Grace.__$behaviorFactory6_rfield, null, null, "bRMt2TPA_Mixin_LookAndIgnore_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1407, Grace.__$behaviorFactory6_rfield, null, null, "bRMt2TPA_WaitTimeout_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1408, Grace.__$behaviorFactory6_rfield, null, null, "bRMt2TPA_TxnOut_WrongAnswer_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1409, Grace.__$behaviorFactory6_rfield, null, null, "bRMt2TPA_TxnOut_WrongAnswer_BodyStuff2()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1411, Grace.__$behaviorFactory6_rfield, null, null, "bRMt2TPA_TxnOut_WrongAnswer_BodyStuff3()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1413, Grace.__$behaviorFactory6_rfield, null, null, "bRMt2TPA_TxnOut_WrongAnswer_BodyStuff4()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1414, Grace.__$behaviorFactory6_rfield, null, null, "bRMt2TPA_TxnOut_LeanToTPA_p2_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1415, Grace.__$behaviorFactory6_rfield, null, null, "bRMt2TPA_TxnOut_LeanToTPA_p2_BodyStuff2()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1416, Grace.__$behaviorFactory6_rfield, null, null, "bRMt2TPA_TxnOut_LeanToTPA_p2_BodyStuff3()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1417, Grace.__$behaviorFactory6_rfield, null, null, "bRMt2TPA_TxnOut_LeanToTPA_p2_BodyStuff4()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1418, Grace.__$behaviorFactory6_rfield, null, null, "bRMt2TPA_TxnOut_LeanToTPA_RightAnswer_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1419, Grace.__$behaviorFactory6_rfield, null, null, "bRMt2TPA_TxnOut_PlayerNotAtPicture_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1420, Grace.__$behaviorFactory6_rfield, null, null, "bRMt2TPA_TxnOut_PlayerNotAtPicture_BodyStuff2()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1421, Grace.__$behaviorFactory6_rfield, null, null, "bRMt2TPA_TxnOut_PlayerNotAtPicture_BodyStuff3()", new String[] { "Trip", "Grace" }, (short)0));
}
private static final void registerBehaviors_5(final BehaviorLibrary behaviorLibrary) {
behaviorLibrary.registerBehavior(new __BehaviorDesc(1422, Grace.__$behaviorFactory6_rfield, null, null, "bRMt2TPA_TxnOut_PlayerNotAtPicture_BodyStuff4()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1423, Grace.__$behaviorFactory6_rfield, null, null, "bRMt2TPA_TxnOut_PlayerNotAtPicture_BodyStuff5()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1424, Grace.__$behaviorFactory6_rfield, null, null, "bRMt2TPA_TxnOut_PlayerNotAtPicture_BodyStuff6()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1426, Grace.__$behaviorFactory6_rfield, null, null, "bRMt2TPA_TxnOut_PlayerNotAtPicture_BodyStuff7()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1427, Grace.__$behaviorFactory6_rfield, null, null, "bRMt2TPA_TxnOut_PlayerNotAtPicture_BodyStuff8()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1428, Grace.__$behaviorFactory6_rfield, Grace.__$precondition1_rfield, null, "BeatInit()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1429, Grace.__$behaviorFactory6_rfield, null, null, "bFAskDrinkT2TPA_TxnIn_Default_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1430, Grace.__$behaviorFactory6_rfield, null, null, "bFAskDrinkT2TPA_TxnIn_ReferTo_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1431, Grace.__$behaviorFactory6_rfield, null, null, "bFAskDrinkT2TPA_TxnIn_REPEAT_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1432, Grace.__$behaviorFactory6_rfield, null, null, "bFAskDrinkT2TPA_TxnIn_BodyStuff2()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1435, Grace.__$behaviorFactory6_rfield, null, null, "bFAskDrinkT2TPA_TxnIn_BodyStuff3()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1437, Grace.__$behaviorFactory6_rfield, null, null, "bFAskDrinkT2TPA_TSuggest_ReestablishBodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1438, Grace.__$behaviorFactory6_rfield, null, null, "bFAskDrinkT2TPA_TSuggest_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1439, Grace.__$behaviorFactory6_rfield, null, null, "bFAskDrinkT2TPA_TSuggest2_ReestablishBodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1440, Grace.__$behaviorFactory6_rfield, null, null, "bFAskDrinkT2TPA_TSuggest2_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1444, Grace.__$behaviorFactory6_rfield, null, null, "bFAskDrinkT2TPA_TSuggest2_BodyStuff2()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1445, Grace.__$behaviorFactory6_rfield, null, null, "bFAskDrinkT2TPA_InitialWait_ReestablishBodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1446, Grace.__$behaviorFactory6_rfield, null, null, "bFAskDrinkT2TPA_InitialWait_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1447, Grace.__$behaviorFactory6_rfield, null, null, "bFAskDrinkT2TPA_Mixin_GSuggest_AgreeT_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1448, Grace.__$behaviorFactory6_rfield, Grace.__$precondition1_rfield, null, "bFAskDrinkT2TPA_Mixin_GSuggest_BodyStuff2(boolean)", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1455, Grace.__$behaviorFactory6_rfield, Grace.__$precondition1_rfield, null, "bFAskDrinkT2TPA_Mixin_GSuggest_BodyStuff2(boolean)", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1463, Grace.__$behaviorFactory6_rfield, null, null, "bFAskDrinkT2TPA_Mixin_GSuggest_BodyStuff3()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1464, Grace.__$behaviorFactory6_rfield, null, null, "bFAskDrinkT2TPA_Mixin_GSuggest_DisagreeT_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1465, Grace.__$behaviorFactory6_rfield, null, null, "bFAskDrinkT2TPA_Mixin_GSuggest_DisagreeT_BodyStuff1b()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1471, Grace.__$behaviorFactory6_rfield, null, null, "bFAskDrinkT2TPA_Mixin_GSuggest_SpecificRequestNonAnswer_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1472, Grace.__$behaviorFactory6_rfield, null, null, "bFAskDrinkT2TPA_WaitTimeout_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1473, Grace.__$behaviorFactory6_rfield, null, null, "bFAskDrinkT2TPA_TxnOut_AgreeG_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1476, Grace.__$behaviorFactory6_rfield, null, null, "bFAskDrinkT2TPA_TxnOut_AgreeG_BodyStuff2()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1478, Grace.__$behaviorFactory6_rfield, Grace.__$precondition1_rfield, null, "bFAskDrinkT2TPA_TxnOut_DisagreeGNonAnswer_BodyStuff(int)", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1479, Grace.__$behaviorFactory6_rfield, Grace.__$precondition1_rfield, null, "bFAskDrinkT2TPA_TxnOut_DisagreeGNonAnswer_BodyStuff(int)", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1480, Grace.__$behaviorFactory6_rfield, null, null, "bFAskDrinkT2TPA_TxnOut_DisagreeGNonAnswer_BodyStuff2()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1482, Grace.__$behaviorFactory6_rfield, Grace.__$precondition1_rfield, null, "BeatInit()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1483, Grace.__$behaviorFactory6_rfield, null, null, "bFAskDrinkT2GPA_TxnIn_Default_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1484, Grace.__$behaviorFactory6_rfield, null, null, "bFAskDrinkT2GPA_TxnIn_ReferTo_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1486, Grace.__$behaviorFactory6_rfield, null, null, "bFAskDrinkT2GPA_TxnIn_REPEAT_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1487, Grace.__$behaviorFactory6_rfield, null, null, "bFAskDrinkT2GPA_TxnIn_BodyStuff2()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1489, Grace.__$behaviorFactory6_rfield, null, null, "bFAskDrinkT2GPA_TxnIn_BodyStuff3()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1491, Grace.__$behaviorFactory6_rfield, null, null, "bFAskDrinkT2GPA_TSuggest_ReestablishBodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1492, Grace.__$behaviorFactory6_rfield, null, null, "bFAskDrinkT2GPA_TSuggest_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1498, Grace.__$behaviorFactory6_rfield, null, null, "bFAskDrinkT2GPA_TSuggest2_ReestablishBodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1499, Grace.__$behaviorFactory6_rfield, null, null, "bFAskDrinkT2GPA_TSuggest2_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1501, Grace.__$behaviorFactory6_rfield, null, null, "bFAskDrinkT2GPA_InitialWait_ReestablishBodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1502, Grace.__$behaviorFactory6_rfield, null, null, "bFAskDrinkT2GPA_InitialWait_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1504, Grace.__$behaviorFactory6_rfield, null, null, "bFAskDrinkT2GPA_Mixin_GSuggest_AgreeT_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1505, Grace.__$behaviorFactory6_rfield, Grace.__$precondition1_rfield, null, "bFAskDrinkT2GPA_Mixin_GSuggest_BodyStuff2(boolean)", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1511, Grace.__$behaviorFactory6_rfield, Grace.__$precondition1_rfield, null, "bFAskDrinkT2GPA_Mixin_GSuggest_BodyStuff2(boolean)", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1519, Grace.__$behaviorFactory6_rfield, null, null, "bFAskDrinkT2GPA_Mixin_GSuggest_BodyStuff3()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1520, Grace.__$behaviorFactory6_rfield, null, null, "bFAskDrinkT2GPA_Mixin_GSuggest_DisagreeT_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1521, Grace.__$behaviorFactory6_rfield, null, null, "bFAskDrinkT2GPA_Mixin_GSuggest_DisagreeT_BodyStuff1b()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1527, Grace.__$behaviorFactory6_rfield, null, null, "bFAskDrinkT2GPA_Mixin_GSuggest_SpecificRequestNonAnswer_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1528, Grace.__$behaviorFactory6_rfield, null, null, "bFAskDrinkT2GPA_WaitTimeout_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1529, Grace.__$behaviorFactory6_rfield, null, null, "bFAskDrinkT2GPA_TxnOut_AgreeG_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1532, Grace.__$behaviorFactory6_rfield, null, null, "bFAskDrinkT2GPA_TxnOut_AgreeG_BodyStuff2()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1534, Grace.__$behaviorFactory6_rfield, Grace.__$precondition1_rfield, null, "bFAskDrinkT2GPA_TxnOut_DisagreeGNonAnswer_BodyStuff(int)", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1535, Grace.__$behaviorFactory6_rfield, Grace.__$precondition1_rfield, null, "bFAskDrinkT2GPA_TxnOut_DisagreeGNonAnswer_BodyStuff(int)", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1536, Grace.__$behaviorFactory6_rfield, null, null, "bFAskDrinkT2GPA_TxnOut_DisagreeGNonAnswer_BodyStuff2()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1538, Grace.__$behaviorFactory6_rfield, Grace.__$precondition1_rfield, null, "BeatInit()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1539, Grace.__$behaviorFactory6_rfield, null, null, "bOneOnOneTAffChrT2_TxnIn_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1540, Grace.__$behaviorFactory6_rfield, null, null, "bOneOnOneTAffChrT2_TxnIn_BodyStuff2()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1541, Grace.__$behaviorFactory6_rfield, null, null, "bOneOnOneTAffChrT2_Defuse_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1542, Grace.__$behaviorFactory6_rfield, null, null, "bOneOnOneTAffChrT2_Confess_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1543, Grace.__$behaviorFactory6_rfield, null, null, "bOneOnOneTAffChrT2_FinalYelling_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1545, Grace.__$behaviorFactory6_rfield, null, null, "bOneOnOneTAffChrT2_Mixin_MoveToLeaveRoom_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1546, Grace.__$behaviorFactory6_rfield, null, null, "bOneOnOneTAffChrT2_Mixin_Mild_Apologize_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1547, Grace.__$behaviorFactory6_rfield, null, null, "bOneOnOneTAffChrT2_Mixin_Mild_Pos_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1548, Grace.__$behaviorFactory6_rfield, null, null, "bOneOnOneTAffChrT2_Mixin_Mild_Neg_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1549, Grace.__$behaviorFactory6_rfield, null, null, "bOneOnOneTAffChrT2_Mixin_Mild_Bond_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1550, Grace.__$behaviorFactory6_rfield, null, null, "bOneOnOneTAffChrT2_Mixin_FlirtKissOppSex_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1551, Grace.__$behaviorFactory6_rfield, null, null, "bOneOnOneTAffChrT2_Mixin_AnythingElseStrongReferTo_BodyStuff(int)", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1552, Grace.__$behaviorFactory6_rfield, null, null, "bOneOnOneTAffChrT2_Mixin_AnythingElseStrongCrit_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1553, Grace.__$behaviorFactory6_rfield, null, null, "bOneOnOneTAffChrT2_Mixin_AnythingElseStrongExtreme_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1554, Grace.__$behaviorFactory6_rfield, null, null, "bOneOnOneTAffChrT2_Mixin_AnythingElseStrongOther_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1555, Grace.__$behaviorFactory6_rfield, null, null, "bOneOnOneTAffChrT2_Mixin_AnythingElseStrong_BodyStuff2_HorsD()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1557, Grace.__$behaviorFactory6_rfield, null, null, "bOneOnOneTAffChrT2_Mixin_AnythingElseStrong_BodyStuff2_DishBreaks()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1563, Grace.__$behaviorFactory6_rfield, null, null, "bOneOnOneTAffChrT2_Mixin_AnythingElseStrong_2ndtime_Extreme_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1564, Grace.__$behaviorFactory6_rfield, null, null, "bOneOnOneTAffChrT2_Mixin_AnythingElseStrong_2ndtime_Other_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1565, Grace.__$behaviorFactory6_rfield, null, null, "bOneOnOneTAffChrT2_Mixin_LookAndIgnore_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1566, Grace.__$behaviorFactory6_rfield, Grace.__$precondition1_rfield, null, "BeatInit()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1567, Grace.__$behaviorFactory6_rfield, null, null, "bOneOnOneGAffChrT2_TxnIn_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1569, Grace.__$behaviorFactory6_rfield, null, null, "bOneOnOneGAffChrT2_TxnIn_BodyStuff_seq_context()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1578, Grace.__$behaviorFactory6_rfield, null, null, "bOneOnOneGAffChrT2_TxnIn_BodyStuff2()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1580, Grace.__$behaviorFactory6_rfield, null, null, "bOneOnOneGAffChrT2_Defuse_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1586, Grace.__$behaviorFactory7_rfield, null, null, "bOneOnOneGAffChrT2_Confess_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1598, Grace.__$behaviorFactory7_rfield, null, null, "bOneOnOneGAffChrT2_FinalYelling_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1600, Grace.__$behaviorFactory7_rfield, null, null, "bOneOnOneGAffChrT2_Mixin_MoveToLeaveRoom_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1602, Grace.__$behaviorFactory7_rfield, null, null, "bOneOnOneGAffChrT2_Mixin_Mild_Apologize_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1603, Grace.__$behaviorFactory7_rfield, null, null, "bOneOnOneGAffChrT2_Mixin_Mild_Pos_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1604, Grace.__$behaviorFactory7_rfield, null, null, "bOneOnOneGAffChrT2_Mixin_Mild_Neg_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1605, Grace.__$behaviorFactory7_rfield, null, null, "bOneOnOneGAffChrT2_Mixin_Mild_Bond_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1606, Grace.__$behaviorFactory7_rfield, null, null, "bOneOnOneGAffChrT2_Mixin_FlirtKissOppSex_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1614, Grace.__$behaviorFactory7_rfield, null, null, "bOneOnOneGAffChrT2_Mixin_AnythingElseStrongReferTo_BodyStuff(int)", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1617, Grace.__$behaviorFactory7_rfield, null, null, "bOneOnOneGAffChrT2_Mixin_AnythingElseStrongCrit_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1620, Grace.__$behaviorFactory7_rfield, null, null, "bOneOnOneGAffChrT2_Mixin_AnythingElseStrongExtreme_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1623, Grace.__$behaviorFactory7_rfield, null, null, "bOneOnOneGAffChrT2_Mixin_AnythingElseStrongOther_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1624, Grace.__$behaviorFactory7_rfield, null, null, "bOneOnOneGAffChrT2_Mixin_AnythingElseStrong_BodyStuff2_HorsD()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1634, Grace.__$behaviorFactory7_rfield, null, null, "bOneOnOneGAffChrT2_Mixin_AnythingElseStrong_BodyStuff2_DishBreaks()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1639, Grace.__$behaviorFactory7_rfield, null, null, "bOneOnOneGAffChrT2_Mixin_AnythingElseStrong_2ndtime_Extreme_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1642, Grace.__$behaviorFactory7_rfield, null, null, "bOneOnOneGAffChrT2_Mixin_AnythingElseStrong_2ndtime_Other_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1645, Grace.__$behaviorFactory7_rfield, null, null, "bOneOnOneGAffChrT2_Mixin_LookAndIgnore_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1646, Grace.__$behaviorFactory7_rfield, Grace.__$precondition1_rfield, null, "BeatInit()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1647, Grace.__$behaviorFactory7_rfield, null, null, "bOneOnOneTNonAffChrT2_TxnIn_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1648, Grace.__$behaviorFactory7_rfield, null, null, "bOneOnOneTNonAffChrT2_InitialComment_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1649, Grace.__$behaviorFactory7_rfield, null, null, "bOneOnOneTNonAffChrT2_Mixin_Confession_BodyStuff(boolean)", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1650, Grace.__$behaviorFactory7_rfield, null, null, "bOneOnOneTNonAffChrT2_TxnOut_Positive_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1652, Grace.__$behaviorFactory7_rfield, null, null, "bOneOnOneTNonAffChrT2_TxnOut_Positive_BodyStuff2()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1654, Grace.__$behaviorFactory7_rfield, null, null, "bOneOnOneTNonAffChrT2_TxnOut_Positive_BodyStuff3()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1655, Grace.__$behaviorFactory7_rfield, null, null, "bOneOnOneTNonAffChrT2_TxnOut_FlirtKiss_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1656, Grace.__$behaviorFactory7_rfield, null, null, "bOneOnOneTNonAffChrT2_TxnOut_StrongNotMean_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1657, Grace.__$behaviorFactory7_rfield, null, null, "bOneOnOneTNonAffChrT2_TxnOut_MeanNeg_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1658, Grace.__$behaviorFactory7_rfield, null, null, "bOneOnOneTNonAffChrT2_TxnOut_PlayerLeaves_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1660, Grace.__$behaviorFactory7_rfield, Grace.__$precondition1_rfield, null, "BeatInit()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1662, Grace.__$behaviorFactory7_rfield, null, null, "bOneOnOneGNonAffChrT2_TxnIn_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1668, Grace.__$behaviorFactory7_rfield, null, null, "bOneOnOneGNonAffChrT2_InitialComment_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1683, Grace.__$behaviorFactory7_rfield, null, null, "bOneOnOneGNonAffChrT2_Mixin_Confession_BodyStuff(boolean)", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1699, Grace.__$behaviorFactory7_rfield, null, null, "bOneOnOneGNonAffChrT2_TxnOut_Positive_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1701, Grace.__$behaviorFactory7_rfield, null, null, "bOneOnOneGNonAffChrT2_TxnOut_Positive_BodyStuff2()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1703, Grace.__$behaviorFactory7_rfield, null, null, "bOneOnOneGNonAffChrT2_TxnOut_Positive_BodyStuff3()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1704, Grace.__$behaviorFactory7_rfield, null, null, "bOneOnOneGNonAffChrT2_TxnOut_FlirtKiss_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1712, Grace.__$behaviorFactory7_rfield, null, null, "bOneOnOneGNonAffChrT2_TxnOut_StrongNotMean_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1716, Grace.__$behaviorFactory7_rfield, null, null, "bOneOnOneGNonAffChrT2_TxnOut_MeanNeg_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1720, Grace.__$behaviorFactory7_rfield, null, null, "bOneOnOneGNonAffChrT2_TxnOut_PlayerLeaves_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1722, Grace.__$behaviorFactory7_rfield, Grace.__$precondition1_rfield, null, "BeatInit()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1723, Grace.__$behaviorFactory7_rfield, null, null, "bNonAffChrGReturnsT2_TxnIn_Veronica_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1724, Grace.__$behaviorFactory7_rfield, null, null, "bNonAffChrGReturnsT2_TxnIn_Veronica_BodyStuff2()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1725, Grace.__$behaviorFactory7_rfield, null, null, "bNonAffChrGReturnsT2_TxnIn_Grace_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1726, Grace.__$behaviorFactory7_rfield, null, null, "bNonAffChrGReturnsT2_TxnIn_Grace_BodyStuff2()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1728, Grace.__$behaviorFactory7_rfield, null, null, "bNonAffChrGReturnsT2_Mixin_Veronica_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1730, Grace.__$behaviorFactory7_rfield, null, null, "bNonAffChrGReturnsT2_Mixin_Veronica_BodyStuff2()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1732, Grace.__$behaviorFactory7_rfield, null, null, "bNonAffChrGReturnsT2_TxnOut_Veronica_BodyStuff(int)", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1735, Grace.__$behaviorFactory7_rfield, null, null, "bNonAffChrGReturnsT2_TxnOut_NotVeronica_BodyStuff(boolean)", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1740, Grace.__$behaviorFactory7_rfield, null, null, "bNonAffChrGReturnsT2_TxnOut_ReferToSatl_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1744, Grace.__$behaviorFactory7_rfield, Grace.__$precondition1_rfield, null, "BeatInit()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1745, Grace.__$behaviorFactory7_rfield, null, null, "bNonAffChrTReturnsT2_TxnIn_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1756, Grace.__$behaviorFactory7_rfield, null, null, "bNonAffChrTReturnsT2_TxnOut_ForgotCheese_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1758, Grace.__$behaviorFactory7_rfield, null, null, "bNonAffChrTReturnsT2_TxnOut_Comment_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1760, Grace.__$behaviorFactory7_rfield, null, null, "bNonAffChrTReturnsT2_TxnOut_StrongNonNeg_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1763, Grace.__$behaviorFactory7_rfield, null, null, "bNonAffChrTReturnsT2_TxnOut_StrongNeg_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1766, Grace.__$behaviorFactory7_rfield, Grace.__$precondition1_rfield, null, "BeatInit()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1767, Grace.__$behaviorFactory7_rfield, null, null, "bRomPrpT2GPA_TxnIn_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1769, Grace.__$behaviorFactory7_rfield, null, null, "bRomPrpT2GPA_TxnIn_BodyStuff2()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1772, Grace.__$behaviorFactory7_rfield, Grace.__$precondition1_rfield, null, "bRomPrpT2GPA_TxnIn_BodyStuff3()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1777, Grace.__$behaviorFactory7_rfield, Grace.__$precondition1_rfield, null, "bRomPrpT2GPA_Body_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1779, Grace.__$behaviorFactory7_rfield, null, null, "bRomPrpT2GPA_WaitTimeout_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1781, Grace.__$behaviorFactory7_rfield, null, null, "bRomPrpT2GPA_TxnOut_NonAnswer_TxnOut_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1783, Grace.__$behaviorFactory7_rfield, null, null, "bRomPrpT2GPA_TxnOut_NonAnswer_TxnOut_PreCrisis_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1785, Grace.__$behaviorFactory7_rfield, null, null, "bRomPrpT2GPA_TxnOut_AgreeT_TxnOut_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1787, Grace.__$behaviorFactory7_rfield, null, null, "bRomPrpT2GPA_TxnOut_AgreeT_TxnOut_PreCrisis_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1789, Grace.__$behaviorFactory7_rfield, null, null, "bRomPrpT2GPA_TxnOut_DisagreeT_TxnOut_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1791, Grace.__$behaviorFactory7_rfield, null, null, "bRomPrpT2GPA_TxnOut_DisagreeT_TxnOut_PreCrisis_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1793, Grace.__$behaviorFactory7_rfield, Grace.__$precondition1_rfield, null, "BeatInit()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1794, Grace.__$behaviorFactory7_rfield, Grace.__$precondition1_rfield, null, "BeatInit()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1809, Grace.__$behaviorFactory8_rfield, null, null, "bCrisisP1_Body3_BigQuestion_BodyStuff_context()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1810, Grace.__$behaviorFactory8_rfield, null, null, "bCrisisP1_Body_CajoleLeaveRoomPlayer_BodyStuff(int)", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1842, Grace.__$behaviorFactory8_rfield, Grace.__$precondition1_rfield, null, "bCrisisP1_TxnIn_PreAccusationOpeningYell_BodyStuff(int)", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1846, Grace.__$behaviorFactory8_rfield, Grace.__$precondition1_rfield, null, "bCrisisP1_TxnIn_PreAccusationOpeningYell_BodyStuff(int)", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1847, Grace.__$behaviorFactory8_rfield, Grace.__$precondition1_rfield, null, "bCrisisP1_TxnIn_Setup_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1853, Grace.__$behaviorFactory8_rfield, Grace.__$precondition1_rfield, null, "bCrisisP1_TxnIn_Setup_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1854, Grace.__$behaviorFactory8_rfield, Grace.__$precondition1_rfield, null, "bCrisisP1_TxnIn_ShortCausationPhrase_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1855, Grace.__$behaviorFactory8_rfield, Grace.__$precondition1_rfield, null, "bCrisisP1_TxnIn_ShortCausationPhrase_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1856, Grace.__$behaviorFactory8_rfield, Grace.__$precondition1_rfield, null, "bCrisisP1_TxnIn_Accusation_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1857, Grace.__$behaviorFactory8_rfield, Grace.__$precondition1_rfield, null, "bCrisisP1_TxnIn_Accusation_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1858, Grace.__$behaviorFactory8_rfield, Grace.__$precondition1_rfield, null, "bCrisisP1_Body_AccusedAppalled_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1859, Grace.__$behaviorFactory8_rfield, Grace.__$precondition1_rfield, null, "bCrisisP1_Body_AccusedAppalled_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1869, Grace.__$behaviorFactory8_rfield, Grace.__$precondition1_rfield, null, "bCrisisP1_Body_AccuserSlamPlayer_BodyStuff(int, int)", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1883, Grace.__$behaviorFactory8_rfield, Grace.__$precondition1_rfield, null, "bCrisisP1_Body_AccuserSlamPlayer_BodyStuff(int, int)", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1884, Grace.__$behaviorFactory8_rfield, Grace.__$precondition1_rfield, null, "bCrisisP1_Body_WaitTimeout_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1885, Grace.__$behaviorFactory8_rfield, Grace.__$precondition1_rfield, null, "bCrisisP1_Body_WaitTimeout_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1887, Grace.__$behaviorFactory8_rfield, Grace.__$precondition1_rfield, null, "bCrisisP1_Body_InitialReaction_BodyStuff(int, int, int)", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1894, Grace.__$behaviorFactory8_rfield, Grace.__$precondition1_rfield, null, "bCrisisP1_Body_InitialReaction_BodyStuff(int, int, int)", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1895, Grace.__$behaviorFactory8_rfield, Grace.__$precondition1_rfield, null, "bCrisisP1_Body2_ShortCausationPhrase_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1896, Grace.__$behaviorFactory8_rfield, Grace.__$precondition1_rfield, null, "bCrisisP1_Body2_ShortCausationPhrase_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1897, Grace.__$behaviorFactory8_rfield, Grace.__$precondition1_rfield, null, "bCrisisP1_Body2_Accusation_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1898, Grace.__$behaviorFactory8_rfield, Grace.__$precondition1_rfield, null, "bCrisisP1_Body2_Accusation_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1900, Grace.__$behaviorFactory8_rfield, Grace.__$precondition1_rfield, null, "bCrisisP1_Body_SecondReaction_BodyStuff(int, int, int)", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1907, Grace.__$behaviorFactory8_rfield, Grace.__$precondition1_rfield, null, "bCrisisP1_Body_SecondReaction_BodyStuff(int, int, int)", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1908, Grace.__$behaviorFactory8_rfield, Grace.__$precondition1_rfield, null, "bCrisisP1_Body3_ShortCausationPhrase_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1909, Grace.__$behaviorFactory8_rfield, Grace.__$precondition1_rfield, null, "bCrisisP1_Body3_ShortCausationPhrase_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1910, Grace.__$behaviorFactory8_rfield, Grace.__$precondition1_rfield, null, "bCrisisP1_Body3_Accusation_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1911, Grace.__$behaviorFactory8_rfield, Grace.__$precondition1_rfield, null, "bCrisisP1_Body3_Accusation_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1913, Grace.__$behaviorFactory8_rfield, Grace.__$precondition1_rfield, null, "bCrisisP1_Body3_BigQuestion_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1915, Grace.__$behaviorFactory8_rfield, Grace.__$precondition1_rfield, null, "bCrisisP1_Body3_BigQuestion_BodyStuff2()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1919, Grace.__$behaviorFactory8_rfield, Grace.__$precondition1_rfield, null, "bCrisisP1_Body3_BigQuestion_BodyStuff3()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1981, Grace.__$behaviorFactory8_rfield, Grace.__$precondition1_rfield, null, "bCrisisP1_Body3_BigQuestion_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1984, Grace.__$behaviorFactory8_rfield, Grace.__$precondition1_rfield, null, "bCrisisP1_Body3_BigQuestion_BodyStuff2()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1986, Grace.__$behaviorFactory8_rfield, Grace.__$precondition1_rfield, null, "bCrisisP1_Body3_BigQuestion_BodyStuff3()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(1998, Grace.__$behaviorFactory8_rfield, Grace.__$precondition1_rfield, null, "bCrisisP1_TxnOut_BodyStuff(int)", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2015, Grace.__$behaviorFactory8_rfield, Grace.__$precondition1_rfield, null, "bCrisisP1_TxnOut_BodyStuff(int)", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2018, Grace.__$behaviorFactory8_rfield, Grace.__$precondition1_rfield, null, "bCrisisP1_TxnOut_DramaticQuestion_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2020, Grace.__$behaviorFactory8_rfield, Grace.__$precondition1_rfield, null, "bCrisisP1_TxnOut_DramaticQuestion_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2022, Grace.__$behaviorFactory8_rfield, Grace.__$precondition1_rfield, null, "bCrisisP1_TxnOut_BodyStuff2()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2023, Grace.__$behaviorFactory8_rfield, Grace.__$precondition1_rfield, null, "bCrisisP1_TxnOut_BodyStuff2()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2071, Grace.__$behaviorFactory9_rfield, Grace.__$precondition2_rfield, null, "bCrisisP1_NonAnswer_BodyStuff(int)", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2073, Grace.__$behaviorFactory9_rfield, Grace.__$precondition2_rfield, null, "bCrisisP1_NonAnswer_BodyStuff(int)", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2075, Grace.__$behaviorFactory9_rfield, Grace.__$precondition2_rfield, null, "bCrisisP1_MildDisagreement_BodyStuff(int)", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2077, Grace.__$behaviorFactory9_rfield, Grace.__$precondition2_rfield, null, "bCrisisP1_MildDisagreement_BodyStuff(int)", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2078, Grace.__$behaviorFactory9_rfield, Grace.__$precondition2_rfield, null, "bCrisisP1_ReferToDrinks_BodyStuff(int)", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2080, Grace.__$behaviorFactory9_rfield, Grace.__$precondition2_rfield, null, "bCrisisP1_ReferToDrinks_BodyStuff(int)", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2081, Grace.__$behaviorFactory9_rfield, Grace.__$precondition2_rfield, null, "bCrisisP1_Praise_BodyStuff(int)", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2083, Grace.__$behaviorFactory9_rfield, Grace.__$precondition2_rfield, null, "bCrisisP1_Praise_BodyStuff(int)", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2084, Grace.__$behaviorFactory9_rfield, Grace.__$precondition2_rfield, null, "bCrisisP1_Criticize_BodyStuff(int)", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2086, Grace.__$behaviorFactory9_rfield, Grace.__$precondition2_rfield, null, "bCrisisP1_Criticize_BodyStuff(int)", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2087, Grace.__$behaviorFactory9_rfield, Grace.__$precondition2_rfield, null, "bCrisisP1_Flirt_BodyStuff(int)", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2089, Grace.__$behaviorFactory9_rfield, Grace.__$precondition2_rfield, null, "bCrisisP1_Flirt_BodyStuff(int)", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2090, Grace.__$behaviorFactory9_rfield, Grace.__$precondition2_rfield, null, "bCrisisP1_StrongDisagreement_BodyStuff(int)", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2092, Grace.__$behaviorFactory9_rfield, Grace.__$precondition2_rfield, null, "bCrisisP1_StrongDisagreement_BodyStuff(int)", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2093, Grace.__$behaviorFactory9_rfield, Grace.__$precondition2_rfield, null, "bCrisisP1_Repeat_BodyStuff(int)", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2095, Grace.__$behaviorFactory9_rfield, Grace.__$precondition2_rfield, null, "bCrisisP1_Repeat_BodyStuff(int)", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2096, Grace.__$behaviorFactory9_rfield, Grace.__$precondition2_rfield, null, "BeatInit()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2100, Grace.__$behaviorFactory9_rfield, Grace.__$precondition2_rfield, null, "bC2TGGlue_Vent1_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2101, Grace.__$behaviorFactory9_rfield, Grace.__$precondition2_rfield, null, "bC2TGGlue_Vent1_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2108, Grace.__$behaviorFactory9_rfield, Grace.__$precondition2_rfield, null, "bC2TGGlue_Vent1_BodyStuff2()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2109, Grace.__$behaviorFactory9_rfield, Grace.__$precondition2_rfield, null, "bC2TGGlue_Vent1_BodyStuff2()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2116, Grace.__$behaviorFactory9_rfield, Grace.__$precondition2_rfield, null, "bC2TGGlue_Vent1_BodyStuff3()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2117, Grace.__$behaviorFactory9_rfield, Grace.__$precondition2_rfield, null, "bC2TGGlue_Vent1_BodyStuff3()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2118, Grace.__$behaviorFactory9_rfield, Grace.__$precondition2_rfield, null, "bC2TGGlue_Vent2_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2119, Grace.__$behaviorFactory9_rfield, Grace.__$precondition2_rfield, null, "bC2TGGlue_Vent2_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2126, Grace.__$behaviorFactory9_rfield, Grace.__$precondition2_rfield, null, "bC2TGGlue_Vent2_BodyStuff2()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2127, Grace.__$behaviorFactory9_rfield, Grace.__$precondition2_rfield, null, "bC2TGGlue_Vent2_BodyStuff2()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2134, Grace.__$behaviorFactory9_rfield, Grace.__$precondition2_rfield, null, "bC2TGGlue_Vent2_BodyStuff3()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2135, Grace.__$behaviorFactory9_rfield, Grace.__$precondition2_rfield, null, "bC2TGGlue_Vent2_BodyStuff3()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2142, Grace.__$behaviorFactory9_rfield, Grace.__$precondition2_rfield, null, "bC2TGGlue_Vent2_BodyStuff4()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2151, Grace.__$behaviorFactory9_rfield, Grace.__$precondition2_rfield, null, "bC2TGGlue_Vent2_BodyStuff4()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2155, Grace.__$behaviorFactory9_rfield, Grace.__$precondition2_rfield, null, "bC2TGGlue_Mixin_BodyStuff(int)", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2156, Grace.__$behaviorFactory9_rfield, Grace.__$precondition2_rfield, null, "bC2TGGlue_Mixin_BodyStuff(int)", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2190, Grace.__$behaviorFactory9_rfield, Grace.__$precondition2_rfield, null, "bC2TGGlue_Mixin_BodyStuff2()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2194, Grace.__$behaviorFactory9_rfield, Grace.__$precondition2_rfield, null, "bC2TGGlue_Mixin_BodyStuff2()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2197, Grace.__$behaviorFactory9_rfield, Grace.__$precondition2_rfield, null, "BeatInit()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2198, Grace.__$behaviorFactory9_rfield, null, null, "bTherapyGameP2_MainLoop_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2209, Grace.__$behaviorFactory9_rfield, null, null, "TherapyGameBeatGoalStuff(int, int, int, int, int, int, int, int, int, int, int, int, int, int, int, int, int, int, int, int, int, int, int, int, int, int, int, int)", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2247, Grace.__$behaviorFactory9_rfield, Grace.__$precondition2_rfield, null, "BeatInit()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2248, Grace.__$behaviorFactory9_rfield, null, null, "bRevBuildupP2_TurnOffContext()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2249, Grace.__$behaviorFactory9_rfield, null, null, "bRevBuildupP2_TurnOnContext()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2251, Grace.__$behaviorFactory9_rfield, Grace.__$precondition2_rfield, null, "bRevBuildupP2_TxnIn_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2255, Grace.__$behaviorFactory9_rfield, Grace.__$precondition2_rfield, null, "bRevBuildupP2_TxnIn_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2272, Grace.__$behaviorFactory10_rfield, Grace.__$precondition2_rfield, null, "bRevBuildupP2_TxnIn_mixin_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2274, Grace.__$behaviorFactory10_rfield, Grace.__$precondition2_rfield, null, "bRevBuildupP2_TxnIn_mixin_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2279, Grace.__$behaviorFactory10_rfield, Grace.__$precondition2_rfield, null, "bRevBuildupP2_Body2_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2280, Grace.__$behaviorFactory10_rfield, Grace.__$precondition2_rfield, null, "bRevBuildupP2_Body2_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2286, Grace.__$behaviorFactory10_rfield, Grace.__$precondition2_rfield, null, "bRevBuildupP2_Body2_BodyStuff2()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2290, Grace.__$behaviorFactory10_rfield, Grace.__$precondition2_rfield, null, "bRevBuildupP2_Body2_BodyStuff2()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2294, Grace.__$behaviorFactory10_rfield, Grace.__$precondition2_rfield, null, "bRevBuildupP2_Body2_BodyStuff3()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2295, Grace.__$behaviorFactory10_rfield, Grace.__$precondition2_rfield, null, "bRevBuildupP2_Body2_BodyStuff3()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2300, Grace.__$behaviorFactory10_rfield, Grace.__$precondition2_rfield, null, "bRevBuildupP2_Body2_mixin_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2301, Grace.__$behaviorFactory10_rfield, Grace.__$precondition2_rfield, null, "bRevBuildupP2_Body2_mixin_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2307, Grace.__$behaviorFactory10_rfield, Grace.__$precondition2_rfield, null, "bRevBuildupP2_Body2b_BodyStuff()", new String[] { "Trip", "Grace" }, (short)2));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2308, Grace.__$behaviorFactory10_rfield, Grace.__$precondition2_rfield, null, "bRevBuildupP2_Body2b_BodyStuff()", new String[] { "Trip", "Grace" }, (short)2));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2309, Grace.__$behaviorFactory10_rfield, Grace.__$precondition2_rfield, null, "bRevBuildupP2_Body2b_BodyStuff()", new String[] { "Trip", "Grace" }, (short)1));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2310, Grace.__$behaviorFactory10_rfield, Grace.__$precondition2_rfield, null, "bRevBuildupP2_Body2b_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2312, Grace.__$behaviorFactory10_rfield, Grace.__$precondition2_rfield, null, "bRevBuildupP2_Body3a_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2313, Grace.__$behaviorFactory10_rfield, Grace.__$precondition2_rfield, null, "bRevBuildupP2_Body3a_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2320, Grace.__$behaviorFactory10_rfield, Grace.__$precondition2_rfield, null, "bRevBuildupP2_Body3_mixin_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2321, Grace.__$behaviorFactory10_rfield, Grace.__$precondition2_rfield, null, "bRevBuildupP2_Body3_mixin_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2326, Grace.__$behaviorFactory10_rfield, Grace.__$precondition2_rfield, null, "bRevBuildupP2_Body3b_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2327, Grace.__$behaviorFactory10_rfield, Grace.__$precondition2_rfield, null, "bRevBuildupP2_Body3b_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2341, Grace.__$behaviorFactory10_rfield, Grace.__$precondition2_rfield, null, "bRevBuildupP2_Body3b_BodyStuff2()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2342, Grace.__$behaviorFactory10_rfield, Grace.__$precondition2_rfield, null, "bRevBuildupP2_Body3b_BodyStuff2()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2347, Grace.__$behaviorFactory10_rfield, Grace.__$precondition2_rfield, null, "bRevBuildupP2_Body4a_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2348, Grace.__$behaviorFactory10_rfield, Grace.__$precondition2_rfield, null, "bRevBuildupP2_Body4a_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2355, Grace.__$behaviorFactory10_rfield, Grace.__$precondition2_rfield, null, "bRevBuildupP2_Body4b_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2356, Grace.__$behaviorFactory10_rfield, Grace.__$precondition2_rfield, null, "bRevBuildupP2_Body4b_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2361, Grace.__$behaviorFactory10_rfield, Grace.__$precondition2_rfield, null, "bRevBuildupP2_Body4c_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2362, Grace.__$behaviorFactory10_rfield, Grace.__$precondition2_rfield, null, "bRevBuildupP2_Body4c_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2369, Grace.__$behaviorFactory10_rfield, Grace.__$precondition2_rfield, null, "bRevBuildupP2_Body4_mixin_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2370, Grace.__$behaviorFactory10_rfield, Grace.__$precondition2_rfield, null, "bRevBuildupP2_Body4_mixin_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2375, Grace.__$behaviorFactory10_rfield, Grace.__$precondition2_rfield, null, "bRevBuildupP2_Litany_BodyStuff(int)", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2376, Grace.__$behaviorFactory10_rfield, Grace.__$precondition2_rfield, null, "bRevBuildupP2_Litany_BodyStuff(int)", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2384, Grace.__$behaviorFactory10_rfield, Grace.__$precondition2_rfield, null, "bRevBuildupP2_Body5_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2385, Grace.__$behaviorFactory10_rfield, Grace.__$precondition2_rfield, null, "bRevBuildupP2_Body5_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2396, Grace.__$behaviorFactory10_rfield, Grace.__$precondition2_rfield, null, "bRevBuildupP2_Body5_mixin_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2397, Grace.__$behaviorFactory10_rfield, Grace.__$precondition2_rfield, null, "bRevBuildupP2_Body5_mixin_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2402, Grace.__$behaviorFactory10_rfield, Grace.__$precondition2_rfield, null, "bRevBuildupP2_TxnOut_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2403, Grace.__$behaviorFactory10_rfield, Grace.__$precondition2_rfield, null, "bRevBuildupP2_TxnOut_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2425, Grace.__$behaviorFactory10_rfield, Grace.__$precondition3_rfield, null, "BeatInit()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2426, Grace.__$behaviorFactory10_rfield, null, null, "bRevelationsP2_TurnOffContext()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2427, Grace.__$behaviorFactory10_rfield, null, null, "bRevelationsP2_TurnOnContext()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2428, Grace.__$behaviorFactory10_rfield, null, null, "bRevelationsP2_Rev_AA_G_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2430, Grace.__$behaviorFactory10_rfield, null, null, "bRevelationsP2_Rev_AA_G_BodyStuff2()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2432, Grace.__$behaviorFactory10_rfield, null, null, "bRevelationsP2_Rev_AA_T_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2434, Grace.__$behaviorFactory10_rfield, null, null, "bRevelationsP2_Rev_AA_R_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2436, Grace.__$behaviorFactory10_rfield, null, null, "bRevelationsP2_Rev_F_G_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2438, Grace.__$behaviorFactory10_rfield, null, null, "bRevelationsP2_Rev_F_T_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2440, Grace.__$behaviorFactory10_rfield, null, null, "bRevelationsP2_Rev_F_R_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2442, Grace.__$behaviorFactory10_rfield, null, null, "bRevelationsP2_Rev_RM_G_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2444, Grace.__$behaviorFactory10_rfield, null, null, "bRevelationsP2_Rev_RM_T_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2446, Grace.__$behaviorFactory10_rfield, null, null, "bRevelationsP2_Rev_RM_R_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2452, Grace.__$behaviorFactory10_rfield, Grace.__$precondition3_rfield, null, "bRevelationsP2_PostRev1_BodyStuff(int, int)", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2453, Grace.__$behaviorFactory10_rfield, Grace.__$precondition3_rfield, null, "bRevelationsP2_PostRev1_BodyStuff(int, int)", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2457, Grace.__$behaviorFactory10_rfield, Grace.__$precondition3_rfield, null, "bRevelationsP2_PostRev1_BodyStuff2(int, int)", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2458, Grace.__$behaviorFactory10_rfield, Grace.__$precondition3_rfield, null, "bRevelationsP2_PostRev1_BodyStuff2(int, int)", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2463, Grace.__$behaviorFactory10_rfield, Grace.__$precondition3_rfield, null, "bRevelationsP2_PostRev1_BodyStuff2(int, int)", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2469, Grace.__$behaviorFactory10_rfield, Grace.__$precondition3_rfield, null, "bRevelationsP2_PostRev1_BodyStuff2(int, int)", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2473, Grace.__$behaviorFactory10_rfield, Grace.__$precondition3_rfield, null, "bRevelationsP2_PostRev1_BodyStuff2(int, int)", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2477, Grace.__$behaviorFactory10_rfield, Grace.__$precondition3_rfield, null, "bRevelationsP2_PostRev1_BodyStuff2(int, int)", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2483, Grace.__$behaviorFactory10_rfield, Grace.__$precondition3_rfield, null, "bRevelationsP2_PostRev2_BodyStuff(int, int)", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2484, Grace.__$behaviorFactory10_rfield, Grace.__$precondition3_rfield, null, "bRevelationsP2_PostRev2_BodyStuff(int, int)", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2488, Grace.__$behaviorFactory11_rfield, Grace.__$precondition3_rfield, null, "bRevelationsP2_PostRev2_BodyStuff2(int, int)", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2489, Grace.__$behaviorFactory11_rfield, Grace.__$precondition3_rfield, null, "bRevelationsP2_PostRev2_BodyStuff2(int, int)", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2494, Grace.__$behaviorFactory11_rfield, Grace.__$precondition3_rfield, null, "bRevelationsP2_PostRev2_BodyStuff2(int, int)", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2500, Grace.__$behaviorFactory11_rfield, Grace.__$precondition3_rfield, null, "bRevelationsP2_PostRev2_BodyStuff2(int, int)", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2504, Grace.__$behaviorFactory11_rfield, Grace.__$precondition3_rfield, null, "bRevelationsP2_PostRev3_BodyStuff(int, int, int)", new String[] { "Trip", "Grace" }, (short)2));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2505, Grace.__$behaviorFactory11_rfield, Grace.__$precondition3_rfield, null, "bRevelationsP2_PostRev3_BodyStuff(int, int, int)", new String[] { "Trip", "Grace" }, (short)2));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2506, Grace.__$behaviorFactory11_rfield, Grace.__$precondition3_rfield, null, "bRevelationsP2_PostRev3_BodyStuff(int, int, int)", new String[] { "Trip", "Grace" }, (short)1));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2507, Grace.__$behaviorFactory11_rfield, Grace.__$precondition3_rfield, null, "bRevelationsP2_PostRev3_BodyStuff(int, int, int)", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2519, Grace.__$behaviorFactory11_rfield, Grace.__$precondition3_rfield, null, "BeatInit()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2529, Grace.__$behaviorFactory11_rfield, Grace.__$precondition3_rfield, null, "bEndingNoRevs_Body1_BodyStuff(int)", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2541, Grace.__$behaviorFactory11_rfield, Grace.__$precondition3_rfield, null, "bEndingNoRevs_Body1_BodyStuff(int)", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2550, Grace.__$behaviorFactory11_rfield, Grace.__$precondition3_rfield, null, "bEndingNoRevs_Body2_BodyStuff(int)", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2556, Grace.__$behaviorFactory11_rfield, Grace.__$precondition3_rfield, null, "bEndingNoRevs_Body2_BodyStuff(int)", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2561, Grace.__$behaviorFactory11_rfield, Grace.__$precondition3_rfield, null, "bEndingNoRevs_Body3_BodyStuff(int)", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2563, Grace.__$behaviorFactory11_rfield, Grace.__$precondition3_rfield, null, "bEndingNoRevs_Body3_BodyStuff(int)", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2567, Grace.__$behaviorFactory11_rfield, Grace.__$precondition3_rfield, null, "bEndingNoRevs_Body3_BodyStuff2()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2572, Grace.__$behaviorFactory11_rfield, Grace.__$precondition3_rfield, null, "bEndingNoRevs_Body3_BodyStuff2()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2596, Grace.__$behaviorFactory11_rfield, null, null, "bEndingNoRevs_Mixin_BodyStuff(int)", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2601, Grace.__$behaviorFactory11_rfield, Grace.__$precondition3_rfield, null, "BeatInit()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2607, Grace.__$behaviorFactory11_rfield, Grace.__$precondition3_rfield, null, "bEndingSelfsOnly_Body1_BodyStuff(int)", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2611, Grace.__$behaviorFactory11_rfield, Grace.__$precondition3_rfield, null, "bEndingSelfsOnly_Body1_BodyStuff(int)", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2616, Grace.__$behaviorFactory11_rfield, Grace.__$precondition3_rfield, null, "bEndingSelfsOnly_Body2_BodyStuff(int)", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2622, Grace.__$behaviorFactory11_rfield, Grace.__$precondition3_rfield, null, "bEndingSelfsOnly_Body2_BodyStuff(int)", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2627, Grace.__$behaviorFactory11_rfield, Grace.__$precondition3_rfield, null, "bEndingSelfsOnly_Body3_BodyStuff(int)", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2633, Grace.__$behaviorFactory11_rfield, Grace.__$precondition3_rfield, null, "bEndingSelfsOnly_Body3_BodyStuff(int)", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2638, Grace.__$behaviorFactory11_rfield, Grace.__$precondition3_rfield, null, "bEndingSelfsOnly_Body4_BodyStuff(int)", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2642, Grace.__$behaviorFactory11_rfield, Grace.__$precondition3_rfield, null, "bEndingSelfsOnly_Body4_BodyStuff(int)", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2645, Grace.__$behaviorFactory11_rfield, Grace.__$precondition3_rfield, null, "bEndingSelfsOnly_Body5_BodyStuff(int)", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2651, Grace.__$behaviorFactory11_rfield, Grace.__$precondition3_rfield, null, "bEndingSelfsOnly_Body5_BodyStuff(int)", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2661, Grace.__$behaviorFactory11_rfield, Grace.__$precondition3_rfield, null, "bEndingSelfsOnly_Body6_BodyStuff(int)", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2665, Grace.__$behaviorFactory11_rfield, Grace.__$precondition3_rfield, null, "bEndingSelfsOnly_Body6_BodyStuff(int)", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2668, Grace.__$behaviorFactory11_rfield, Grace.__$precondition3_rfield, null, "bEndingSelfsOnly_Body7_BodyStuff(int)", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2670, Grace.__$behaviorFactory11_rfield, Grace.__$precondition3_rfield, null, "bEndingSelfsOnly_Body7_BodyStuff(int)", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2677, Grace.__$behaviorFactory11_rfield, Grace.__$precondition3_rfield, null, "bEndingSelfsOnly_Body8_BodyStuff(int)", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2678, Grace.__$behaviorFactory11_rfield, Grace.__$precondition3_rfield, null, "bEndingSelfsOnly_Body8_BodyStuff(int)", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2686, Grace.__$behaviorFactory11_rfield, Grace.__$precondition3_rfield, null, "bEnding_RecountRevs_BodyStuff(int, int, boolean)", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2701, Grace.__$behaviorFactory11_rfield, Grace.__$precondition3_rfield, null, "bEnding_RecountRevs_BodyStuff(int, int, boolean)", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2702, Grace.__$behaviorFactory11_rfield, Grace.__$precondition3_rfield, null, "bEndingGorT_ReactiveDialog_BodyStuff(int)", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2704, Grace.__$behaviorFactory11_rfield, Grace.__$precondition3_rfield, null, "bEndingGorT_ReactiveDialog_BodyStuff(int)", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2727, Grace.__$behaviorFactory12_rfield, null, null, "bEndingGorT_Mixin_BodyStuff(int)", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2732, Grace.__$behaviorFactory12_rfield, Grace.__$precondition3_rfield, null, "BeatInit()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2734, Grace.__$behaviorFactory12_rfield, Grace.__$precondition3_rfield, null, "bEndingRelatsOnly_Body3_BodyStuff(int)", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2740, Grace.__$behaviorFactory12_rfield, Grace.__$precondition3_rfield, null, "bEndingRelatsOnly_Body3_BodyStuff(int)", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2748, Grace.__$behaviorFactory12_rfield, Grace.__$precondition3_rfield, null, "bEndingRelatsOnly_Body5_BodyStuff(int)", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2752, Grace.__$behaviorFactory12_rfield, Grace.__$precondition3_rfield, null, "bEndingRelatsOnly_Body5_BodyStuff(int)", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2757, Grace.__$behaviorFactory12_rfield, Grace.__$precondition3_rfield, null, "bEndingRelatsOnly_Body6_BodyStuff(int)", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2761, Grace.__$behaviorFactory12_rfield, Grace.__$precondition3_rfield, null, "bEndingRelatsOnly_Body6_BodyStuff(int)", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2763, Grace.__$behaviorFactory12_rfield, Grace.__$precondition3_rfield, null, "BeatInit()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2765, Grace.__$behaviorFactory12_rfield, Grace.__$precondition3_rfield, null, "bEndingSRNotGTR_Body3_BodyStuff(int)", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2771, Grace.__$behaviorFactory12_rfield, Grace.__$precondition3_rfield, null, "bEndingSRNotGTR_Body3_BodyStuff(int)", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2778, Grace.__$behaviorFactory12_rfield, Grace.__$precondition3_rfield, null, "bEndingSRNotGTR_Body4_BodyStuff(int)", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2782, Grace.__$behaviorFactory12_rfield, Grace.__$precondition3_rfield, null, "bEndingSRNotGTR_Body4_BodyStuff(int)", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2785, Grace.__$behaviorFactory12_rfield, Grace.__$precondition3_rfield, null, "bEndingSRNotGTR_Body5_BodyStuff(int)", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2789, Grace.__$behaviorFactory12_rfield, Grace.__$precondition3_rfield, null, "bEndingSRNotGTR_Body5_BodyStuff(int)", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2795, Grace.__$behaviorFactory12_rfield, Grace.__$precondition3_rfield, null, "BeatInit()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2797, Grace.__$behaviorFactory12_rfield, Grace.__$precondition3_rfield, null, "bEndingGTR_Body1_BodyStuff(int)", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2801, Grace.__$behaviorFactory12_rfield, Grace.__$precondition3_rfield, null, "bEndingGTR_Body1_BodyStuff(int)", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2805, Grace.__$behaviorFactory12_rfield, Grace.__$precondition3_rfield, null, "bEndingGTR_Body2_BodyStuff(int, int, int, int, int)", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2813, Grace.__$behaviorFactory12_rfield, Grace.__$precondition3_rfield, null, "bEndingGTR_Body2_BodyStuff(int, int, int, int, int)", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2824, Grace.__$behaviorFactory12_rfield, Grace.__$precondition3_rfield, null, "bEndingGTR_Body3_BodyStuff(int)", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2828, Grace.__$behaviorFactory12_rfield, Grace.__$precondition3_rfield, null, "bEndingGTR_Body3_BodyStuff(int)", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2834, Grace.__$behaviorFactory12_rfield, Grace.__$precondition3_rfield, null, "bEndingGTR_Body4_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2837, Grace.__$behaviorFactory12_rfield, Grace.__$precondition3_rfield, null, "bEndingGTR_Body4_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2839, Grace.__$behaviorFactory12_rfield, Grace.__$precondition3_rfield, null, "bEndingGTR_ReactiveDialog_BodyStuff(int)", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2841, Grace.__$behaviorFactory12_rfield, Grace.__$precondition3_rfield, null, "bEndingGTR_ReactiveDialog_BodyStuff(int)", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2863, Grace.__$behaviorFactory12_rfield, null, null, "bEndingGTR_Mixin_BodyStuff(int)", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2868, Grace.__$behaviorFactory12_rfield, null, null, "gmT1L1_PraiseAllyG_N_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2871, Grace.__$behaviorFactory12_rfield, null, null, "gmT1L1_PraiseAllyG_N_BodyStuff2()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2872, Grace.__$behaviorFactory12_rfield, null, null, "gmT1L1_PraiseAllyG_GPA_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2875, Grace.__$behaviorFactory12_rfield, null, null, "gmT1L1_PraiseAllyG_GPA_BodyStuff2()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2876, Grace.__$behaviorFactory12_rfield, null, null, "gmT1L1_PraiseAllyG_TPA_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2877, Grace.__$behaviorFactory12_rfield, null, null, "gmT1L1_PraiseAllyG_TPA_BodyStuff2()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2878, Grace.__$behaviorFactory12_rfield, null, null, "gmT1L1_PraiseAllyT_N_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2882, Grace.__$behaviorFactory12_rfield, null, null, "gmT1L1_PraiseAllyT_N_BodyStuff2()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2883, Grace.__$behaviorFactory12_rfield, null, null, "gmT1L1_PraiseAllyT_GPA_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2887, Grace.__$behaviorFactory12_rfield, null, null, "gmT1L1_PraiseAllyT_GPA_BodyStuff2()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2888, Grace.__$behaviorFactory12_rfield, null, null, "gmT1L1_PraiseAllyT_TPA_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2892, Grace.__$behaviorFactory12_rfield, null, null, "gmT1L1_PraiseAllyT_TPA_BodyStuff2()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2893, Grace.__$behaviorFactory12_rfield, null, null, "gmT1L1_CriticizeG_N_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2894, Grace.__$behaviorFactory12_rfield, null, null, "gmT1L1_CriticizeG_N_BodyStuff2()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2896, Grace.__$behaviorFactory12_rfield, null, null, "gmT1L1_CriticizeG_GPA_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2897, Grace.__$behaviorFactory12_rfield, null, null, "gmT1L1_CriticizeG_GPA_BodyStuff2()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2899, Grace.__$behaviorFactory12_rfield, null, null, "gmT1L1_CriticizeG_TPA_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2900, Grace.__$behaviorFactory12_rfield, null, null, "gmT1L1_CriticizeG_TPA_BodyStuff2()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2904, Grace.__$behaviorFactory12_rfield, null, null, "gmT1L1_CriticizeT_N_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2906, Grace.__$behaviorFactory12_rfield, null, null, "gmT1L1_CriticizeT_N_BodyStuff2()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2907, Grace.__$behaviorFactory12_rfield, null, null, "gmT1L1_CriticizeT_GPA_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2909, Grace.__$behaviorFactory12_rfield, null, null, "gmT1L1_CriticizeT_GPA_BodyStuff2()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2910, Grace.__$behaviorFactory12_rfield, null, null, "gmT1L1_CriticizeT_TPA_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2912, Grace.__$behaviorFactory12_rfield, null, null, "gmT1L1_CriticizeT_TPA_BodyStuff2()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2913, Grace.__$behaviorFactory12_rfield, null, null, "gmT1L1_FlirtG_N_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2921, Grace.__$behaviorFactory12_rfield, null, null, "gmT1L1_FlirtG_N_BodyStuff2()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2923, Grace.__$behaviorFactory12_rfield, null, null, "gmT1L1_FlirtG_N_BodyStuff3()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2924, Grace.__$behaviorFactory12_rfield, null, null, "gmT1L1_FlirtG_GPA_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2933, Grace.__$behaviorFactory12_rfield, null, null, "gmT1L1_FlirtG_GPA_BodyStuff2()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2935, Grace.__$behaviorFactory12_rfield, null, null, "gmT1L1_FlirtG_GPA_BodyStuff3()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2936, Grace.__$behaviorFactory12_rfield, null, null, "gmT1L1_FlirtG_TPA_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2944, Grace.__$behaviorFactory13_rfield, null, null, "gmT1L1_FlirtG_TPA_BodyStuff2()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2946, Grace.__$behaviorFactory13_rfield, null, null, "gmT1L1_FlirtG_TPA_BodyStuff3()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2947, Grace.__$behaviorFactory13_rfield, null, null, "gmT1L1_FlirtT_N_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2949, Grace.__$behaviorFactory13_rfield, null, null, "gmT1L1_FlirtT_N_BodyStuff2()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2965, Grace.__$behaviorFactory13_rfield, null, null, "gmT1L1_FlirtT_N_BodyStuff3()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2966, Grace.__$behaviorFactory13_rfield, null, null, "gmT1L1_FlirtT_GPA_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2968, Grace.__$behaviorFactory13_rfield, null, null, "gmT1L1_FlirtT_GPA_BodyStuff2()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2976, Grace.__$behaviorFactory13_rfield, null, null, "gmT1L1_FlirtT_GPA_BodyStuff3()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2977, Grace.__$behaviorFactory13_rfield, null, null, "gmT1L1_FlirtT_TPA_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2979, Grace.__$behaviorFactory13_rfield, null, null, "gmT1L1_FlirtT_TPA_BodyStuff2()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2995, Grace.__$behaviorFactory13_rfield, null, null, "gmT1L1_FlirtT_TPA_BodyStuff3()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(2996, Grace.__$behaviorFactory13_rfield, null, null, "gmT1L1_HugComfortG_GPA_BodyStuff(int)", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3008, Grace.__$behaviorFactory13_rfield, null, null, "gmT1L1_HugComfortG_GPA_BodyStuff2()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3009, Grace.__$behaviorFactory13_rfield, null, null, "gmT1L1_HugComfortG_NTPA_BodyStuff(int)", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3022, Grace.__$behaviorFactory13_rfield, null, null, "gmT1L1_HugComfortG_NTPA_BodyStuff2()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3023, Grace.__$behaviorFactory13_rfield, null, null, "gmT1L1_HugComfortT_NGPA_BodyStuff(int)", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3027, Grace.__$behaviorFactory13_rfield, null, null, "gmT1L1_HugComfortT_NGPA_BodyStuff2()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3028, Grace.__$behaviorFactory13_rfield, null, null, "gmT1L1_HugComfortT_TPA_BodyStuff(int)", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3032, Grace.__$behaviorFactory13_rfield, null, null, "gmT1L1_HugComfortT_TPA_BodyStuff2()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3033, Grace.__$behaviorFactory13_rfield, null, null, "gmT1L1_Pacify_NGPA_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3034, Grace.__$behaviorFactory13_rfield, null, null, "gmT1L1_Pacify_NTPA_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3035, Grace.__$behaviorFactory13_rfield, null, null, "gmT1L1_IntimateG_NGPA_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3036, Grace.__$behaviorFactory13_rfield, null, null, "gmT1L1_IntimateG_TPA_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3037, Grace.__$behaviorFactory13_rfield, null, null, "gmT1L1_IntimateT_NTPA_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3038, Grace.__$behaviorFactory13_rfield, null, null, "gmT1L1_IntimateT_GPA_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3039, Grace.__$behaviorFactory13_rfield, null, null, "gmT1L1_Satl_Marriage_NTPA_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3040, Grace.__$behaviorFactory13_rfield, null, null, "gmT1L1_Satl_Marriage_NTPA_BodyStuff2()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3042, Grace.__$behaviorFactory13_rfield, null, null, "gmT1L1_Satl_Marriage_GPA_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3043, Grace.__$behaviorFactory13_rfield, null, null, "gmT1L1_Satl_Marriage_GPA_BodyStuff2()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3045, Grace.__$behaviorFactory13_rfield, null, null, "gmT1L1_Satl_Divorce_NTPA_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3047, Grace.__$behaviorFactory13_rfield, null, null, "gmT1L1_Satl_Divorce_GPA_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3049, Grace.__$behaviorFactory13_rfield, null, null, "gmT1L1_Satl_Sex_NTPA_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3050, Grace.__$behaviorFactory13_rfield, null, null, "gmT1L1_Satl_Sex_NTPA_BodyStuff2()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3052, Grace.__$behaviorFactory13_rfield, null, null, "gmT1L1_Satl_Sex_NTPA_BodyStuff3()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3053, Grace.__$behaviorFactory13_rfield, null, null, "gmT1L1_Satl_Sex_GPA_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3054, Grace.__$behaviorFactory13_rfield, null, null, "gmT1L1_Satl_Sex_GPA_BodyStuff2()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3056, Grace.__$behaviorFactory13_rfield, null, null, "gmT1L1_Satl_Sex_GPA_BodyStuff3()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3057, Grace.__$behaviorFactory13_rfield, null, null, "gmT1L1_Satl_Infidelity_NTPA_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3058, Grace.__$behaviorFactory13_rfield, null, null, "gmT1L1_Satl_Infidelity_NTPA_BodyStuff2()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3059, Grace.__$behaviorFactory13_rfield, null, null, "gmT1L1_Satl_Infidelity_GPA_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3060, Grace.__$behaviorFactory13_rfield, null, null, "gmT1L1_Satl_Infidelity_GPA_BodyStuff2()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3061, Grace.__$behaviorFactory13_rfield, null, null, "gmT1L1_Satl_Therapy_TPA_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3063, Grace.__$behaviorFactory13_rfield, null, null, "gmT1L1_Satl_Therapy_TPA_BodyStuff2()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3064, Grace.__$behaviorFactory13_rfield, null, null, "gmT1L1_Satl_Therapy_NGPA_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3066, Grace.__$behaviorFactory13_rfield, null, null, "gmT1L1_Satl_Therapy_NGPA_BodyStuff2()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3067, Grace.__$behaviorFactory13_rfield, null, null, "gmT1L1_Obj_WeddingPic_NTPA_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3068, Grace.__$behaviorFactory13_rfield, null, null, "gmT1L1_Obj_WeddingPic_NTPA_BodyStuff2()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3070, Grace.__$behaviorFactory13_rfield, null, null, "gmT1L1_Obj_WeddingPic_NTPA_BodyStuff3()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3071, Grace.__$behaviorFactory13_rfield, null, null, "gmT1L1_Obj_WeddingPic_NTPA_BodyStuff4()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3073, Grace.__$behaviorFactory13_rfield, null, null, "gmT1L1_Obj_WeddingPic_NTPA_BodyStuff5()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3074, Grace.__$behaviorFactory13_rfield, null, null, "gmT1L1_Obj_WeddingPic_GPA_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3075, Grace.__$behaviorFactory13_rfield, null, null, "gmT1L1_Obj_WeddingPic_GPA_BodyStuff2()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3077, Grace.__$behaviorFactory13_rfield, null, null, "gmT1L1_Obj_WeddingPic_GPA_BodyStuff3()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3078, Grace.__$behaviorFactory13_rfield, null, null, "gmT1L1_Obj_WeddingPic_GPA_BodyStuff4()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3080, Grace.__$behaviorFactory13_rfield, null, null, "gmT1L1_Obj_WeddingPic_GPA_BodyStuff5()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3081, Grace.__$behaviorFactory13_rfield, null, null, "gmT1L1_Obj_FurnishingsApt_TPA_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3082, Grace.__$behaviorFactory13_rfield, null, null, "gmT1L1_Obj_FurnishingsApt_TPA_BodyStuff2()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3084, Grace.__$behaviorFactory13_rfield, null, null, "gmT1L1_Obj_FurnishingsApt_TPA_BodyStuff3()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3086, Grace.__$behaviorFactory13_rfield, null, null, "gmT1L1_Obj_FurnishingsApt_NGPA_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3087, Grace.__$behaviorFactory13_rfield, null, null, "gmT1L1_Obj_FurnishingsApt_NGPA_BodyStuff2()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3089, Grace.__$behaviorFactory13_rfield, null, null, "gmT1L1_Obj_ItalyPic_NTPA_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3090, Grace.__$behaviorFactory13_rfield, null, null, "gmT1L1_Obj_ItalyPic_NTPA_BodyStuff2()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3092, Grace.__$behaviorFactory13_rfield, null, null, "gmT1L1_Obj_ItalyPic_GPA_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3093, Grace.__$behaviorFactory13_rfield, null, null, "gmT1L1_Obj_ItalyPic_GPA_BodyStuff2()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3095, Grace.__$behaviorFactory13_rfield, null, null, "gmT1L1_Obj_Trinkets_TPA_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3097, Grace.__$behaviorFactory13_rfield, null, null, "gmT1L1_Obj_Trinkets_TPA_BodyStuff2()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3098, Grace.__$behaviorFactory13_rfield, null, null, "gmT1L1_Obj_Trinkets_TPA_BodyStuff3()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3100, Grace.__$behaviorFactory13_rfield, null, null, "gmT1L1_Obj_Trinkets_NGPA_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3102, Grace.__$behaviorFactory13_rfield, null, null, "gmT1L1_Obj_Trinkets_NGPA_BodyStuff2()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3103, Grace.__$behaviorFactory13_rfield, null, null, "gmT1L1_Obj_Trinkets_NGPA_BodyStuff3()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3105, Grace.__$behaviorFactory13_rfield, null, null, "gmT1L1_Obj_Trinkets_NGPA_BodyStuff4()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3106, Grace.__$behaviorFactory13_rfield, null, null, "gmT1L1_Obj_Trinkets_NGPA_BodyStuff5()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3108, Grace.__$behaviorFactory13_rfield, null, null, "gmT1L1_Obj_WorkTable_NGPA_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3109, Grace.__$behaviorFactory13_rfield, null, null, "gmT1L1_Obj_WorkTable_NGPA_BodyStuff2()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3111, Grace.__$behaviorFactory13_rfield, null, null, "gmT1L1_Obj_WorkTable_NGPA_BodyStuff3()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3113, Grace.__$behaviorFactory13_rfield, null, null, "gmT1L1_Obj_WorkTable_NGPA_BodyStuff4()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3117, Grace.__$behaviorFactory13_rfield, null, null, "gmT1L1_Obj_WorkTable_TPA_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3119, Grace.__$behaviorFactory13_rfield, null, null, "gmT1L1_Obj_WorkTable_TPA_BodyStuff2()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3121, Grace.__$behaviorFactory13_rfield, null, null, "gmT1L1_Obj_WorkTable_TPA_BodyStuff3()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3123, Grace.__$behaviorFactory13_rfield, null, null, "gmT1L1_Obj_WorkTable_TPA_BodyStuff4()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3125, Grace.__$behaviorFactory13_rfield, null, null, "gmT1L1_Obj_Painting_TPA_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3127, Grace.__$behaviorFactory13_rfield, null, null, "gmT1L1_Obj_Painting_TPA_BodyStuff2()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3128, Grace.__$behaviorFactory13_rfield, null, null, "gmT1L1_Obj_Painting_TPA_BodyStuff3()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3130, Grace.__$behaviorFactory13_rfield, null, null, "gmT1L1_Obj_Painting_NGPA_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3132, Grace.__$behaviorFactory13_rfield, null, null, "gmT1L1_Obj_Painting_NGPA_BodyStuff2()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3133, Grace.__$behaviorFactory13_rfield, null, null, "gmT1L1_Obj_Painting_NGPA_BodyStuff3()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3135, Grace.__$behaviorFactory13_rfield, null, null, "gmT1L1_Obj_BrassBull_NTPA_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3137, Grace.__$behaviorFactory13_rfield, null, null, "gmT1L1_Obj_BrassBull_NTPA_BodyStuff2()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3138, Grace.__$behaviorFactory13_rfield, null, null, "gmT1L1_Obj_BrassBull_NTPA_BodyStuff3()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3140, Grace.__$behaviorFactory13_rfield, null, null, "gmT1L1_Obj_BrassBull_GPA_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3142, Grace.__$behaviorFactory13_rfield, null, null, "gmT1L1_Obj_BrassBull_GPA_BodyStuff2()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3144, Grace.__$behaviorFactory13_rfield, Grace.__$precondition4_rfield, null, "gmT1L1_Obj_BarStuff_NTPA_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3145, Grace.__$behaviorFactory13_rfield, Grace.__$precondition4_rfield, null, "gmT1L1_Obj_BarStuff_NTPA_BodyStuff2()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3147, Grace.__$behaviorFactory13_rfield, Grace.__$precondition4_rfield, null, "gmT1L1_Obj_BarStuff_GPA_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3148, Grace.__$behaviorFactory13_rfield, Grace.__$precondition4_rfield, null, "gmT1L1_Obj_BarStuff_GPA_BodyStuff2()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3150, Grace.__$behaviorFactory13_rfield, null, null, "gmT1L1_Obj_Eightball_NTPA_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3152, Grace.__$behaviorFactory13_rfield, null, null, "gmT1L1_Obj_Eightball_NTPA_BodyStuff2()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3154, Grace.__$behaviorFactory13_rfield, null, null, "gmT1L1_Obj_Eightball_NTPA_BodyStuff3()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3155, Grace.__$behaviorFactory13_rfield, null, null, "gmT1L1_Obj_Eightball_GPA_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3157, Grace.__$behaviorFactory13_rfield, null, null, "gmT1L1_Obj_Eightball_GPA_BodyStuff2()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3159, Grace.__$behaviorFactory13_rfield, null, null, "gmT1L1_Obj_Eightball_GPA_BodyStuff3()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3160, Grace.__$behaviorFactory13_rfield, null, null, "gmT1L1_Obj_ViewBalcony_NTPA_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3161, Grace.__$behaviorFactory13_rfield, null, null, "gmT1L1_Obj_ViewBalcony_NTPA_BodyStuff2()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3163, Grace.__$behaviorFactory13_rfield, null, null, "gmT1L1_Obj_ViewBalcony_NTPA_BodyStuff3()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3164, Grace.__$behaviorFactory14_rfield, null, null, "gmT1L1_Obj_ViewBalcony_GPA_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3165, Grace.__$behaviorFactory14_rfield, null, null, "gmT1L1_Obj_ViewBalcony_GPA_BodyStuff2()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3167, Grace.__$behaviorFactory14_rfield, null, null, "gmT1L1_Obj_ViewBalcony_GPA_BodyStuff3()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3168, Grace.__$behaviorFactory14_rfield, null, null, "gmT1_Deflect_Minimal_MildAgreement_T_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3169, Grace.__$behaviorFactory14_rfield, null, null, "gmT1_Deflect_Minimal_MildAgreement_G_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3170, Grace.__$behaviorFactory14_rfield, null, null, "gmT1_Deflect_Minimal_StrongAgreement_T_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3171, Grace.__$behaviorFactory14_rfield, null, null, "gmT1_Deflect_Minimal_StrongAgreement_G_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3172, Grace.__$behaviorFactory14_rfield, null, null, "gmT1_Deflect_Minimal_MildDisagreement_T_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3173, Grace.__$behaviorFactory14_rfield, null, null, "gmT1_Deflect_Minimal_MildDisagreement_G_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3174, Grace.__$behaviorFactory14_rfield, null, null, "gmT1_Deflect_Minimal_Awkward_T_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3175, Grace.__$behaviorFactory14_rfield, null, null, "gmT1_Deflect_Minimal_Awkward_G_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3176, Grace.__$behaviorFactory14_rfield, null, null, "gmT1_Deflect_Minimal_WantMore_T_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3177, Grace.__$behaviorFactory14_rfield, null, null, "gmT1_Deflect_Minimal_WantMore_G_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3178, Grace.__$behaviorFactory14_rfield, null, null, "gmT1_Deflect_Minimal_Unknown_T_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3179, Grace.__$behaviorFactory14_rfield, null, null, "gmT1_Deflect_Minimal_Unknown_G_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3180, Grace.__$behaviorFactory14_rfield, null, null, "gmT1_Deflect_Acknowledge_MildAgreement_T_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3181, Grace.__$behaviorFactory14_rfield, null, null, "gmT1_Deflect_Acknowledge_MildAgreement_G_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3185, Grace.__$behaviorFactory14_rfield, null, null, "gmT1_Deflect_Acknowledge_StrongAgreement_T_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3186, Grace.__$behaviorFactory14_rfield, null, null, "gmT1_Deflect_Acknowledge_StrongAgreement_G_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3190, Grace.__$behaviorFactory14_rfield, null, null, "gmT1_Deflect_Acknowledge_MildDisagreement_T_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3191, Grace.__$behaviorFactory14_rfield, null, null, "gmT1_Deflect_Acknowledge_MildDisagreement_G_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3195, Grace.__$behaviorFactory14_rfield, null, null, "gmT1_Deflect_Acknowledge_StrongDisagreement_T_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3196, Grace.__$behaviorFactory14_rfield, null, null, "gmT1_Deflect_Acknowledge_StrongDisagreement_G_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3200, Grace.__$behaviorFactory14_rfield, null, null, "gmT1_Deflect_Acknowledge_Awkward_T_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3201, Grace.__$behaviorFactory14_rfield, null, null, "gmT1_Deflect_Acknowledge_Awkward_G_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3205, Grace.__$behaviorFactory14_rfield, null, null, "gmT1_Deflect_Acknowledge_WantMore_T_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3206, Grace.__$behaviorFactory14_rfield, null, null, "gmT1_Deflect_Acknowledge_WantMore_G_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3210, Grace.__$behaviorFactory14_rfield, null, null, "gmT1_Deflect_Acknowledge_Unknown_T_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3211, Grace.__$behaviorFactory14_rfield, null, null, "gmT1_Deflect_Acknowledge_Unknown_G_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3216, Grace.__$behaviorFactory14_rfield, null, null, "gmT1_Deflect_HoldOn_MildAgreement_T_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3217, Grace.__$behaviorFactory14_rfield, null, null, "gmT1_Deflect_HoldOn_MildAgreement_G_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3221, Grace.__$behaviorFactory14_rfield, null, null, "gmT1_Deflect_HoldOn_StrongAgreement_T_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3222, Grace.__$behaviorFactory14_rfield, null, null, "gmT1_Deflect_HoldOn_StrongAgreement_G_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3226, Grace.__$behaviorFactory14_rfield, null, null, "gmT1_Deflect_HoldOn_MildDisagreement_T_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3227, Grace.__$behaviorFactory14_rfield, null, null, "gmT1_Deflect_HoldOn_MildDisagreement_G_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3231, Grace.__$behaviorFactory14_rfield, null, null, "gmT1_Deflect_HoldOn_StrongDisagreement_T_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3232, Grace.__$behaviorFactory14_rfield, null, null, "gmT1_Deflect_HoldOn_StrongDisagreement_G_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3236, Grace.__$behaviorFactory14_rfield, null, null, "gmT1_Deflect_HoldOn_Awkward_T_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3237, Grace.__$behaviorFactory14_rfield, null, null, "gmT1_Deflect_HoldOn_Awkward_G_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3241, Grace.__$behaviorFactory14_rfield, null, null, "gmT1_Deflect_HoldOn_WantMore_T_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3242, Grace.__$behaviorFactory14_rfield, null, null, "gmT1_Deflect_HoldOn_WantMore_G_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3246, Grace.__$behaviorFactory14_rfield, null, null, "gmT1_Deflect_HoldOn_Unknown_T_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3247, Grace.__$behaviorFactory14_rfield, null, null, "gmT1_Deflect_HoldOn_Unknown_G_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3251, Grace.__$behaviorFactory14_rfield, null, null, "gmT1L1_Explain_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3255, Grace.__$behaviorFactory14_rfield, null, null, "gmT12L1_Provocative_BodyStuff(int, int, int)", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3256, Grace.__$behaviorFactory14_rfield, Grace.__$precondition4_rfield, null, "gmT12L1_Provocative_BodyStuff_seq1(int)", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3290, Grace.__$behaviorFactory14_rfield, null, null, "gmT12L1_Provocative_BodyStuff_seq2(int, int)", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3293, Grace.__$behaviorFactory14_rfield, null, null, "gmT12L1_Provocative_BodyStuff_seq3(int, int)", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3294, Grace.__$behaviorFactory14_rfield, null, null, "gmT12L1_Provocative_BodyStuff_seq4(int)", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3304, Grace.__$behaviorFactory14_rfield, null, null, "gmT12L1_Provocative_BodyStuff_seq5()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3305, Grace.__$behaviorFactory14_rfield, null, null, "gmT1_DeflectSpecial_TooManyDeflects_T_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3307, Grace.__$behaviorFactory14_rfield, null, null, "gmT1_DeflectSpecial_TooManyDeflects_G_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3309, Grace.__$behaviorFactory14_rfield, null, null, "gmT12L1_LeaveApartment_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3313, Grace.__$behaviorFactory14_rfield, null, null, "gmT12L1_LeaveForKitchen_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3315, Grace.__$behaviorFactory14_rfield, null, null, "gmT12L1_PlayerUncoopNotSpeaking_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3319, Grace.__$behaviorFactory14_rfield, null, null, "gmT12L1_PlayerUncoopNotMoving_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3321, Grace.__$behaviorFactory14_rfield, null, null, "gmT12L1_PlayerUncoopActingWeird_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3322, Grace.__$behaviorFactory14_rfield, null, null, "gmT12L1_PlayerUncoopFidgety_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3324, Grace.__$behaviorFactory14_rfield, null, null, "gmT1L2_PraiseAllyG_NTPA_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3327, Grace.__$behaviorFactory14_rfield, null, null, "gmT1L2_PraiseAllyG_NTPA_BodyStuff2()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3329, Grace.__$behaviorFactory14_rfield, null, null, "gmT1L2_PraiseAllyG_GPA_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3332, Grace.__$behaviorFactory14_rfield, null, null, "gmT1L2_PraiseAllyG_GPA_BodyStuff2()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3334, Grace.__$behaviorFactory14_rfield, null, null, "gmT1L2_PraiseAllyT_NGPA_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3338, Grace.__$behaviorFactory14_rfield, null, null, "gmT1L2_PraiseAllyT_NGPA_BodyStuff2()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3340, Grace.__$behaviorFactory14_rfield, null, null, "gmT1L2_PraiseAllyT_TPA_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3344, Grace.__$behaviorFactory14_rfield, null, null, "gmT1L2_PraiseAllyT_TPA_BodyStuff2()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3346, Grace.__$behaviorFactory14_rfield, null, null, "gmT1L2_CriticizeG_NTPA_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3347, Grace.__$behaviorFactory14_rfield, null, null, "gmT1L2_CriticizeG_NTPA_BodyStuff2()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3349, Grace.__$behaviorFactory14_rfield, null, null, "gmT1L2_CriticizeG_GPA_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3350, Grace.__$behaviorFactory14_rfield, null, null, "gmT1L2_CriticizeG_GPA_BodyStuff2()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3352, Grace.__$behaviorFactory14_rfield, null, null, "gmT1L2_CriticizeT_NGPA_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3354, Grace.__$behaviorFactory14_rfield, null, null, "gmT1L2_CriticizeT_NGPA_BodyStuff2()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3356, Grace.__$behaviorFactory14_rfield, null, null, "gmT1L2_CriticizeT_TPA_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3358, Grace.__$behaviorFactory14_rfield, null, null, "gmT1L2_CriticizeT_TPA_BodyStuff2()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3360, Grace.__$behaviorFactory14_rfield, null, null, "gmT1L2_FlirtG_NTPA_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3362, Grace.__$behaviorFactory14_rfield, null, null, "gmT1L2_FlirtG_NTPA_BodyStuff2()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3364, Grace.__$behaviorFactory14_rfield, null, null, "gmT1L2_FlirtG_GPA_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3366, Grace.__$behaviorFactory14_rfield, null, null, "gmT1L2_FlirtG_GPA_BodyStuff2()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3368, Grace.__$behaviorFactory14_rfield, null, null, "gmT1L2_FlirtT_NGPA_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3370, Grace.__$behaviorFactory14_rfield, null, null, "gmT1L2_FlirtT_NGPA_BodyStuff2()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3372, Grace.__$behaviorFactory14_rfield, null, null, "gmT1L2_FlirtT_TPA_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3374, Grace.__$behaviorFactory14_rfield, null, null, "gmT1L2_FlirtT_TPA_BodyStuff2()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3376, Grace.__$behaviorFactory14_rfield, null, null, "gmT1L2_HugComfortG_NTPA_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3378, Grace.__$behaviorFactory14_rfield, null, null, "gmT1L2_HugComfortG_NTPA_BodyStuff2()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3380, Grace.__$behaviorFactory14_rfield, null, null, "gmT1L2_HugComfortG_GPA_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3382, Grace.__$behaviorFactory14_rfield, null, null, "gmT1L2_HugComfortG_GPA_BodyStuff2()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3384, Grace.__$behaviorFactory14_rfield, null, null, "gmT1L2_HugComfortT_NGPA_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3387, Grace.__$behaviorFactory14_rfield, null, null, "gmT1L2_HugComfortT_NGPA_BodyStuff2()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3389, Grace.__$behaviorFactory14_rfield, null, null, "gmT1L2_HugComfortT_TPA_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3392, Grace.__$behaviorFactory15_rfield, null, null, "gmT1L2_HugComfortT_TPA_BodyStuff2()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3394, Grace.__$behaviorFactory15_rfield, null, null, "gmT1L2_Pacify_NGPA_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3395, Grace.__$behaviorFactory15_rfield, null, null, "gmT1L2_Pacify_NTPA_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3398, Grace.__$behaviorFactory15_rfield, null, null, "gmT1L2_IntimateG_NGPA_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3399, Grace.__$behaviorFactory15_rfield, null, null, "gmT1L2_IntimateG_TPA_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3400, Grace.__$behaviorFactory15_rfield, null, null, "gmT1L2_IntimateT_NTPA_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3401, Grace.__$behaviorFactory15_rfield, null, null, "gmT1L2_IntimateT_GPA_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3402, Grace.__$behaviorFactory15_rfield, null, null, "gmT1L2_SupportG_NGPA_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3403, Grace.__$behaviorFactory15_rfield, null, null, "gmT1L2_SupportG_TPA_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3404, Grace.__$behaviorFactory15_rfield, null, null, "gmT1L2_SupportT_NTPA_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3405, Grace.__$behaviorFactory15_rfield, null, null, "gmT1L2_SupportT_GPA_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3406, Grace.__$behaviorFactory15_rfield, Grace.__$precondition4_rfield, null, "gmT1L2_Satl_Marriage_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3410, Grace.__$behaviorFactory15_rfield, Grace.__$precondition4_rfield, null, "gmT1L2_Satl_Marriage_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3411, Grace.__$behaviorFactory15_rfield, null, null, "gmT1L2_Satl_Divorce_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3412, Grace.__$behaviorFactory15_rfield, null, null, "gmT1L2_Satl_Divorce_BodyStuff2()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3414, Grace.__$behaviorFactory15_rfield, null, null, "gmT1L2_Satl_Sex_Garbage_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3416, Grace.__$behaviorFactory15_rfield, null, null, "gmT1L2_Satl_Sex_Garbage_BodyStuff2()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3418, Grace.__$behaviorFactory15_rfield, null, null, "gmT1L2_Satl_Sex_BodyStuff3()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3423, Grace.__$behaviorFactory15_rfield, null, null, "gmT1L2_Satl_Sex_DryCleaning_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3425, Grace.__$behaviorFactory15_rfield, null, null, "gmT1L2_Satl_Sex_DryCleaning_BodyStuff2()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3427, Grace.__$behaviorFactory15_rfield, null, null, "gmT1L2_Satl_Sex_CleaningWoman_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3429, Grace.__$behaviorFactory15_rfield, null, null, "gmT1L2_Satl_Sex_CleaningWoman_BodyStuff2()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3431, Grace.__$behaviorFactory15_rfield, null, null, "gmT1L2_Satl_Infidelity_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3432, Grace.__$behaviorFactory15_rfield, null, null, "gmT1L2_Satl_Infidelity_BodyStuff2()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3433, Grace.__$behaviorFactory15_rfield, null, null, "gmT1L2_Satl_Therapy_BodyStuff_FirstMention()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3435, Grace.__$behaviorFactory15_rfield, null, null, "gmT1L2_Satl_Therapy_BodyStuff_SecondMention()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3437, Grace.__$behaviorFactory15_rfield, null, null, "gmT1L2_Satl_Therapy_BodyStuff2()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3439, Grace.__$behaviorFactory15_rfield, null, null, "gmT1L2_Obj_WeddingPic_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3440, Grace.__$behaviorFactory15_rfield, null, null, "gmT1L2_Obj_WeddingPic_BodyStuff2()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3442, Grace.__$behaviorFactory15_rfield, null, null, "gmT1L2_Obj_FurnishingsApt_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3443, Grace.__$behaviorFactory15_rfield, null, null, "gmT1L2_Obj_FurnishingsApt_BodyStuff2()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3445, Grace.__$behaviorFactory15_rfield, null, null, "gmT1L2_Obj_FurnishingsApt_BodyStuff3()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3446, Grace.__$behaviorFactory15_rfield, null, null, "gmT1L2_Obj_ItalyPic_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3447, Grace.__$behaviorFactory15_rfield, null, null, "gmT1L2_Obj_ItalyPic_BodyStuff2()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3449, Grace.__$behaviorFactory15_rfield, null, null, "gmT1L2_Obj_Trinkets_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3451, Grace.__$behaviorFactory15_rfield, null, null, "gmT1L2_Obj_Trinkets_BodyStuff2()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3453, Grace.__$behaviorFactory15_rfield, null, null, "gmT1L2_Obj_Trinkets_BodyStuff3()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3455, Grace.__$behaviorFactory15_rfield, null, null, "gmT1L2_Obj_WorkTable_NGPA_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3457, Grace.__$behaviorFactory15_rfield, null, null, "gmT1L2_Obj_WorkTable_NGPA_BodyStuff2()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3458, Grace.__$behaviorFactory15_rfield, null, null, "gmT1L2_Obj_WorkTable_NGPA_BodyStuff3()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3460, Grace.__$behaviorFactory15_rfield, null, null, "gmT1L2_Obj_WorkTable_NGPA_BodyStuff4()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3462, Grace.__$behaviorFactory15_rfield, null, null, "gmT1L2_Obj_WorkTable_TPA_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3464, Grace.__$behaviorFactory15_rfield, null, null, "gmT1L2_Obj_WorkTable_TPA_BodyStuff2()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3466, Grace.__$behaviorFactory15_rfield, null, null, "gmT1L2_Obj_WorkTable_TPA_BodyStuff3()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3468, Grace.__$behaviorFactory15_rfield, null, null, "gmT1L2_Obj_Painting_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3470, Grace.__$behaviorFactory15_rfield, null, null, "gmT1L2_Obj_Painting_BodyStuff2()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3471, Grace.__$behaviorFactory15_rfield, null, null, "gmT1L2_Obj_Painting_BodyStuff3()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3474, Grace.__$behaviorFactory15_rfield, null, null, "gmT1L2_Obj_BrassBull_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3476, Grace.__$behaviorFactory15_rfield, null, null, "gmT1L2_Obj_BrassBull_BodyStuff2()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3477, Grace.__$behaviorFactory15_rfield, null, null, "gmT1L2_Obj_BarStuff_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3479, Grace.__$behaviorFactory15_rfield, null, null, "gmT1L2_Obj_Eightball_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3481, Grace.__$behaviorFactory15_rfield, null, null, "gmT1L2_Obj_Eightball_BodyStuff2()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3483, Grace.__$behaviorFactory15_rfield, null, null, "gmT1L2_Obj_ViewBalcony_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3484, Grace.__$behaviorFactory15_rfield, null, null, "gmT1L2_Obj_ViewBalcony_BodyStuff2()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3486, Grace.__$behaviorFactory15_rfield, null, null, "gmT1L2_Obj_ViewBalcony_BodyStuff3()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3487, Grace.__$behaviorFactory15_rfield, null, null, "gmT1L2_Explain_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3491, Grace.__$behaviorFactory15_rfield, null, null, "gmT12L2_Provocative_BodyStuff(int, int, int)", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3495, Grace.__$behaviorFactory15_rfield, null, null, "gmT12L2_Provocative_BodyStuff2(boolean)", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3506, Grace.__$behaviorFactory15_rfield, null, null, "gmT12L2_LeaveApartment_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3510, Grace.__$behaviorFactory15_rfield, null, null, "gmT12L2_LeaveForKitchen_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3512, Grace.__$behaviorFactory15_rfield, null, null, "gmT12L2_PlayerUncoopNotSpeaking_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3513, Grace.__$behaviorFactory15_rfield, null, null, "gmT12L2_PlayerUncoopNotMoving_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3514, Grace.__$behaviorFactory15_rfield, null, null, "gmT12L2_PlayerUncoopActingWeird_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3515, Grace.__$behaviorFactory15_rfield, null, null, "gmT12L2_PlayerUncoopFidgety_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3516, Grace.__$behaviorFactory15_rfield, null, null, "gmT1L3_PushTooFar_PraiseAllyG_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3518, Grace.__$behaviorFactory15_rfield, null, null, "gmT1L3_PushTooFar_PraiseAllyT_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3520, Grace.__$behaviorFactory15_rfield, null, null, "gmT1L3_PushTooFar_CriticizeG_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3522, Grace.__$behaviorFactory15_rfield, null, null, "gmT1L3_PushTooFar_CriticizeT_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3524, Grace.__$behaviorFactory15_rfield, null, null, "gmT1L3_PushTooFar_FlirtG_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3526, Grace.__$behaviorFactory15_rfield, null, null, "gmT1L3_PushTooFar_FlirtT_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3528, Grace.__$behaviorFactory15_rfield, null, null, "gmT1L3_PushTooFar_PacifyNGPA_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3530, Grace.__$behaviorFactory15_rfield, null, null, "gmT1L3_PushTooFar_PacifyNTPA_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3532, Grace.__$behaviorFactory15_rfield, null, null, "gmT1L3_PushTooFar_IntimateSupportG_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3534, Grace.__$behaviorFactory15_rfield, null, null, "gmT1L3_PushTooFar_IntimateSupportT_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3536, Grace.__$behaviorFactory15_rfield, null, null, "gmT1L3_PushTooFar_ArtistAdvG_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3538, Grace.__$behaviorFactory15_rfield, null, null, "gmT1L3_PushTooFar_FacadeG_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3540, Grace.__$behaviorFactory15_rfield, null, null, "gmT1L3_PushTooFar_FacadeT_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3542, Grace.__$behaviorFactory15_rfield, null, null, "gmT1L3_PushTooFar_RockyMarriageG_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3544, Grace.__$behaviorFactory15_rfield, null, null, "gmT1L3_PushTooFar_RockyMarriageT_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3546, Grace.__$behaviorFactory15_rfield, null, null, "gmT12L3_PushTooFar_Provocative_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3548, Grace.__$behaviorFactory15_rfield, null, null, "gmT12L3_PushTooFar_Provocative_BodyStuff1b(boolean)", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3554, Grace.__$behaviorFactory15_rfield, null, null, "gmT12L3_PushTooFar_Provocative_BodyStuff2()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3555, Grace.__$behaviorFactory15_rfield, null, null, "gmT12L3_PushTooFar_LeaveRoom_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3557, Grace.__$behaviorFactory15_rfield, null, null, "gmT12L3_PushTooFar_Uncoop_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3559, Grace.__$behaviorFactory15_rfield, null, null, "gmT12_DeflectSpecial_AlmostPushTooFar_T_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3560, Grace.__$behaviorFactory15_rfield, null, null, "gmT12_DeflectSpecial_AlmostPushTooFar_G_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3644, Grace.__$behaviorFactory16_rfield, Grace.__$precondition4_rfield, null, "gmT1_Deflect_Reestablish_Positive_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3650, Grace.__$behaviorFactory16_rfield, Grace.__$precondition4_rfield, null, "gmT1_Deflect_Reestablish_Positive_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3654, Grace.__$behaviorFactory16_rfield, Grace.__$precondition4_rfield, null, "gmT1_Deflect_Reestablish_Positive_BodyStuff2()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3656, Grace.__$behaviorFactory16_rfield, Grace.__$precondition4_rfield, null, "gmT1_Deflect_Reestablish_Positive_BodyStuff2()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3658, Grace.__$behaviorFactory16_rfield, Grace.__$precondition4_rfield, null, "gmT1_Deflect_Reestablish_Negative_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3664, Grace.__$behaviorFactory16_rfield, Grace.__$precondition4_rfield, null, "gmT1_Deflect_Reestablish_Negative_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3668, Grace.__$behaviorFactory16_rfield, Grace.__$precondition4_rfield, null, "gmT1_Deflect_Reestablish_Negative_BodyStuff2()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3670, Grace.__$behaviorFactory16_rfield, Grace.__$precondition4_rfield, null, "gmT1_Deflect_Reestablish_Negative_BodyStuff2()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3672, Grace.__$behaviorFactory16_rfield, Grace.__$precondition4_rfield, null, "gmT1_Deflect_Reestablish_Neutral_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3678, Grace.__$behaviorFactory16_rfield, Grace.__$precondition4_rfield, null, "gmT1_Deflect_Reestablish_Neutral_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3682, Grace.__$behaviorFactory16_rfield, Grace.__$precondition4_rfield, null, "gmT1_Deflect_Reestablish_Neutral_BodyStuff2()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3684, Grace.__$behaviorFactory16_rfield, Grace.__$precondition4_rfield, null, "gmT1_Deflect_Reestablish_Neutral_BodyStuff2()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3686, Grace.__$behaviorFactory16_rfield, Grace.__$precondition4_rfield, null, "gmT12L12_Explain_PrefaceBodyStuff(int, int, int, int, int)", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3692, Grace.__$behaviorFactory16_rfield, Grace.__$precondition4_rfield, null, "gmT12L12_Explain_PrefaceBodyStuff(int, int, int, int, int)", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3694, Grace.__$behaviorFactory16_rfield, null, null, "gmT2L1_PraiseAllyG_GPA_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3697, Grace.__$behaviorFactory16_rfield, null, null, "gmT2L1_PraiseAllyG_GPA_BodyStuff2()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3698, Grace.__$behaviorFactory16_rfield, null, null, "gmT2L1_PraiseAllyG_TPA_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3699, Grace.__$behaviorFactory16_rfield, null, null, "gmT2L1_PraiseAllyG_TPA_BodyStuff2()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3700, Grace.__$behaviorFactory16_rfield, null, null, "gmT2L1_PraiseAllyT_GPA_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3704, Grace.__$behaviorFactory16_rfield, null, null, "gmT2L1_PraiseAllyT_GPA_BodyStuff2()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3705, Grace.__$behaviorFactory16_rfield, null, null, "gmT2L1_PraiseAllyT_TPA_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3709, Grace.__$behaviorFactory16_rfield, null, null, "gmT2L1_PraiseAllyT_TPA_BodyStuff2()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3710, Grace.__$behaviorFactory16_rfield, null, null, "gmT2L1_CriticizeG_GPA_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3711, Grace.__$behaviorFactory16_rfield, null, null, "gmT2L1_CriticizeG_GPA_BodyStuff2()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3713, Grace.__$behaviorFactory16_rfield, null, null, "gmT2L1_CriticizeG_TPA_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3714, Grace.__$behaviorFactory16_rfield, null, null, "gmT2L1_CriticizeG_TPA_BodyStuff2()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3718, Grace.__$behaviorFactory16_rfield, null, null, "gmT2L1_CriticizeT_GPA_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3720, Grace.__$behaviorFactory16_rfield, null, null, "gmT2L1_CriticizeT_GPA_BodyStuff2()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3721, Grace.__$behaviorFactory16_rfield, null, null, "gmT2L1_CriticizeT_TPA_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3723, Grace.__$behaviorFactory16_rfield, null, null, "gmT2L1_CriticizeT_TPA_BodyStuff2()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3724, Grace.__$behaviorFactory16_rfield, null, null, "gmT2L1_FlirtG_GPA_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3733, Grace.__$behaviorFactory16_rfield, null, null, "gmT2L1_FlirtG_GPA_BodyStuff2()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3735, Grace.__$behaviorFactory16_rfield, null, null, "gmT2L1_FlirtG_GPA_BodyStuff3()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3736, Grace.__$behaviorFactory16_rfield, null, null, "gmT2L1_FlirtG_TPA_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3744, Grace.__$behaviorFactory16_rfield, null, null, "gmT2L1_FlirtG_TPA_BodyStuff2()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3746, Grace.__$behaviorFactory16_rfield, null, null, "gmT2L1_FlirtG_TPA_BodyStuff3()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3747, Grace.__$behaviorFactory16_rfield, null, null, "gmT2L1_FlirtT_GPA_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3749, Grace.__$behaviorFactory16_rfield, null, null, "gmT2L1_FlirtT_GPA_BodyStuff2()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3757, Grace.__$behaviorFactory16_rfield, null, null, "gmT2L1_FlirtT_GPA_BodyStuff3()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3758, Grace.__$behaviorFactory16_rfield, null, null, "gmT2L1_FlirtT_TPA_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3760, Grace.__$behaviorFactory16_rfield, null, null, "gmT2L1_FlirtT_TPA_BodyStuff2()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3776, Grace.__$behaviorFactory16_rfield, null, null, "gmT2L1_FlirtT_TPA_BodyStuff3()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3777, Grace.__$behaviorFactory16_rfield, null, null, "gmT2L1_HugComfortG_GPA_BodyStuff(int)", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3790, Grace.__$behaviorFactory16_rfield, null, null, "gmT2L1_HugComfortG_GPA_BodyStuff2()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3791, Grace.__$behaviorFactory16_rfield, null, null, "gmT2L1_HugComfortG_NTPA_BodyStuff(int)", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3804, Grace.__$behaviorFactory16_rfield, null, null, "gmT2L1_HugComfortG_NTPA_BodyStuff2()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3805, Grace.__$behaviorFactory16_rfield, null, null, "gmT2L1_HugComfortT_NGPA_BodyStuff(int)", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3809, Grace.__$behaviorFactory16_rfield, null, null, "gmT2L1_HugComfortT_NGPA_BodyStuff2()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3810, Grace.__$behaviorFactory16_rfield, null, null, "gmT2L1_HugComfortT_TPA_BodyStuff(int)", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3814, Grace.__$behaviorFactory16_rfield, null, null, "gmT2L1_HugComfortT_TPA_BodyStuff2()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3815, Grace.__$behaviorFactory16_rfield, null, null, "gmT2L1_Pacify_NGPA_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3816, Grace.__$behaviorFactory16_rfield, null, null, "gmT2L1_Pacify_NTPA_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3817, Grace.__$behaviorFactory16_rfield, null, null, "gmT2L1_IntimateG_NGPA_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3818, Grace.__$behaviorFactory16_rfield, null, null, "gmT2L1_IntimateG_TPA_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3819, Grace.__$behaviorFactory16_rfield, null, null, "gmT2L1_IntimateT_NTPA_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3820, Grace.__$behaviorFactory16_rfield, null, null, "gmT2L1_IntimateT_GPA_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3821, Grace.__$behaviorFactory16_rfield, null, null, "gmT2L1_Satl_Marriage_NTPA_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3822, Grace.__$behaviorFactory16_rfield, null, null, "gmT2L1_Satl_Marriage_NTPA_BodyStuff2()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3824, Grace.__$behaviorFactory16_rfield, null, null, "gmT2L1_Satl_Marriage_GPA_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3825, Grace.__$behaviorFactory16_rfield, null, null, "gmT2L1_Satl_Marriage_GPA_BodyStuff2()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3827, Grace.__$behaviorFactory16_rfield, null, null, "gmT2L1_Satl_Divorce_NTPA_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3829, Grace.__$behaviorFactory16_rfield, null, null, "gmT2L1_Satl_Divorce_GPA_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3831, Grace.__$behaviorFactory16_rfield, null, null, "gmT2L1_Satl_Sex_NTPA_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3832, Grace.__$behaviorFactory16_rfield, null, null, "gmT2L1_Satl_Sex_NTPA_BodyStuff2()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3834, Grace.__$behaviorFactory16_rfield, null, null, "gmT2L1_Satl_Sex_NTPA_BodyStuff3()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3835, Grace.__$behaviorFactory16_rfield, null, null, "gmT2L1_Satl_Sex_GPA_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3836, Grace.__$behaviorFactory16_rfield, null, null, "gmT2L1_Satl_Sex_GPA_BodyStuff2()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3838, Grace.__$behaviorFactory16_rfield, null, null, "gmT2L1_Satl_Sex_GPA_BodyStuff3()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3839, Grace.__$behaviorFactory16_rfield, null, null, "gmT2L1_Satl_Infidelity_NTPA_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3840, Grace.__$behaviorFactory16_rfield, null, null, "gmT2L1_Satl_Infidelity_NTPA_BodyStuff2()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3841, Grace.__$behaviorFactory16_rfield, null, null, "gmT2L1_Satl_Infidelity_GPA_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3842, Grace.__$behaviorFactory17_rfield, null, null, "gmT2L1_Satl_Infidelity_GPA_BodyStuff2()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3843, Grace.__$behaviorFactory17_rfield, null, null, "gmT2L1_Satl_Therapy_TPA_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3845, Grace.__$behaviorFactory17_rfield, null, null, "gmT2L1_Satl_Therapy_TPA_BodyStuff2()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3846, Grace.__$behaviorFactory17_rfield, null, null, "gmT2L1_Satl_Therapy_NGPA_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3848, Grace.__$behaviorFactory17_rfield, null, null, "gmT2L1_Satl_Therapy_NGPA_BodyStuff2()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3849, Grace.__$behaviorFactory17_rfield, null, null, "gmT2L1_Obj_WeddingPic_NTPA_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3850, Grace.__$behaviorFactory17_rfield, null, null, "gmT2L1_Obj_WeddingPic_NTPA_BodyStuff2()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3852, Grace.__$behaviorFactory17_rfield, null, null, "gmT2L1_Obj_WeddingPic_NTPA_BodyStuff3()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3853, Grace.__$behaviorFactory17_rfield, null, null, "gmT2L1_Obj_WeddingPic_NTPA_BodyStuff4()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3855, Grace.__$behaviorFactory17_rfield, null, null, "gmT2L1_Obj_WeddingPic_NTPA_BodyStuff5()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3856, Grace.__$behaviorFactory17_rfield, null, null, "gmT2L1_Obj_WeddingPic_GPA_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3857, Grace.__$behaviorFactory17_rfield, null, null, "gmT2L1_Obj_WeddingPic_GPA_BodyStuff2()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3859, Grace.__$behaviorFactory17_rfield, null, null, "gmT2L1_Obj_WeddingPic_GPA_BodyStuff3()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3860, Grace.__$behaviorFactory17_rfield, null, null, "gmT2L1_Obj_WeddingPic_GPA_BodyStuff4()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3862, Grace.__$behaviorFactory17_rfield, null, null, "gmT2L1_Obj_WeddingPic_GPA_BodyStuff5()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3863, Grace.__$behaviorFactory17_rfield, null, null, "gmT2L1_Obj_FurnishingsApt_TPA_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3864, Grace.__$behaviorFactory17_rfield, null, null, "gmT2L1_Obj_FurnishingsApt_TPA_BodyStuff2()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3866, Grace.__$behaviorFactory17_rfield, null, null, "gmT2L1_Obj_FurnishingsApt_TPA_BodyStuff3()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3868, Grace.__$behaviorFactory17_rfield, null, null, "gmT2L1_Obj_FurnishingsApt_NGPA_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3869, Grace.__$behaviorFactory17_rfield, null, null, "gmT2L1_Obj_FurnishingsApt_NGPA_BodyStuff2()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3871, Grace.__$behaviorFactory17_rfield, null, null, "gmT2L1_Obj_ItalyPic_NTPA_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3872, Grace.__$behaviorFactory17_rfield, null, null, "gmT2L1_Obj_ItalyPic_NTPA_BodyStuff2()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3874, Grace.__$behaviorFactory17_rfield, null, null, "gmT2L1_Obj_ItalyPic_GPA_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3875, Grace.__$behaviorFactory17_rfield, null, null, "gmT2L1_Obj_ItalyPic_GPA_BodyStuff2()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3877, Grace.__$behaviorFactory17_rfield, null, null, "gmT2L1_Obj_Trinkets_TPA_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3879, Grace.__$behaviorFactory17_rfield, null, null, "gmT2L1_Obj_Trinkets_TPA_BodyStuff2()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3880, Grace.__$behaviorFactory17_rfield, null, null, "gmT2L1_Obj_Trinkets_TPA_BodyStuff3()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3882, Grace.__$behaviorFactory17_rfield, null, null, "gmT2L1_Obj_Trinkets_NGPA_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3884, Grace.__$behaviorFactory17_rfield, null, null, "gmT2L1_Obj_Trinkets_NGPA_BodyStuff2()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3885, Grace.__$behaviorFactory17_rfield, null, null, "gmT2L1_Obj_Trinkets_NGPA_BodyStuff3()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3887, Grace.__$behaviorFactory17_rfield, null, null, "gmT2L1_Obj_Trinkets_NGPA_BodyStuff4()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3888, Grace.__$behaviorFactory17_rfield, null, null, "gmT2L1_Obj_Trinkets_NGPA_BodyStuff5()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3890, Grace.__$behaviorFactory17_rfield, null, null, "gmT2L1_Obj_WorkTable_NGPA_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3891, Grace.__$behaviorFactory17_rfield, null, null, "gmT2L1_Obj_WorkTable_NGPA_BodyStuff2()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3893, Grace.__$behaviorFactory17_rfield, null, null, "gmT2L1_Obj_WorkTable_NGPA_BodyStuff3()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3895, Grace.__$behaviorFactory17_rfield, null, null, "gmT2L1_Obj_WorkTable_NGPA_BodyStuff4()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3899, Grace.__$behaviorFactory17_rfield, null, null, "gmT2L1_Obj_WorkTable_TPA_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3901, Grace.__$behaviorFactory17_rfield, null, null, "gmT2L1_Obj_WorkTable_TPA_BodyStuff2()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3903, Grace.__$behaviorFactory17_rfield, null, null, "gmT2L1_Obj_WorkTable_TPA_BodyStuff3()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3905, Grace.__$behaviorFactory17_rfield, null, null, "gmT2L1_Obj_WorkTable_TPA_BodyStuff4()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3907, Grace.__$behaviorFactory17_rfield, null, null, "gmT2L1_Obj_Painting_TPA_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3909, Grace.__$behaviorFactory17_rfield, null, null, "gmT2L1_Obj_Painting_TPA_BodyStuff2()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3910, Grace.__$behaviorFactory17_rfield, null, null, "gmT2L1_Obj_Painting_TPA_BodyStuff3()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3912, Grace.__$behaviorFactory17_rfield, null, null, "gmT2L1_Obj_Painting_NGPA_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3914, Grace.__$behaviorFactory17_rfield, null, null, "gmT2L1_Obj_Painting_NGPA_BodyStuff2()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3915, Grace.__$behaviorFactory17_rfield, null, null, "gmT2L1_Obj_Painting_NGPA_BodyStuff3()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3917, Grace.__$behaviorFactory17_rfield, null, null, "gmT2L1_Obj_BrassBull_NTPA_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3919, Grace.__$behaviorFactory17_rfield, null, null, "gmT2L1_Obj_BrassBull_NTPA_BodyStuff2()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3920, Grace.__$behaviorFactory17_rfield, null, null, "gmT2L1_Obj_BrassBull_NTPA_BodyStuff3()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3922, Grace.__$behaviorFactory17_rfield, null, null, "gmT2L1_Obj_BrassBull_GPA_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3924, Grace.__$behaviorFactory17_rfield, null, null, "gmT2L1_Obj_BrassBull_GPA_BodyStuff2()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3926, Grace.__$behaviorFactory17_rfield, Grace.__$precondition4_rfield, null, "gmT2L1_Obj_BarStuff_NTPA_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3927, Grace.__$behaviorFactory17_rfield, Grace.__$precondition4_rfield, null, "gmT2L1_Obj_BarStuff_NTPA_BodyStuff2()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3929, Grace.__$behaviorFactory17_rfield, Grace.__$precondition4_rfield, null, "gmT2L1_Obj_BarStuff_GPA_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3930, Grace.__$behaviorFactory17_rfield, Grace.__$precondition4_rfield, null, "gmT2L1_Obj_BarStuff_GPA_BodyStuff2()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3932, Grace.__$behaviorFactory17_rfield, null, null, "gmT2L1_Obj_Eightball_NTPA_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3934, Grace.__$behaviorFactory17_rfield, null, null, "gmT2L1_Obj_Eightball_NTPA_BodyStuff2()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3936, Grace.__$behaviorFactory17_rfield, null, null, "gmT2L1_Obj_Eightball_NTPA_BodyStuff3()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3937, Grace.__$behaviorFactory17_rfield, null, null, "gmT2L1_Obj_Eightball_GPA_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3939, Grace.__$behaviorFactory17_rfield, null, null, "gmT2L1_Obj_Eightball_GPA_BodyStuff2()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3941, Grace.__$behaviorFactory17_rfield, null, null, "gmT2L1_Obj_Eightball_GPA_BodyStuff3()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3942, Grace.__$behaviorFactory17_rfield, null, null, "gmT2L1_Obj_ViewBalcony_NTPA_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3943, Grace.__$behaviorFactory17_rfield, null, null, "gmT2L1_Obj_ViewBalcony_NTPA_BodyStuff2()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3945, Grace.__$behaviorFactory17_rfield, null, null, "gmT2L1_Obj_ViewBalcony_NTPA_BodyStuff3()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3946, Grace.__$behaviorFactory17_rfield, null, null, "gmT2L1_Obj_ViewBalcony_GPA_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3947, Grace.__$behaviorFactory17_rfield, null, null, "gmT2L1_Obj_ViewBalcony_GPA_BodyStuff2()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3949, Grace.__$behaviorFactory17_rfield, null, null, "gmT2L1_Obj_ViewBalcony_GPA_BodyStuff3()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3950, Grace.__$behaviorFactory17_rfield, null, null, "gmT1_Deflect_Minimal_MildAgreement_T_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3951, Grace.__$behaviorFactory17_rfield, null, null, "gmT1_Deflect_Minimal_MildAgreement_G_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3952, Grace.__$behaviorFactory17_rfield, null, null, "gmT1_Deflect_Minimal_StrongAgreement_T_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3953, Grace.__$behaviorFactory17_rfield, null, null, "gmT1_Deflect_Minimal_StrongAgreement_G_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3954, Grace.__$behaviorFactory17_rfield, null, null, "gmT1_Deflect_Minimal_MildDisagreement_T_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3955, Grace.__$behaviorFactory17_rfield, null, null, "gmT1_Deflect_Minimal_MildDisagreement_G_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3956, Grace.__$behaviorFactory17_rfield, null, null, "gmT1_Deflect_Minimal_Awkward_T_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3957, Grace.__$behaviorFactory17_rfield, null, null, "gmT1_Deflect_Minimal_Awkward_G_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3958, Grace.__$behaviorFactory17_rfield, null, null, "gmT1_Deflect_Minimal_WantMore_T_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3959, Grace.__$behaviorFactory17_rfield, null, null, "gmT1_Deflect_Minimal_WantMore_G_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3960, Grace.__$behaviorFactory17_rfield, null, null, "gmT1_Deflect_Minimal_Unknown_T_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3961, Grace.__$behaviorFactory17_rfield, null, null, "gmT1_Deflect_Minimal_Unknown_G_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3962, Grace.__$behaviorFactory17_rfield, null, null, "gmT1_Deflect_Acknowledge_MildAgreement_T_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3963, Grace.__$behaviorFactory17_rfield, null, null, "gmT1_Deflect_Acknowledge_MildAgreement_G_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3967, Grace.__$behaviorFactory17_rfield, null, null, "gmT1_Deflect_Acknowledge_StrongAgreement_T_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3968, Grace.__$behaviorFactory17_rfield, null, null, "gmT1_Deflect_Acknowledge_StrongAgreement_G_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3972, Grace.__$behaviorFactory17_rfield, null, null, "gmT1_Deflect_Acknowledge_MildDisagreement_T_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3973, Grace.__$behaviorFactory17_rfield, null, null, "gmT1_Deflect_Acknowledge_MildDisagreement_G_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3977, Grace.__$behaviorFactory17_rfield, null, null, "gmT1_Deflect_Acknowledge_StrongDisagreement_T_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3978, Grace.__$behaviorFactory17_rfield, null, null, "gmT1_Deflect_Acknowledge_StrongDisagreement_G_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3982, Grace.__$behaviorFactory17_rfield, null, null, "gmT1_Deflect_Acknowledge_Awkward_T_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3983, Grace.__$behaviorFactory17_rfield, null, null, "gmT1_Deflect_Acknowledge_Awkward_G_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3987, Grace.__$behaviorFactory17_rfield, null, null, "gmT1_Deflect_Acknowledge_WantMore_T_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3988, Grace.__$behaviorFactory17_rfield, null, null, "gmT1_Deflect_Acknowledge_WantMore_G_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3992, Grace.__$behaviorFactory17_rfield, null, null, "gmT1_Deflect_Acknowledge_Unknown_T_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3993, Grace.__$behaviorFactory17_rfield, null, null, "gmT1_Deflect_Acknowledge_Unknown_G_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3998, Grace.__$behaviorFactory17_rfield, null, null, "gmT1_Deflect_HoldOn_MildAgreement_T_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(3999, Grace.__$behaviorFactory17_rfield, null, null, "gmT1_Deflect_HoldOn_MildAgreement_G_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4003, Grace.__$behaviorFactory17_rfield, null, null, "gmT1_Deflect_HoldOn_StrongAgreement_T_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4004, Grace.__$behaviorFactory17_rfield, null, null, "gmT1_Deflect_HoldOn_StrongAgreement_G_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4008, Grace.__$behaviorFactory17_rfield, null, null, "gmT1_Deflect_HoldOn_MildDisagreement_T_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4009, Grace.__$behaviorFactory17_rfield, null, null, "gmT1_Deflect_HoldOn_MildDisagreement_G_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4013, Grace.__$behaviorFactory17_rfield, null, null, "gmT1_Deflect_HoldOn_StrongDisagreement_T_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4014, Grace.__$behaviorFactory17_rfield, null, null, "gmT1_Deflect_HoldOn_StrongDisagreement_G_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4018, Grace.__$behaviorFactory17_rfield, null, null, "gmT1_Deflect_HoldOn_Awkward_T_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4019, Grace.__$behaviorFactory17_rfield, null, null, "gmT1_Deflect_HoldOn_Awkward_G_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4023, Grace.__$behaviorFactory17_rfield, null, null, "gmT1_Deflect_HoldOn_WantMore_T_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4024, Grace.__$behaviorFactory17_rfield, null, null, "gmT1_Deflect_HoldOn_WantMore_G_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4028, Grace.__$behaviorFactory17_rfield, null, null, "gmT1_Deflect_HoldOn_Unknown_T_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4029, Grace.__$behaviorFactory17_rfield, null, null, "gmT1_Deflect_HoldOn_Unknown_G_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4037, Grace.__$behaviorFactory17_rfield, null, null, "gmT2L1_Explain_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4041, Grace.__$behaviorFactory17_rfield, null, null, "gmT2L2_PraiseAllyG_NTPA_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4044, Grace.__$behaviorFactory17_rfield, null, null, "gmT2L2_PraiseAllyG_NTPA_BodyStuff2()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4046, Grace.__$behaviorFactory17_rfield, null, null, "gmT2L2_PraiseAllyG_GPA_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4049, Grace.__$behaviorFactory17_rfield, null, null, "gmT2L2_PraiseAllyG_GPA_BodyStuff2()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4051, Grace.__$behaviorFactory17_rfield, null, null, "gmT2L2_PraiseAllyT_NGPA_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4055, Grace.__$behaviorFactory17_rfield, null, null, "gmT2L2_PraiseAllyT_NGPA_BodyStuff2()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4057, Grace.__$behaviorFactory17_rfield, null, null, "gmT2L2_PraiseAllyT_TPA_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4061, Grace.__$behaviorFactory17_rfield, null, null, "gmT2L2_PraiseAllyT_TPA_BodyStuff2()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4063, Grace.__$behaviorFactory17_rfield, null, null, "gmT2L2_CriticizeG_NTPA_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4064, Grace.__$behaviorFactory17_rfield, null, null, "gmT2L2_CriticizeG_NTPA_BodyStuff2()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4066, Grace.__$behaviorFactory17_rfield, null, null, "gmT2L2_CriticizeG_GPA_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4067, Grace.__$behaviorFactory17_rfield, null, null, "gmT2L2_CriticizeG_GPA_BodyStuff2()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4069, Grace.__$behaviorFactory18_rfield, null, null, "gmT2L2_CriticizeT_NGPA_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4071, Grace.__$behaviorFactory18_rfield, null, null, "gmT2L2_CriticizeT_NGPA_BodyStuff2()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4073, Grace.__$behaviorFactory18_rfield, null, null, "gmT2L2_CriticizeT_TPA_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4075, Grace.__$behaviorFactory18_rfield, null, null, "gmT2L2_CriticizeT_TPA_BodyStuff2()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4077, Grace.__$behaviorFactory18_rfield, null, null, "gmT2L2_FlirtG_NTPA_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4079, Grace.__$behaviorFactory18_rfield, null, null, "gmT2L2_FlirtG_NTPA_BodyStuff2()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4081, Grace.__$behaviorFactory18_rfield, null, null, "gmT2L2_FlirtG_GPA_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4083, Grace.__$behaviorFactory18_rfield, null, null, "gmT2L2_FlirtG_GPA_BodyStuff2()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4085, Grace.__$behaviorFactory18_rfield, null, null, "gmT2L2_FlirtT_NGPA_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4087, Grace.__$behaviorFactory18_rfield, null, null, "gmT2L2_FlirtT_NGPA_BodyStuff2()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4089, Grace.__$behaviorFactory18_rfield, null, null, "gmT2L2_FlirtT_TPA_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4091, Grace.__$behaviorFactory18_rfield, null, null, "gmT2L2_FlirtT_TPA_BodyStuff2()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4093, Grace.__$behaviorFactory18_rfield, null, null, "gmT2L2_HugComfortG_NTPA_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4095, Grace.__$behaviorFactory18_rfield, null, null, "gmT2L2_HugComfortG_NTPA_BodyStuff2()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4097, Grace.__$behaviorFactory18_rfield, null, null, "gmT2L2_HugComfortG_GPA_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4099, Grace.__$behaviorFactory18_rfield, null, null, "gmT2L2_HugComfortG_GPA_BodyStuff2()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4101, Grace.__$behaviorFactory18_rfield, null, null, "gmT2L2_HugComfortT_NGPA_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4104, Grace.__$behaviorFactory18_rfield, null, null, "gmT2L2_HugComfortT_NGPA_BodyStuff2()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4106, Grace.__$behaviorFactory18_rfield, null, null, "gmT2L2_HugComfortT_TPA_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4109, Grace.__$behaviorFactory18_rfield, null, null, "gmT2L2_HugComfortT_TPA_BodyStuff2()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4111, Grace.__$behaviorFactory18_rfield, null, null, "gmT2L2_Pacify_NGPA_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4112, Grace.__$behaviorFactory18_rfield, null, null, "gmT2L2_Pacify_NTPA_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4115, Grace.__$behaviorFactory18_rfield, null, null, "gmT2L2_IntimateG_NGPA_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4116, Grace.__$behaviorFactory18_rfield, null, null, "gmT2L2_IntimateG_TPA_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4117, Grace.__$behaviorFactory18_rfield, null, null, "gmT2L2_IntimateT_NTPA_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4118, Grace.__$behaviorFactory18_rfield, null, null, "gmT2L2_IntimateT_GPA_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4119, Grace.__$behaviorFactory18_rfield, null, null, "gmT2L2_SupportG_NGPA_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4120, Grace.__$behaviorFactory18_rfield, null, null, "gmT2L2_SupportG_TPA_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4121, Grace.__$behaviorFactory18_rfield, null, null, "gmT2L2_SupportT_NTPA_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4122, Grace.__$behaviorFactory18_rfield, null, null, "gmT2L2_SupportT_GPA_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4123, Grace.__$behaviorFactory18_rfield, Grace.__$precondition4_rfield, null, "gmT2L2_Satl_Marriage_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4127, Grace.__$behaviorFactory18_rfield, Grace.__$precondition4_rfield, null, "gmT2L2_Satl_Marriage_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4128, Grace.__$behaviorFactory18_rfield, null, null, "gmT2L2_Satl_Divorce_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4129, Grace.__$behaviorFactory18_rfield, null, null, "gmT2L2_Satl_Divorce_BodyStuff2()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4131, Grace.__$behaviorFactory18_rfield, null, null, "gmT2L2_Satl_Sex_Garbage_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4133, Grace.__$behaviorFactory18_rfield, null, null, "gmT2L2_Satl_Sex_Garbage_BodyStuff2()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4135, Grace.__$behaviorFactory18_rfield, null, null, "gmT2L2_Satl_Sex_BodyStuff3()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4140, Grace.__$behaviorFactory18_rfield, null, null, "gmT2L2_Satl_Sex_DryCleaning_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4142, Grace.__$behaviorFactory18_rfield, null, null, "gmT2L2_Satl_Sex_DryCleaning_BodyStuff2()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4144, Grace.__$behaviorFactory18_rfield, null, null, "gmT2L2_Satl_Sex_CleaningWoman_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4146, Grace.__$behaviorFactory18_rfield, null, null, "gmT2L2_Satl_Sex_CleaningWoman_BodyStuff2()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4148, Grace.__$behaviorFactory18_rfield, null, null, "gmT2L2_Satl_Infidelity_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4149, Grace.__$behaviorFactory18_rfield, null, null, "gmT2L2_Satl_Infidelity_BodyStuff2()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4150, Grace.__$behaviorFactory18_rfield, null, null, "gmT2L2_Satl_Therapy_BodyStuff_FirstMention()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4152, Grace.__$behaviorFactory18_rfield, null, null, "gmT2L2_Satl_Therapy_BodyStuff_SecondMention()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4154, Grace.__$behaviorFactory18_rfield, null, null, "gmT2L2_Satl_Therapy_BodyStuff2()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4156, Grace.__$behaviorFactory18_rfield, null, null, "gmT2L2_Obj_WeddingPic_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4157, Grace.__$behaviorFactory18_rfield, null, null, "gmT2L2_Obj_WeddingPic_BodyStuff2()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4159, Grace.__$behaviorFactory18_rfield, null, null, "gmT2L2_Obj_FurnishingsApt_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4160, Grace.__$behaviorFactory18_rfield, null, null, "gmT2L2_Obj_FurnishingsApt_BodyStuff2()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4162, Grace.__$behaviorFactory18_rfield, null, null, "gmT2L2_Obj_FurnishingsApt_BodyStuff3()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4163, Grace.__$behaviorFactory18_rfield, null, null, "gmT2L2_Obj_ItalyPic_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4164, Grace.__$behaviorFactory18_rfield, null, null, "gmT2L2_Obj_ItalyPic_BodyStuff2()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4166, Grace.__$behaviorFactory18_rfield, null, null, "gmT2L2_Obj_Trinkets_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4168, Grace.__$behaviorFactory18_rfield, null, null, "gmT2L2_Obj_Trinkets_BodyStuff2()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4170, Grace.__$behaviorFactory18_rfield, null, null, "gmT2L2_Obj_Trinkets_BodyStuff3()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4172, Grace.__$behaviorFactory18_rfield, null, null, "gmT2L2_Obj_WorkTable_GPA_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4173, Grace.__$behaviorFactory18_rfield, null, null, "gmT2L2_Obj_WorkTable_GPA_BodyStuff2()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4175, Grace.__$behaviorFactory18_rfield, null, null, "gmT2L2_Obj_WorkTable_GPA_BodyStuff3()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4177, Grace.__$behaviorFactory18_rfield, null, null, "gmT2L2_Obj_WorkTable_TPA_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4179, Grace.__$behaviorFactory18_rfield, null, null, "gmT2L2_Obj_WorkTable_TPA_BodyStuff2()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4181, Grace.__$behaviorFactory18_rfield, null, null, "gmT2L2_Obj_WorkTable_TPA_BodyStuff3()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4183, Grace.__$behaviorFactory18_rfield, null, null, "gmT2L2_Obj_Painting_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4185, Grace.__$behaviorFactory18_rfield, null, null, "gmT2L2_Obj_Painting_BodyStuff2()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4186, Grace.__$behaviorFactory18_rfield, null, null, "gmT2L2_Obj_Painting_BodyStuff3()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4189, Grace.__$behaviorFactory18_rfield, null, null, "gmT2L2_Obj_BrassBull_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4191, Grace.__$behaviorFactory18_rfield, null, null, "gmT2L2_Obj_BrassBull_BodyStuff2()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4192, Grace.__$behaviorFactory18_rfield, null, null, "gmT2L2_Obj_BarStuff_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4194, Grace.__$behaviorFactory18_rfield, null, null, "gmT2L2_Obj_Eightball_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4196, Grace.__$behaviorFactory18_rfield, null, null, "gmT2L2_Obj_Eightball_BodyStuff2()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4198, Grace.__$behaviorFactory18_rfield, null, null, "gmT2L2_Obj_ViewBalcony_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4199, Grace.__$behaviorFactory18_rfield, null, null, "gmT2L2_Obj_ViewBalcony_BodyStuff2()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4201, Grace.__$behaviorFactory18_rfield, null, null, "gmT2L2_Obj_ViewBalcony_BodyStuff3()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4202, Grace.__$behaviorFactory18_rfield, null, null, "gmT2L2_Explain_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4206, Grace.__$behaviorFactory18_rfield, null, null, "gmT2L3_PraiseG_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4207, Grace.__$behaviorFactory18_rfield, null, null, "gmT2L3_PraiseT_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4211, Grace.__$behaviorFactory18_rfield, null, null, "gmT2L3_CriticizeG_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4215, Grace.__$behaviorFactory18_rfield, null, null, "gmT2L3_CriticizeT_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4216, Grace.__$behaviorFactory18_rfield, null, null, "gmT2L3_FlirtG_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4217, Grace.__$behaviorFactory18_rfield, null, null, "gmT2L3_FlirtT_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4221, Grace.__$behaviorFactory18_rfield, null, null, "gmT2L3_HugComfortG_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4222, Grace.__$behaviorFactory18_rfield, null, null, "gmT2L3_HugComfortT_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4225, Grace.__$behaviorFactory18_rfield, null, null, "gmT2L3_PacifyG_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4228, Grace.__$behaviorFactory18_rfield, null, null, "gmT2L3_PacifyT_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4229, Grace.__$behaviorFactory18_rfield, null, null, "gmT2L3_IntimateG_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4232, Grace.__$behaviorFactory18_rfield, null, null, "gmT2L3_IntimateT_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4233, Grace.__$behaviorFactory18_rfield, null, null, "gmT2L3_SupportG_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4236, Grace.__$behaviorFactory18_rfield, null, null, "gmT2L3_SupportT_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4237, Grace.__$behaviorFactory18_rfield, null, null, "gmT2L3_Satl_Marriage_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4240, Grace.__$behaviorFactory18_rfield, null, null, "gmT2L3_Satl_Divorce_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4241, Grace.__$behaviorFactory18_rfield, null, null, "gmT2L3_Satl_Sex_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4244, Grace.__$behaviorFactory18_rfield, null, null, "gmT2L3_Satl_Infidelity_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4245, Grace.__$behaviorFactory18_rfield, null, null, "gmT2L3_Satl_Therapy_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4248, Grace.__$behaviorFactory18_rfield, null, null, "gmT2L3_Obj_WeddingPic_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4249, Grace.__$behaviorFactory18_rfield, null, null, "gmT2L3_Obj_FurnishingsApt_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4252, Grace.__$behaviorFactory18_rfield, null, null, "gmT2L3_Obj_ItalyPic_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4253, Grace.__$behaviorFactory18_rfield, null, null, "gmT2L3_Obj_Trinkets_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4256, Grace.__$behaviorFactory18_rfield, null, null, "gmT2L3_Obj_WorkTable_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4257, Grace.__$behaviorFactory18_rfield, null, null, "gmT2L3_Obj_Painting_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4260, Grace.__$behaviorFactory18_rfield, null, null, "gmT2L3_Obj_BrassBull_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4261, Grace.__$behaviorFactory18_rfield, null, null, "gmT2L3_Obj_BarStuff_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4264, Grace.__$behaviorFactory18_rfield, null, null, "gmT2L3_Obj_Eightball_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4265, Grace.__$behaviorFactory18_rfield, null, null, "gmT2L3_Obj_ViewBalcony_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4323, Grace.__$behaviorFactory19_rfield, null, null, "gmP1_PostBeat_RepeatGrace_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4325, Grace.__$behaviorFactory19_rfield, null, null, "gmP1_PostBeat_RepeatTrip_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4327, Grace.__$behaviorFactory19_rfield, Grace.__$precondition4_rfield, null, "gmP1_PostBeat_nonAffinity_BodyStuff(int, int, int, int, int, int, int)", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4329, Grace.__$behaviorFactory19_rfield, Grace.__$precondition4_rfield, null, "gmP1_PostBeat_nonAffinity_BodyStuff(int, int, int, int, int, int, int)", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4331, Grace.__$behaviorFactory19_rfield, Grace.__$precondition4_rfield, null, "gmP1_PostBeat_affinity_BodyStuff(int, int, int, int, int, int, int)", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4333, Grace.__$behaviorFactory19_rfield, Grace.__$precondition4_rfield, null, "gmP1_PostBeat_affinity_BodyStuff(int, int, int, int, int, int, int)", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4335, Grace.__$behaviorFactory19_rfield, null, null, "BeatHandlers()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4339, Grace.__$behaviorFactory19_rfield, null, null, "BeatsEndedCleanup()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4340, Grace.__$behaviorFactory19_rfield, null, null, "AddDA(int, int)", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4341, Grace.__$behaviorFactory19_rfield, null, null, "EndExperience_team()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4342, Grace.__$behaviorFactory19_rfield, null, null, "StartOfStoryInit()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4791, Grace.__$behaviorFactory21_rfield, Grace.__$precondition5_rfield, null, "TeleportToKitchen(int)", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4792, Grace.__$behaviorFactory21_rfield, Grace.__$precondition5_rfield, null, "TeleportToKitchen(int)", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4971, Grace.__$behaviorFactory21_rfield, null, null, "Amb_bgMixin_Eightball_R1_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4973, Grace.__$behaviorFactory22_rfield, null, null, "Amb_bgMixin_Eightball_R1_BodyStuff2()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4975, Grace.__$behaviorFactory22_rfield, null, null, "Amb_bgMixin_Eightball_R2GPA_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4977, Grace.__$behaviorFactory22_rfield, null, null, "Amb_bgMixin_Eightball_R2GPA_BodyStuff2()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4981, Grace.__$behaviorFactory22_rfield, null, null, "Amb_bgMixin_Eightball_R2NTPA_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4983, Grace.__$behaviorFactory22_rfield, null, null, "Amb_bgMixin_Eightball_R2NTPA_BodyStuff2()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4987, Grace.__$behaviorFactory22_rfield, null, null, "Amb_bgMixin_Eightball_R3GPA_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4989, Grace.__$behaviorFactory22_rfield, null, null, "Amb_bgMixin_Eightball_R3GPA_BodyStuff2()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4993, Grace.__$behaviorFactory22_rfield, null, null, "Amb_bgMixin_Eightball_R3TPA_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(4995, Grace.__$behaviorFactory22_rfield, null, null, "Amb_bgMixin_Eightball_R3TPA_BodyStuff2()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(5000, Grace.__$behaviorFactory22_rfield, null, null, "Global_bgMixin_LTBFixDrink_GraceDrinkReady_HerOwnChardonnay_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(5001, Grace.__$behaviorFactory22_rfield, null, null, "Global_bgMixin_LTBFixDrink_GraceDrinkReady_HerOwnChardonnay_BodyStuff2()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(5003, Grace.__$behaviorFactory22_rfield, null, null, "Global_bgMixin_LTBFixDrink_GraceDrinkReady_TripAndPlayersFancy_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(5004, Grace.__$behaviorFactory22_rfield, null, null, "Global_bgMixin_LTBFixDrink_GraceDrinkReady_TripAndPlayersFancy_BodyStuff2()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(5006, Grace.__$behaviorFactory22_rfield, null, null, "Global_bgMixin_LTBFixDrink_GraceDrinkReady_MerlotCompromise_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(5007, Grace.__$behaviorFactory22_rfield, null, null, "Global_bgMixin_LTBFixDrink_GraceDrinkReady_MerlotCompromise_BodyStuff2()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(5011, Grace.__$behaviorFactory22_rfield, null, null, "Global_bgMixin_LTBFixDrink_GraceDrinkReady_PlayersNonFancy_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(5012, Grace.__$behaviorFactory22_rfield, null, null, "Global_bgMixin_LTBFixDrink_GraceDrinkReady_PlayersNonFancy_BodyStuff2()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(5016, Grace.__$behaviorFactory22_rfield, null, null, "Global_bgMixin_LTBFixDrink_GraceDrinkReady_HerOwnNonFancy_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(5017, Grace.__$behaviorFactory22_rfield, null, null, "Global_bgMixin_LTBFixDrink_GraceDrinkReady_HerOwnNonFancy_BodyStuff2()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(5021, Grace.__$behaviorFactory22_rfield, null, null, "Global_bgMixin_LTBFixDrink_BreakGlassBehindBar_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(5026, Grace.__$behaviorFactory22_rfield, null, null, "Global_bgMixin_LTBFixDrink_BreakGlassBehindBar_BodyStuff2()", new String[] { "Trip", "Grace" }, (short)0));
}
private static final void registerBehaviors_6(final BehaviorLibrary behaviorLibrary) {
behaviorLibrary.registerBehavior(new __BehaviorDesc(5027, Grace.__$behaviorFactory22_rfield, null, null, "Global_bgMixin_LTBFixDrink_BreakGlassBehindBar_BodyStuff3()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(5031, Grace.__$behaviorFactory22_rfield, null, null, "Global_bgMixin_LTBFixDrink_BreakGlassBehindBar_BodyStuff4()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(5032, Grace.__$behaviorFactory22_rfield, null, null, "Global_bgMixin_LTBFixDrink_RunOutOfGracesDrink_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(5033, Grace.__$behaviorFactory22_rfield, null, null, "Global_bgMixin_LTBFixDrink_RunOutOfGracesDrink_BodyStuff2()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(5036, Grace.__$behaviorFactory22_rfield, null, null, "Global_bgMixin_LTBFixDrink_RunOutOfGracesDrink_BodyStuff3()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(5039, Grace.__$behaviorFactory22_rfield, null, null, "Global_bgMixin_LTBFixDrink_RunOutOfGracesDrink_BodyStuff4()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(5042, Grace.__$behaviorFactory22_rfield, null, null, "Global_bgMixin_LTBFixDrink_RunOutOfGracesDrink_BodyStuff5()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(5045, Grace.__$behaviorFactory22_rfield, null, null, "Global_bgMixin_LTBFixDrink_BlenderOverGrace_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(5051, Grace.__$behaviorFactory22_rfield, null, null, "Global_bgMixin_LTBFixDrink_BlenderOverGrace_BodyStuff2()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(5052, Grace.__$behaviorFactory22_rfield, null, null, "Global_bgMixin_LTBFixDrink_BlenderOverGrace_BodyStuff3()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(5055, Grace.__$behaviorFactory22_rfield, null, null, "Global_bgMixin_LTBFixDrink_OfferDrink_TripAndPlayersFancy_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(5056, Grace.__$behaviorFactory22_rfield, null, null, "Global_bgMixin_LTBFixDrink_OfferDrink_NonFancyWithGrace_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(5057, Grace.__$behaviorFactory22_rfield, null, null, "Global_bgMixin_LTBFixDrink_OfferDrink_NonFancyWithGrace_BodyStuff2()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(5061, Grace.__$behaviorFactory22_rfield, null, null, "Global_bgMixin_LTBFixDrink_OfferDrink_NonFancySolo_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(5063, Grace.__$behaviorFactory22_rfield, null, null, "Global_bgMixin_LTBFixDrink_RetractDrink_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(5064, Grace.__$behaviorFactory22_rfield, null, null, "Amb_bgMixin_MetaCommentary_NtoGPA_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(5066, Grace.__$behaviorFactory22_rfield, null, null, "Amb_bgMixin_MetaCommentary_NtoTPA_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(5068, Grace.__$behaviorFactory22_rfield, null, null, "Amb_bgMixin_MetaCommentary_TPAtoGPA_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
behaviorLibrary.registerBehavior(new __BehaviorDesc(5070, Grace.__$behaviorFactory22_rfield, null, null, "Amb_bgMixin_MetaCommentary_GPAtoTPA_BodyStuff()", new String[] { "Trip", "Grace" }, (short)0));
}
protected void decisionCycleSMCall() {
NativeAnimationInterface.graceDecisionCycleSMCall();
}
private final /* synthetic */ void this() {
this.context_GlobalMixin = "Context_GlobalMixIn";
this.context_DuringMixin = "Context_DuringMixIn";
this.context_DuringMixin_old = "Context_DuringMixIn_old";
this.context_DuringBeatMixin = "Context_DuringBeatMixIn";
this.context_DuringTxnOut = "Context_DuringTxnOut";
this.context_IgnoreAllButRecovery = "Context_IgnoreAllButRecovery";
this.context_IgnoreMost = "Context_IgnoreMost";
this.context_IgnoreThanks = "Context_IgnoreThanks";
this.context_TGreetsP = "Context_TGreetsP";
this.context_TGreetsP_TxnOut = "Context_TGreetsP_TxnOut";
this.context_GGreetsP = "Context_GGreetsP";
this.context_GGreetsPReferTo = "Context_GGreetsPKiss";
this.context_ExplDatAnniv = "Context_ExplDatAnniv";
this.context_AA = "Context_AA";
this.context_AA_postTellMeMore = "Context_AA_postTellMeMore";
this.context_RM_ItalyGuessingGame = "Context_RM_ItalyGuessingGame";
this.context_RM_PlayerNotAtPicture = "Context_RM_PlayerNotAtPicture";
this.context_FAskDrink = "Context_FAskDrink";
this.context_TA = "Context_TA";
this.context_PhoneCall = "Context_PhoneCall";
this.context_TxnT1ToT2 = "Context_TxnT1ToT2";
this.context_OneOnOneAffChr = "Context_OneOnOneAffChr";
this.context_OneOnOneAffChr_xtra = "Context_OneOnOneAffChr_xtra";
this.context_OneOnOneNonAffChr = "Context_OneOnOneNonAffChr";
this.context_NonAffChrGReturns = "Context_NonAffChrGReturns";
this.context_NonAffChrGReturns_xtra = "Context_NonAffChrGReturns_xtra";
this.context_NonAffChrTReturns = "Context_NonAffChrTReturns";
this.context_RomanticProposal = "Context_RomanticProposal";
this.context_BigQuestion = "Context_BigQuestion";
this.context_CrisisP1 = "Context_CrisisP1";
this.context_C2TGGlue = "Context_C2TGGlue";
this.context_TherapyGameP2 = "Context_TherapyGameP2";
this.context_RevBuildupP2 = "Context_RevBuildupP2";
this.context_RevelationsP2 = "Context_RevelationsP2";
this.context_Ending = "Context_Ending";
this.contextPriorityMap_GlobalTrumpsBeat = "ContextPriorityMap_GlobalTrumpsBeat";
this.contextPriorityMap_GlobalTrumpsBeat_obj = "ContextPriorityMap_GlobalTrumpsBeat_obj";
this.contextPriorityMap_GlobalTrumpsBeat_veryHighPri = "ContextPriorityMap_GlobalTrumpsBeat_veryHighPri";
this.sig_bPBehindDoorT1_bgArgueBehindDoor = "bPBehindDoorT1_bgArgueBehindDoor()";
this.sig_bPBehindDoorT1_bgTxnOut = "bPBehindDoorT1_bgTxnOut()";
this.sig_bTGreetsPT1_bgGreetP = "bTGreetsPT1_bgGreetP()";
this.sig_bTGreetsPT1_bgWaitTimeout = "bTGreetsPT1_bgWaitTimeout()";
this.sig_bTGreetsPT1_bgTxnOut_Greet = "bTGreetsPT1_bgTxnOut_Greet()";
this.sig_bTGreetsPT1_bgTxnOut_HowAreYou = "bTGreetsPT1_bgTxnOut_HowAreYou()";
this.sig_bTGreetsPT1_bgTxnOut_IsOkayQuestion = "bTGreetsPT1_bgTxnOut_IsOkayQuestion()";
this.sig_bTGreetsPT1_bgTxnOut_Positive = "bTGreetsPT1_bgTxnOut_Positive()";
this.sig_bTGreetsPT1_bgTxnOut_Praise = "bTGreetsPT1_bgTxnOut_Praise()";
this.sig_bTGreetsPT1_bgTxnOut_Negative = "bTGreetsPT1_bgTxnOut_Negative()";
this.sig_bTGreetsPT1_bgTxnOut_Distraction = "bTGreetsPT1_bgTxnOut_Distraction()";
this.sig_bTGreetsPT1_bgTxnOut_MildConfusion = "bTGreetsPT1_bgTxnOut_MildConfusion()";
this.sig_bTGreetsPT1_bgTxnOut_FlirtFP = "bTGreetsPT1_bgTxnOut_FlirtFP()";
this.sig_bTGreetsPT1_bgTxnOut_FlirtMP = "bTGreetsPT1_bgTxnOut_FlirtMP()";
this.sig_bTGreetsPT1_bgTxnOut_KissFP = "bTGreetsPT1_bgTxnOut_KissFP()";
this.sig_bTGreetsPT1_bgTxnOut_KissMP = "bTGreetsPT1_bgTxnOut_KissMP()";
this.sig_bTGreetsPT1_bgTxnOut_EnterApt = "bTGreetsPT1_bgTxnOut_EnterApt()";
this.sig_bTGreetsPT1_bgTxnOut_Annoying = "bTGreetsPT1_bgTxnOut_Annoying()";
this.sig_bTGreetsPT1_bgTxnOut_Explain = "bTGreetsPT1_bgTxnOut_Explain()";
this.sig_bTGreetsPT1_bgTxnOut_Timeout = "bTGreetsPT1_bgTxnOut_Timeout()";
this.sig_bTGreetsPT1_bgTxnOut_p2_comeIn = "bTGreetsPT1_bgTxnOut_p2_comeIn()";
this.sig_bTGreetsPT1_bgTxnOut_p3_fetchGrace = "bTGreetsPT1_bgTxnOut_p3_fetchGrace()";
this.sig_bTFetchesGT1_bgArgueInKitchen = "bTFetchesGT1_bgArgueInKitchen()";
this.sig_bTFetchesGT1_bgTxnOut = "bTFetchesGT1_bgTxnOut()";
this.sig_bGGreetsPT1_bgGreetP = "bGGreetsPT1_bgGreetP()";
this.sig_bGGreetsPT1_bgWaitTimeout = "bGGreetsPT1_bgWaitTimeout()";
this.sig_bGGreetsPT1_bgTxnOut_Greet = "bGGreetsPT1_bgTxnOut_Greet()";
this.sig_bGGreetsPT1_bgTxnOut_HowAreYou = "bGGreetsPT1_bgTxnOut_HowAreYou()";
this.sig_bGGreetsPT1_bgTxnOut_IsOkayQuestion = "bGGreetsPT1_bgTxnOut_IsOkayQuestion()";
this.sig_bGGreetsPT1_bgTxnOut_Positive = "bGGreetsPT1_bgTxnOut_Positive()";
this.sig_bGGreetsPT1_bgTxnOut_Praise = "bGGreetsPT1_bgTxnOut_Praise()";
this.sig_bGGreetsPT1_bgTxnOut_Negative = "bGGreetsPT1_bgTxnOut_Negative()";
this.sig_bGGreetsPT1_bgTxnOut_Distraction = "bGGreetsPT1_bgTxnOut_Distraction()";
this.sig_bGGreetsPT1_bgTxnOut_MildConfusion = "bGGreetsPT1_bgTxnOut_MildConfusion()";
this.sig_bGGreetsPT1_bgTxnOut_MildConfusionTripComment = "bGGreetsPT1_bgTxnOut_MildConfusionTripComment()";
this.sig_bGGreetsPT1_bgTxnOut_FlirtFP = "bGGreetsPT1_bgTxnOut_FlirtFP()";
this.sig_bGGreetsPT1_bgTxnOut_FlirtMP = "bGGreetsPT1_bgTxnOut_FlirtMP()";
this.sig_bGGreetsPT1_bgTxnOut_KissFP = "bGGreetsPT1_bgTxnOut_KissFP()";
this.sig_bGGreetsPT1_bgTxnOut_KissMP = "bGGreetsPT1_bgTxnOut_KissMP()";
this.sig_bGGreetsPT1_bgTxnOut_KissT_FP = "bGGreetsPT1_bgTxnOut_KissT_FP()";
this.sig_bGGreetsPT1_bgTxnOut_KissT_MP = "bGGreetsPT1_bgTxnOut_KissT_MP()";
this.sig_bGGreetsPT1_bgTxnOut_Annoying = "bGGreetsPT1_bgTxnOut_Annoying()";
this.sig_bGGreetsPT1_bgTxnOut_Inappropriate = "bGGreetsPT1_bgTxnOut_Inappropriate()";
this.sig_bGGreetsPT1_bgTxnOut_Timeout = "bGGreetsPT1_bgTxnOut_Timeout()";
this.sig_bGGreetsPT1_bgTxnOut_p2 = "bGGreetsPT1_bgTxnOut_p2()";
this.sig_bExplDatAnnivT1_bgTxnIn = "bExplDatAnnivT1_bgTxnIn()";
this.sig_bExplDatAnnivT1_bgJustRealized = "bExplDatAnnivT1_bgJustRealized()";
this.sig_bExplDatAnnivT1_bgRememberThat = "bExplDatAnnivT1_bgRememberThat()";
this.sig_bExplDatAnnivT1_bgWaitTimeout = "bExplDatAnnivT1_bgWaitTimeout()";
this.sig_bExplDatAnnivT1_bgTxnOut_MildAgreement = "bExplDatAnnivT1_bgTxnOut_MildAgreement()";
this.sig_bExplDatAnnivT1_bgTxnOut_StrongAgreement = "bExplDatAnnivT1_bgTxnOut_StrongAgreement()";
this.sig_bExplDatAnnivT1_bgTxnOut_MildDisagreement = "bExplDatAnnivT1_bgTxnOut_MildDisagreement()";
this.sig_bExplDatAnnivT1_bgTxnOut_StrongDisagreement = "bExplDatAnnivT1_bgTxnOut_StrongDisagreement()";
this.sig_bExplDatAnnivT1_bgTxnOut_NonAnswer = "bExplDatAnnivT1_bgTxnOut_NonAnswer()";
this.sig_bPhoneCallT1NGPA_bgTxnIn = "bPhoneCallT1NGPA_bgTxnIn()";
this.sig_bPhoneCallT1NGPA_bgBody = "bPhoneCallT1NGPA_bgBody()";
this.sig_bPhoneCallT1NGPA_bgMixin_PlayerPicksUp = "bPhoneCallT1NGPA_bgMixin_PlayerPicksUp()";
this.sig_bPhoneCallT1NGPA_bgMixin_Mild = "bPhoneCallT1NGPA_bgMixin_Mild()";
this.sig_bPhoneCallT1NGPA_bgMixin_PraiseFlirt = "bPhoneCallT1NGPA_bgMixin_PraiseFlirt()";
this.sig_bPhoneCallT1NGPA_bgMixin_Negative = "bPhoneCallT1NGPA_bgMixin_Negative()";
this.sig_bPhoneCallT1NGPA_bgMixin_Repeat = "bPhoneCallT1NGPA_bgMixin_Repeat()";
this.sig_bPhoneCallT1NGPA_bgTxnOut_p1 = "bPhoneCallT1NGPA_bgTxnOut_p1()";
this.sig_bPhoneCallT1NGPA_bgTxnOut_p2 = "bPhoneCallT1NGPA_bgTxnOut_p2()";
this.sig_bPhoneCallT1NTPA_bgTxnIn = "bPhoneCallT1NTPA_bgTxnIn()";
this.sig_bPhoneCallT1NTPA_bgBody = "bPhoneCallT1NTPA_bgBody()";
this.sig_bPhoneCallT1NTPA_bgMixin_PlayerPicksUp = "bPhoneCallT1NTPA_bgMixin_PlayerPicksUp()";
this.sig_bPhoneCallT1NTPA_bgMixin_Mild = "bPhoneCallT1NTPA_bgMixin_Mild()";
this.sig_bPhoneCallT1NTPA_bgMixin_PraiseFlirt = "bPhoneCallT1NTPA_bgMixin_PraiseFlirt()";
this.sig_bPhoneCallT1NTPA_bgMixin_Negative = "bPhoneCallT1NTPA_bgMixin_Negative()";
this.sig_bPhoneCallT1NTPA_bgMixin_Repeat = "bPhoneCallT1NTPA_bgMixin_Repeat()";
this.sig_bPhoneCallT1NTPA_bgTxnOut_p1 = "bPhoneCallT1NTPA_bgTxnOut_p1()";
this.sig_bPhoneCallT1NTPA_bgTxnOut_p2 = "bPhoneCallT1NTPA_bgTxnOut_p2()";
this.sig_bAAt1N_bgTxnIn_NoSubtopic = "bAAt1N_bgTxnIn_NoSubtopic()";
this.sig_bAAt1N_bgTxnIn_GivenSubtopic = "bAAt1N_bgTxnIn_GivenSubtopic()";
this.sig_bAAt1N_bgTxnIn_InTripletAffinitySwitch = "bAAt1N_bgTxnIn_InTripletAffinitySwitch()";
this.sig_bAAt1N_bgAddressSubtopic = "bAAt1N_bgAddressSubtopic()";
this.sig_bAAt1N_bgAddressSubtopic_part2 = "bAAt1N_bgAddressSubtopic_part2()";
this.sig_bAAt1N_bgWaitTimeout = "bAAt1N_bgWaitTimeout()";
this.sig_bAAt1N_bgTxnOut_NoAffinityChange = "bAAt1N_bgTxnOut_NoAffinityChange()";
this.sig_bAAt1N_bgTxnOut_LeanToGPA = "bAAt1N_bgTxnOut_LeanToGPA()";
this.sig_bAAt1N_bgTxnOut_LeanToTPA = "bAAt1N_bgTxnOut_LeanToTPA()";
this.sig_bAAt1N_bgMixin_TellMeMore = "bAAt1N_bgMixin_TellMeMore(boolean)";
this.sig_bAAt1N_bgMixin_SetSubtopicDuringTxnIn = "bAAt1N_bgMixin_SetSubtopicDuringTxnIn()";
this.sig_bAAt1N_bgMixin_GetWantedCriticism = "bAAt1N_bgMixin_GetWantedCriticism(boolean)";
this.sig_bAAt1N_bgMixin_GetUnwantedPraise = "bAAt1N_bgMixin_GetUnwantedPraise(boolean)";
this.sig_bAAt1N_bgMixin_LookAndIgnore = "bAAt1N_bgMixin_LookAndIgnore()";
this.sig_bAAt1GPA_bgTxnIn_NoSubtopic = "bAAt1GPA_bgTxnIn_NoSubtopic()";
this.sig_bAAt1GPA_bgTxnIn_GivenSubtopic = "bAAt1GPA_bgTxnIn_GivenSubtopic()";
this.sig_bAAt1GPA_bgTxnIn_InTripletAffinitySwitch = "bAAt1GPA_bgTxnIn_InTripletAffinitySwitch()";
this.sig_bAAt1GPA_bgAddressSubtopic = "bAAt1GPA_bgAddressSubtopic()";
this.sig_bAAt1GPA_bgAddressSubtopic_part2 = "bAAt1GPA_bgAddressSubtopic_part2()";
this.sig_bAAt1GPA_bgWaitTimeout = "bAAt1GPA_bgWaitTimeout()";
this.sig_bAAt1GPA_bgTxnOut_NoAffinityChange = "bAAt1GPA_bgTxnOut_NoAffinityChange()";
this.sig_bAAt1GPA_bgTxnOut_LeanToGPA = "bAAt1GPA_bgTxnOut_LeanToGPA()";
this.sig_bAAt1GPA_bgTxnOut_LeanToTPA = "bAAt1GPA_bgTxnOut_LeanToTPA()";
this.sig_bAAt1GPA_bgMixin_TellMeMore = "bAAt1GPA_bgMixin_TellMeMore(boolean)";
this.sig_bAAt1GPA_bgMixin_SetSubtopicDuringTxnIn = "bAAt1GPA_bgMixin_SetSubtopicDuringTxnIn()";
this.sig_bAAt1GPA_bgMixin_GetWantedCriticism = "bAAt1GPA_bgMixin_GetWantedCriticism(boolean)";
this.sig_bAAt1GPA_bgMixin_GetUnwantedPraise = "bAAt1GPA_bgMixin_GetUnwantedPraise(boolean)";
this.sig_bAAt1GPA_bgMixin_LookAndIgnore = "bAAt1GPA_bgMixin_LookAndIgnore()";
this.sig_bAAt1TPA_bgTxnIn_NoSubtopic = "bAAt1TPA_bgTxnIn_NoSubtopic()";
this.sig_bAAt1TPA_bgTxnIn_GivenSubtopic = "bAAt1TPA_bgTxnIn_GivenSubtopic()";
this.sig_bAAt1TPA_bgTxnIn_InTripletAffinitySwitch = "bAAt1TPA_bgTxnIn_InTripletAffinitySwitch()";
this.sig_bAAt1TPA_bgAddressSubtopic = "bAAt1TPA_bgAddressSubtopic()";
this.sig_bAAt1TPA_bgAddressSubtopic_part2 = "bAAt1TPA_bgAddressSubtopic_part2()";
this.sig_bAAt1TPA_bgWaitTimeout = "bAAt1TPA_bgWaitTimeout()";
this.sig_bAAt1TPA_bgTxnOut_NoAffinityChange = "bAAt1TPA_bgTxnOut_NoAffinityChange()";
this.sig_bAAt1TPA_bgTxnOut_LeanToGPA = "bAAt1TPA_bgTxnOut_LeanToGPA()";
this.sig_bAAt1TPA_bgTxnOut_LeanToTPA = "bAAt1TPA_bgTxnOut_LeanToTPA()";
this.sig_bAAt1TPA_bgMixin_TellMeMore = "bAAt1TPA_bgMixin_TellMeMore(boolean)";
this.sig_bAAt1TPA_bgMixin_SetSubtopicDuringTxnIn = "bAAt1TPA_bgMixin_SetSubtopicDuringTxnIn()";
this.sig_bAAt1TPA_bgMixin_GetWantedCriticism = "bAAt1TPA_bgMixin_GetWantedCriticism(boolean)";
this.sig_bAAt1TPA_bgMixin_GetUnwantedPraise = "bAAt1TPA_bgMixin_GetUnwantedPraise(boolean)";
this.sig_bAAt1TPA_bgMixin_LookAndIgnore = "bAAt1TPA_bgMixin_LookAndIgnore()";
this.sig_bRMt1N_bgTxnIn_Default = "bRMt1N_bgTxnIn_Default()";
this.sig_bRMt1N_bgTxnIn_ReferTo = "bRMt1N_bgTxnIn_ReferTo()";
this.sig_bRMt1N_bgLurePlayer = "bRMt1N_bgLurePlayer()";
this.sig_bRMt1N_bgLurePlayer2 = "bRMt1N_bgLurePlayer2()";
this.sig_bRMt1N_bgLurePlayer3 = "bRMt1N_bgLurePlayer3()";
this.sig_bRMt1N_bgStartGuessingGame_pre = "bRMt1N_bgStartGuessingGame_pre()";
this.sig_bRMt1N_bgStartGuessingGame = "bRMt1N_bgStartGuessingGame()";
this.sig_bRMt1N_bgMixin_MoreThanAWord = "bRMt1N_bgMixin_MoreThanAWord()";
this.sig_bRMt1N_bgMixin_WrongSingleWord = "bRMt1N_bgMixin_WrongSingleWord()";
this.sig_bRMt1N_bgMixin_FirstGuessTimeout = "bRMt1N_bgMixin_FirstGuessTimeout()";
this.sig_bRMt1N_bgMixin_TellMeMore = "bRMt1N_bgMixin_TellMeMore()";
this.sig_bRMt1N_bgMixin_LookAndIgnore = "bRMt1N_bgMixin_LookAndIgnore()";
this.sig_bRMt1N_bgWaitTimeout = "bRMt1N_bgWaitTimeout()";
this.sig_bRMt1N_bgTxnOut_WrongAnswer = "bRMt1N_bgTxnOut_WrongAnswer()";
this.sig_bRMt1N_bgTxnOut_WrongAnswer_p2 = "bRMt1N_bgTxnOut_WrongAnswer_p2()";
this.sig_bRMt1N_bgTxnOut_LeanToTPA_RightAnswer = "bRMt1N_bgTxnOut_LeanToTPA_RightAnswer()";
this.sig_bRMt1N_bgTxnOut_LeanToTPA_RightAnswer_p2 = "bRMt1N_bgTxnOut_LeanToTPA_RightAnswer_p2()";
this.sig_bRMt1N_bgTxnOut_PlayerNotAtPicture = "bRMt1N_bgTxnOut_PlayerNotAtPicture()";
this.sig_bRMt1N_bgTxnOut_PlayerNotAtPicture_p2 = "bRMt1N_bgTxnOut_PlayerNotAtPicture_p2()";
this.sig_bRMt1N_bgTxnOut_PlayerNotAtPicture_p3 = "bRMt1N_bgTxnOut_PlayerNotAtPicture_p3()";
this.sig_bRMt1GPA_bgTxnIn_Default = "bRMt1GPA_bgTxnIn_Default()";
this.sig_bRMt1GPA_bgTxnIn_ReferTo = "bRMt1GPA_bgTxnIn_ReferTo()";
this.sig_bRMt1GPA_bgLurePlayer = "bRMt1GPA_bgLurePlayer()";
this.sig_bRMt1GPA_bgLurePlayer2 = "bRMt1GPA_bgLurePlayer2()";
this.sig_bRMt1GPA_bgLurePlayer3 = "bRMt1GPA_bgLurePlayer3()";
this.sig_bRMt1GPA_bgStartGuessingGame_pre = "bRMt1GPA_bgStartGuessingGame_pre()";
this.sig_bRMt1GPA_bgStartGuessingGame = "bRMt1GPA_bgStartGuessingGame()";
this.sig_bRMt1GPA_bgMixin_MoreThanAWord = "bRMt1GPA_bgMixin_MoreThanAWord()";
this.sig_bRMt1GPA_bgMixin_WrongSingleWord = "bRMt1GPA_bgMixin_WrongSingleWord()";
this.sig_bRMt1GPA_bgMixin_FirstGuessTimeout = "bRMt1GPA_bgMixin_FirstGuessTimeout()";
this.sig_bRMt1GPA_bgMixin_TellMeMore = "bRMt1GPA_bgMixin_TellMeMore()";
this.sig_bRMt1GPA_bgMixin_LookAndIgnore = "bRMt1GPA_bgMixin_LookAndIgnore()";
this.sig_bRMt1GPA_bgWaitTimeout = "bRMt1GPA_bgWaitTimeout()";
this.sig_bRMt1GPA_bgTxnOut_WrongAnswer = "bRMt1GPA_bgTxnOut_WrongAnswer()";
this.sig_bRMt1GPA_bgTxnOut_WrongAnswer_p2 = "bRMt1GPA_bgTxnOut_WrongAnswer_p2()";
this.sig_bRMt1GPA_bgTxnOut_LeanToTPA_RightAnswer = "bRMt1GPA_bgTxnOut_LeanToTPA_RightAnswer()";
this.sig_bRMt1GPA_bgTxnOut_LeanToTPA_RightAnswer_p2 = "bRMt1GPA_bgTxnOut_LeanToTPA_RightAnswer_p2()";
this.sig_bRMt1GPA_bgTxnOut_PlayerNotAtPicture = "bRMt1GPA_bgTxnOut_PlayerNotAtPicture()";
this.sig_bRMt1GPA_bgTxnOut_PlayerNotAtPicture_p2 = "bRMt1GPA_bgTxnOut_PlayerNotAtPicture_p2()";
this.sig_bRMt1GPA_bgTxnOut_PlayerNotAtPicture_p3 = "bRMt1GPA_bgTxnOut_PlayerNotAtPicture_p3()";
this.sig_bRMt1TPA_bgTxnIn_Default = "bRMt1TPA_bgTxnIn_Default()";
this.sig_bRMt1TPA_bgTxnIn_ReferTo = "bRMt1TPA_bgTxnIn_ReferTo()";
this.sig_bRMt1TPA_bgLurePlayer = "bRMt1TPA_bgLurePlayer()";
this.sig_bRMt1TPA_bgLurePlayer2 = "bRMt1TPA_bgLurePlayer2()";
this.sig_bRMt1TPA_bgLurePlayer3 = "bRMt1TPA_bgLurePlayer3()";
this.sig_bRMt1TPA_bgStartGuessingGame_pre = "bRMt1TPA_bgStartGuessingGame_pre()";
this.sig_bRMt1TPA_bgStartGuessingGame = "bRMt1TPA_bgStartGuessingGame()";
this.sig_bRMt1TPA_bgMixin_MoreThanAWord = "bRMt1TPA_bgMixin_MoreThanAWord()";
this.sig_bRMt1TPA_bgMixin_WrongSingleWord = "bRMt1TPA_bgMixin_WrongSingleWord()";
this.sig_bRMt1TPA_bgMixin_FirstGuessTimeout = "bRMt1TPA_bgMixin_FirstGuessTimeout()";
this.sig_bRMt1TPA_bgMixin_TellMeMore = "bRMt1TPA_bgMixin_TellMeMore()";
this.sig_bRMt1TPA_bgMixin_LookAndIgnore = "bRMt1TPA_bgMixin_LookAndIgnore()";
this.sig_bRMt1TPA_bgWaitTimeout = "bRMt1TPA_bgWaitTimeout()";
this.sig_bRMt1TPA_bgTxnOut_WrongAnswer = "bRMt1TPA_bgTxnOut_WrongAnswer()";
this.sig_bRMt1TPA_bgTxnOut_WrongAnswer_p2 = "bRMt1TPA_bgTxnOut_WrongAnswer_p2()";
this.sig_bRMt1TPA_bgTxnOut_LeanToTPA_RightAnswer = "bRMt1TPA_bgTxnOut_LeanToTPA_RightAnswer()";
this.sig_bRMt1TPA_bgTxnOut_LeanToTPA_RightAnswer_p2 = "bRMt1TPA_bgTxnOut_LeanToTPA_RightAnswer_p2()";
this.sig_bRMt1TPA_bgTxnOut_PlayerNotAtPicture = "bRMt1TPA_bgTxnOut_PlayerNotAtPicture()";
this.sig_bRMt1TPA_bgTxnOut_PlayerNotAtPicture_p2 = "bRMt1TPA_bgTxnOut_PlayerNotAtPicture_p2()";
this.sig_bRMt1TPA_bgTxnOut_PlayerNotAtPicture_p3 = "bRMt1TPA_bgTxnOut_PlayerNotAtPicture_p3()";
this.sig_bFAskDrinkT1NTPA_bgTxnIn = "bFAskDrinkT1NTPA_bgTxnIn()";
this.sig_bFAskDrinkT1NTPA_bgTSuggest = "bFAskDrinkT1NTPA_bgTSuggest()";
this.sig_bFAskDrinkT1NTPA_bgInitialWait = "bFAskDrinkT1NTPA_bgInitialWait()";
this.sig_bFAskDrinkT1NTPA_bgMixin_GSuggest_AgreeT = "bFAskDrinkT1NTPA_bgMixin_GSuggest_AgreeT()";
this.sig_bFAskDrinkT1NTPA_bgMixin_GSuggest_DisagreeT = "bFAskDrinkT1NTPA_bgMixin_GSuggest_DisagreeT()";
this.sig_bFAskDrinkT1NTPA_bgMixin_GSuggest_SpecificRequest = "bFAskDrinkT1NTPA_bgMixin_GSuggest_SpecificRequest()";
this.sig_bFAskDrinkT1NTPA_bgMixin_GSuggest_NonAnswer = "bFAskDrinkT1NTPA_bgMixin_GSuggest_NonAnswer()";
this.sig_bFAskDrinkT1NTPA_bgWaitTimeout = "bFAskDrinkT1NTPA_bgWaitTimeout()";
this.sig_bFAskDrinkT1NTPA_bgTxnOut_AgreeG = "bFAskDrinkT1NTPA_bgTxnOut_AgreeG()";
this.sig_bFAskDrinkT1NTPA_bgTxnOut_AgreeG_p2 = "bFAskDrinkT1NTPA_bgTxnOut_AgreeG_p2()";
this.sig_bFAskDrinkT1NTPA_bgTxnOut_DisagreeG = "bFAskDrinkT1NTPA_bgTxnOut_DisagreeG()";
this.sig_bFAskDrinkT1NTPA_bgTxnOut_DisagreeG_p2 = "bFAskDrinkT1NTPA_bgTxnOut_DisagreeG_p2()";
this.sig_bFAskDrinkT1NTPA_bgTxnOut_SpecificRequestFancy = "bFAskDrinkT1NTPA_bgTxnOut_SpecificRequestFancy()";
this.sig_bFAskDrinkT1NTPA_bgTxnOut_SpecificRequestFancy_p2 = "bFAskDrinkT1NTPA_bgTxnOut_SpecificRequestFancy_p2()";
this.sig_bFAskDrinkT1NTPA_bgTxnOut_NonAnswer = "bFAskDrinkT1NTPA_bgTxnOut_NonAnswer()";
this.sig_bFAskDrinkT1NTPA_bgTxnOut_NonAnswer_p2 = "bFAskDrinkT1NTPA_bgTxnOut_NonAnswer_p2()";
this.sig_bFAskDrinkT1_bgTxnOut2_TripAsksGrace = "bFAskDrinkT1_bgTxnOut2_TripAsksGrace(int)";
this.sig_bFAskDrinkT1_bgTxnOut3_GraceResponds = "bFAskDrinkT1_bgTxnOut3_GraceResponds(int)";
this.sig_bFAskDrinkT1GPA_bgTxnIn = "bFAskDrinkT1GPA_bgTxnIn()";
this.sig_bFAskDrinkT1GPA_bgTSuggest = "bFAskDrinkT1GPA_bgTSuggest()";
this.sig_bFAskDrinkT1GPA_bgInitialWait = "bFAskDrinkT1GPA_bgInitialWait()";
this.sig_bFAskDrinkT1GPA_bgMixin_GSuggest_AgreeT = "bFAskDrinkT1GPA_bgMixin_GSuggest_AgreeT()";
this.sig_bFAskDrinkT1GPA_bgMixin_GSuggest_DisagreeT = "bFAskDrinkT1GPA_bgMixin_GSuggest_DisagreeT()";
this.sig_bFAskDrinkT1GPA_bgMixin_GSuggest_SpecificRequest = "bFAskDrinkT1GPA_bgMixin_GSuggest_SpecificRequest()";
this.sig_bFAskDrinkT1GPA_bgMixin_GSuggest_NonAnswer = "bFAskDrinkT1GPA_bgMixin_GSuggest_NonAnswer()";
this.sig_bFAskDrinkT1GPA_bgWaitTimeout = "bFAskDrinkT1GPA_bgWaitTimeout()";
this.sig_bFAskDrinkT1GPA_bgTxnOut_AgreeG = "bFAskDrinkT1GPA_bgTxnOut_AgreeG()";
this.sig_bFAskDrinkT1GPA_bgTxnOut_AgreeG_p2 = "bFAskDrinkT1GPA_bgTxnOut_AgreeG_p2()";
this.sig_bFAskDrinkT1GPA_bgTxnOut_DisagreeG = "bFAskDrinkT1GPA_bgTxnOut_DisagreeG()";
this.sig_bFAskDrinkT1GPA_bgTxnOut_DisagreeG_p2 = "bFAskDrinkT1GPA_bgTxnOut_DisagreeG_p2()";
this.sig_bFAskDrinkT1GPA_bgTxnOut_SpecificRequestFancy = "bFAskDrinkT1GPA_bgTxnOut_SpecificRequestFancy()";
this.sig_bFAskDrinkT1GPA_bgTxnOut_SpecificRequestFancy_p2 = "bFAskDrinkT1GPA_bgTxnOut_SpecificRequestFancy_p2()";
this.sig_bFAskDrinkT1GPA_bgTxnOut_NonAnswer = "bFAskDrinkT1GPA_bgTxnOut_NonAnswer()";
this.sig_bFAskDrinkT1GPA_bgTxnOut_NonAnswer_p2 = "bFAskDrinkT1GPA_bgTxnOut_NonAnswer_p2()";
this.sig_bTAt1N_bgTxnIn_Default = "bTAt1N_bgTxnIn_Default()";
this.sig_bTAt1N_bgTxnIn_ReferTo = "bTAt1N_bgTxnIn_ReferTo()";
this.sig_bTAt1N_bgRevealSecret = "bTAt1N_bgRevealSecret()";
this.sig_bTAt1N_bgLurePlayer = "bTAt1N_bgLurePlayer()";
this.sig_bTAt1N_bgPoseQuestion = "bTAt1N_bgPoseQuestion()";
this.sig_bTAt1N_bgWaitTimeout = "bTAt1N_bgWaitTimeout()";
this.sig_bTAt1N_bgTxnOut_NoAffinityChange = "bTAt1N_bgTxnOut_NoAffinityChange()";
this.sig_bTAt1N_bgTxnOut_NoAffinityChange_part2 = "bTAt1N_bgTxnOut_NoAffinityChange_part2()";
this.sig_bTAt1N_bgTxnOut_LeanToGPA = "bTAt1N_bgTxnOut_LeanToGPA()";
this.sig_bTAt1N_bgTxnOut_LeanToGPA_part2 = "bTAt1N_bgTxnOut_LeanToGPA_part2()";
this.sig_bTAt1N_bgTxnOut_LeanToTPA = "bTAt1N_bgTxnOut_LeanToTPA()";
this.sig_bTAt1N_bgTxnOut_LeanToTPA_part2 = "bTAt1N_bgTxnOut_LeanToTPA_part2()";
this.sig_bTAt1N_bgTxnOut_LeanToTPA_PlayerNotAtTable = "bTAt1N_bgTxnOut_LeanToTPA_PlayerNotAtTable()";
this.sig_bTAt1N_bgTxnOut_LeanToTPA_PlayerNotAtTable_part2 = "bTAt1N_bgTxnOut_LeanToTPA_PlayerNotAtTable_part2()";
this.sig_bTAt1GPA_bgTxnIn_Default = "bTAt1GPA_bgTxnIn_Default()";
this.sig_bTAt1GPA_bgTxnIn_ReferTo = "bTAt1GPA_bgTxnIn_ReferTo()";
this.sig_bTAt1GPA_bgRevealSecret = "bTAt1GPA_bgRevealSecret()";
this.sig_bTAt1GPA_bgRevealSecret_part2 = "bTAt1GPA_bgRevealSecret_part2()";
this.sig_bTAt1GPA_bgLurePlayer = "bTAt1GPA_bgLurePlayer()";
this.sig_bTAt1GPA_bgPoseQuestion = "bTAt1GPA_bgPoseQuestion()";
this.sig_bTAt1GPA_bgWaitTimeout = "bTAt1GPA_bgWaitTimeout()";
this.sig_bTAt1GPA_bgTxnOut_NoAffinityChange = "bTAt1GPA_bgTxnOut_NoAffinityChange()";
this.sig_bTAt1GPA_bgTxnOut_NoAffinityChange_part2 = "bTAt1GPA_bgTxnOut_NoAffinityChange_part2()";
this.sig_bTAt1GPA_bgTxnOut_LeanToGPA = "bTAt1GPA_bgTxnOut_LeanToGPA()";
this.sig_bTAt1GPA_bgTxnOut_LeanToGPA_part2 = "bTAt1GPA_bgTxnOut_LeanToGPA_part2()";
this.sig_bTAt1GPA_bgTxnOut_LeanToTPA = "bTAt1GPA_bgTxnOut_LeanToTPA()";
this.sig_bTAt1GPA_bgTxnOut_LeanToTPA_part2 = "bTAt1GPA_bgTxnOut_LeanToTPA_part2()";
this.sig_bTAt1GPA_bgTxnOut_LeanToTPA_PlayerNotAtTable = "bTAt1GPA_bgTxnOut_LeanToTPA_PlayerNotAtTable()";
this.sig_bTAt1GPA_bgTxnOut_LeanToTPA_PlayerNotAtTable_part2 = "bTAt1GPA_bgTxnOut_LeanToTPA_PlayerNotAtTable_part2()";
this.sig_bTxnT1toT2NGPA_bgTxnIn = "bTxnT1toT2NGPA_bgTxnIn()";
this.sig_bTxnT1toT2NGPA_bgTxnIn_p2 = "bTxnT1toT2NGPA_bgTxnIn_p2()";
this.sig_bTxnT1toT2NGPA_bgMixin_Agree = "bTxnT1toT2NGPA_bgMixin_Agree()";
this.sig_bTxnT1toT2NGPA_bgMixin_Disagree = "bTxnT1toT2NGPA_bgMixin_Disagree()";
this.sig_bTxnT1toT2NGPA_bgTxnOut = "bTxnT1toT2NGPA_bgTxnOut()";
this.sig_bTxnT1toT2TPA_bgTxnIn = "bTxnT1toT2TPA_bgTxnIn()";
this.sig_bTxnT1toT2TPA_bgTxnIn_p2 = "bTxnT1toT2TPA_bgTxnIn_p2()";
this.sig_bTxnT1toT2TPA_bgMixin_Agree = "bTxnT1toT2TPA_bgMixin_Agree()";
this.sig_bTxnT1toT2TPA_bgMixin_Disagree = "bTxnT1toT2TPA_bgMixin_Disagree()";
this.sig_bTxnT1toT2TPA_bgTxnOut = "bTxnT1toT2TPA_bgTxnOut()";
this.sig_bAAt2GPA_bgTxnIn = "bAAt2GPA_bgTxnIn()";
this.sig_bAAt2GPA_bgTxnIn_p2 = "bAAt2GPA_bgTxnIn_p2()";
this.sig_bAAt2GPA_bgTxnIn_InTripletAffinitySwitch = "bAAt2GPA_bgTxnIn_InTripletAffinitySwitch()";
this.sig_bAAt2GPA_bgAddressSubtopic = "bAAt2GPA_bgAddressSubtopic()";
this.sig_bAAt2GPA_bgAddressSubtopic_part2 = "bAAt2GPA_bgAddressSubtopic_part2()";
this.sig_bAAt2GPA_bgWaitTimeout = "bAAt2GPA_bgWaitTimeout()";
this.sig_bAAt2GPA_bgTxnOut_NoAffinityChange = "bAAt2GPA_bgTxnOut_NoAffinityChange()";
this.sig_bAAt2GPA_bgTxnOut_NoAffinityChange_p2 = "bAAt2GPA_bgTxnOut_NoAffinityChange_p2()";
this.sig_bAAt2GPA_bgTxnOut_LeanToGPA = "bAAt2GPA_bgTxnOut_LeanToGPA()";
this.sig_bAAt2GPA_bgTxnOut_LeanToGPA_p2 = "bAAt2GPA_bgTxnOut_LeanToGPA_p2()";
this.sig_bAAt2GPA_bgTxnOut_LeanToTPA = "bAAt2GPA_bgTxnOut_LeanToTPA()";
this.sig_bAAt2GPA_bgTxnOut_LeanToTPA_p2 = "bAAt2GPA_bgTxnOut_LeanToTPA_p2()";
this.sig_bAAt2GPA_bgMixin_TellMeMore = "bAAt2GPA_bgMixin_TellMeMore(boolean)";
this.sig_bAAt2GPA_bgMixin_SetSubtopicDuringTxnIn = "bAAt2GPA_bgMixin_SetSubtopicDuringTxnIn()";
this.sig_bAAt2GPA_bgMixin_GetWantedCriticism = "bAAt2GPA_bgMixin_GetWantedCriticism(boolean)";
this.sig_bAAt2GPA_bgMixin_GetUnwantedPraise = "bAAt2GPA_bgMixin_GetUnwantedPraise(boolean)";
this.sig_bAAt2GPA_bgMixin_LookAndIgnore = "bAAt2GPA_bgMixin_LookAndIgnore()";
this.sig_bAAt2TPA_bgTxnIn = "bAAt2TPA_bgTxnIn()";
this.sig_bAAt2TPA_bgTxnIn_p2 = "bAAt2TPA_bgTxnIn_p2()";
this.sig_bAAt2TPA_bgTxnIn_InTripletAffinitySwitch = "bAAt2TPA_bgTxnIn_InTripletAffinitySwitch()";
this.sig_bAAt2TPA_bgAddressSubtopic = "bAAt2TPA_bgAddressSubtopic()";
this.sig_bAAt2TPA_bgAddressSubtopic_part2 = "bAAt2TPA_bgAddressSubtopic_part2()";
this.sig_bAAt2TPA_bgWaitTimeout = "bAAt2TPA_bgWaitTimeout()";
this.sig_bAAt2TPA_bgTxnOut_NoAffinityChange = "bAAt2TPA_bgTxnOut_NoAffinityChange()";
this.sig_bAAt2TPA_bgTxnOut_NoAffinityChange_p2 = "bAAt2TPA_bgTxnOut_NoAffinityChange_p2()";
this.sig_bAAt2TPA_bgTxnOut_LeanToGPA = "bAAt2TPA_bgTxnOut_LeanToGPA()";
this.sig_bAAt2TPA_bgTxnOut_LeanToGPA_p2 = "bAAt2TPA_bgTxnOut_LeanToGPA_p2()";
this.sig_bAAt2TPA_bgTxnOut_LeanToTPA = "bAAt2TPA_bgTxnOut_LeanToTPA()";
this.sig_bAAt2TPA_bgTxnOut_LeanToTPA_p2 = "bAAt2TPA_bgTxnOut_LeanToTPA_p2()";
this.sig_bAAt2TPA_bgMixin_TellMeMore = "bAAt2TPA_bgMixin_TellMeMore(boolean)";
this.sig_bAAt2TPA_bgMixin_SetSubtopicDuringTxnIn = "bAAt2TPA_bgMixin_SetSubtopicDuringTxnIn()";
this.sig_bAAt2TPA_bgMixin_GetWantedCriticism = "bAAt2TPA_bgMixin_GetWantedCriticism(boolean)";
this.sig_bAAt2TPA_bgMixin_GetUnwantedPraise = "bAAt2TPA_bgMixin_GetUnwantedPraise(boolean)";
this.sig_bAAt2TPA_bgMixin_LookAndIgnore = "bAAt2TPA_bgMixin_LookAndIgnore()";
this.sig_bRMt2GPA_bgTxnIn_Default = "bRMt2GPA_bgTxnIn_Default()";
this.sig_bRMt2GPA_bgTxnIn_ReferTo = "bRMt2GPA_bgTxnIn_ReferTo()";
this.sig_bRMt2GPA_bgLurePlayer = "bRMt2GPA_bgLurePlayer()";
this.sig_bRMt2GPA_bgLurePlayer2 = "bRMt2GPA_bgLurePlayer2()";
this.sig_bRMt2GPA_bgLurePlayer3 = "bRMt2GPA_bgLurePlayer3()";
this.sig_bRMt2GPA_bgStartGuessingGame_pre = "bRMt2GPA_bgStartGuessingGame_pre()";
this.sig_bRMt2GPA_bgStartGuessingGame = "bRMt2GPA_bgStartGuessingGame()";
this.sig_bRMt2GPA_bgStartGuessingGame_p2 = "bRMt2GPA_bgStartGuessingGame_p2()";
this.sig_bRMt2GPA_bgMixin_MoreThanAWord = "bRMt2GPA_bgMixin_MoreThanAWord()";
this.sig_bRMt2GPA_bgMixin_WrongSingleWord = "bRMt2GPA_bgMixin_WrongSingleWord()";
this.sig_bRMt2GPA_bgMixin_FirstGuessTimeout = "bRMt2GPA_bgMixin_FirstGuessTimeout()";
this.sig_bRMt2GPA_bgMixin_TellMeMore = "bRMt2GPA_bgMixin_TellMeMore()";
this.sig_bRMt2GPA_bgMixin_LookAndIgnore = "bRMt2GPA_bgMixin_LookAndIgnore()";
this.sig_bRMt2GPA_bgWaitTimeout = "bRMt2GPA_bgWaitTimeout()";
this.sig_bRMt2GPA_bgTxnOut_WrongAnswer = "bRMt2GPA_bgTxnOut_WrongAnswer()";
this.sig_bRMt2GPA_bgTxnOut_LeanToTPA_p2 = "bRMt2GPA_bgTxnOut_LeanToTPA_p2()";
this.sig_bRMt2GPA_bgTxnOut_LeanToTPA_RightAnswer = "bRMt2GPA_bgTxnOut_LeanToTPA_RightAnswer()";
this.sig_bRMt2GPA_bgTxnOut_PlayerNotAtPicture = "bRMt2GPA_bgTxnOut_PlayerNotAtPicture()";
this.sig_bRMt2GPA_bgTxnOut_PlayerNotAtPicture_p2 = "bRMt2GPA_bgTxnOut_PlayerNotAtPicture_p2()";
this.sig_bRMt2TPA_bgTxnIn_Default = "bRMt2TPA_bgTxnIn_Default()";
this.sig_bRMt2TPA_bgTxnIn_ReferTo = "bRMt2TPA_bgTxnIn_ReferTo()";
this.sig_bRMt2TPA_bgLurePlayer = "bRMt2TPA_bgLurePlayer()";
this.sig_bRMt2TPA_bgLurePlayer2 = "bRMt2TPA_bgLurePlayer2()";
this.sig_bRMt2TPA_bgLurePlayer3 = "bRMt2TPA_bgLurePlayer3()";
this.sig_bRMt2TPA_bgStartGuessingGame_pre = "bRMt2TPA_bgStartGuessingGame_pre()";
this.sig_bRMt2TPA_bgStartGuessingGame = "bRMt2TPA_bgStartGuessingGame()";
this.sig_bRMt2TPA_bgStartGuessingGame_p2 = "bRMt2TPA_bgStartGuessingGame_p2()";
this.sig_bRMt2TPA_bgMixin_MoreThanAWord = "bRMt2TPA_bgMixin_MoreThanAWord()";
this.sig_bRMt2TPA_bgMixin_WrongSingleWord = "bRMt2TPA_bgMixin_WrongSingleWord()";
this.sig_bRMt2TPA_bgMixin_FirstGuessTimeout = "bRMt2TPA_bgMixin_FirstGuessTimeout()";
this.sig_bRMt2TPA_bgMixin_TellMeMore = "bRMt2TPA_bgMixin_TellMeMore()";
this.sig_bRMt2TPA_bgMixin_LookAndIgnore = "bRMt2TPA_bgMixin_LookAndIgnore()";
this.sig_bRMt2TPA_bgWaitTimeout = "bRMt2TPA_bgWaitTimeout()";
this.sig_bRMt2TPA_bgTxnOut_WrongAnswer = "bRMt2TPA_bgTxnOut_WrongAnswer()";
this.sig_bRMt2TPA_bgTxnOut_LeanToTPA_p2 = "bRMt2TPA_bgTxnOut_LeanToTPA_p2()";
this.sig_bRMt2TPA_bgTxnOut_LeanToTPA_RightAnswer = "bRMt2TPA_bgTxnOut_LeanToTPA_RightAnswer()";
this.sig_bRMt2TPA_bgTxnOut_PlayerNotAtPicture = "bRMt2TPA_bgTxnOut_PlayerNotAtPicture()";
this.sig_bRMt2TPA_bgTxnOut_PlayerNotAtPicture_p2 = "bRMt2TPA_bgTxnOut_PlayerNotAtPicture_p2()";
this.sig_bFAskDrinkT2TPA_bgTxnIn = "bFAskDrinkT2TPA_bgTxnIn()";
this.sig_bFAskDrinkT2TPA_bgTSuggest = "bFAskDrinkT2TPA_bgTSuggest()";
this.sig_bFAskDrinkT2TPA_bgTSuggest2 = "bFAskDrinkT2TPA_bgTSuggest2()";
this.sig_bFAskDrinkT2TPA_bgInitialWait = "bFAskDrinkT2TPA_bgInitialWait()";
this.sig_bFAskDrinkT2TPA_bgMixin_GSuggest_AgreeT = "bFAskDrinkT2TPA_bgMixin_GSuggest_AgreeT()";
this.sig_bFAskDrinkT2TPA_bgMixin_GSuggest_DisagreeT = "bFAskDrinkT2TPA_bgMixin_GSuggest_DisagreeT()";
this.sig_bFAskDrinkT2TPA_bgMixin_GSuggest_SpecificRequestNonAnswer = "bFAskDrinkT2TPA_bgMixin_GSuggest_SpecificRequestNonAnswer()";
this.sig_bFAskDrinkT2TPA_bgWaitTimeout = "bFAskDrinkT2TPA_bgWaitTimeout()";
this.sig_bFAskDrinkT2TPA_bgTxnOut_AgreeG = "bFAskDrinkT2TPA_bgTxnOut_AgreeG()";
this.sig_bFAskDrinkT2TPA_bgTxnOut_DisagreeGNonAnswer = "bFAskDrinkT2TPA_bgTxnOut_DisagreeGNonAnswer(int)";
this.sig_bFAskDrinkT2GPA_bgTxnIn = "bFAskDrinkT2GPA_bgTxnIn()";
this.sig_bFAskDrinkT2GPA_bgTSuggest = "bFAskDrinkT2GPA_bgTSuggest()";
this.sig_bFAskDrinkT2GPA_bgTSuggest2 = "bFAskDrinkT2GPA_bgTSuggest2()";
this.sig_bFAskDrinkT2GPA_bgInitialWait = "bFAskDrinkT2GPA_bgInitialWait()";
this.sig_bFAskDrinkT2GPA_bgMixin_GSuggest_AgreeT = "bFAskDrinkT2GPA_bgMixin_GSuggest_AgreeT()";
this.sig_bFAskDrinkT2GPA_bgMixin_GSuggest_DisagreeT = "bFAskDrinkT2GPA_bgMixin_GSuggest_DisagreeT()";
this.sig_bFAskDrinkT2GPA_bgMixin_GSuggest_SpecificRequestNonAnswer = "bFAskDrinkT2GPA_bgMixin_GSuggest_SpecificRequestNonAnswer()";
this.sig_bFAskDrinkT2GPA_bgWaitTimeout = "bFAskDrinkT2GPA_bgWaitTimeout()";
this.sig_bFAskDrinkT2GPA_bgTxnOut_AgreeG = "bFAskDrinkT2GPA_bgTxnOut_AgreeG()";
this.sig_bFAskDrinkT2GPA_bgTxnOut_DisagreeGNonAnswer = "bFAskDrinkT2GPA_bgTxnOut_DisagreeGNonAnswer(int)";
this.sig_bOneOnOneGAffChrT2_bgTxnIn = "bOneOnOneGAffChrT2_bgTxnIn()";
this.sig_bOneOnOneGAffChrT2_bgDefuse = "bOneOnOneGAffChrT2_bgDefuse()";
this.sig_bOneOnOneGAffChrT2_bgConfess = "bOneOnOneGAffChrT2_bgConfess()";
this.sig_bOneOnOneGAffChrT2_bgFinalYelling = "bOneOnOneGAffChrT2_bgFinalYelling()";
this.sig_bOneOnOneGAffChrT2_bgMixin_MoveToLeaveRoom = "bOneOnOneGAffChrT2_bgMixin_MoveToLeaveRoom()";
this.sig_bOneOnOneGAffChrT2_bgMixin_Mild = "bOneOnOneGAffChrT2_bgMixin_Mild(int)";
this.sig_bOneOnOneGAffChrT2_bgMixin_FlirtKissOppSex = "bOneOnOneGAffChrT2_bgMixin_FlirtKissOppSex()";
this.sig_bOneOnOneGAffChrT2_bgMixin_AnythingElseStrong = "bOneOnOneGAffChrT2_bgMixin_AnythingElseStrong(int)";
this.sig_bOneOnOneGAffChrT2_bgMixin_AnythingElseStrong_2ndtime = "bOneOnOneGAffChrT2_bgMixin_AnythingElseStrong_2ndtime(int)";
this.sig_bOneOnOneGAffChrT2_bgMixin_LookAndIgnore = "bOneOnOneGAffChrT2_bgMixin_LookAndIgnore()";
this.sig_bOneOnOneGAffChrT2_bgTxnOut_OpposeInappr = "bOneOnOneGAffChrT2_bgTxnOut_OpposeInappr()";
this.sig_bOneOnOneTAffChrT2_bgTxnIn = "bOneOnOneTAffChrT2_bgTxnIn()";
this.sig_bOneOnOneTAffChrT2_bgDefuse = "bOneOnOneTAffChrT2_bgDefuse()";
this.sig_bOneOnOneTAffChrT2_bgConfess = "bOneOnOneTAffChrT2_bgConfess()";
this.sig_bOneOnOneTAffChrT2_bgFinalYelling = "bOneOnOneTAffChrT2_bgFinalYelling()";
this.sig_bOneOnOneTAffChrT2_bgMixin_MoveToLeaveRoom = "bOneOnOneTAffChrT2_bgMixin_MoveToLeaveRoom()";
this.sig_bOneOnOneTAffChrT2_bgMixin_Mild = "bOneOnOneTAffChrT2_bgMixin_Mild(int)";
this.sig_bOneOnOneTAffChrT2_bgMixin_FlirtKissOppSex = "bOneOnOneTAffChrT2_bgMixin_FlirtKissOppSex()";
this.sig_bOneOnOneTAffChrT2_bgMixin_AnythingElseStrong = "bOneOnOneTAffChrT2_bgMixin_AnythingElseStrong(int)";
this.sig_bOneOnOneTAffChrT2_bgMixin_AnythingElseStrong_2ndtime = "bOneOnOneTAffChrT2_bgMixin_AnythingElseStrong_2ndtime(int)";
this.sig_bOneOnOneTAffChrT2_bgMixin_LookAndIgnore = "bOneOnOneTAffChrT2_bgMixin_LookAndIgnore()";
this.sig_bOneOnOneTAffChrT2_bgTxnOut_OpposeInappr = "bOneOnOneTAffChrT2_bgTxnOut_OpposeInappr()";
this.sig_bNonAffChrGReturnsT2_bgTxnIn_Veronica = "bNonAffChrGReturnsT2_bgTxnIn_Veronica()";
this.sig_bNonAffChrGReturnsT2_bgTxnIn_Grace = "bNonAffChrGReturnsT2_bgTxnIn_Grace(boolean)";
this.sig_bNonAffChrGReturnsT2_bgMixin_Veronica = "bNonAffChrGReturnsT2_bgMixin_Veronica()";
this.sig_bNonAffChrGReturnsT2_bgTxnOut_Veronica = "bNonAffChrGReturnsT2_bgTxnOut_Veronica(int)";
this.sig_bNonAffChrGReturnsT2_bgTxnOut_NotVeronica = "bNonAffChrGReturnsT2_bgTxnOut_NotVeronica(boolean)";
this.sig_bNonAffChrGReturnsT2_bgTxnOut_ReferToSatl = "bNonAffChrGReturnsT2_bgTxnOut_ReferToSatl()";
this.sig_bNonAffChrGReturnsT2_bgTxnOut_LookAndIgnore = "bNonAffChrGReturnsT2_bgTxnOut_LookAndIgnore()";
this.sig_bNonAffChrGReturnsT2_bgTxnOut_OpposeInappr = "bNonAffChrGReturnsT2_bgTxnOut_OpposeInappr()";
this.sig_bNonAffChrTReturnsT2_bgTxnIn = "bNonAffChrTReturnsT2_bgTxnIn()";
this.sig_bNonAffChrTReturnsT2_bgTxnOut_ForgotCheese = "bNonAffChrTReturnsT2_bgTxnOut_ForgotCheese()";
this.sig_bNonAffChrTReturnsT2_bgTxnOut_Comment = "bNonAffChrTReturnsT2_bgTxnOut_Comment()";
this.sig_bNonAffChrTReturnsT2_bgTxnOut_StrongNonNeg = "bNonAffChrTReturnsT2_bgTxnOut_StrongNonNeg()";
this.sig_bNonAffChrTReturnsT2_bgTxnOut_StrongNeg = "bNonAffChrTReturnsT2_bgTxnOut_StrongNeg()";
this.sig_bNonAffChrTReturnsT2_bgTxnOut_OpposeInappr = "bNonAffChrTReturnsT2_bgTxnOut_OpposeInappr()";
this.sig_bOneOnOneGNonAffChrT2_bgTxnIn = "bOneOnOneGNonAffChrT2_bgTxnIn()";
this.sig_bOneOnOneGNonAffChrT2_bgInitialComment = "bOneOnOneGNonAffChrT2_bgInitialComment()";
this.sig_bOneOnOneGNonAffChrT2_bgMixin_Confession = "bOneOnOneGNonAffChrT2_bgMixin_Confession(boolean)";
this.sig_bOneOnOneGNonAffChrT2_bgTxnOut_Positive = "bOneOnOneGNonAffChrT2_bgTxnOut_Positive()";
this.sig_bOneOnOneGNonAffChrT2_bgTxnOut_StrongNotMean = "bOneOnOneGNonAffChrT2_bgTxnOut_StrongNotMean()";
this.sig_bOneOnOneGNonAffChrT2_bgTxnOut_MeanNeg = "bOneOnOneGNonAffChrT2_bgTxnOut_MeanNeg()";
this.sig_bOneOnOneGNonAffChrT2_bgTxnOut_FlirtKiss = "bOneOnOneGNonAffChrT2_bgTxnOut_FlirtKiss()";
this.sig_bOneOnOneGNonAffChrT2_bgTxnOut_PlayerLeaves = "bOneOnOneGNonAffChrT2_bgTxnOut_PlayerLeaves()";
this.sig_bOneOnOneGNonAffChrT2_bgTxnOut_OpposeInappr = "bOneOnOneGNonAffChrT2_bgTxnOut_OpposeInappr()";
this.sig_bOneOnOneTNonAffChrT2_bgTxnIn = "bOneOnOneTNonAffChrT2_bgTxnIn()";
this.sig_bOneOnOneTNonAffChrT2_bgInitialComment = "bOneOnOneTNonAffChrT2_bgInitialComment()";
this.sig_bOneOnOneTNonAffChrT2_bgMixin_Confession = "bOneOnOneTNonAffChrT2_bgMixin_Confession(boolean)";
this.sig_bOneOnOneTNonAffChrT2_bgTxnOut_Positive = "bOneOnOneTNonAffChrT2_bgTxnOut_Positive()";
this.sig_bOneOnOneTNonAffChrT2_bgTxnOut_StrongNotMean = "bOneOnOneTNonAffChrT2_bgTxnOut_StrongNotMean()";
this.sig_bOneOnOneTNonAffChrT2_bgTxnOut_MeanNeg = "bOneOnOneTNonAffChrT2_bgTxnOut_MeanNeg()";
this.sig_bOneOnOneTNonAffChrT2_bgTxnOut_FlirtKiss = "bOneOnOneTNonAffChrT2_bgTxnOut_FlirtKiss()";
this.sig_bOneOnOneTNonAffChrT2_bgTxnOut_PlayerLeaves = "bOneOnOneTNonAffChrT2_bgTxnOut_PlayerLeaves()";
this.sig_bOneOnOneTNonAffChrT2_bgTxnOut_OpposeInappr = "bOneOnOneTNonAffChrT2_bgTxnOut_OpposeInappr()";
this.sig_bRomPrpT2GPA_bgTxnIn = "bRomPrpT2GPA_bgTxnIn()";
this.sig_bRomPrpT2GPA_bgTxnIn_p2 = "bRomPrpT2GPA_bgTxnIn_p2()";
this.sig_bRomPrpT2GPA_bgBody = "bRomPrpT2GPA_bgBody()";
this.sig_bRomPrpT2GPA_bgWaitTimeout = "bRomPrpT2GPA_bgWaitTimeout()";
this.sig_bRomPrpT2GPA_bgTxnOut_NonAnswer = "bRomPrpT2GPA_bgTxnOut_NonAnswer()";
this.sig_bRomPrpT2GPA_bgTxnOut_AgreeT = "bRomPrpT2GPA_bgTxnOut_AgreeT()";
this.sig_bRomPrpT2GPA_bgTxnOut_DisagreeT = "bRomPrpT2GPA_bgTxnOut_DisagreeT()";
this.sig_bTxnT2ToT3_bgGoToCrisis = "bTxnT2ToT3_bgGoToCrisis()";
this.sig_bCrisisP1_bgTxnIn = "bCrisisP1_bgTxnIn()";
this.sig_bCrisisP1_bgTxnIn_p2 = "bCrisisP1_bgTxnIn_p2()";
this.sig_bCrisisP1_bgTxnIn_p3 = "bCrisisP1_bgTxnIn_p3()";
this.sig_bCrisisP1_bgBody = "bCrisisP1_bgBody()";
this.sig_bCrisisP1_bgInitialReaction = "bCrisisP1_bgInitialReaction(int)";
this.sig_bCrisisP1_bgBody2 = "bCrisisP1_bgBody2()";
this.sig_bCrisisP1_bgBody2_p2 = "bCrisisP1_bgBody2_p2()";
this.sig_bCrisisP1_bgSecondReaction = "bCrisisP1_bgSecondReaction()";
this.sig_bCrisisP1_bgBody3 = "bCrisisP1_bgBody3()";
this.sig_bCrisisP1_bgTxnOut = "bCrisisP1_bgTxnOut(int)";
this.sig_bCrisisP1_bgNonAnswer = "bCrisisP1_bgNonAnswer(int)";
this.sig_bCrisisP1_bgMildDisagreement = "bCrisisP1_bgMildDisagreement(int)";
this.sig_bCrisisP1_bgReferToDrinks = "bCrisisP1_bgReferToDrinks(int)";
this.sig_bCrisisP1_bgPraise = "bCrisisP1_bgPraise(int)";
this.sig_bCrisisP1_bgCriticize = "bCrisisP1_bgCriticize(int)";
this.sig_bCrisisP1_bgFlirt = "bCrisisP1_bgFlirt(int)";
this.sig_bCrisisP1_bgStrongDisagreement = "bCrisisP1_bgStrongDisagreement(int)";
this.sig_bCrisisP1_bgRepeat = "bCrisisP1_bgRepeat(int)";
this.sig_bCrisisP1_bgRepeat_ThrowOutPlayer = "bCrisisP1_bgRepeat_ThrowOutPlayer()";
this.sig_bC2TGGlue_bgVent1 = "bC2TGGlue_bgVent1()";
this.sig_bC2TGGlue_bgVent2 = "bC2TGGlue_bgVent2()";
this.sig_bC2TGGlue_bgMixin = "bC2TGGlue_bgMixin(int)";
this.sig_bC2TGGlue_bgVentKitchen1 = "bC2TGGlue_bgVentKitchen1()";
this.sig_bC2TGGlue_bgVentKitchen2 = "bC2TGGlue_bgVentKitchen2()";
this.sig_bTherapyGameP2_InitialMixin = "bTherapyGameP2_InitialMixin()";
this.sig_bTherapyGameP2_MainLoop = "bTherapyGameP2_MainLoop()";
this.sig_bTherapyGameP2_Mixin = "bTherapyGameP2_Mixin(int, int, int, int, int, int, int, int, int, int, int, boolean)";
this.sig_bRevBuildupP2_bgTxnIn = "bRevBuildupP2_bgTxnIn()";
this.sig_bRevBuildupP2_bgTxnIn_mixin = "bRevBuildupP2_bgTxnIn_mixin()";
this.sig_bRevBuildupP2_bgBody2 = "bRevBuildupP2_bgBody2()";
this.sig_bRevBuildupP2_bgBody2_mixin = "bRevBuildupP2_bgBody2_mixin()";
this.sig_bRevBuildupP2_bgBody2b = "bRevBuildupP2_bgBody2b()";
this.sig_bRevBuildupP2_bgBody3a = "bRevBuildupP2_bgBody3a()";
this.sig_bRevBuildupP2_bgBody3b = "bRevBuildupP2_bgBody3b()";
this.sig_bRevBuildupP2_bgBody3_mixin = "bRevBuildupP2_bgBody3_mixin()";
this.sig_bRevBuildupP2_bgBody4a = "bRevBuildupP2_bgBody4a()";
this.sig_bRevBuildupP2_bgBody4b = "bRevBuildupP2_bgBody4b()";
this.sig_bRevBuildupP2_bgBody4c = "bRevBuildupP2_bgBody4c()";
this.sig_bRevBuildupP2_bgLitany = "bRevBuildupP2_bgLitany(int)";
this.sig_bRevBuildupP2_bgBody4_mixin = "bRevBuildupP2_bgBody4_mixin()";
this.sig_bRevBuildupP2_bgBody5 = "bRevBuildupP2_bgBody5()";
this.sig_bRevBuildupP2_bgBody5_mixin = "bRevBuildupP2_bgBody5_mixin()";
this.sig_bRevBuildupP2_bgTxnOut = "bRevBuildupP2_bgTxnOut()";
this.sig_bRevelationsP2_bgRev1 = "bRevelationsP2_bgRev1()";
this.sig_bRevelationsP2_bgPostRev1 = "bRevelationsP2_bgPostRev1()";
this.sig_bRevelationsP2_bgRev2 = "bRevelationsP2_bgRev2()";
this.sig_bRevelationsP2_bgPostRev2 = "bRevelationsP2_bgPostRev2()";
this.sig_bRevelationsP2_bgRev3 = "bRevelationsP2_bgRev3()";
this.sig_bRevelationsP2_bgPostRev3 = "bRevelationsP2_bgPostRev3()";
this.sig_bEndingNoRevs_bgBody1 = "bEndingNoRevs_bgBody1()";
this.sig_bEndingNoRevs_bgBody2 = "bEndingNoRevs_bgBody2()";
this.sig_bEndingNoRevs_bgBody3 = "bEndingNoRevs_bgBody3()";
this.sig_bEndingSelfsOnly_bgBody1 = "bEndingSelfsOnly_bgBody1()";
this.sig_bEndingSelfsOnly_bgBody2 = "bEndingSelfsOnly_bgBody2()";
this.sig_bEndingSelfsOnly_bgBody3 = "bEndingSelfsOnly_bgBody3()";
this.sig_bEndingSelfsOnly_bgBody4 = "bEndingSelfsOnly_bgBody4()";
this.sig_bEndingSelfsOnly_bgBody5 = "bEndingSelfsOnly_bgBody5()";
this.sig_bEndingSelfsOnly_bgBody6 = "bEndingSelfsOnly_bgBody6()";
this.sig_bEndingSelfsOnly_bgBody7 = "bEndingSelfsOnly_bgBody7()";
this.sig_bEndingSelfsOnly_bgBody8 = "bEndingSelfsOnly_bgBody8()";
this.sig_bEndingRelatsOnly_bgBody1 = "bEndingRelatsOnly_bgBody1()";
this.sig_bEndingRelatsOnly_bgBody2 = "bEndingRelatsOnly_bgBody2()";
this.sig_bEndingRelatsOnly_bgBody3 = "bEndingRelatsOnly_bgBody3()";
this.sig_bEndingRelatsOnly_bgBody4 = "bEndingRelatsOnly_bgBody4()";
this.sig_bEndingRelatsOnly_bgBody5 = "bEndingRelatsOnly_bgBody5()";
this.sig_bEndingRelatsOnly_bgBody6 = "bEndingRelatsOnly_bgBody6()";
this.sig_bEndingRelatsOnly_bgBody7 = "bEndingRelatsOnly_bgBody7()";
this.sig_bEndingRelatsOnly_bgBody8 = "bEndingRelatsOnly_bgBody8()";
this.sig_bEndingSRNotGTR_bgBody1 = "bEndingSRNotGTR_bgBody1()";
this.sig_bEndingSRNotGTR_bgBody2 = "bEndingSRNotGTR_bgBody2()";
this.sig_bEndingSRNotGTR_bgBody3 = "bEndingSRNotGTR_bgBody3()";
this.sig_bEndingSRNotGTR_bgBody4 = "bEndingSRNotGTR_bgBody4()";
this.sig_bEndingSRNotGTR_bgBody5 = "bEndingSRNotGTR_bgBody5()";
this.sig_bEndingSRNotGTR_bgBody6 = "bEndingSRNotGTR_bgBody6()";
this.sig_bEndingSRNotGTR_bgBody7 = "bEndingSRNotGTR_bgBody7()";
this.sig_bEndingSRNotGTR_bgBody8 = "bEndingSRNotGTR_bgBody8()";
this.sig_bEndingGTR_bgBody1 = "bEndingGTR_bgBody1()";
this.sig_bEndingGTR_bgBody2 = "bEndingGTR_bgBody2()";
this.sig_bEndingGTR_bgBody3 = "bEndingGTR_bgBody3()";
this.sig_bEndingGTR_bgBody4 = "bEndingGTR_bgBody4()";
this.me = 0;
this.myName = "Grace";
this.spouse = 1;
this.g_objArm = 1;
this.g_objArmResource = 2;
this.g_objArmAnimLayer = 5;
this.g_objHand = 66;
this.g_drinkArm = 0;
this.g_drinkArmResource = 1;
this.g_drinkHand = 50;
this.g_leftHand = 50;
this.g_rightHand = 66;
this.g_armGesture_default = 98;
this.g_armGesture_clearThroat = 95;
this.g_armLGesture_atSideEmphasis_loop1 = 70;
this.g_armLGesture_atSideEmphasis2 = 129;
this.g_armLGesture_atSideEmphasis2_loop1 = 130;
this.g_armLGesture_atSideEmphasis3 = 119;
this.g_armLGesture_atSideEmphasis3_loop1 = 120;
this.g_armRGesture_atSideEmphasis_loop1 = 73;
this.g_armRGesture_atSideEmphasis2 = 134;
this.g_armRGesture_atSideEmphasis2_loop1 = 135;
this.g_armRGesture_atSideEmphasis3 = 124;
this.g_armRGesture_atSideEmphasis3_loop1 = 125;
this.g_armLGesture_gestureReady = 86;
this.g_armLGesture_suggestReady = 86;
this.g_armLGesture_objectGrab = 52;
this.g_armLGesture_objectHold = 55;
this.g_armLGesture_objectOffer = -2;
this.g_armLGesture_objectDrop = 56;
this.g_armLGesture_akimbo = 83;
this.g_armObjGesture_objectOfferDone = -2;
this.g_armRGesture_gestureReady = 92;
this.g_armRGesture_objectGrab = -2;
this.g_armRGesture_objectHold = -2;
this.g_armRGesture_objectOffer = -2;
this.g_armRGesture_objectDrop = -2;
this.g_armRGesture_openDoor = 124;
this.g_armRGesture_closeDoor = -2;
this.g_armRGesture_akimbo = 89;
this.g_armGesture_drinkHold = 55;
this.g_armGesture_drinkSip_sip = 62;
this.g_armGesture_drinkPreSip_hold = 58;
this.g_armGesture_drinkSwish_hold = 65;
this.g_armsBothGesture_crossed = 80;
this.g_dialog_clearThroat = 167;
this.g_dialog_sigh_short_petulant = 192;
this.randGen = new Random();
this.grace = 0;
this.trip = 1;
this.player = 2;
this.noOne = -1;
this.DONTCAREANGLE = -666.0f;
this.cMoodMangerRetryDelay = 0.5f;
this.gBeatTempInt = 0;
this.gBeatTempInt2 = 0;
this.gBeatTempInt3 = 0;
this.gBeatTempInt4 = 0;
this.gBeatTempBool = false;
this.gBeatTempPt = new Point3D(0.0f, 0.0f, 0.0f);
this.gDeflectReestablish = true;
}
public Grace() {
this.this();
this.individualBehaviorLibrary = new BehaviorLibrary(6112);
this.jointBehaviorLibrary = new BehaviorLibrary(4038);
this.debugLevel = 1;
registerBehaviors_0(this.individualBehaviorLibrary);
registerBehaviors_1(this.individualBehaviorLibrary);
registerBehaviors_2(this.individualBehaviorLibrary);
registerBehaviors_3(this.individualBehaviorLibrary);
registerBehaviors_4(this.jointBehaviorLibrary);
registerBehaviors_5(this.jointBehaviorLibrary);
registerBehaviors_6(this.jointBehaviorLibrary);
__$initConflictSet0();
this.startWMEReflection(this.ABT = (CollectionBehavior)Grace_BehaviorFactories.behaviorFactory22(5074, null, null, null, "Grace_RootCollectionBehavior()"));
this.ABT.initRootBehavior();
this.bDecisionCycleSMCall = true;
BehavingEntity.registerEntity("Grace", this);
}
static {
__$tempObjArray = new Object[1];
__$sensorFactoryArgArray = new Class[1];
__$behFactoryArgArray = new Class[5];
__$preconditionArgArray = new Class[4];
__$continuousConditionArgArray = new Class[3];
__$stepFactoryArgArray = new Class[3];
__$argumentStepExecuteArgArray = new Class[3];
__$mentalStepExecuteArgArray = new Class[4];
try {
Grace.__$sensorFactoryArgArray[0] = Integer.TYPE;
Grace.__$behFactoryArgArray[0] = Integer.TYPE;
Grace.__$behFactoryArgArray[1] = Grace.__$tempObjArray.getClass();
Grace.__$behFactoryArgArray[2] = Class.forName("java.util.Hashtable");
Grace.__$behFactoryArgArray[3] = Class.forName("abl.runtime.GoalStep");
Grace.__$behFactoryArgArray[4] = Class.forName("java.lang.String");
Grace.__$preconditionArgArray[0] = Integer.TYPE;
Grace.__$preconditionArgArray[1] = Grace.__$tempObjArray.getClass();
Grace.__$preconditionArgArray[2] = Class.forName("java.util.Hashtable");
Grace.__$preconditionArgArray[3] = Class.forName("abl.runtime.BehavingEntity");
Grace.__$continuousConditionArgArray[0] = Integer.TYPE;
Grace.__$continuousConditionArgArray[1] = Grace.__$tempObjArray.getClass();
Grace.__$continuousConditionArgArray[2] = Class.forName("abl.runtime.BehavingEntity");
Grace.__$stepFactoryArgArray[0] = Integer.TYPE;
Grace.__$stepFactoryArgArray[1] = Class.forName("abl.runtime.Behavior");
Grace.__$stepFactoryArgArray[2] = Grace.__$tempObjArray.getClass();
Grace.__$argumentStepExecuteArgArray[0] = Integer.TYPE;
Grace.__$argumentStepExecuteArgArray[1] = Grace.__$tempObjArray.getClass();
Grace.__$argumentStepExecuteArgArray[2] = Class.forName("abl.runtime.BehavingEntity");
Grace.__$mentalStepExecuteArgArray[0] = Integer.TYPE;
Grace.__$mentalStepExecuteArgArray[1] = Grace.__$tempObjArray.getClass();
Grace.__$mentalStepExecuteArgArray[2] = Class.forName("abl.runtime.BehavingEntity");
Grace.__$mentalStepExecuteArgArray[3] = Class.forName("abl.runtime.MentalStep");
}
catch (Exception ex) {
throw new AblRuntimeError("Error in static initializer", ex);
}
try {
__$Grace_BehaviorFactories_rfield = Class.forName("facade.characters.grace.java.Grace_BehaviorFactories");
(__$behaviorFactory0_rfield = Grace.__$Grace_BehaviorFactories_rfield.getDeclaredMethod("behaviorFactory0", (Class[])Grace.__$behFactoryArgArray)).setAccessible(true);
(__$behaviorFactory1_rfield = Grace.__$Grace_BehaviorFactories_rfield.getDeclaredMethod("behaviorFactory1", (Class[])Grace.__$behFactoryArgArray)).setAccessible(true);
(__$behaviorFactory2_rfield = Grace.__$Grace_BehaviorFactories_rfield.getDeclaredMethod("behaviorFactory2", (Class[])Grace.__$behFactoryArgArray)).setAccessible(true);
(__$behaviorFactory3_rfield = Grace.__$Grace_BehaviorFactories_rfield.getDeclaredMethod("behaviorFactory3", (Class[])Grace.__$behFactoryArgArray)).setAccessible(true);
(__$behaviorFactory4_rfield = Grace.__$Grace_BehaviorFactories_rfield.getDeclaredMethod("behaviorFactory4", (Class[])Grace.__$behFactoryArgArray)).setAccessible(true);
(__$behaviorFactory5_rfield = Grace.__$Grace_BehaviorFactories_rfield.getDeclaredMethod("behaviorFactory5", (Class[])Grace.__$behFactoryArgArray)).setAccessible(true);
(__$behaviorFactory6_rfield = Grace.__$Grace_BehaviorFactories_rfield.getDeclaredMethod("behaviorFactory6", (Class[])Grace.__$behFactoryArgArray)).setAccessible(true);
(__$behaviorFactory7_rfield = Grace.__$Grace_BehaviorFactories_rfield.getDeclaredMethod("behaviorFactory7", (Class[])Grace.__$behFactoryArgArray)).setAccessible(true);
(__$behaviorFactory8_rfield = Grace.__$Grace_BehaviorFactories_rfield.getDeclaredMethod("behaviorFactory8", (Class[])Grace.__$behFactoryArgArray)).setAccessible(true);
(__$behaviorFactory9_rfield = Grace.__$Grace_BehaviorFactories_rfield.getDeclaredMethod("behaviorFactory9", (Class[])Grace.__$behFactoryArgArray)).setAccessible(true);
(__$behaviorFactory10_rfield = Grace.__$Grace_BehaviorFactories_rfield.getDeclaredMethod("behaviorFactory10", (Class[])Grace.__$behFactoryArgArray)).setAccessible(true);
(__$behaviorFactory11_rfield = Grace.__$Grace_BehaviorFactories_rfield.getDeclaredMethod("behaviorFactory11", (Class[])Grace.__$behFactoryArgArray)).setAccessible(true);
(__$behaviorFactory12_rfield = Grace.__$Grace_BehaviorFactories_rfield.getDeclaredMethod("behaviorFactory12", (Class[])Grace.__$behFactoryArgArray)).setAccessible(true);
(__$behaviorFactory13_rfield = Grace.__$Grace_BehaviorFactories_rfield.getDeclaredMethod("behaviorFactory13", (Class[])Grace.__$behFactoryArgArray)).setAccessible(true);
(__$behaviorFactory14_rfield = Grace.__$Grace_BehaviorFactories_rfield.getDeclaredMethod("behaviorFactory14", (Class[])Grace.__$behFactoryArgArray)).setAccessible(true);
(__$behaviorFactory15_rfield = Grace.__$Grace_BehaviorFactories_rfield.getDeclaredMethod("behaviorFactory15", (Class[])Grace.__$behFactoryArgArray)).setAccessible(true);
(__$behaviorFactory16_rfield = Grace.__$Grace_BehaviorFactories_rfield.getDeclaredMethod("behaviorFactory16", (Class[])Grace.__$behFactoryArgArray)).setAccessible(true);
(__$behaviorFactory17_rfield = Grace.__$Grace_BehaviorFactories_rfield.getDeclaredMethod("behaviorFactory17", (Class[])Grace.__$behFactoryArgArray)).setAccessible(true);
(__$behaviorFactory18_rfield = Grace.__$Grace_BehaviorFactories_rfield.getDeclaredMethod("behaviorFactory18", (Class[])Grace.__$behFactoryArgArray)).setAccessible(true);
(__$behaviorFactory19_rfield = Grace.__$Grace_BehaviorFactories_rfield.getDeclaredMethod("behaviorFactory19", (Class[])Grace.__$behFactoryArgArray)).setAccessible(true);
(__$behaviorFactory20_rfield = Grace.__$Grace_BehaviorFactories_rfield.getDeclaredMethod("behaviorFactory20", (Class[])Grace.__$behFactoryArgArray)).setAccessible(true);
(__$behaviorFactory21_rfield = Grace.__$Grace_BehaviorFactories_rfield.getDeclaredMethod("behaviorFactory21", (Class[])Grace.__$behFactoryArgArray)).setAccessible(true);
(__$behaviorFactory22_rfield = Grace.__$Grace_BehaviorFactories_rfield.getDeclaredMethod("behaviorFactory22", (Class[])Grace.__$behFactoryArgArray)).setAccessible(true);
}
catch (Exception ex2) {
throw new AblRuntimeError("Error in static initializer", ex2);
}
try {
__$Grace_Preconditions_rfield = Class.forName("facade.characters.grace.java.Grace_Preconditions");
(__$precondition0_rfield = Grace.__$Grace_Preconditions_rfield.getDeclaredMethod("precondition0", (Class[])Grace.__$preconditionArgArray)).setAccessible(true);
(__$precondition1_rfield = Grace.__$Grace_Preconditions_rfield.getDeclaredMethod("precondition1", (Class[])Grace.__$preconditionArgArray)).setAccessible(true);
(__$precondition2_rfield = Grace.__$Grace_Preconditions_rfield.getDeclaredMethod("precondition2", (Class[])Grace.__$preconditionArgArray)).setAccessible(true);
(__$precondition3_rfield = Grace.__$Grace_Preconditions_rfield.getDeclaredMethod("precondition3", (Class[])Grace.__$preconditionArgArray)).setAccessible(true);
(__$precondition4_rfield = Grace.__$Grace_Preconditions_rfield.getDeclaredMethod("precondition4", (Class[])Grace.__$preconditionArgArray)).setAccessible(true);
(__$precondition5_rfield = Grace.__$Grace_Preconditions_rfield.getDeclaredMethod("precondition5", (Class[])Grace.__$preconditionArgArray)).setAccessible(true);
}
catch (Exception ex3) {
throw new AblRuntimeError("Error in static initializer", ex3);
}
try {
__$Grace_PreconditionSensorFactories_rfield = Class.forName("facade.characters.grace.java.Grace_PreconditionSensorFactories");
(__$preconditionSensorFactory0_rfield = Grace.__$Grace_PreconditionSensorFactories_rfield.getDeclaredMethod("preconditionSensorFactory0", (Class[])Grace.__$sensorFactoryArgArray)).setAccessible(true);
}
catch (Exception ex4) {
throw new AblRuntimeError("Error in static initializer", ex4);
}
try {
__$Grace_ContextConditions_rfield = Class.forName("facade.characters.grace.java.Grace_ContextConditions");
(__$contextCondition0_rfield = Grace.__$Grace_ContextConditions_rfield.getDeclaredMethod("contextCondition0", (Class[])Grace.__$continuousConditionArgArray)).setAccessible(true);
}
catch (Exception ex5) {
throw new AblRuntimeError("Error in static initializer", ex5);
}
try {
__$Grace_ContextConditionSensorFactories_rfield = Class.forName("facade.characters.grace.java.Grace_ContextConditionSensorFactories");
(__$contextConditionSensorFactory0_rfield = Grace.__$Grace_ContextConditionSensorFactories_rfield.getDeclaredMethod("contextConditionSensorFactory0", (Class[])Grace.__$sensorFactoryArgArray)).setAccessible(true);
}
catch (Exception ex6) {
throw new AblRuntimeError("Error in static initializer", ex6);
}
try {
__$Grace_StepFactories_rfield = Class.forName("facade.characters.grace.java.Grace_StepFactories");
(__$stepFactory0_rfield = Grace.__$Grace_StepFactories_rfield.getDeclaredMethod("stepFactory0", (Class[])Grace.__$stepFactoryArgArray)).setAccessible(true);
(__$stepFactory1_rfield = Grace.__$Grace_StepFactories_rfield.getDeclaredMethod("stepFactory1", (Class[])Grace.__$stepFactoryArgArray)).setAccessible(true);
(__$stepFactory2_rfield = Grace.__$Grace_StepFactories_rfield.getDeclaredMethod("stepFactory2", (Class[])Grace.__$stepFactoryArgArray)).setAccessible(true);
(__$stepFactory3_rfield = Grace.__$Grace_StepFactories_rfield.getDeclaredMethod("stepFactory3", (Class[])Grace.__$stepFactoryArgArray)).setAccessible(true);
(__$stepFactory4_rfield = Grace.__$Grace_StepFactories_rfield.getDeclaredMethod("stepFactory4", (Class[])Grace.__$stepFactoryArgArray)).setAccessible(true);
(__$stepFactory5_rfield = Grace.__$Grace_StepFactories_rfield.getDeclaredMethod("stepFactory5", (Class[])Grace.__$stepFactoryArgArray)).setAccessible(true);
(__$stepFactory6_rfield = Grace.__$Grace_StepFactories_rfield.getDeclaredMethod("stepFactory6", (Class[])Grace.__$stepFactoryArgArray)).setAccessible(true);
(__$stepFactory7_rfield = Grace.__$Grace_StepFactories_rfield.getDeclaredMethod("stepFactory7", (Class[])Grace.__$stepFactoryArgArray)).setAccessible(true);
(__$stepFactory8_rfield = Grace.__$Grace_StepFactories_rfield.getDeclaredMethod("stepFactory8", (Class[])Grace.__$stepFactoryArgArray)).setAccessible(true);
(__$stepFactory9_rfield = Grace.__$Grace_StepFactories_rfield.getDeclaredMethod("stepFactory9", (Class[])Grace.__$stepFactoryArgArray)).setAccessible(true);
(__$stepFactory10_rfield = Grace.__$Grace_StepFactories_rfield.getDeclaredMethod("stepFactory10", (Class[])Grace.__$stepFactoryArgArray)).setAccessible(true);
(__$stepFactory11_rfield = Grace.__$Grace_StepFactories_rfield.getDeclaredMethod("stepFactory11", (Class[])Grace.__$stepFactoryArgArray)).setAccessible(true);
(__$stepFactory12_rfield = Grace.__$Grace_StepFactories_rfield.getDeclaredMethod("stepFactory12", (Class[])Grace.__$stepFactoryArgArray)).setAccessible(true);
(__$stepFactory13_rfield = Grace.__$Grace_StepFactories_rfield.getDeclaredMethod("stepFactory13", (Class[])Grace.__$stepFactoryArgArray)).setAccessible(true);
(__$stepFactory14_rfield = Grace.__$Grace_StepFactories_rfield.getDeclaredMethod("stepFactory14", (Class[])Grace.__$stepFactoryArgArray)).setAccessible(true);
(__$stepFactory15_rfield = Grace.__$Grace_StepFactories_rfield.getDeclaredMethod("stepFactory15", (Class[])Grace.__$stepFactoryArgArray)).setAccessible(true);
(__$stepFactory16_rfield = Grace.__$Grace_StepFactories_rfield.getDeclaredMethod("stepFactory16", (Class[])Grace.__$stepFactoryArgArray)).setAccessible(true);
(__$stepFactory17_rfield = Grace.__$Grace_StepFactories_rfield.getDeclaredMethod("stepFactory17", (Class[])Grace.__$stepFactoryArgArray)).setAccessible(true);
}
catch (Exception ex7) {
throw new AblRuntimeError("Error in static initializer", ex7);
}
try {
__$Grace_ArgumentStepExecute_rfield = Class.forName("facade.characters.grace.java.Grace_ArgumentStepExecute");
(__$argumentExecute0_rfield = Grace.__$Grace_ArgumentStepExecute_rfield.getDeclaredMethod("argumentExecute0", (Class[])Grace.__$argumentStepExecuteArgArray)).setAccessible(true);
(__$argumentExecute1_rfield = Grace.__$Grace_ArgumentStepExecute_rfield.getDeclaredMethod("argumentExecute1", (Class[])Grace.__$argumentStepExecuteArgArray)).setAccessible(true);
(__$argumentExecute2_rfield = Grace.__$Grace_ArgumentStepExecute_rfield.getDeclaredMethod("argumentExecute2", (Class[])Grace.__$argumentStepExecuteArgArray)).setAccessible(true);
(__$argumentExecute3_rfield = Grace.__$Grace_ArgumentStepExecute_rfield.getDeclaredMethod("argumentExecute3", (Class[])Grace.__$argumentStepExecuteArgArray)).setAccessible(true);
(__$argumentExecute4_rfield = Grace.__$Grace_ArgumentStepExecute_rfield.getDeclaredMethod("argumentExecute4", (Class[])Grace.__$argumentStepExecuteArgArray)).setAccessible(true);
(__$argumentExecute5_rfield = Grace.__$Grace_ArgumentStepExecute_rfield.getDeclaredMethod("argumentExecute5", (Class[])Grace.__$argumentStepExecuteArgArray)).setAccessible(true);
(__$argumentExecute6_rfield = Grace.__$Grace_ArgumentStepExecute_rfield.getDeclaredMethod("argumentExecute6", (Class[])Grace.__$argumentStepExecuteArgArray)).setAccessible(true);
(__$argumentExecute7_rfield = Grace.__$Grace_ArgumentStepExecute_rfield.getDeclaredMethod("argumentExecute7", (Class[])Grace.__$argumentStepExecuteArgArray)).setAccessible(true);
(__$argumentExecute8_rfield = Grace.__$Grace_ArgumentStepExecute_rfield.getDeclaredMethod("argumentExecute8", (Class[])Grace.__$argumentStepExecuteArgArray)).setAccessible(true);
(__$argumentExecute9_rfield = Grace.__$Grace_ArgumentStepExecute_rfield.getDeclaredMethod("argumentExecute9", (Class[])Grace.__$argumentStepExecuteArgArray)).setAccessible(true);
(__$argumentExecute10_rfield = Grace.__$Grace_ArgumentStepExecute_rfield.getDeclaredMethod("argumentExecute10", (Class[])Grace.__$argumentStepExecuteArgArray)).setAccessible(true);
(__$argumentExecute11_rfield = Grace.__$Grace_ArgumentStepExecute_rfield.getDeclaredMethod("argumentExecute11", (Class[])Grace.__$argumentStepExecuteArgArray)).setAccessible(true);
(__$argumentExecute12_rfield = Grace.__$Grace_ArgumentStepExecute_rfield.getDeclaredMethod("argumentExecute12", (Class[])Grace.__$argumentStepExecuteArgArray)).setAccessible(true);
(__$argumentExecute13_rfield = Grace.__$Grace_ArgumentStepExecute_rfield.getDeclaredMethod("argumentExecute13", (Class[])Grace.__$argumentStepExecuteArgArray)).setAccessible(true);
(__$argumentExecute14_rfield = Grace.__$Grace_ArgumentStepExecute_rfield.getDeclaredMethod("argumentExecute14", (Class[])Grace.__$argumentStepExecuteArgArray)).setAccessible(true);
(__$argumentExecute15_rfield = Grace.__$Grace_ArgumentStepExecute_rfield.getDeclaredMethod("argumentExecute15", (Class[])Grace.__$argumentStepExecuteArgArray)).setAccessible(true);
(__$argumentExecute16_rfield = Grace.__$Grace_ArgumentStepExecute_rfield.getDeclaredMethod("argumentExecute16", (Class[])Grace.__$argumentStepExecuteArgArray)).setAccessible(true);
(__$argumentExecute17_rfield = Grace.__$Grace_ArgumentStepExecute_rfield.getDeclaredMethod("argumentExecute17", (Class[])Grace.__$argumentStepExecuteArgArray)).setAccessible(true);
(__$argumentExecute18_rfield = Grace.__$Grace_ArgumentStepExecute_rfield.getDeclaredMethod("argumentExecute18", (Class[])Grace.__$argumentStepExecuteArgArray)).setAccessible(true);
(__$argumentExecute19_rfield = Grace.__$Grace_ArgumentStepExecute_rfield.getDeclaredMethod("argumentExecute19", (Class[])Grace.__$argumentStepExecuteArgArray)).setAccessible(true);
(__$argumentExecute20_rfield = Grace.__$Grace_ArgumentStepExecute_rfield.getDeclaredMethod("argumentExecute20", (Class[])Grace.__$argumentStepExecuteArgArray)).setAccessible(true);
(__$argumentExecute21_rfield = Grace.__$Grace_ArgumentStepExecute_rfield.getDeclaredMethod("argumentExecute21", (Class[])Grace.__$argumentStepExecuteArgArray)).setAccessible(true);
(__$argumentExecute22_rfield = Grace.__$Grace_ArgumentStepExecute_rfield.getDeclaredMethod("argumentExecute22", (Class[])Grace.__$argumentStepExecuteArgArray)).setAccessible(true);
(__$argumentExecute23_rfield = Grace.__$Grace_ArgumentStepExecute_rfield.getDeclaredMethod("argumentExecute23", (Class[])Grace.__$argumentStepExecuteArgArray)).setAccessible(true);
(__$argumentExecute24_rfield = Grace.__$Grace_ArgumentStepExecute_rfield.getDeclaredMethod("argumentExecute24", (Class[])Grace.__$argumentStepExecuteArgArray)).setAccessible(true);
(__$argumentExecute25_rfield = Grace.__$Grace_ArgumentStepExecute_rfield.getDeclaredMethod("argumentExecute25", (Class[])Grace.__$argumentStepExecuteArgArray)).setAccessible(true);
(__$argumentExecute26_rfield = Grace.__$Grace_ArgumentStepExecute_rfield.getDeclaredMethod("argumentExecute26", (Class[])Grace.__$argumentStepExecuteArgArray)).setAccessible(true);
(__$argumentExecute27_rfield = Grace.__$Grace_ArgumentStepExecute_rfield.getDeclaredMethod("argumentExecute27", (Class[])Grace.__$argumentStepExecuteArgArray)).setAccessible(true);
(__$argumentExecute28_rfield = Grace.__$Grace_ArgumentStepExecute_rfield.getDeclaredMethod("argumentExecute28", (Class[])Grace.__$argumentStepExecuteArgArray)).setAccessible(true);
(__$argumentExecute29_rfield = Grace.__$Grace_ArgumentStepExecute_rfield.getDeclaredMethod("argumentExecute29", (Class[])Grace.__$argumentStepExecuteArgArray)).setAccessible(true);
(__$argumentExecute30_rfield = Grace.__$Grace_ArgumentStepExecute_rfield.getDeclaredMethod("argumentExecute30", (Class[])Grace.__$argumentStepExecuteArgArray)).setAccessible(true);
(__$argumentExecute31_rfield = Grace.__$Grace_ArgumentStepExecute_rfield.getDeclaredMethod("argumentExecute31", (Class[])Grace.__$argumentStepExecuteArgArray)).setAccessible(true);
(__$argumentExecute32_rfield = Grace.__$Grace_ArgumentStepExecute_rfield.getDeclaredMethod("argumentExecute32", (Class[])Grace.__$argumentStepExecuteArgArray)).setAccessible(true);
(__$argumentExecute33_rfield = Grace.__$Grace_ArgumentStepExecute_rfield.getDeclaredMethod("argumentExecute33", (Class[])Grace.__$argumentStepExecuteArgArray)).setAccessible(true);
(__$argumentExecute34_rfield = Grace.__$Grace_ArgumentStepExecute_rfield.getDeclaredMethod("argumentExecute34", (Class[])Grace.__$argumentStepExecuteArgArray)).setAccessible(true);
(__$argumentExecute35_rfield = Grace.__$Grace_ArgumentStepExecute_rfield.getDeclaredMethod("argumentExecute35", (Class[])Grace.__$argumentStepExecuteArgArray)).setAccessible(true);
(__$argumentExecute36_rfield = Grace.__$Grace_ArgumentStepExecute_rfield.getDeclaredMethod("argumentExecute36", (Class[])Grace.__$argumentStepExecuteArgArray)).setAccessible(true);
(__$argumentExecute37_rfield = Grace.__$Grace_ArgumentStepExecute_rfield.getDeclaredMethod("argumentExecute37", (Class[])Grace.__$argumentStepExecuteArgArray)).setAccessible(true);
(__$argumentExecute38_rfield = Grace.__$Grace_ArgumentStepExecute_rfield.getDeclaredMethod("argumentExecute38", (Class[])Grace.__$argumentStepExecuteArgArray)).setAccessible(true);
(__$argumentExecute39_rfield = Grace.__$Grace_ArgumentStepExecute_rfield.getDeclaredMethod("argumentExecute39", (Class[])Grace.__$argumentStepExecuteArgArray)).setAccessible(true);
(__$argumentExecute40_rfield = Grace.__$Grace_ArgumentStepExecute_rfield.getDeclaredMethod("argumentExecute40", (Class[])Grace.__$argumentStepExecuteArgArray)).setAccessible(true);
(__$argumentExecute41_rfield = Grace.__$Grace_ArgumentStepExecute_rfield.getDeclaredMethod("argumentExecute41", (Class[])Grace.__$argumentStepExecuteArgArray)).setAccessible(true);
(__$argumentExecute42_rfield = Grace.__$Grace_ArgumentStepExecute_rfield.getDeclaredMethod("argumentExecute42", (Class[])Grace.__$argumentStepExecuteArgArray)).setAccessible(true);
(__$argumentExecute43_rfield = Grace.__$Grace_ArgumentStepExecute_rfield.getDeclaredMethod("argumentExecute43", (Class[])Grace.__$argumentStepExecuteArgArray)).setAccessible(true);
(__$argumentExecute44_rfield = Grace.__$Grace_ArgumentStepExecute_rfield.getDeclaredMethod("argumentExecute44", (Class[])Grace.__$argumentStepExecuteArgArray)).setAccessible(true);
(__$argumentExecute45_rfield = Grace.__$Grace_ArgumentStepExecute_rfield.getDeclaredMethod("argumentExecute45", (Class[])Grace.__$argumentStepExecuteArgArray)).setAccessible(true);
(__$argumentExecute46_rfield = Grace.__$Grace_ArgumentStepExecute_rfield.getDeclaredMethod("argumentExecute46", (Class[])Grace.__$argumentStepExecuteArgArray)).setAccessible(true);
(__$argumentExecute47_rfield = Grace.__$Grace_ArgumentStepExecute_rfield.getDeclaredMethod("argumentExecute47", (Class[])Grace.__$argumentStepExecuteArgArray)).setAccessible(true);
(__$argumentExecute48_rfield = Grace.__$Grace_ArgumentStepExecute_rfield.getDeclaredMethod("argumentExecute48", (Class[])Grace.__$argumentStepExecuteArgArray)).setAccessible(true);
(__$argumentExecute49_rfield = Grace.__$Grace_ArgumentStepExecute_rfield.getDeclaredMethod("argumentExecute49", (Class[])Grace.__$argumentStepExecuteArgArray)).setAccessible(true);
(__$argumentExecute50_rfield = Grace.__$Grace_ArgumentStepExecute_rfield.getDeclaredMethod("argumentExecute50", (Class[])Grace.__$argumentStepExecuteArgArray)).setAccessible(true);
(__$argumentExecute51_rfield = Grace.__$Grace_ArgumentStepExecute_rfield.getDeclaredMethod("argumentExecute51", (Class[])Grace.__$argumentStepExecuteArgArray)).setAccessible(true);
(__$argumentExecute52_rfield = Grace.__$Grace_ArgumentStepExecute_rfield.getDeclaredMethod("argumentExecute52", (Class[])Grace.__$argumentStepExecuteArgArray)).setAccessible(true);
(__$argumentExecute53_rfield = Grace.__$Grace_ArgumentStepExecute_rfield.getDeclaredMethod("argumentExecute53", (Class[])Grace.__$argumentStepExecuteArgArray)).setAccessible(true);
(__$argumentExecute54_rfield = Grace.__$Grace_ArgumentStepExecute_rfield.getDeclaredMethod("argumentExecute54", (Class[])Grace.__$argumentStepExecuteArgArray)).setAccessible(true);
(__$argumentExecute55_rfield = Grace.__$Grace_ArgumentStepExecute_rfield.getDeclaredMethod("argumentExecute55", (Class[])Grace.__$argumentStepExecuteArgArray)).setAccessible(true);
}
catch (Exception ex8) {
throw new AblRuntimeError("Error in static initializer", ex8);
}
try {
__$Grace_MentalStepExecute_rfield = Class.forName("facade.characters.grace.java.Grace_MentalStepExecute");
(__$mentalExecute0_rfield = Grace.__$Grace_MentalStepExecute_rfield.getDeclaredMethod("mentalExecute0", (Class[])Grace.__$mentalStepExecuteArgArray)).setAccessible(true);
(__$mentalExecute1_rfield = Grace.__$Grace_MentalStepExecute_rfield.getDeclaredMethod("mentalExecute1", (Class[])Grace.__$mentalStepExecuteArgArray)).setAccessible(true);
(__$mentalExecute2_rfield = Grace.__$Grace_MentalStepExecute_rfield.getDeclaredMethod("mentalExecute2", (Class[])Grace.__$mentalStepExecuteArgArray)).setAccessible(true);
(__$mentalExecute3_rfield = Grace.__$Grace_MentalStepExecute_rfield.getDeclaredMethod("mentalExecute3", (Class[])Grace.__$mentalStepExecuteArgArray)).setAccessible(true);
}
catch (Exception ex9) {
throw new AblRuntimeError("Error in static initializer", ex9);
}
try {
__$Grace_SuccessTests_rfield = Class.forName("facade.characters.grace.java.Grace_SuccessTests");
(__$successTest0_rfield = Grace.__$Grace_SuccessTests_rfield.getDeclaredMethod("successTest0", (Class[])Grace.__$continuousConditionArgArray)).setAccessible(true);
}
catch (Exception ex10) {
throw new AblRuntimeError("Error in static initializer", ex10);
}
try {
__$Grace_SuccessTestSensorFactories_rfield = Class.forName("facade.characters.grace.java.Grace_SuccessTestSensorFactories");
(__$successTestSensorFactory0_rfield = Grace.__$Grace_SuccessTestSensorFactories_rfield.getDeclaredMethod("successTestSensorFactory0", (Class[])Grace.__$sensorFactoryArgArray)).setAccessible(true);
}
catch (Exception ex11) {
throw new AblRuntimeError("Error in static initializer", ex11);
}
}
}
| [
"[email protected]"
] | |
3122a29d3e226924b9ccc3568d5c71a1f6b76c02 | 40e52fd3131186fd5388050ba55ad1cac4fb6196 | /src/main/java/com/sb/domain/Creneau.java | dd038b0b8c836a9efbf345891f384b49cd093a53 | [] | no_license | pascallefevre/education | bd37fa01862e255b8fb2a14cd301f7676bf80dfb | 586a6386223018d6f2184bbd645685788889c0ce | refs/heads/master | 2020-08-18T18:31:32.948115 | 2019-10-21T14:15:04 | 2019-10-21T14:15:04 | 215,821,108 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 2,895 | java | package com.sb.domain;
import java.util.Date;
import javax.persistence.Column;
import javax.persistence.Entity;
import javax.persistence.FetchType;
import javax.persistence.GeneratedValue;
import javax.persistence.GenerationType;
import javax.persistence.Id;
import javax.persistence.ManyToOne;
import javax.persistence.Table;
import javax.persistence.Temporal;
import javax.persistence.TemporalType;
import com.fasterxml.jackson.annotation.JsonView;
@Entity
@Table (name= "CRENEAU")
public class Creneau {
@Id
@Column(name="CRENEAU_ID")
@JsonView(View.Common.class)
@GeneratedValue(strategy = GenerationType.IDENTITY)
private int id;
@JsonView(View.Common.class)
private String startdate;
@JsonView(View.Common.class)
private String enddate;
//Chaque créneau pocède:
@JsonView(View.Common.class)
@ManyToOne(fetch=FetchType.EAGER)
private Classe classe;
@JsonView(View.Common.class)
@ManyToOne(fetch=FetchType.EAGER)
private Prof prof;
@JsonView(View.Common.class)
@ManyToOne(fetch=FetchType.EAGER)
private Matiere matiere;
@JsonView(View.Common.class)
@ManyToOne(fetch=FetchType.EAGER)
private Room room;
public Creneau(int id, String startdate, String enddate, Classe classe, Prof prof, Matiere matiere, Room room) {
super();
this.id = id;
this.startdate = startdate;
this.enddate = enddate;
this.classe = classe;
this.prof = prof;
this.matiere = matiere;
this.room = room;
}
public Creneau(String startdate, String enddate, Classe classe, Prof prof, Matiere matiere, Room room) {
super();
this.startdate = startdate;
this.enddate = enddate;
this.classe = classe;
this.prof = prof;
this.matiere = matiere;
this.room = room;
}
public Creneau(String startdate, String enddate) {
super();
this.startdate = startdate;
this.enddate = enddate;
}
public Creneau() {
super();
}
public int getId() {
return id;
}
public String getStartdate() {
return startdate;
}
public String getEnddate() {
return enddate;
}
public Classe getClasse() {
return classe;
}
public Prof getProf() {
return prof;
}
public Matiere getMatiere() {
return matiere;
}
public Room getRoom() {
return room;
}
public void setId(int id) {
this.id = id;
}
public void setStartdate(String startdate) {
this.startdate = startdate;
}
public void setEnddate(String enddate) {
this.enddate = enddate;
}
public void setClasse(Classe classe) {
this.classe = classe;
}
public void setProf(Prof prof) {
this.prof = prof;
}
public void setMatiere(Matiere matiere) {
this.matiere = matiere;
}
public void setRoom(Room room) {
this.room = room;
}
@Override
public String toString() {
return "Creneau [id=" + id + ", startdate=" + startdate + ", enddate=" + enddate + ", classe=" + classe
+ ", prof=" + prof + ", matiere=" + matiere + ", room=" + room + "]";
}
}
| [
"[email protected]"
] | |
c24bec8d0d3d2f8a0a24d15738f50871554d7e2e | 8acaf6881b641ae3cd7135824d2c61e44d09ae96 | /src/main/java/com/ronglian/hh/jdbc/BaseDao.java | 82415a1a8acfc910dbe4a20f664f31b150ae10c1 | [] | no_license | husyra/blog | 272888dbf114183ddb908670203e220016db8b2a | c1a99ead41a496965ec892edd9f06889e0f8b8f2 | refs/heads/master | 2023-01-08T18:01:11.919339 | 2020-11-05T02:23:50 | 2020-11-05T02:23:50 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 4,814 | java | package com.ronglian.hh.jdbc;
import com.ronglian.hh.util.StringUtils;
import java.lang.reflect.Field;
import java.lang.reflect.InvocationTargetException;
import java.lang.reflect.Method;
import java.sql.*;
import java.util.ArrayList;
import java.util.List;
public class BaseDao<T> {
/**
* 增删改查功能
* @param sql 数据库语句
* @param args 可以是多个参数,是对sql语句中的占位符“?”传入的参数
* @return n 操作所影响行数
*/
public int executeUpdate(String sql, Object... args){
Connection conn = null;
PreparedStatement ps = null;
int n=0;
try {
conn = JDBCUtil.getConnection();
ps = conn.prepareStatement(sql);
for(int i=0; i<args.length; i++){
ps.setObject(i+1, args[i]);
}
n = ps.executeUpdate();
} catch (SQLException e) {
e.printStackTrace();
}finally {
JDBCUtil.closeAll(conn, ps, null);
}
return n;
}
/**
* 查询一条记录
* @param sql
* @param c 传入的实体类,由于实体类未知,因此用Class<T>
* @param args 不定参数,是对sql语句中的占位符“?”传入的参数
* @return 返回的实体类
*/
public T selectOne(String sql, Class<T> c, Object... args){
List<T> list = this.selectMore(sql, c, args);
return list.isEmpty()? null : list.get(0);
}
/**
* 查询多条记录
* @param sql
* @param c 传入的实体类,由于实体类未知,因此用Class<T>
* @param args 不定参数,是对sql语句中的占位符“?”传入的参数
* @return 查询结果集
*/
public List<T> selectMore(String sql, Class<T> c, Object... args){
Connection conn = null;
PreparedStatement ps = null;
ResultSet rs = null;
List<T> list = new ArrayList<T>();
try {
conn = JDBCUtil.getConnection();
ps = conn.prepareStatement(sql);
for(int i=0;i<args.length; i++){
ps.setObject(i+1, args[i]);
}
rs = ps.executeQuery();
//从结果集中,获取数据库表相关信息
ResultSetMetaData metaData = rs.getMetaData();
while(rs.next()){
T obj = c.newInstance(); //创建实体类
//获得数据库表列数
for(int i=1; i<=metaData.getColumnCount(); i++){
//获取字段名称
String colName = metaData.getColumnLabel(i);
//拼接字段的setter方法名
String setterName = "set"+ StringUtils.toFirstUpper(colName);
//获取实体中所有声明(私有+公有)的属性
Field field = c.getDeclaredField(colName);
//获取实体类中所有声明(私有+公有)的形参为field.getType()类型,方法名为setterName的方法
Method setterMethod = c.getDeclaredMethod(setterName, field.getType());
// 通过结果集获取字段名为fieldName(与实体中的对应属性名完全相同)的值
Object val = rs.getObject(colName);
//执行实体对象中的setter方法,传入实参
setterMethod.invoke(obj, val);
}
list.add(obj);
}
} catch (SQLException | InstantiationException | IllegalAccessException e) {
e.printStackTrace();
}catch (NoSuchFieldException e) {
e.printStackTrace();
}catch (NoSuchMethodException e) {
e.printStackTrace();
}catch (InvocationTargetException e) {
e.printStackTrace();
}finally {
JDBCUtil.closeAll(conn, ps, rs);
}
return list;
}
/**
* 查询总记录数
* @param sql
* @param args 不定参数,需要对sql语句中的占位符“?”传入的参数数组
* @return 总记录数
*/
public int selectCount(String sql, Object... args){
Connection conn = null;
PreparedStatement ps = null;
ResultSet rs = null;
int n = 0;
try {
conn = JDBCUtil.getConnection();
ps = conn.prepareStatement(sql);
for(int i=0; i<args.length; i++){
ps.setObject(i+1, args[i]);
}
rs = ps.executeQuery();
if(rs.next()){
n = rs.getInt(1);
}
} catch (SQLException e) {
e.printStackTrace();
}finally {
JDBCUtil.closeAll(conn, ps ,rs);
}
return n;
}
}
| [
"[email protected]"
] | |
4355744d4531a2340968115274a7791e5db28807 | ce303cfa96a113120b0b0593af1dde20d148d627 | /src/test/java/rps/game/AppTest.java | 709c375d1ac1594ebd6eeb27e1ff82aa8d837674 | [] | no_license | dim42/rps-game | 7222be2c2d48a8f63cf918dd96935090d36a1098 | 827431ef80993978061f7f3c259bb6ffc5ebda30 | refs/heads/master | 2020-08-26T14:51:18.383978 | 2019-06-13T06:06:01 | 2019-06-13T06:06:01 | 217,045,970 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,267 | java | package rps.game;
import org.junit.Test;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import java.util.Map;
import static java.lang.String.format;
import static org.junit.Assert.assertTrue;
import static rps.game.Shape.Rock;
public class AppTest {
private static final Logger log = LoggerFactory.getLogger(AppTest.class);
@Test
public void testGame() {
Game game = new Game();
game.startGame();
Shape humanShape = Rock;
for (int g = 0; g < 100; g++) {
Map<String, Object> map = game.runGame(humanShape);
Integer result = (Integer) map.get("result");
Shape robotShape = (Shape) map.get("robot");
if (result < 0) {
humanShape = robotShape.itsWinner();
} else if (result > 0) {
// the same
} else {
humanShape = robotShape.itsWinner();
}
}
String response = format("Total games:%d, wins:%d, losses:%d, draws:%d",
game.getGamesTotal(), game.getWins(), game.getLosses(), game.getDraws());
log.info("Result:{}", response);
assertTrue(format("%s, %s", game.getWins(), game.getLosses()), game.getWins() < game.getLosses());
}
}
| [
"[email protected]"
] | |
f7a194ba6fb51fd8c0a79a71cd43b9616cfff6c6 | 0f23178a62f1692e3f4a94efeedd21d3142efd7d | /net.menthor.editor/src/net/menthor/editor/v2/ui/operation/diagram/RenameLabelOperation.java | 7ca4f3dd3b4edb21a277b992a2da0e9cb6b10d7c | [
"MIT"
] | permissive | EdeysonGomes/menthor-editor | b59ca520eea89de3f7c28a923a9a483cca0b4a21 | 1618b272d8976688dff46fc9e9e35eb9371cd0f4 | refs/heads/master | 2023-03-13T15:29:56.984131 | 2021-03-10T20:49:35 | 2021-03-10T20:49:35 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 2,590 | java | package net.menthor.editor.v2.ui.operation.diagram;
import org.tinyuml.draw.CompositeNode;
import org.tinyuml.draw.Label;
import org.tinyuml.ui.diagram.OntoumlEditor;
import org.tinyuml.umldraw.ClassElement;
import RefOntoUML.Element;
import net.menthor.editor.v2.OclDocument;
import net.menthor.editor.v2.ui.controller.ProjectUIController;
import net.menthor.editor.v2.ui.operation.DiagramOperation;
import net.menthor.editor.v2.ui.operation.OperationType;
public class RenameLabelOperation extends DiagramOperation {
private static final long serialVersionUID = 5701807952287882396L;
protected Label label;
protected String text, oldText;
protected CompositeNode parent;
public RenameLabelOperation(OntoumlEditor editor, Label aLabel, String aText) {
this.ontoumlEditor = editor;
this.operationType = OperationType.RENAME_LABEL;
label = aLabel;
text = aText;
oldText = aLabel.getNameLabelText();
if (aLabel.getParent()!=null) { parent = aLabel.getParent().getParent();}
}
protected void runWithoutNotifying(){
String oldName = label.getNameLabelText();
label.setNameLabelText(text);
// replace all references in constraints
if (parent instanceof ClassElement){
for(OclDocument oclDoc: ProjectUIController.get().getProject().getOclDocList()){
String currentConstraints = oclDoc.getContentAsString();
String newConstraints = currentConstraints.replaceAll(oldName,text);
oclDoc.setContentAsString(newConstraints);
}
}
System.out.println(runMessage());
}
protected void undoWithoutNotifying(){
label.setNameLabelText(oldText);
// replace all references in constraints
if (parent instanceof ClassElement){
for(OclDocument oclDoc: ProjectUIController.get().getProject().getOclDocList()){
String currentConstraints = oclDoc.getContentAsString();
String newConstraints = currentConstraints.replaceAll(text,oldText);
oclDoc.setContentAsString(newConstraints);
}
}
System.out.println(undoMessage());
}
@Override
public void run() {
super.run();
runWithoutNotifying();
notifier.notifyChange(this, (Element)parent.getModelObject());
}
@Override
public void undo(){
super.undo();
undoWithoutNotifying();
notifier.notifyChange(this, (Element)parent.getModelObject());
}
@Override
public String undoMessage(){
return super.undoMessage()+parent+" to "+oldText;
}
@Override
public String runMessage(){
return super.runMessage()+parent+" to "+text;
}
}
| [
"[email protected]"
] | |
f242fce979b807ad5a4c9c8b577c18d090a4aad9 | a43e6bcc46354381f7ccb0ca229dc87910025fd2 | /SNMPCore/src/main/java/com/zh/snmp/snmpcore/domain/DeviceNode.java | 2ba46f59c4e017655a34c3f5c64d69e44d903c39 | [] | no_license | golyo/snmp-csabi | f17f1507c093566c96e307baf1c70a86b1d5edb7 | d2ed703d8f541facc7c240f913579bb10e5ab472 | refs/heads/master | 2022-07-15T03:50:49.166930 | 2020-01-29T17:26:29 | 2020-01-29T17:26:29 | 46,874,696 | 0 | 0 | null | 2022-06-20T23:35:19 | 2015-11-25T16:51:34 | Java | UTF-8 | Java | false | false | 4,455 | java | package com.zh.snmp.snmpcore.domain;
import java.io.Serializable;
import java.util.Deque;
import java.util.HashMap;
import java.util.LinkedList;
import java.util.List;
import java.util.Map;
import javax.xml.bind.annotation.XmlAttribute;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlRootElement;
import javax.xml.bind.annotation.XmlTransient;
/**
*
* @author Golyo
*/
@XmlRootElement(name="deviceConfig")
public class DeviceNode extends DefaultNode implements Serializable {
private boolean selected;
private String code;
private List<DinamicValue> dinamics;
public DeviceNode() {
super();
dinamics = new LinkedList<DinamicValue>();
}
public DeviceNode(ConfigNode node) {
this();
code = node.getCode();
dinamics = node.getDinamics();
for (ConfigNode child: node.getChildren()) {
getChildren().add(new DeviceNode(child));
}
}
@XmlAttribute
public boolean isSelected() {
return selected;
}
public void setSelected(boolean selected) {
this.selected = selected;
if (selected) {
if (parent != null) {
((DeviceNode)parent).setSelected(selected);
}
} else {
for (DefaultNode child: children) {
((DeviceNode)child).setSelected(selected);
}
}
}
@XmlAttribute
public String getCode() {
return code;
}
public void setCode(String code) {
this.code = code;
}
@XmlElement(name="deviceNode")
public List<DeviceNode> getChildren() {
return (List<DeviceNode>)children;
}
public void setChildren(List<DeviceNode> children) {
this.children = children;
}
@XmlElement(name="dinamic")
public List<DinamicValue> getDinamics() {
return dinamics;
}
public void setDinamics(List<DinamicValue> dinamics) {
this.dinamics = dinamics;
}
public DeviceNode findChild(String code) {
for (DeviceNode child: getChildren()) {
if (child.getCode().equals(code)) {
return child;
}
}
return null;
}
public DeviceNode findChainChild(Deque<String> codes) {
String find = codes.pop();
DeviceNode node = findChild(find);
if (codes.isEmpty()) {
return node;
} else if (node != null) {
return node.findChainChild(codes);
} else {
return null;
}
}
@XmlTransient
public List<String> getSelectedChildList() {
List<String> ret = new LinkedList<String>();
appendSelectedChildList(ret);
return ret;
}
public boolean setDinamicValue(String code, String value) {
DinamicValue val = findDinamic(code);
if (val != null) {
val.setValue(value);
return true;
} else {
return false;
}
}
public DinamicValue findDinamic(String code) {
if (dinamics != null && !dinamics.isEmpty()) {
for (DinamicValue val: dinamics) {
if (val.getCode().equals(code)) {
return val;
}
}
}
return null;
}
private void appendSelectedChildList(List<String> childList) {
boolean found = false;
for (DeviceNode child: getChildren()) {
if (child.selected) {
found = true;
child.appendSelectedChildList(childList);
}
}
if (!found) {
childList.add(getNodePath());
}
}
@XmlTransient
public String getNodePath() {
StringBuilder sb = new StringBuilder();
appendPath(sb);
return sb.toString();
}
private void appendPath(StringBuilder sb) {
sb.insert(0, code);
if (parent != null) {
sb.insert(0, '.');
((DeviceNode)parent).appendPath(sb);
}
}
private void appendDinamicValues(Map<String, String> values) {
for (DinamicValue dv: dinamics) {
values.put(dv.getCode(), dv.getValue());
}
for (DeviceNode child: getChildren()) {
if (child.isSelected()) {
child.appendDinamicValues(values);
}
}
}
}
| [
"szetamas@281d99d8-1373-06f8-7e24-8d21ac57022e"
] | szetamas@281d99d8-1373-06f8-7e24-8d21ac57022e |
094d501ec121c27cd09eae7f7414bd4e9e9d70c9 | ac7516bbb025e8f30b8c5c64cdb4d4d868edd7ec | /Minor Project 2/src/main/java/com/abhishek/oauth2/project/model/Address.java | 2dad6df9d4de68438484f8743296f028991ca47c | [] | no_license | abhi-7/sampleTesrtGit | 5ee9732b222eb11a600b0702f25659860a6f09e1 | 1923eea6e06c653f5e1eec0ce12b9d14d6e331cf | refs/heads/master | 2022-12-05T14:50:18.772746 | 2020-08-16T05:12:11 | 2020-08-16T05:12:11 | 287,875,651 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 763 | java | package com.abhishek.oauth2.project.model;
import java.io.Serializable;
import javax.persistence.Column;
import javax.persistence.Entity;
import javax.persistence.GeneratedValue;
import javax.persistence.GenerationType;
import javax.persistence.Id;
import javax.persistence.Table;
import lombok.Getter;
import lombok.Setter;
@Entity
@Table(name = "ADDRESS")
@Getter
@Setter
public class Address implements Serializable {
@Id
@GeneratedValue(strategy = GenerationType.AUTO)
@Column(name = "ID", updatable = false, nullable = false)
private Long id = null;
@Column(name = "STREET")
private String street;
@Column(name = "HOUSE_NUMBER")
private String houseNumber;
@Column(name = "ZIP_CODE")
private String zipCode;
}
| [
"[email protected]"
] | |
04951bb980d434aacc1ac7acf48b315136079016 | 5d100cb300e6524c1d651e694ca4ab9757e56fa1 | /hibernate/hibernateInitial/src/main/java/com/anshul/hibernateInitial/App.java | 642ccf24179af2ca0b4384404a9c662b63f0d581 | [] | no_license | anshul7931/SpringHibJPA | f25b52f8a2e09778e2073cdfbc8d951f19d520e6 | ec53f6ea048cc3b9f1fd13f5385b8b02d214eebc | refs/heads/master | 2020-03-25T19:42:32.354397 | 2018-09-06T01:46:40 | 2018-09-06T01:46:40 | 144,096,124 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 4,037 | java | package com.anshul.hibernateInitial;
import org.hibernate.Session;
import org.hibernate.SessionFactory;
import org.hibernate.Transaction;
import org.hibernate.cfg.Configuration;
import org.hibernate.service.ServiceRegistry;
import org.hibernate.service.ServiceRegistryBuilder;
/**
* Hibernate is ORM i.e. Object relational mapping tool.
* If we want to connect to database then we have to provide configuration.
* you can provide configuration in hibernate configuration file where you
* have to provide database dialect ,driver class, connection url, username and
* password in hibernate.cfg.xml file.you also need to specify that this class is
* allowed to store its object in database using @Entity annotation and @Id is used
* for specifying primary key.Whenever you have to make changes in database at that
* time you need to follow acid properties.
*
* Right click on project and select new->others
* search for hibernate configuration file(cfg.xml)
* Here its hibernate.cfg.xml(In java folder, not in package)
*
* After defining this file we need to configure this file using configuration object
*
*/
public class App
{
public static void main( String[] args )
{
Alien alien = new Alien();
/*We can use embeddable annotation in AlienName.java to embed the values in Alien table,
* without creation of new table.
*/
AlienName aname = new AlienName();
aname.setFname("Anshul");
aname.setLname("Goel");
alien.setAid(4);
// alien.setAname("Ankush");
alien.setAname(aname);
alien.setColor("White");
/*In order to persist these values, we need to use Session interface's save method.
* But session interface is part of hibernate framework.So we need to add libraries
* of hibernate.Along with it we need to add sql dependencies also.
*
* After this we have to add hibernate plugin in eclipse(hibernate tools under jboss tools)
*
* Now Session is an interface so we cant make its object.So we can use SessionFactory
* to initialise session. SessionFactory is also a interface now. So we make a call to
* Configuration class in order to initialise it.
*
*
* In order to deal with tables we need to use Transaction, to sustain the ACID properties.
*
* Now we can either create a table manually or we can automate the table creation by:
* Adding a property in hibernate.cfg.xml
* <property name="hbm2ddl.auto">update</property> -> Update the changes
* <property name="hbm2ddl.auto">Create</property> -> creates the entity everytime
*/
Configuration con = new Configuration().configure("hibernate.cfg.xml").addAnnotatedClass(Alien.class);
ServiceRegistry reg = new ServiceRegistryBuilder().applySettings(con.getProperties()).buildServiceRegistry();
SessionFactory sf= con.buildSessionFactory(reg);
Session session = sf.openSession();
Transaction tx = session.beginTransaction();
session.save(alien);//Persisting values in table.
/*Here alien is in persistent state now till session is destroyed,
* or transaction is commited. If we add alien.setColor("Grey"); after session.save
* then also this value will be added in the database.
*
* We can remove the persistent state using session.detach(alien); after the commit
*/
tx.commit();
/*In order to fetch value from db, we need to use get method.
* get accepts 2 params: class name and serialisable key
*/
Alien gettingAnAlien = (Alien)session.get(Alien.class, alien.getAid());
System.out.println(gettingAnAlien);
}
}
| [
"[email protected]"
] | |
547cae97bc6c6ffc450afeb3cfcac8bc4f3e572b | 458843e7487052afeda60e6c0346db6146ccd710 | /JavaCurrent/GenericsChallenge/src/zeus/jim/SoccerPlayer.java | 9dd18cc83db498433f92fd6e81362c7dc02604df | [] | no_license | jimenez994/Java | 88f8cb53b6b48d39559e99e80b29dc37d1fe5961 | 257d3fed5ec5a4102305c22a87515f7523a07a52 | refs/heads/master | 2023-01-28T04:48:24.626515 | 2020-03-16T23:57:31 | 2020-03-16T23:57:31 | 116,172,487 | 2 | 0 | null | 2023-01-25T03:43:38 | 2018-01-03T19:12:24 | HTML | UTF-8 | Java | false | false | 130 | java | package zeus.jim;
public class SoccerPlayer extends Player {
public SoccerPlayer(String name) {
super(name);
}
}
| [
"[email protected]"
] | |
45bfdb20d70d3107a8c52691898be6d4d745c41c | 4c313c2df430abc96186e7443c552554de6a2e4b | /src/main/java/org/vhmml/controller/UserController.java | 3e137bc3b726a12e8da82f1ccb6175a1b6b97818 | [] | no_license | Williamstraub/vhmml | 1be8f5748087a356e250ed5d64e44b63a9681952 | 2d8721456680b37a59b58d1c9ca6fee64f794f38 | refs/heads/master | 2021-01-11T12:30:49.390505 | 2017-02-24T16:54:44 | 2017-02-24T16:54:44 | 76,292,036 | 2 | 0 | null | null | null | null | UTF-8 | Java | false | false | 10,530 | java | package org.vhmml.controller;
import java.io.IOException;
import java.util.List;
import java.util.Map;
import javax.servlet.http.HttpServletRequest;
import javax.validation.Valid;
import org.apache.commons.collections4.CollectionUtils;
import org.apache.commons.collections4.MapUtils;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.http.HttpStatus;
import org.springframework.http.ResponseEntity;
import org.springframework.security.core.Authentication;
import org.springframework.security.core.context.SecurityContextHolder;
import org.springframework.security.core.userdetails.UsernameNotFoundException;
import org.springframework.stereotype.Controller;
import org.springframework.validation.BindingResult;
import org.springframework.web.bind.annotation.ModelAttribute;
import org.springframework.web.bind.annotation.PathVariable;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestMethod;
import org.springframework.web.bind.annotation.ResponseBody;
import org.springframework.web.servlet.ModelAndView;
import org.vhmml.controller.helper.UserControllerHelper;
import org.vhmml.controller.helper.UserControllerHelper.SaveAction;
import org.vhmml.entity.User;
import org.vhmml.exception.AuthenticationFailedException;
import org.vhmml.exception.UserDisabledException;
import org.vhmml.form.ChangePasswordForm;
import org.vhmml.form.ForgotPasswordForm;
import org.vhmml.form.RegistrationForm;
import org.vhmml.service.UserService;
import org.vhmml.web.VhmmlMessage;
import org.vhmml.web.VhmmlMessage.Severity;
import org.vhmml.web.VhmmlMessageUtil;
import org.vhmml.web.VhmmlSession;
import com.fasterxml.jackson.databind.ObjectMapper;
@Controller
@RequestMapping("/user")
public class UserController extends BaseValidationController {
public static final String VIEW_HOME = "static/home";
public static final String VIEW_ACCOUNT_SETTINGS = "user/account-settings";
public static final String VIEW_CHANGE_PASSWORD = "user/change-password";
public static final String VIEW_FORGOT_PASSWORD = "user/forgot-password";
public static final String REQUEST_ATT_CHANGE_PASSWORD_FORM = "changePasswordForm";
public static final String REQUEST_ATT_FORGOT_PASSWORD_FORM = "forgotPasswordForm";
@Autowired
private UserService userService;
@Autowired
private UserControllerHelper userControllerHelper;
@Autowired
private VhmmlMessageUtil messageUtil;
private static final ObjectMapper objectMapper = new ObjectMapper();
@RequestMapping(value = "/accountSettings", method = RequestMethod.GET)
public ModelAndView viewAccountSettings() {
Authentication authentication = SecurityContextHolder.getContext().getAuthentication();
User user = (User)authentication.getPrincipal();
return userControllerHelper.getAccountSettingsView(SaveAction.SAVE_ACCOUNT_SETTINGS, user);
}
@RequestMapping(value = "/accountSettings", method = RequestMethod.POST)
public ModelAndView saveAccountSettings(@ModelAttribute @Valid RegistrationForm registrationForm, BindingResult result) throws IOException {
// the user can't see or change internal notes, so we have to retrieve them and set them on the form so they don't get erased
User user = userService.findById(registrationForm.getId());
registrationForm.setInternalNotes(user.getInternalNotes());
return userControllerHelper.saveAccountSettings(registrationForm, result, VIEW_HOME);
}
@RequestMapping(value = "/changePassword", method = RequestMethod.GET)
public ModelAndView viewChangePassword(HttpServletRequest request) throws IOException {
ModelAndView modelAndView = new ModelAndView(VIEW_CHANGE_PASSWORD);
VhmmlSession session = VhmmlSession.getSession(request);
if(session.isPasswordExpired()) {
VhmmlMessage message = new VhmmlMessage("Your password has expired and must be changed before you can continue.", Severity.ERROR);
modelAndView.addObject(ControllerConstants.REQUEST_ATT_PAGE_MESSAGES, objectMapper.writeValueAsString(message));
}
modelAndView.addObject(REQUEST_ATT_CHANGE_PASSWORD_FORM, new ChangePasswordForm());
return modelAndView;
}
@RequestMapping(value = "/changePassword", method = RequestMethod.POST)
public ModelAndView changePassword(@ModelAttribute @Valid ChangePasswordForm changePasswordForm, BindingResult result, HttpServletRequest request) throws IOException {
ModelAndView modelAndView = new ModelAndView(VIEW_CHANGE_PASSWORD);
boolean errors = result.hasErrors();
if(!errors) {
try {
String username = null;
Authentication auth = SecurityContextHolder.getContext().getAuthentication();
if(auth.getPrincipal() instanceof User) {
User user = (User)auth.getPrincipal();
username = user.getUsername();
} else {
// if the user isn't logged in, they may have an expired password, in that case the VhmmlAuthSuccessHandler
// will have logged them out and put their username on the session so we can change their password
VhmmlSession session = VhmmlSession.getSession(request);
username = session.getUsername();
}
userService.changePassword(username, changePasswordForm.getCurrentPassword(), changePasswordForm.getNewPassword());
VhmmlSession session = VhmmlSession.getSession(request);
session.setPasswordExpired(false);
modelAndView = new ModelAndView(VIEW_HOME);
VhmmlMessage message = new VhmmlMessage("Password changed successfully.");
modelAndView.addObject(ControllerConstants.REQUEST_ATT_PAGE_MESSAGES, objectMapper.writeValueAsString(message));
} catch(AuthenticationFailedException e) {
result.rejectValue("currentPassword", null, e.getMessage());
errors = true;
}
}
if(errors) {
modelAndView.addObject(REQUEST_ATT_CHANGE_PASSWORD_FORM, changePasswordForm);
addFieldErrorsToModel(modelAndView, result);
}
return modelAndView;
}
@RequestMapping(value = "/forgotPassword", method = RequestMethod.GET)
public ModelAndView viewForgotPassword() {
ModelAndView modelAndView = new ModelAndView(VIEW_FORGOT_PASSWORD);
modelAndView.addObject(REQUEST_ATT_FORGOT_PASSWORD_FORM, new ForgotPasswordForm());
return modelAndView;
}
@RequestMapping(value = "/forgotPassword", method = RequestMethod.POST)
public ModelAndView submitForgotPassword(@ModelAttribute @Valid ForgotPasswordForm forgotPasswordForm, BindingResult result) throws IOException {
ModelAndView modelAndView = new ModelAndView(VIEW_FORGOT_PASSWORD);
boolean errors = result.hasErrors();
if(!errors) {
try {
userService.sendTemporaryPassword(forgotPasswordForm.getEmailAddress());
modelAndView = new ModelAndView(VIEW_HOME);
VhmmlMessage message = new VhmmlMessage("A temporary password has been sent to your email address. Upon signing in with the temporary password you will be required to create a new password.");
modelAndView.addObject(ControllerConstants.REQUEST_ATT_PAGE_MESSAGES, objectMapper.writeValueAsString(message));
} catch(UsernameNotFoundException e) {
result.rejectValue("emailAddress", null, e.getMessage());
errors = true;
} catch(UserDisabledException e) {
VhmmlMessage message = new VhmmlMessage(e.getMessage(), Severity.WARN);
modelAndView.addObject(ControllerConstants.REQUEST_ATT_PAGE_MESSAGES, objectMapper.writeValueAsString(message));
errors = true;
} catch(Exception e) {
VhmmlMessage message = new VhmmlMessage("Password reset failed, an unexpected error has occurred. If the error persists please contact vHMML support.", Severity.ERROR);
modelAndView.addObject(ControllerConstants.REQUEST_ATT_PAGE_MESSAGES, objectMapper.writeValueAsString(message));
errors = true;
}
}
if(errors) {
modelAndView.addObject(REQUEST_ATT_FORGOT_PASSWORD_FORM, forgotPasswordForm);
addFieldErrorsToModel(modelAndView, result);
}
return modelAndView;
}
@ResponseBody
@RequestMapping(value = "/changePassword/validationRules", method = RequestMethod.GET)
public Map<String, Map<String, Map<String, Object>>> getChangePasswordValidationRules() {
return super.getValidationRules(ChangePasswordForm.class);
}
@ResponseBody
@RequestMapping(value = "/forgotPassword/validationRules", method = RequestMethod.GET)
public Map<String, Map<String, Map<String, Object>>> getForgotPasswordValidationRules() {
return super.getValidationRules(ForgotPasswordForm.class);
}
@ResponseBody
@RequestMapping("/validateSession")
public boolean validateSession(HttpServletRequest request) {
return request.isRequestedSessionIdValid();
}
@ResponseBody
@RequestMapping(value = "/acceptReadingRoomAgreement", method = RequestMethod.PUT)
public boolean acceptReadingRoomAgreement(HttpServletRequest request) {
VhmmlSession session = VhmmlSession.getSession(request);
session.setAcceptedReadingRoomAgreement(true);
Object principal = SecurityContextHolder.getContext().getAuthentication().getPrincipal();
if(principal instanceof User) {
User user = (User)principal;
userService.acceptReadingRoomAgreement(user.getId());
}
return request.isRequestedSessionIdValid();
}
@ResponseBody
@RequestMapping(value = "/endSession", method = RequestMethod.POST)
public ResponseEntity<String> endSession(HttpServletRequest request) {
request.getSession().invalidate();
return new ResponseEntity<String>("success", HttpStatus.OK);
}
@ResponseBody
@RequestMapping(value = "/messages", method = RequestMethod.GET)
public Map<String, VhmmlMessage> getMessages(HttpServletRequest request) throws IOException {
Map<String, VhmmlMessage> messages = messageUtil.getGlobalMessages();
VhmmlSession session = VhmmlSession.getSession(request);
List<String> removedMessages = session != null ? session.getRemovedMessages() : null;
if(MapUtils.isNotEmpty(messages) && CollectionUtils.isNotEmpty(removedMessages)) {
for(String messageKey : removedMessages) {
messages.remove(messageKey);
}
}
return messages;
}
@RequestMapping(value = "/messages/remove/{messageKey}", method = RequestMethod.POST)
public ResponseEntity<String> removeGlobalMessage(@PathVariable String messageKey, HttpServletRequest request) throws IOException {
ResponseEntity<String> response = new ResponseEntity<String>("Message removed", HttpStatus.OK);
VhmmlSession session = VhmmlSession.getSession(request);
session.getRemovedMessages().add(messageKey);
return response;
}
} | [
"[email protected]"
] | |
d6314c8f635b7f79012d38146169ccc51219ad90 | f88326caac7739d025b7fc9660a9d3c614cff6c4 | /SpringProject/src/main/java/com/spring/main/DestroyMain.java | 39f2ce404fe8bd151fc4db1927a195ca13b3eb09 | [] | no_license | JluKobe/MyRepo | 841fbafed7641df44d15755b21c0948b54770749 | 3e74a7b0a498895f13d15504e931fdccc8fd7f58 | refs/heads/master | 2023-04-21T13:39:47.866712 | 2021-05-10T02:07:00 | 2021-05-10T02:07:00 | 307,927,254 | 1 | 0 | null | null | null | null | UTF-8 | Java | false | false | 658 | java | package com.spring.main;
import com.spring.bean.lifecycle.MyDestroyBean1;
import com.spring.bean.lifecycle.MyDestroyBean2;
import org.springframework.context.support.AbstractApplicationContext;
import org.springframework.context.support.ClassPathXmlApplicationContext;
public class DestroyMain {
public static void main(String[] args) {
AbstractApplicationContext context = new ClassPathXmlApplicationContext("BeansDestroy.xml");
MyDestroyBean1 bean = (MyDestroyBean1) context.getBean("myDestroyBean");
MyDestroyBean2 bean2 = (MyDestroyBean2) context.getBean("myDestroyBean2");
context.registerShutdownHook();
}
}
| [
"[email protected]"
] | |
b28e56054480d4c03851429d6687f5af279abf92 | ad63e7b98d35b531c2c6fff312c2e0d9ba648abc | /ProjectOS 2013/src/server/game/objects/Object.java | f824e36771ca5f12e94d3163f3117f4321453dba | [] | no_license | SiF2/Project_PS | 16981e3442b2421e6ec8393a0a2901bf91ebc242 | 76b850be612437e4cbb779f6957463b8895bd4a6 | refs/heads/master | 2021-01-10T15:45:05.329769 | 2013-03-05T21:48:16 | 2013-03-05T21:48:16 | 8,542,662 | 0 | 5 | null | null | null | null | UTF-8 | Java | false | false | 638 | java | package server.game.objects;
import server.Server;
public class Object {
public int objectId;
public int objectX;
public int objectY;
public int height;
public int face, faceOriginal;
public int type;
public int newId;
public int tick;
public Object(int ID, int X, int Y, int Height, int Face, int Type, int NewId, int Tick) {
Object p = Server.objectManager.getObject(X, Y, Height);
if (p != null) {
if (ID == p.objectId) {
return;
}
}
objectId = ID;
objectX = X;
objectY = Y;
height = Height;
face = Face;
type = Type;
newId = NewId;
tick = Tick;
Server.objectManager.addObject(this);
}
} | [
"[email protected]"
] | |
91148f7d43a7f0ee41ff81dc8601c2130ad107e6 | db59fb37946e413a390835f48e6fe4dabd6de962 | /src/main/java/br/com/ifce/jwallet/validator/UsuarioValidator.java | dc1712b7de19959f8c75fe89a9240ed95e2653ee | [] | no_license | Keylla/carteiravirtual | 026f2af84a7fbc9d0619469e5a5a196a5b1f37f8 | a118d8ffecce103841a8f20b1328550001af823e | refs/heads/master | 2021-06-03T13:38:29.390666 | 2015-12-20T23:51:35 | 2015-12-20T23:51:35 | 37,984,022 | 0 | 1 | null | 2021-03-06T16:46:30 | 2015-06-24T12:50:44 | Java | UTF-8 | Java | false | false | 882 | java | package br.com.ifce.jwallet.validator;
import org.springframework.validation.Errors;
import org.springframework.validation.Validator;
import br.com.ifce.jwallet.model.Usuario;
import br.com.ifce.jwallet.service.UsuarioService;
public class UsuarioValidator implements Validator{
Usuario usuarioBanco;
@Override
public boolean supports(Class clazz) {
return Usuario.class.isAssignableFrom(clazz);
}
@Override
public void validate(Object target, Errors errors) {
Usuario usuario = (Usuario) target;
this.usuarioBanco = new UsuarioService().selecionarUsuario(usuario.getUserName());
if (usuarioBanco == null){
errors.rejectValue("userName", "usuario.invalido");
}else if(!usuarioBanco.getSenha().equals(usuario.getSenha())){
errors.rejectValue("senha", "senha.invalido");
}
}
public Usuario getusuarioBanco() {
return this.usuarioBanco;
}
}
| [
"[email protected]"
] | |
a61c491b8774b260eb8da89768b8ef1217cc9512 | 9b64d87ba7988db4343fd1b549446155c5b3850f | /src/main/java/com/leolai/flightheaded/services/UserService.java | e63241d42f13ad5e3d67b258559de884bf55a79a | [] | no_license | leolai2010/Java_Project | 08b8f13aeb5802c6f7205c112e5fe2285cab479c | d514e38ed70bddfd7cb9492f6a796284a12c55d6 | refs/heads/master | 2020-03-24T21:41:45.767208 | 2018-08-28T23:54:04 | 2018-08-28T23:54:04 | 143,042,457 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,603 | java | package com.leolai.flightheaded.services;
import java.util.Optional;
import org.mindrot.jbcrypt.BCrypt;
import org.springframework.stereotype.Service;
import com.leolai.flightheaded.models.User;
import com.leolai.flightheaded.repositories.UserRepository;
@Service
public class UserService {
private final UserRepository userRepository;
public UserService(UserRepository userRepository) {
this.userRepository = userRepository;
}
// register user and hash their password
public User registerUser(User user) {
String hashed = BCrypt.hashpw(user.getPassword(), BCrypt.gensalt());
user.setPassword(hashed);
return userRepository.save(user);
}
// find user by email
public User findByEmail(String email) {
return userRepository.findByEmail(email);
}
// find user by id
public User findUserById(Long id) {
Optional<User> u = userRepository.findById(id);
if(u.isPresent()) {
return u.get();
} else {
return null;
}
}
// authenticate user
public boolean authenticateUser(String email, String password) {
// first find the user by email
User user = userRepository.findByEmail(email);
// if we can't find it by email, return false
if(user == null) {
return false;
} else {
// if the passwords match, return true, else, return false
if(BCrypt.checkpw(password, user.getPassword())) {
return true;
} else {
return false;
}
}
}
} | [
"[email protected]"
] | |
6b34432486a261cb5ec57ca6f925ccfef17b4dac | ec686db891af9c441a9fc703b0cbfc46fe8b5fd9 | /java/algorithm/src/net/phoenix/nlp/pos/chmm/POSTerm.java | 9538379ea5de2fa8d3dd8c648f8556afa123d6d2 | [] | no_license | witnesslq/jigsaw-nlp | 5a4235f8b5cdc4edfed39d4ec035a828a4ccda29 | 9064da8beb7a0e4ade395aad799e07a56981bb4d | refs/heads/master | 2021-01-21T23:09:38.726601 | 2014-06-08T10:51:16 | 2014-06-08T10:51:16 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 529 | java | package net.phoenix.nlp.pos.chmm;
import net.phoenix.nlp.Nature;
import net.phoenix.nlp.Term;
/**
* 在POS操作中使用到的Term
* @author lixf
*
*/
public interface POSTerm extends Term {
/**
* 获得这个term的所有词性
*
* @return
*/
public TermNatures getTermNatures();
/**
*
* @param nature
*/
public void setNature(Nature nature);
/**
*
* 等同于setNature(Nature.valueOf(nature));
* @param nature
*/
public void setNature(String nature);
} | [
"[email protected]"
] | |
37bb6dbfb06d03cdc8ad4bf4e3bbf28593364879 | 89789e8b17e4beedb05b49ef99edd74d99b6cb71 | /src/main/java/com/example/sweater/GreetingController.java | 718647126c100d491d71c51e5859a12c3e78cfaa | [] | no_license | asadomsk/sweater | ebbc2d1bb0d90c440761802c9c31aebff85ff29e | 1367707bac2c536643fb37386dc1df5c80e72049 | refs/heads/master | 2022-11-16T17:45:47.981823 | 2020-07-07T14:36:23 | 2020-07-07T14:36:23 | 277,839,183 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,731 | java | package com.example.sweater;
import org.springframework.stereotype.Controller;
import org.springframework.ui.Model;
import org.springframework.web.bind.annotation.DeleteMapping;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.PostMapping;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestParam;
import com.example.sweater.domain.Message;
import com.example.sweater.repos.MessageRepos;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.web.bind.annotation.ResponseBody;
//test comment
@Controller // This means that this class is a Controller
@RequestMapping(path="/demo") // This means URL's start with /demo (after Application path)
public class GreetingController {
@Autowired // This means to get the bean called userRepository
// Which is auto-generated by Spring, we will use it to handle the data
private MessageRepos messageRepository;
@PostMapping(path="/add") // Map ONLY POST Requests
public @ResponseBody String addNewMessage (@RequestParam String text
, @RequestParam String tag) {
// @ResponseBody means the returned String is the response, not a view name
// @RequestParam means it is a parameter from the GET or POST request
Message m = new Message();
m.setText(text);
m.setTag(tag);
messageRepository.save(m);
return "Saved";
}
@GetMapping(path="/all")
public @ResponseBody Iterable<Message> getAllMessages() {
// This returns a JSON or XML with the messages
return messageRepository.findAll();
}
}
| [
"[email protected]"
] | |
70988df21105a114f2f680cfd6362874fb924f08 | 26a430c35044b9aa38e2eea97904aebc289d653e | /exeWeb/src/main/java/com/exe/web/task/QuartzManager.java | b8ce0530cfebf53f637645f62fd5b80f2b30800e | [] | no_license | wwwK/DyApi | cfd54f75dcd210945c1f8547fe52280499515040 | 2dd2794cb9848def4a054cb65b31158edaf0e2b4 | refs/heads/master | 2023-07-15T07:49:43.556141 | 2021-07-22T07:35:16 | 2021-07-22T07:35:16 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 4,834 | java | package com.exe.web.task;
import java.util.HashMap;
import org.quartz.CronScheduleBuilder;
import org.quartz.CronTrigger;
import org.quartz.DateBuilder;
import org.quartz.DateBuilder.IntervalUnit;
import org.quartz.Job;
import org.quartz.JobBuilder;
import org.quartz.JobDetail;
import org.quartz.JobKey;
import org.quartz.Scheduler;
import org.quartz.SchedulerException;
import org.quartz.Trigger;
import org.quartz.Trigger.TriggerState;
import org.quartz.TriggerBuilder;
import org.quartz.TriggerKey;
import org.quartz.impl.StdSchedulerFactory;
public class QuartzManager
{
Scheduler scheduler = null;
public static void main(String[] args)
{
QuartzManager qm = get();
TaskDO task = new TaskDO();
task.setBeanClass("com.exe.web.task.TestJob");
task.setCronExpression("0/10 * * * * ?");
task.setJobGroup("test");
task.setJobName("com");
task.setId("1");
task.setParams("1");
qm.addJob(task);
try{
task.setBeanClass(null);
task.setId(null);
task.setCronExpression(null);
task.setParams(null);
task.setJobName("1");
String state=qm.getState(task);
System.out.println("------"+state);
}catch (Exception e){
e.printStackTrace();
}
}
private static HashMap<String, QuartzManager> qmMap = new HashMap();
public static QuartzManager get()
{
String key = "default";
QuartzManager qm = (QuartzManager)qmMap.get(key);
if (qm == null)
{
qm = new QuartzManager();
qmMap.put(key, qm);
}
return qm;
}
public void start()
{
try
{
if (this.scheduler != null)
{
if (!this.scheduler.isStarted()) {
this.scheduler.start();
}
return;
}
this.scheduler = new StdSchedulerFactory().getScheduler();
this.scheduler.start();
}
catch (Exception e)
{
e.printStackTrace();
}
}
public void initSchedule()
throws SchedulerException
{}
public void addJob(TaskDO task)
{
try
{
start();
Class<? extends Job> jobClass = (Class<? extends Job>) Class.forName(task.getBeanClass()).newInstance().getClass();
JobDetail jobDetail = JobBuilder.newJob(jobClass).withIdentity(task.getJobName(), task.getJobGroup()).usingJobData("id", task.getId()).usingJobData("params", task.getParams()).build();
Trigger trigger = TriggerBuilder.newTrigger().withIdentity(task.getJobName(), task.getJobGroup()).startAt(DateBuilder.futureDate(1, DateBuilder.IntervalUnit.SECOND)).withSchedule(CronScheduleBuilder.cronSchedule(task.getCronExpression())).startNow().build();
this.scheduler.scheduleJob(jobDetail, trigger);
if (!this.scheduler.isShutdown()) {
this.scheduler.start();
}
}
catch (Exception e)
{
e.printStackTrace();
}
}
public void pauseJob(TaskDO task)
throws SchedulerException
{
JobKey jobKey = JobKey.jobKey(task.getJobName(), task.getJobGroup());
this.scheduler.pauseJob(jobKey);
}
public void resumeJob(TaskDO task)
throws SchedulerException
{
JobKey jobKey = JobKey.jobKey(task.getJobName(), task.getJobGroup());
this.scheduler.resumeJob(jobKey);
}
public void deleteJob(TaskDO task)
throws SchedulerException
{
JobKey jobKey = JobKey.jobKey(task.getJobName(), task.getJobGroup());
this.scheduler.deleteJob(jobKey);
}
public void runJobNow(TaskDO task)
throws SchedulerException
{
JobKey jobKey = JobKey.jobKey(task.getJobName(), task.getJobGroup());
this.scheduler.triggerJob(jobKey);
}
public void updateJobCron(TaskDO task)
throws SchedulerException
{
TriggerKey triggerKey = TriggerKey.triggerKey(task.getJobName(), task.getJobGroup());
CronTrigger trigger = (CronTrigger)this.scheduler.getTrigger(triggerKey);
CronScheduleBuilder scheduleBuilder = CronScheduleBuilder.cronSchedule(task.getCronExpression());
trigger = (CronTrigger)trigger.getTriggerBuilder().withIdentity(triggerKey).withSchedule(scheduleBuilder).build();
this.scheduler.rescheduleJob(triggerKey, trigger);
}
public String getState(TaskDO task)
throws SchedulerException
{
TriggerKey triggerKey = TriggerKey.triggerKey(task.getJobName(), task.getJobGroup());
return this.scheduler.getTriggerState(triggerKey).toString();
}
}
| [
"[email protected]"
] | |
24500c1b2b6ee660a78d3aa89e82ac32974e8d57 | dfafc8b6efbae7cf9baf10ffc692f56e8bec7bc4 | /build/generated/not_namespaced_r_class_sources/release/processReleaseResources/r/androidx/cardview/R.java | 37d0e6333ebbc1c3ac9c01fe085a893365f8683c | [] | no_license | Ruby003540/notebook | e42112eaf951b109c11ed27d33d620d680154a2f | 187b052fe7459a0734dca90793f9e35189f8fbb5 | refs/heads/master | 2022-10-16T07:09:36.618409 | 2020-06-12T10:52:05 | 2020-06-12T10:52:05 | 271,775,051 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 3,185 | java | /* AUTO-GENERATED FILE. DO NOT MODIFY.
*
* This class was automatically generated by the
* gradle plugin from the resource data it found. It
* should not be modified by hand.
*/
package androidx.cardview;
public final class R {
private R() {}
public static final class attr {
private attr() {}
public static final int cardBackgroundColor = 0x7f03005b;
public static final int cardCornerRadius = 0x7f03005c;
public static final int cardElevation = 0x7f03005d;
public static final int cardMaxElevation = 0x7f03005e;
public static final int cardPreventCornerOverlap = 0x7f03005f;
public static final int cardUseCompatPadding = 0x7f030060;
public static final int cardViewStyle = 0x7f030061;
public static final int contentPadding = 0x7f03009e;
public static final int contentPaddingBottom = 0x7f03009f;
public static final int contentPaddingLeft = 0x7f0300a0;
public static final int contentPaddingRight = 0x7f0300a1;
public static final int contentPaddingTop = 0x7f0300a2;
}
public static final class color {
private color() {}
public static final int cardview_dark_background = 0x7f05002f;
public static final int cardview_light_background = 0x7f050030;
public static final int cardview_shadow_end_color = 0x7f050031;
public static final int cardview_shadow_start_color = 0x7f050032;
}
public static final class dimen {
private dimen() {}
public static final int cardview_compat_inset_shadow = 0x7f060051;
public static final int cardview_default_elevation = 0x7f060052;
public static final int cardview_default_radius = 0x7f060053;
}
public static final class style {
private style() {}
public static final int Base_CardView = 0x7f0f000c;
public static final int CardView = 0x7f0f00c4;
public static final int CardView_Dark = 0x7f0f00c5;
public static final int CardView_Light = 0x7f0f00c6;
}
public static final class styleable {
private styleable() {}
public static final int[] CardView = { 0x101013f, 0x1010140, 0x7f03005b, 0x7f03005c, 0x7f03005d, 0x7f03005e, 0x7f03005f, 0x7f030060, 0x7f03009e, 0x7f03009f, 0x7f0300a0, 0x7f0300a1, 0x7f0300a2 };
public static final int CardView_android_minWidth = 0;
public static final int CardView_android_minHeight = 1;
public static final int CardView_cardBackgroundColor = 2;
public static final int CardView_cardCornerRadius = 3;
public static final int CardView_cardElevation = 4;
public static final int CardView_cardMaxElevation = 5;
public static final int CardView_cardPreventCornerOverlap = 6;
public static final int CardView_cardUseCompatPadding = 7;
public static final int CardView_contentPadding = 8;
public static final int CardView_contentPaddingBottom = 9;
public static final int CardView_contentPaddingLeft = 10;
public static final int CardView_contentPaddingRight = 11;
public static final int CardView_contentPaddingTop = 12;
}
}
| [
"[email protected]"
] | |
afb1dff01055bff37b5e77b370a23be1f1a7f204 | 7202b893ad3e358d239a811c3469267d00cf4634 | /src/ui/BufferPanel.java | 1887f05c38b69493cf04f54f3679fcf606150fbd | [] | no_license | zbubblez/Game | b791dfa6fc831bf19b7721cadaad02ec1820bae3 | 9bc1a398f71ce96da30ea645b82a469f050879fe | refs/heads/master | 2021-01-10T01:42:16.213090 | 2015-11-19T22:47:18 | 2015-11-19T22:47:18 | 46,520,287 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 677 | java | package ui;
import java.awt.Image;
import javax.swing.JPanel;
import core.Game;
import utilities.Tools;
public class BufferPanel extends JPanel implements Runnable {
/**
*
*/
private static final long serialVersionUID = 1L;
private Game game = null;
private Image buffer = null;
public BufferPanel(Game game) {
this.game = game;
new Thread(this).start();
}
@Override
public void run() {
while (true) {
buffer = this.createImage(this.getWidth(), this.getHeight());
if (buffer != null && buffer.getGraphics() != null) {
game.paint(buffer.getGraphics());
this.getGraphics().drawImage(buffer, 0, 0, null);
}
Tools.sleep(5);
}
}
}
| [
"[email protected]"
] | |
1256af94f0aa0bbf602d99650fb2c2a252163c9c | 2c07ce36d96dedd2e0fec76626970c26a462be3a | /chat-service/src/main/java/pl/altkom/asc/lab/micronaut/poc/chat/service/infrastructure/adapters/web/ChatWebSocket.java | bbbd03f24a4b85b74a753d95ac142072903628ac | [
"Apache-2.0"
] | permissive | serpro69/micronaut-microservices-poc | 8a81b9901cbaefd33aedae835a7db8e77f2a59da | 9871a2e482f6ff8a358b8f3c6caa460374e76c36 | refs/heads/master | 2022-08-27T10:47:28.683057 | 2021-04-19T10:56:11 | 2021-04-19T10:56:11 | 239,110,697 | 0 | 0 | Apache-2.0 | 2020-02-08T10:37:51 | 2020-02-08T10:37:50 | null | UTF-8 | Java | false | false | 1,914 | java | package pl.altkom.asc.lab.micronaut.poc.chat.service.infrastructure.adapters.web;
import io.micronaut.websocket.WebSocketBroadcaster;
import io.micronaut.websocket.WebSocketSession;
import io.micronaut.websocket.annotation.OnClose;
import io.micronaut.websocket.annotation.OnMessage;
import io.micronaut.websocket.annotation.OnOpen;
import io.micronaut.websocket.annotation.ServerWebSocket;
import lombok.extern.slf4j.Slf4j;
import java.util.function.Predicate;
@Slf4j
@ServerWebSocket("/ws/chat/{topic}/{username}")
public class ChatWebSocket {
private WebSocketBroadcaster broadcaster;
public ChatWebSocket(WebSocketBroadcaster broadcaster) {
this.broadcaster = broadcaster;
}
@OnOpen
public void onOpen(String topic, String username, WebSocketSession session) {
String msg = "[" + username + "] Joined!";
log.info(msg);
broadcaster.broadcastSync(formatStartCloseMessages(msg), isValid(topic, session));
}
@OnMessage
public void onMessage(
String topic,
String username,
String message,
WebSocketSession session) {
String msg = "[" + username + "] " + message;
log.info(msg);
broadcaster.broadcastSync(message, isValid(topic, session));
}
@OnClose
public void onClose(
String topic,
String username,
WebSocketSession session) {
String msg = "[" + username + "] Disconnected!";
log.info(msg);
broadcaster.broadcastSync(formatStartCloseMessages(msg), isValid(topic, session));
}
private Predicate<WebSocketSession> isValid(String topic, WebSocketSession session) {
return s -> s != session && topic.equalsIgnoreCase(s.getUriVariables().get("topic", String.class, null));
}
private String formatStartCloseMessages(String msg) {
return "<p>" + msg + "</p>";
}
}
| [
"[email protected]"
] | |
0187f73307b1e99f50d7ccfd944f84859b63c138 | bda6dbb050a094eca53217a395e6406f04ade78c | /MallK2/src/com/example/mallk/StoreDetActivity.java | 34b0ec580a4782879ee2a903a689a11c6146a64d | [] | no_license | tonojuarezgt/Tarea3 | bc2b12e0bffb379898d90e83abb61496f289be5b | 5a66fa038181c4fe9c2c5164b05a1eab7e45b8b2 | refs/heads/master | 2016-09-06T04:10:45.579348 | 2014-03-05T00:44:05 | 2014-03-05T00:44:05 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 2,949 | java | package com.example.mallk;
import android.net.Uri;
import android.os.Bundle;
import android.app.Activity;
import android.content.Intent;
import android.text.util.Linkify;
import android.view.Menu;
import android.view.View;
import android.view.View.OnClickListener;
import android.widget.Button;
import android.widget.TextView;
public class StoreDetActivity extends Activity {
Intent intent = null;
//TextView textView;
TextView txvNombre;
TextView txvDireccion;
TextView txvTelefono;
TextView txvHorario;
TextView txvWebsite;
TextView txvEmail;
String cadena2="";
public static final int CONSTANTE1 = 0;
public static final String CADENA1 = "";
@Override
protected void onCreate(Bundle savedInstanceState) {
int indice = 0;
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_store_det);
intent = getIntent();
indice = intent.getIntExtra(CADENA1, CONSTANTE1);
txvNombre = (TextView)findViewById(R.id.textView1);
txvDireccion = (TextView)findViewById(R.id.textView2);
txvTelefono = (TextView)findViewById(R.id.textView3);
txvHorario = (TextView)findViewById(R.id.textView4);
txvWebsite = (TextView)findViewById(R.id.textView5);
txvEmail = (TextView)findViewById(R.id.textView6);
if (indice == 0) {
txvNombre.setText("Tienda 1");
Linkify.addLinks(txvNombre, Linkify.ALL);
txvDireccion.setText("18 Street, 1520 Miami, Fl");
Linkify.addLinks(txvDireccion, Linkify.ALL);
txvTelefono.setText("55551235");
cadena2 = "55551235";
Linkify.addLinks(txvTelefono, Linkify.ALL);
txvHorario.setText("Horario de 8:00 a 17:00 Hrs");
Linkify.addLinks(txvHorario, Linkify.ALL);
txvWebsite.setText("www.tienda1.com.gt");
Linkify.addLinks(txvWebsite, Linkify.ALL);
txvEmail.setText("[email protected]");
Linkify.addLinks(txvEmail, Linkify.ALL);
} else {
txvNombre.setText("Tienda 2");
Linkify.addLinks(txvNombre, Linkify.ALL);
txvDireccion.setText("3 Avenue, 1234 Stanford, CA");
Linkify.addLinks(txvDireccion, Linkify.ALL);
txvTelefono.setText("55551234");
cadena2 = "55551234";
Linkify.addLinks(txvTelefono, Linkify.ALL);
txvHorario.setText("Horario de 8:00 a 17:00 Hrs");
Linkify.addLinks(txvHorario, Linkify.ALL);
txvWebsite.setText("www.tienda1.com.gt");
Linkify.addLinks(txvWebsite, Linkify.ALL);
txvEmail.setText("[email protected]");
Linkify.addLinks(txvEmail, Linkify.ALL);
}
Button btnLlamar = (Button) findViewById(R.id.button1);
btnLlamar.setOnClickListener(new OnClickListener() {
@Override
public void onClick(View arg0) {
Intent intent = new Intent(Intent.ACTION_DIAL);
intent.setData(Uri.parse("tel: "+cadena2));
startActivity(intent);
}
});
}
@Override
public boolean onCreateOptionsMenu(Menu menu) {
// Inflate the menu; this adds items to the action bar if it is present.
getMenuInflater().inflate(R.menu.store_det, menu);
return true;
}
}
| [
"[email protected]"
] | |
6d81d2c8c1090fd82be127a47e81f6925a6af9ef | e0647ca9350f3a79286dd88574759693d0bd6877 | /src/main/java/com/irtimaled/bbor/client/renderers/BiomeBorderRenderer.java | 93a894c978f627878b3a259d05d0d778a2fe993c | [
"MIT"
] | permissive | Gloverkk/BoundingBoxOutlineReloaded | 3a11d29619ee9fa614e9566f3ac6ffc2ae45cb3e | 3d1aaf7b99116d9567ebdeeaa47489058a93f91a | refs/heads/master | 2022-09-21T07:14:09.955982 | 2020-05-26T01:40:12 | 2020-05-26T05:23:37 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 2,199 | java | package com.irtimaled.bbor.client.renderers;
import com.irtimaled.bbor.client.config.BoundingBoxTypeHelper;
import com.irtimaled.bbor.client.config.ConfigManager;
import com.irtimaled.bbor.client.models.BoundingBoxBiomeBorder;
import com.irtimaled.bbor.common.models.Coords;
import java.awt.*;
public class BiomeBorderRenderer extends AbstractRenderer<BoundingBoxBiomeBorder> {
@Override
public void render(BoundingBoxBiomeBorder boundingBox) {
Coords coords = boundingBox.getCoords();
OffsetPoint northWest = new OffsetPoint(coords).offset(0, 0.001F, 0);
OffsetPoint northEast = northWest.offset(1, 0, 0);
OffsetPoint southWest = northWest.offset(0, 0, 1);
Color color = BoundingBoxTypeHelper.getColor(boundingBox.getType());
if (boundingBox.renderNorth()) {
render(northWest, northEast, color);
}
if (boundingBox.renderWest()) {
render(northWest, southWest, color);
}
if (ConfigManager.renderOnlyCurrentBiome.get()) {
OffsetPoint southEast = southWest.offset(1, 0, 0);
if (boundingBox.renderSouth()) {
render(southWest, southEast, color);
}
if (boundingBox.renderEast()) {
render(northEast, southEast, color);
}
}
}
private void render(OffsetPoint topCorner1, OffsetPoint topCorner2, Color color) {
double xOffset = 0d;
double zOffset = 0d;
if (topCorner1.getX() == topCorner2.getX()) {
xOffset = getOffset(topCorner1.getX());
} else {
zOffset = getOffset(topCorner1.getZ());
}
topCorner1 = topCorner1.offset(xOffset, 0, zOffset);
topCorner2 = topCorner2.offset(xOffset, 0, zOffset);
renderLine(topCorner1, topCorner2, color);
OffsetPoint bottomCorner2 = topCorner2.offset(0, 1, 0);
renderFilledFaces(topCorner1, bottomCorner2, color, 30);
OffsetPoint bottomCorner1 = topCorner1.offset(0, 1, 0);
renderLine(bottomCorner1, bottomCorner2, color);
}
private double getOffset(double value) {
return value > 0 ? -0.001F : 0.001F;
}
}
| [
"[email protected]"
] | |
3281bf55c07ce60d6f481a3e7d9189670cc6b71c | e12b5a858c47f6d2569350a73f7440ebbf93117a | /osrs-script/src/main/java/com/palidinodh/osrsscript/npc/combatv0/LesserDemon94_7867Combat.java | 056c77419ebd8d71bbbc3d4d8a66ea353b671ba1 | [] | no_license | sw130637/BattleScape-Server | 287ade1cc49893ff2a0784a2b114cb162c26bb9a | 4d83d24c64a0881c3309e5308fc744b20cc84615 | refs/heads/master | 2020-09-16T03:24:43.300718 | 2019-11-23T18:27:20 | 2019-11-23T18:27:20 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 5,178 | java | package com.palidinodh.osrsscript.npc.combatv0;
import java.util.Arrays;
import java.util.List;
import com.palidinodh.osrscore.io.cache.id.ItemId;
import com.palidinodh.osrscore.io.cache.id.NpcId;
import com.palidinodh.osrscore.model.CombatBonus;
import com.palidinodh.osrscore.model.item.RandomItem;
import com.palidinodh.osrscore.model.npc.combat.NpcCombat;
import com.palidinodh.osrscore.model.npc.combat.NpcCombatAggression;
import com.palidinodh.osrscore.model.npc.combat.NpcCombatDefinition;
import com.palidinodh.osrscore.model.npc.combat.NpcCombatDrop;
import com.palidinodh.osrscore.model.npc.combat.NpcCombatDropTable;
import com.palidinodh.osrscore.model.npc.combat.NpcCombatDropTableDrop;
import com.palidinodh.osrscore.model.npc.combat.NpcCombatHitpoints;
import com.palidinodh.osrscore.model.npc.combat.NpcCombatStats;
import com.palidinodh.osrscore.model.npc.combat.NpcCombatType;
import com.palidinodh.osrscore.model.npc.combat.style.NpcCombatDamage;
import com.palidinodh.osrscore.model.npc.combat.style.NpcCombatProjectile;
import com.palidinodh.osrscore.model.npc.combat.style.NpcCombatStyle;
import com.palidinodh.osrscore.model.npc.combat.style.NpcCombatStyleType;
import lombok.var;
public class LesserDemon94_7867Combat extends NpcCombat {
@Override
public List<NpcCombatDefinition> getCombatDefinitions() {
var drop = NpcCombatDrop.builder().rareDropTableRate(NpcCombatDropTable.CHANCE_1_IN_256);
var dropTable = NpcCombatDropTable.builder().chance(2.0);
dropTable.drop(NpcCombatDropTableDrop.items(new RandomItem(ItemId.ENSOULED_DEMON_HEAD)));
drop.table(dropTable.build());
dropTable = NpcCombatDropTable.builder().chance(NpcCombatDropTable.CHANCE_RARE);
dropTable.drop(NpcCombatDropTableDrop.items(new RandomItem(ItemId.RUNE_MED_HELM)));
dropTable.drop(NpcCombatDropTableDrop.items(new RandomItem(ItemId.BLACK_KITESHIELD)));
dropTable.drop(NpcCombatDropTableDrop.items(new RandomItem(ItemId.DEATH_RUNE, 3)));
dropTable.drop(NpcCombatDropTableDrop.items(new RandomItem(ItemId.BLOOD_RUNE, 10)));
dropTable.drop(NpcCombatDropTableDrop.items(new RandomItem(ItemId.GRIMY_HARRALANDER)));
dropTable.drop(NpcCombatDropTableDrop.items(new RandomItem(ItemId.GRIMY_RANARR_WEED)));
dropTable.drop(NpcCombatDropTableDrop.items(new RandomItem(ItemId.GRIMY_IRIT_LEAF)));
dropTable.drop(NpcCombatDropTableDrop.items(new RandomItem(ItemId.GRIMY_AVANTOE)));
dropTable.drop(NpcCombatDropTableDrop.items(new RandomItem(ItemId.GRIMY_KWUARM)));
dropTable.drop(NpcCombatDropTableDrop.items(new RandomItem(ItemId.GRIMY_CADANTINE)));
dropTable.drop(NpcCombatDropTableDrop.items(new RandomItem(ItemId.GRIMY_LANTADYME)));
dropTable.drop(NpcCombatDropTableDrop.items(new RandomItem(ItemId.GRIMY_DWARF_WEED)));
drop.table(dropTable.build());
dropTable = NpcCombatDropTable.builder().chance(NpcCombatDropTable.CHANCE_UNCOMMON);
dropTable.drop(NpcCombatDropTableDrop.items(new RandomItem(ItemId.BLACK_2H_SWORD)));
dropTable.drop(NpcCombatDropTableDrop.items(new RandomItem(ItemId.MITHRIL_SQ_SHIELD)));
dropTable.drop(NpcCombatDropTableDrop.items(new RandomItem(ItemId.MITHRIL_CHAINBODY)));
dropTable.drop(NpcCombatDropTableDrop.items(new RandomItem(ItemId.MITHRIL_AXE)));
dropTable.drop(NpcCombatDropTableDrop.items(new RandomItem(ItemId.CHAOS_RUNE, 12, 20)));
dropTable.drop(NpcCombatDropTableDrop.items(new RandomItem(ItemId.JUG_OF_WINE)));
drop.table(dropTable.build());
dropTable = NpcCombatDropTable.builder().chance(NpcCombatDropTable.CHANCE_COMMON);
dropTable.drop(NpcCombatDropTableDrop.items(new RandomItem(ItemId.STEEL_AXE)));
dropTable.drop(NpcCombatDropTableDrop.items(new RandomItem(ItemId.STEEL_SCIMITAR)));
dropTable.drop(NpcCombatDropTableDrop.items(new RandomItem(ItemId.STEEL_FULL_HELM)));
dropTable.drop(NpcCombatDropTableDrop.items(new RandomItem(ItemId.FIRE_RUNE, 30, 120)));
dropTable.drop(NpcCombatDropTableDrop.items(new RandomItem(ItemId.GRIMY_GUAM_LEAF)));
dropTable.drop(NpcCombatDropTableDrop.items(new RandomItem(ItemId.GRIMY_TARROMIN)));
dropTable.drop(NpcCombatDropTableDrop.items(new RandomItem(ItemId.GRIMY_MARRENTILL)));
drop.table(dropTable.build());
dropTable = NpcCombatDropTable.builder().chance(NpcCombatDropTable.CHANCE_ALWAYS);
dropTable.drop(NpcCombatDropTableDrop.items(new RandomItem(ItemId.ASHES)));
drop.table(dropTable.build());
var combat = NpcCombatDefinition.builder();
combat.id(NpcId.LESSER_DEMON_94_7867);
combat.hitpoints(NpcCombatHitpoints.total(110));
combat.stats(NpcCombatStats.builder().attackLevel(80).defenceLevel(85)
.bonus(CombatBonus.DEFENCE_MAGIC, -10).build());
combat.aggression(NpcCombatAggression.PLAYERS);
combat.type(NpcCombatType.DEMON).deathAnimation(67).blockAnimation(65);
combat.drop(drop.build());
var style = NpcCombatStyle.builder();
style.type(NpcCombatStyleType.MELEE_SLASH);
style.damage(NpcCombatDamage.maximum(9));
style.animation(64).attackSpeed(4);
style.projectile(NpcCombatProjectile.id(335));
combat.style(style.build());
return Arrays.asList(combat.build());
}
}
| [
"[email protected]"
] | |
f2721fe39086ab9a778ed5f48c1e68f1579072e7 | 1959fd85d4bfccb9d4811bee379cc178c07ee339 | /app/src/main/java/com/liweidong/basemvc/http/OkGoHttpUtil.java | 94518c8d058146a27606f23062136f87deaa3bbf | [] | no_license | L864741831/BaseMVC2 | 35f0d09325ef443104bc927c4c73f4982c7897a6 | 4f94cccb488ad4641f4d48fd866c47739973cbb8 | refs/heads/master | 2020-04-12T21:55:21.805865 | 2018-12-22T02:44:21 | 2018-12-22T02:44:21 | 162,776,008 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 18,116 | java | package com.liweidong.basemvc.http;
import android.content.Context;
import android.os.Environment;
import android.text.TextUtils;
import android.util.Log;
import com.alibaba.fastjson.JSON;
import com.alibaba.fastjson.JSONException;
import com.lzy.okgo.OkGo;
import com.lzy.okgo.callback.AbsCallback;
import com.lzy.okgo.callback.FileCallback;
import com.lzy.okgo.callback.StringCallback;
import com.lzy.okgo.model.Progress;
import com.lzy.okgo.model.Response;
import com.lzy.okgo.request.GetRequest;
import com.lzy.okgo.request.PostRequest;
import com.lzy.okgo.request.base.Request;
import com.orhanobut.logger.Logger;
import java.io.File;
import java.util.ArrayList;
import java.util.List;
/**
* OkGo网络请求帮助类
*/
public class OkGoHttpUtil {
/**
* get请求
*
* @param context 上下文
* @param url 请求地址
* @param params 请求参数
* @param showProgressDialog 是否显示加载对话框
* @param loadingText 加载对话框显示文字
* @param callbackListener 请求结果或错误回调实现类
*/
public static void doGet(Context context, String url, MyParams params, boolean showProgressDialog, String loadingText, HttpCallbackListener callbackListener) {
if (!NetWorkUtil.isNetworkAvailable(context)) {
// 没有网络时可用
if (callbackListener != null) {
callbackListener.callbackNoNetwork();
}
return;
}
/*
OkGo实现get请求实现类
*/
GetRequest request;
request = OkGo.<Element>get(url)
/* .headers("Versions","1.0.0") //版本名称*/
.tag(context);
// 添加请求参数
addGetParams(request, params);
// 发送请求
request.execute(new ElementCallback(context, url, showProgressDialog, loadingText, callbackListener));
}
/**
* post请求
*
* @param context 上下文
* @param url 请求地址
* @param params 请求参数
* @param showProgressDialog 是否显示加载对话框
* @param loadingText 加载对话框显示文字
* @param callbackListener 请求结果或错误回调实现类
*/
public static void doPost(Context context, String url, MyParams params, boolean showProgressDialog, String loadingText, HttpCallbackListener callbackListener) {
if (!NetWorkUtil.isNetworkAvailable(context)) {
// 没有网络时可用
if (callbackListener != null) {
callbackListener.callbackNoNetwork();
}
return;
}
/*
OkGo实现get请求实现类
*/
PostRequest request;
request = OkGo.post(url)
/* .headers("Versions","1.0.0") //版本名称*/
/* .isMultipart(true) //强制使用 multipart/form-data 表单上传(只是演示,不需要的话不要设置。默认就是false)*/
.tag(context);
// 添加请求参数
addPostParams(request, params);
// 发送请求
request.execute(new ElementCallback(context, url, showProgressDialog, loadingText, callbackListener));
}
/**
* 小文件下载
*
* @param context 上下文
* @param url 文件下载地址
* @param showProgressDialog 是否显示下载进度
* @param loadingText 下载进度提示语
* @param callbackListener 自定义下载回调
*/
public static void download(String my_file_name,Context context, String url, boolean showProgressDialog, String loadingText, FileCallbackListener callbackListener) {
/*
FileCallback():空参构造
FileCallback(String destFileName):可以额外指定文件下载完成后的文件名
FileCallback(String destFileDir, String destFileName):可以额外指定文件的下载目录和下载完成后的文件名
文件目录如果不指定,默认下载的目录为 sdcard/download/
打印出的路径为 /storage/emulated/0/download/
*/
// /storage/emulated/0/download/aba
//设置下载路径
String file_path = Environment.getExternalStorageDirectory().getPath() + "/abaq/";
/* //文件名不能过长
String file_name = "tianjiji.apk";*/
String file_name = my_file_name;
//String destFileDir, String destFileName
OkGo.<File>get(url)
.tag(context)
.execute(new DownloadFileCallback(file_path, file_name, context, url, showProgressDialog, loadingText, callbackListener));
}
public static void upload(Context context, String url, MyParams params, boolean showProgressDialog, String loadingText, UpFileCallbackListener callbackListener) {
PostRequest request;
request = OkGo.<String>post(url)
.tag(context);
// 添加请求参数
addPostParams(request, params);
request.execute(new UploadFileCallback(context, url, showProgressDialog, loadingText, callbackListener));
}
/**
* 添加get请求参数
*
* @param request
* @param params
*/
private static void addGetParams(GetRequest request, MyParams params) {
if (params != null && !params.isEmpty()) {
List<KeyValue> list = params.getParamsList();
if (list != null && !list.isEmpty()) {
for (KeyValue item : list) {
if (item.value instanceof String) {
request.params(item.key, (String) item.value);
} else if (item.value instanceof Integer) {
request.params(item.key, (Integer) item.value);
} else if (item.value instanceof Double) {
request.params(item.key, (Double) item.value);
} else if (item.value instanceof Float) {
request.params(item.key, (Float) item.value);
} else if (item.value instanceof Boolean) {
request.params(item.key, (Boolean) item.value);
}
}
}
}
}
/**
* 添加post请求参数
*
* @param request
* @param params
*/
private static void addPostParams(PostRequest request, MyParams params) {
if (params != null && !params.isEmpty()) {
List<KeyValue> list = params.getParamsList();
if (list != null && !list.isEmpty()) {
for (KeyValue item : list) {
if (item.value instanceof String) {
request.params(item.key, (String) item.value);
} else if (item.value instanceof Integer) {
request.params(item.key, (Integer) item.value);
} else if (item.value instanceof Double) {
request.params(item.key, (Double) item.value);
} else if (item.value instanceof Float) {
request.params(item.key, (Float) item.value);
} else if (item.value instanceof Boolean) {
request.params(item.key, (Boolean) item.value);
} else if (item.value instanceof File) {
request.params(item.key, (File) item.value);
} else if (item.value instanceof ArrayList) {
request.addFileParams(item.key, (ArrayList<File>) item.value);
}
}
}
}
}
/**
* ElementCallback实现AbsCallback回调接口
*/
private static class ElementCallback extends AbsCallback<Element> {
private Context context;
private String url;// 接口的url路径
private boolean showProgressDialog;
private String loadingText;
private HttpCallbackListener callbackListener;
public ElementCallback(Context context, String url, boolean showProgressDialog, String loadingText, HttpCallbackListener callbackListener) {
this.context = context;
this.url = url;
this.showProgressDialog = showProgressDialog;
this.loadingText = TextUtils.isEmpty(loadingText) ? "加载中……" : loadingText;
this.callbackListener = callbackListener;
if (callbackListener != null && callbackListener instanceof BaseHttpCallbackListener) {
// 设置context
BaseHttpCallbackListener baseHttpCallbackListener = (BaseHttpCallbackListener) callbackListener;
baseHttpCallbackListener.setContext(context);
}
}
/**
* 对返回数据进行操作的回调, UI线程
*/
@Override
public void onSuccess(Response<Element> response) {
/* Log.i("========onSuccess", response.body().results);*/
/* Log.i("========onSuccess", "onSuccess");*/
Logger.w("onSuccess返回数据进行操作的回调" + "\n" + response.body().toString());
if (response.body() == null) {
Logger.e("解析JSON数据为空,请检查!!!");
return;
}
if (response.body().code == 2) {
if (callbackListener != null) {
callbackListener.callbackSuccess(url, response.body());
}
return;
}
//这里为接口返回状态
if (response.body().error == false) {
if (callbackListener != null) {
callbackListener.callbackSuccess(url, response.body());
}
return;
}
}
/*
拿到响应后,将数据转换成需要的格式,子线程中执行,可以是耗时操作
*/
@Override
public Element convertResponse(okhttp3.Response response) throws Throwable {
String str = response.body().string();
/* Log.i("========convertResponse", str);*/
/* Log.w("========convertResponse", "convertResponse");*/
Logger.w("convertResponse拿到响应" + "\n" + str);
return JSON.parseObject(str, Element.class);
}
/*
请求网络开始前,UI线程
*/
public void onStart(Request<Element, ? extends Request> request) {
super.onStart(request);
/* Log.w("========onStart", "onStart");*/
Logger.w("onStart");
}
/*
* 请求网络结束后,UI线程
*/
public void onFinish() {
super.onFinish();
/* Log.w("========onFinish", "onFinish");*/
Logger.w("onFinish");
}
/*
* 请求失败,响应错误,数据解析错误等,都会回调该方法, UI线程
*/
public void onError(Response<Element> response) {
super.onError(response);
if (response == null) return;
Throwable e = response.getException();
if (callbackListener != null) {
/* Log.i("123========nFinish", e.getClass()+"");*/
Logger.e("onError");
//注意JSONException是com.alibaba.fastjson包下的;
if (e.getClass() == JSONException.class) {
callbackListener.callbackErrorJSONFormat(url);
}
//isSuccessful():本次请求是否成功,判断依据是是否发生了异常。
if (!response.isSuccessful()) {
callbackListener.onFaliure(url, response.code(), response.message(), e);
}
}
}
/* @Override
public void onCacheSuccess(Response<Element> response) {
super.onCacheSuccess(response);
Logger.w("onCacheSuccess读取缓存成功" + "\n" + response.body().toString());
}*/
}
private static class DownloadFileCallback extends FileCallback {
Context context;
String url;
boolean showProgressDialog;
String loadingText;
FileCallbackListener callbackListener;
public DownloadFileCallback(String file_path, String file_name, Context context, String url, boolean showProgressDialog, String loadingText, FileCallbackListener callbackListener) {
//FileCallback(String destFileDir, String destFileName):可以额外指定文件的下载目录和下载完成后的文件名
//指定文件夹和文件名
/* super(file_path, file_name);*/
this.context = context;
this.url = url;
this.showProgressDialog = showProgressDialog;
this.loadingText = TextUtils.isEmpty(loadingText) ? "下载中……" : loadingText;
this.callbackListener = callbackListener;
if (callbackListener != null && callbackListener instanceof BaseFileCallbackListener) {
// 设置context
BaseFileCallbackListener baseFileCallbackListener = (BaseFileCallbackListener) callbackListener;
baseFileCallbackListener.setContext(context);
}
}
/**
* 对返回数据进行操作的回调, UI线程
*/
public void onSuccess(Response<File> response) {
//response.body()得到file为文件数据
Logger.w("onSuccess" + response.body().getPath());
Log.i("downloadfile", "文件路径" + response.body().getPath());
if (callbackListener != null) {
callbackListener.callbackSuccess(url, response.body());
}
}
/**
* 下载过程中的进度回调,UI线程
*/
public void downloadProgress(Progress progress) {
super.downloadProgress(progress);
//这里回调下载进度(该回调在主线程,可以直接更新UI)
Logger.w("downloadProgress" + progress.fraction);
Logger.w("downloadProgress" + progress.fileName);
Log.i("downloadfile", "进度" + progress.fraction);
Log.i("downloadfile", "文件名" + progress.fileName);
}
/**
* 请求网络开始前,UI线程
*/
public void onStart(Request<File, ? extends Request> request) {
super.onStart(request);
Logger.w("onStart");
Log.i("downloadfile", "onStart");
}
/**
* 请求网络结束后,UI线程
*/
public void onFinish() {
super.onFinish();
Logger.w("onFinish");
Log.i("downloadfile", "onFinish");
}
@Override
public void onError(Response<File> response) {
super.onError(response);
if (response == null) return;
Throwable e = response.getException();
if (callbackListener != null) {
Logger.e("onError");
if (!response.isSuccessful()) {
callbackListener.onFaliure(url, response.code(), response.message(), e);
}
}
}
}
private static class UploadFileCallback extends StringCallback {
Context context;
String url;
boolean showProgressDialog;
String loadingText;
UpFileCallbackListener callbackListener;
public UploadFileCallback(Context context, String url, boolean showProgressDialog, String loadingText, UpFileCallbackListener callbackListener) {
this.context = context;
this.url = url;
this.showProgressDialog = showProgressDialog;
this.loadingText = TextUtils.isEmpty(loadingText) ? "上传中……" : loadingText;
this.callbackListener = callbackListener;
if (callbackListener != null && callbackListener instanceof BaseUpFileCallbackListener) {
// 设置context
BaseUpFileCallbackListener baseUpFileCallbackListener = (BaseUpFileCallbackListener) callbackListener;
baseUpFileCallbackListener.setContext(context);
}
}
/**
* 对返回数据进行操作的回调, UI线程
*/
public void onSuccess(Response<String> response) {
Logger.w("onSuccess" + response.body());
if (callbackListener != null) {
callbackListener.callbackSuccess(url, response.body());
}
}
/**
* 上传过程中的进度回调,UI线程
*/
public void uploadProgress(Progress progress) {
super.uploadProgress(progress);
//这里回调下载进度(该回调在主线程,可以直接更新UI)
Logger.w("uploadProgress" + progress.fraction);
Log.i("uploadfile", "进度" + progress.fraction);
}
/**
* 请求网络开始前,UI线程
*/
public void onStart(Request<String, ? extends Request> request) {
super.onStart(request);
Logger.w("onStart");
Log.i("uploadfile", "onStart");
}
/**
* 请求网络结束后,UI线程
*/
public void onFinish() {
super.onFinish();
Logger.w("onFinish");
Log.i("uploadfile", "onFinish");
}
@Override
public void onError(Response<String> response) {
super.onError(response);
if (response == null) return;
Throwable e = response.getException();
if (callbackListener != null) {
Logger.e("onError");
if (!response.isSuccessful()) {
callbackListener.onFaliure(url, response.code(), response.message(), e);
}
}
}
}
}
| [
"[email protected]"
] | |
1fab8907c374fff3fd5ccfdd1568e2de88ef1769 | 76d50ba7fef5b0e06a1ce4276aa3354d1ddd61f4 | /app/src/main/java/com/parsonswang/zxfootball/common/mvp/IBaseView.java | 565ddf1d9022a5392e5564b5b5f7a60174b70ded | [] | no_license | huyuanhao/ZxFootball | 257486483faef81bc62e165cfb6f0b7f14829788 | 58e53e543c46f83608a1a1fea2e397848c1e9a69 | refs/heads/master | 2022-07-02T15:47:01.339090 | 2020-05-12T10:26:52 | 2020-05-12T10:26:52 | 262,297,716 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 235 | java | package com.parsonswang.zxfootball.common.mvp;
/**
* Created by wangchun on 2017/12/30.
*/
public interface IBaseView {
default void showLoding(){};
default void hideLoding(){};
default void showExceptionView(){};
}
| [
"[email protected]"
] | |
9f8b8e1551ad28439a7d4e94419936addb32f711 | 647394402063270aa17c3b90843e19278d881ce3 | /emd_ssm_tools/src/main/java/com/david/emd_ssm_tools/demo1/web/controller/CustomerController.java | 75e3d02423e57176644e7541610a6cf951bb5d59 | [] | no_license | dmcxiaobing/emd_ssm_tools | 670e76067da7d1ca018cda3027d3fedca67e5b1b | a25fd85f5f8d8314888b2b2b240ed39212994855 | refs/heads/master | 2023-05-13T18:45:22.112795 | 2018-01-24T06:19:27 | 2018-01-24T06:19:27 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 4,048 | java | package com.david.emd_ssm_tools.demo1.web.controller;
import java.util.List;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.beans.factory.annotation.Value;
import org.springframework.stereotype.Controller;
import org.springframework.ui.Model;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.ResponseBody;
import com.david.emd_ssm_tools.demo1.pojo.BaseDict;
import com.david.emd_ssm_tools.demo1.pojo.Customer;
import com.david.emd_ssm_tools.demo1.pojo.QueryVo;
import com.david.emd_ssm_tools.demo1.service.CustomerService;
import cn.itcast.utils.Page;
/**
* 客户的controller
*
* @Author :程序员小冰
* @新浪微博 :http://weibo.com/mcxiaobing
* @GitHub: https://github.com/QQ986945193
*/
@Controller
@RequestMapping("/demo1/customer")
public class CustomerController {
@Autowired
private CustomerService customerService;
/**
* 这个是使用resource中的映射进行注解
*/
// 客户来源,在字典表中是002
@Value("${customer.dict.source}")
private String source;
// 所属行业 字典表中是001
@Value("${customer.dict.industry}")
private String industry;
// 客户级别 是006
@Value("${customer.dict.level}")
private String level;
/**
* 获取到客户的列表
*
* @param vo
* 查询的实体类 return 转发到的jsp页面路径
* @throws Exception
*/
@RequestMapping("/list")
public String list(QueryVo vo, Model model) throws Exception {
// System.out.println(source+":"+industry+":"+level);
// 查询出所有客户来源的分类
List<BaseDict> sourceList = customerService.findDictByCode(source);
// 查询出 所属行业的种类
List<BaseDict> industryList = customerService.findDictByCode(industry);
// 查询出客户的级别 种类
List<BaseDict> levelList = customerService.findDictByCode(level);
if (vo.getCustName() != null) {
// 证明输入的查询的名称,这里进行一下转码
vo.setCustName(new String(vo.getCustName().getBytes("iso8859-1"), "utf-8"));
}
if (vo.getPage() == null) {
// 设置从第一页开始查询
vo.setPage(1);
}
// 设置查询的起始记录条数
vo.setStart((vo.getPage() - 1) * vo.getSize());
// 查询数据列表和数据总数
List<Customer> resultList = customerService.findCustomerByVo(vo);
Integer count = customerService.findCustomerByVoCount(vo);
// 设置page的数据。
Page<Customer> page = new Page<>();
page.setTotal(count);// 数据总数
page.setSize(vo.getSize());// 每页显示条数
page.setPage(vo.getPage());// 当前页数
page.setRows(resultList);// 数据列表
model.addAttribute("page", page);
// 高级查询下拉列表数据 selet的数据填充
model.addAttribute("fromType", sourceList);
model.addAttribute("industryType", industryList);
model.addAttribute("levelType", levelList);
// 高级查询选中数据回显.列表中显示的数据
model.addAttribute("custName", vo.getCustName());
model.addAttribute("custSource", vo.getCustSource());
model.addAttribute("custIndustry", vo.getCustIndustry());
model.addAttribute("custLevel", vo.getCustLevel());
return "customer";
}
/**
* 点击修改的按钮,根据id获取到客户的详细信息
*
* 使用@ResponseBody 注解,一定要添加Jackson的包。
*
* @return 返回一个客户
*/
@ResponseBody
@RequestMapping("/detail")
public Customer detail(Long id) {
// System.out.println(customerService.findCustomerById(id));
return customerService.findCustomerById(id);
}
/**
* 修改客户信息。
*
*/
@RequestMapping("/update")
public String update(Customer customer) {
customerService.updateCustomerById(customer);
// 操作成功,转发到列表的jsp
return "customer";
}
/**
* 根据id删除客户
*/
@RequestMapping("/delete")
public String delete(Long id) {
customerService.deleteCustomerById(id);
// 删除成功,转发到列表的jsp
return "customer";
}
}
| [
"[email protected]"
] | |
cb18a9b68cde7c8046d63106d6e1fd0216039d1f | fa3893cd5593cb0475e5a2308931a356c9bcab26 | /src/org.xtuml.bp.core/src/org/xtuml/bp/core/common/ConsistencyTransactionListener.java | 129ccf473c5a672632343addefb5ddf1ce5e8efe | [
"EPL-1.0",
"Apache-2.0"
] | permissive | leviathan747/bridgepoint | a2c13d615ff255eb64c8a4e21fcf1824f9eff3d5 | cf7deed47d20290d422d4b4636e7486784d17c34 | refs/heads/master | 2023-08-04T11:05:10.679674 | 2023-07-06T19:10:37 | 2023-07-06T19:10:37 | 28,143,415 | 0 | 1 | Apache-2.0 | 2023-05-08T13:26:39 | 2014-12-17T15:40:25 | HTML | UTF-8 | Java | false | false | 3,624 | java | //========================================================================
//
//File: $RCSfile: ConsistencyTransactionListener.java,v $
//Version: $Revision: 1.10 $
//Modified: $Date: 2013/01/10 22:54:09 $
//
//(c) Copyright 2005-2014 by Mentor Graphics Corp. 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.
//========================================================================
package org.xtuml.bp.core.common;
import java.util.HashSet;
import java.util.Iterator;
import java.util.Set;
import org.xtuml.bp.core.Modeleventnotification_c;
import org.xtuml.bp.core.Ooaofooa;
public class ConsistencyTransactionListener implements ITransactionListener{
public void transactionEnded(Transaction transaction) {
if (Ooaofooa.getConsistencyEnabled() == false){
return;
}
ModelRoot[] modelRoots = transaction.getParticipatingModelRoots();
Set<ModelElement> modelSet = new HashSet<ModelElement>();
Set<ModelElement> deleteSet = new HashSet<ModelElement>();
for (int i = 0; i < modelRoots.length; i++){
IModelDelta[] modelDeltas = transaction.getDeltas(modelRoots[i]);
for (int j = 0; j < modelDeltas.length; j++){
IModelDelta aDelta = modelDeltas[j];
if (aDelta.getKind() == Modeleventnotification_c.DELTA_DELETE){
deleteSet.add(aDelta.getModelElement());
}
else{
if(aDelta instanceof RelationshipChangeModelDelta){
RelationshipChangeModelDelta rc_md = (RelationshipChangeModelDelta) aDelta;
ModelElement src_rc_me = rc_md.getSourceModelElement();
if (src_rc_me != null){
if(!((NonRootModelElement)src_rc_me).isProxy())
modelSet.add(src_rc_me);
}
ModelElement dst_rc_me = rc_md.getDestinationModelElement();
if (dst_rc_me != null){
if(!((NonRootModelElement)dst_rc_me).isProxy())
modelSet.add(dst_rc_me);
}
}
else{
ModelElement me = aDelta.getModelElement();
if ( me != null){
if(!((NonRootModelElement)me).isProxy())
modelSet.add(me);
}
}
}
}
modelSet.removeAll(deleteSet);
for (Iterator k = modelSet.iterator(); k.hasNext(); ){
ModelElement elem = (ModelElement) k.next();
elem.checkConsistency();
}
modelSet.clear();
deleteSet.clear();
}
}
public void transactionStarted(Transaction transaction) {
}
public void transactionCancelled(Transaction transaction) {
}
} | [
"[email protected]"
] | |
f0614466dbaf812cec30f84a06f9274242b626e3 | 7a5f0a0881b872271a78c5fd910b9214f047f8e1 | /IntelliJ IDEA 2018.2.8/ideaProjects/o2o/src/main/java/com/imooc/o2o/service/AccountService.java | a158bcfca04aa0aa4616c4fb0ce1252085f2bf9e | [] | no_license | lz-5034/o2o_shop | 1bbbb890fa9e5546156439ce9ca892b7f8652ccb | 653ac7f285e786be6e81f659977589d4a91883ea | refs/heads/master | 2022-12-21T11:42:16.582709 | 2020-03-13T04:22:58 | 2020-03-13T04:22:58 | 246,968,778 | 0 | 0 | null | 2022-12-16T06:57:14 | 2020-03-13T02:04:22 | Java | UTF-8 | Java | false | false | 713 | java | package com.imooc.o2o.service;
import com.imooc.o2o.dto.AccountExecution;
import com.imooc.o2o.entity.Account;
import com.imooc.o2o.exceptions.AccountOperationException;
public interface AccountService {
//通过帐号和密码获取平台帐号信息
Account getAccountByUsernameAndPwd(String userName, String password);
//通过userId获取平台帐号信息
Account getAccountByUserId(long userId);
//绑定微信,生成平台专属的帐号
AccountExecution bindAccount(Account Account) throws AccountOperationException;
//修改平台帐号的登录密码
AccountExecution modifyAccount(Long userId, String username, String password, String newPassword)
throws AccountOperationException;
}
| [
"[email protected]"
] | |
9280c42c5f7dc40ef7b267e3b94dd6699150118d | 5193d3873f0d56ff8e9c72daacda67aa0b641f66 | /src/com/xn/pay/controller/operate/OperateController.java | 0bf476813605ee3d3052e09ef3c7c674d8420a22 | [] | no_license | hzhuazhi/fineDeploy | 281445e508787536d42e1b44b5698a9e045a752f | be1dbdf1a832b658f131cce8b31a8878883c968d | refs/heads/master | 2022-12-04T19:11:41.083230 | 2020-08-30T09:34:40 | 2020-08-30T09:34:40 | 271,991,148 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 6,715 | java | package com.xn.pay.controller.operate;
import com.xn.common.constant.ManagerConstant;
import com.xn.common.controller.BaseController;
import com.xn.common.util.HtmlUtil;
import com.xn.pay.model.Operate;
import com.xn.pay.service.OperateService;
import com.xn.system.entity.Account;
import org.apache.log4j.Logger;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Controller;
import org.springframework.ui.Model;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.util.WebUtils;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
import java.util.ArrayList;
import java.util.List;
/**
* @Description TODO
* @Date 2020/5/23 18:55
* @Version 1.0
*/
@Controller
@RequestMapping("/operate")
public class OperateController extends BaseController {
private static Logger log = Logger.getLogger(OperateController.class);
@Autowired
private OperateService<Operate> operateService;
/**
* 获取页面
*/
@RequestMapping("/list")
public String list() {
return "pay/operate/operateIndex";
}
// /**
// *
// * 获取表格数据列表
// */
@RequestMapping("/dataList")
public void dataList(HttpServletRequest request, HttpServletResponse response, Operate model) throws Exception {
// model.setIsEnable(ManagerConstant.PUBLIC_CONSTANT.IS_ENABLE_ZC);
List<Operate> dataList = new ArrayList<Operate>();
Account account = (Account) WebUtils.getSessionAttribute(request, ManagerConstant.PUBLIC_CONSTANT.ACCOUNT);
if(account !=null && account.getId() > ManagerConstant.PUBLIC_CONSTANT.SIZE_VALUE_ZERO){
if (account.getRoleId() != ManagerConstant.PUBLIC_CONSTANT.SIZE_VALUE_ONE){
//不是管理员,只能查询自己的数据
// model.setId(account.getId());
}
dataList = operateService.queryByList(model);
}
HtmlUtil.writerJson(response, model.getPage(), dataList);
}
/**
*
* 获取表格数据列表-无分页
*/
@RequestMapping("/dataAllList")
public void dataAllList(HttpServletRequest request, HttpServletResponse response, Operate model) throws Exception {
List<Operate> dataList = new ArrayList<Operate>();
Account account = (Account) WebUtils.getSessionAttribute(request, ManagerConstant.PUBLIC_CONSTANT.ACCOUNT);
if(account !=null && account.getId() > ManagerConstant.PUBLIC_CONSTANT.SIZE_VALUE_ZERO){
if (account.getRoleId() != ManagerConstant.PUBLIC_CONSTANT.SIZE_VALUE_ONE){
//不是管理员,只能查询自己的数据
model.setId(account.getId());
}
dataList = operateService.queryAllList(model);
}
HtmlUtil.writerJson(response, dataList);
}
/**
* 获取新增页面
*/
@RequestMapping("/jumpAdd")
public String jumpAdd(HttpServletRequest request, HttpServletResponse response, Model model) {
Account account = (Account) WebUtils.getSessionAttribute(request, ManagerConstant.PUBLIC_CONSTANT.ACCOUNT);
if(account !=null && account.getId() > ManagerConstant.PUBLIC_CONSTANT.SIZE_VALUE_ZERO){
if (account.getRoleId() != ManagerConstant.PUBLIC_CONSTANT.ROLE_SYS){
sendFailureMessage(response,"只允许管理员操作!");
}else {
model.addAttribute("bank", operateService.queryAllList());
}
}else {
sendFailureMessage(response,"登录超时,请重新登录在操作!");
}
return "pay/operate/operateAdd";
}
/**
* 添加数据
*/
@RequestMapping("/add")
public void add(HttpServletRequest request, HttpServletResponse response, Operate bean) throws Exception {
Account account = (Account) WebUtils.getSessionAttribute(request, ManagerConstant.PUBLIC_CONSTANT.ACCOUNT);
if(account !=null && account.getId() > ManagerConstant.PUBLIC_CONSTANT.SIZE_VALUE_ZERO){
operateService.add(bean);
sendSuccessMessage(response, "保存成功~");
}else {
sendFailureMessage(response,"登录超时,请重新登录在操作!");
}
}
/**
* 获取修改页面
*/
@RequestMapping("/jumpUpdate")
public String jumpUpdate(Model model, long id, Integer op) {
Operate notice = new Operate();
notice.setId(id);
model.addAttribute("account", operateService.queryById(notice));
// model.addAttribute("bank", operateService.queryAllList());
// model.addAttribute("account", mobileCardService.queryById(atModel));
// model.addAttribute("op", op);
return "pay/operate/operateEdit";
}
/**
* 修改数据
*/
@RequestMapping("/update")
public void update(HttpServletRequest request, HttpServletResponse response,Operate bean, String op) throws Exception {
Account account = (Account) WebUtils.getSessionAttribute(request, ManagerConstant.PUBLIC_CONSTANT.ACCOUNT);
if(account !=null && account.getId() > ManagerConstant.PUBLIC_CONSTANT.SIZE_VALUE_ZERO){
operateService.update(bean);
sendSuccessMessage(response, "保存成功~");
}else {
sendFailureMessage(response, "登录超时,请重新登录在操作!");
}
}
/**
* 删除数据
*/
@RequestMapping("/delete")
public void delete(HttpServletRequest request, HttpServletResponse response, Operate bean) throws Exception {
Account account = (Account) WebUtils.getSessionAttribute(request, ManagerConstant.PUBLIC_CONSTANT.ACCOUNT);
if(account !=null && account.getId() > ManagerConstant.PUBLIC_CONSTANT.SIZE_VALUE_ZERO){
operateService.delete(bean);
sendSuccessMessage(response, "删除成功");
}else{
sendFailureMessage(response, "登录超时,请重新登录在操作!");
}
}
/**
* 启用/禁用
*/
@RequestMapping("/manyOperation")
public void manyOperation(HttpServletRequest request, HttpServletResponse response, Operate bean) throws Exception {
Account account = (Account) WebUtils.getSessionAttribute(request, ManagerConstant.PUBLIC_CONSTANT.ACCOUNT);
if(account !=null && account.getId() > ManagerConstant.PUBLIC_CONSTANT.SIZE_VALUE_ZERO){
operateService.manyOperation(bean);
sendSuccessMessage(response, "状态更新成功");
}else{
sendFailureMessage(response, "登录超时,请重新登录在操作!");
}
}
}
| [
"[email protected]"
] | |
6eaf710d28412e02c86f0794a9a1f20f28dca2f0 | 8b82caa1cd36245f0af28a9be309725c8108d006 | /src/main/java/org/graphity/processor/mapper/jena/HttpExceptionMapper.java | 678aa3c5b568e58ef4051d9a0e588327153d0063 | [
"Apache-2.0"
] | permissive | anukat2015/Processor | 3b16a9c49a9d04c5b5cd3be8d05b6ea49c43c09a | 2c0a818b93f0e70683f1f0ce11293f055a00412b | refs/heads/master | 2021-01-17T10:16:17.088747 | 2016-06-17T00:17:56 | 2016-06-17T00:17:56 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,598 | java | /*
* Copyright 2014 Martynas Jusevičius <[email protected]>.
*
* 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.
*/
package org.graphity.processor.mapper.jena;
import com.hp.hpl.jena.rdf.model.ResourceFactory;
import javax.ws.rs.core.Response;
import javax.ws.rs.ext.ExceptionMapper;
import org.apache.jena.atlas.web.HttpException;
import org.graphity.processor.mapper.ExceptionMapperBase;
/**
*
* @author Martynas Jusevičius <[email protected]>
*/
@Deprecated
public class HttpExceptionMapper extends ExceptionMapperBase implements ExceptionMapper<HttpException>
{
@Override
public Response toResponse(HttpException ex)
{
return org.graphity.core.model.impl.Response.fromRequest(getRequest()).
getResponseBuilder(toResource(ex, Response.Status.INTERNAL_SERVER_ERROR,
ResourceFactory.createResource("http://www.w3.org/2011/http-statusCodes#InternalServerError")).
getModel(), getVariants()).
status(Response.Status.INTERNAL_SERVER_ERROR).
build();
}
} | [
"[email protected]"
] | |
79f7e3eb317490bd045df84de1727240e3778204 | 91cce63a5cdef6407d33dd0bccdcd81a9e5e0117 | /info-core/info-dao-hb/src/main/java/com/vertonur/dao/hibernate/manager/HibernateDAOManager.java | 1cc3dc9e137b87dd8c94b4f3e9763f67b67f419a | [] | no_license | guanzhongxing/XLineCode-info-project | e6600e15efbb4f799e8262f77807b7b87e7e61a1 | 8f508f8aab604ff114b4350ebb28fa7388dbf2fa | refs/heads/master | 2021-07-09T00:52:51.195603 | 2016-03-06T03:19:32 | 2016-03-06T03:19:32 | 106,103,933 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 8,620 | java | /**
*
*/
package com.vertonur.dao.hibernate.manager;
import java.lang.reflect.InvocationTargetException;
import java.util.Set;
import org.hibernate.Session;
import com.vertonur.dao.api.AdminDAO;
import com.vertonur.dao.api.AttachmentDAO;
import com.vertonur.dao.api.AttachmentInfoDAO;
import com.vertonur.dao.api.CategoryDAO;
import com.vertonur.dao.api.CommentDAO;
import com.vertonur.dao.api.ConfigDAO;
import com.vertonur.dao.api.DepartmentDAO;
import com.vertonur.dao.api.ExtendedBeanDAO;
import com.vertonur.dao.api.GroupDAO;
import com.vertonur.dao.api.InfoDAO;
import com.vertonur.dao.api.ModerationLogDAO;
import com.vertonur.dao.api.ModeratorDAO;
import com.vertonur.dao.api.PermissionDAO;
import com.vertonur.dao.api.PrivateMessageDAO;
import com.vertonur.dao.api.RoleDAO;
import com.vertonur.dao.api.SystemStatisticianDAO;
import com.vertonur.dao.api.UserDAO;
import com.vertonur.dao.hibernate.impl.AdminHibernateDAO;
import com.vertonur.dao.hibernate.impl.AttachmentHibernateDAO;
import com.vertonur.dao.hibernate.impl.AttachmentInfoHibernateDAO;
import com.vertonur.dao.hibernate.impl.CategoryHibernateDAO;
import com.vertonur.dao.hibernate.impl.CommentHibernateDAO;
import com.vertonur.dao.hibernate.impl.ConfigHibernateDAO;
import com.vertonur.dao.hibernate.impl.DepartmentHibernateDAO;
import com.vertonur.dao.hibernate.impl.ExtendedBeanHibernateDAO;
import com.vertonur.dao.hibernate.impl.GenericHibernateDAO;
import com.vertonur.dao.hibernate.impl.GroupHibernateDAO;
import com.vertonur.dao.hibernate.impl.InfoHibernateDAO;
import com.vertonur.dao.hibernate.impl.ModerationLogHibernateDAO;
import com.vertonur.dao.hibernate.impl.ModeratorHibernateDAO;
import com.vertonur.dao.hibernate.impl.PermissionHibernateDAO;
import com.vertonur.dao.hibernate.impl.PrivateMessageHibernateDAO;
import com.vertonur.dao.hibernate.impl.RoleHibernateDAO;
import com.vertonur.dao.hibernate.impl.SystemStatisticianHibernateDAO;
import com.vertonur.dao.hibernate.impl.UserHibernateDAO;
import com.vertonur.dao.hibernate.util.HibernateUtils;
import com.vertonur.dao.manager.DAOManager;
import com.vertonur.pojo.ExtendedBean;
import com.vertonur.pojo.config.CommentConfig;
import com.vertonur.pojo.config.Config;
import com.vertonur.pojo.config.EmailConfig;
import com.vertonur.pojo.config.InfoConfig;
import com.vertonur.pojo.config.ModerationConfig;
import com.vertonur.pojo.config.PrivateMsgConfig;
import com.vertonur.pojo.config.SystemContextConfig;
import com.vertonur.pojo.config.UserConfig;
/**
* @author Vertonur
*
*/
public class HibernateDAOManager extends DAOManager {
private HibernateDAOManager() {
this(null, null, null);
}
private HibernateDAOManager(
Set<Class<? extends ExtendedBean>> extendedBeans,
Set<Class<? extends Config>> extendedConfigs, String fileName) {
HibernateUtils.init(extendedBeans, extendedConfigs, fileName);
}
@SuppressWarnings("rawtypes")
private GenericHibernateDAO instantiateDAO(
Class<? extends GenericHibernateDAO> daoClass) {
try {
GenericHibernateDAO dao = daoClass.newInstance();
dao.setSession(getCurrentSession());
return dao;
} catch (Exception ex) {
throw new RuntimeException("Can not instantiate DAO: " + daoClass,
ex);
}
}
private Session getCurrentSession() {
return HibernateUtils.getSessionFactory().getCurrentSession();
}
@Override
public CommentDAO getCommentDAO() {
return (CommentDAO) instantiateDAO(CommentHibernateDAO.class);
}
@Override
public InfoDAO getInfoDAO() {
return (InfoDAO) instantiateDAO(InfoHibernateDAO.class);
}
@Override
public UserDAO getUserDAO() {
return (UserDAO) instantiateDAO(UserHibernateDAO.class);
}
public AdminDAO getAdminDAO() {
return (AdminDAO) instantiateDAO(AdminHibernateDAO.class);
}
@Override
public DepartmentDAO getDepartmentDAO() {
return (DepartmentDAO) instantiateDAO(DepartmentHibernateDAO.class);
}
@Override
public CategoryDAO getCategoryDAO() {
return (CategoryDAO) instantiateDAO(CategoryHibernateDAO.class);
}
public SystemStatisticianDAO getSystemStatisticianDAO() {
return (SystemStatisticianDAO) instantiateDAO(SystemStatisticianHibernateDAO.class);
}
@Override
public PrivateMessageDAO getPrivateMsgDAO() {
return (PrivateMessageDAO) instantiateDAO(PrivateMessageHibernateDAO.class);
}
@Override
public AttachmentDAO getAttachmentDAO() {
return (AttachmentDAO) instantiateDAO(AttachmentHibernateDAO.class);
}
@Override
public AttachmentInfoDAO getAttachmentInfoDAO() {
return (AttachmentInfoDAO) instantiateDAO(AttachmentInfoHibernateDAO.class);
}
@Override
public RoleDAO getRoleDAO() {
return (RoleDAO) instantiateDAO(RoleHibernateDAO.class);
}
@Override
public GroupDAO getGroupDAO() {
return (GroupDAO) instantiateDAO(GroupHibernateDAO.class);
}
@Override
public PermissionDAO getPermissionDAO() {
return (PermissionDAO) instantiateDAO(PermissionHibernateDAO.class);
}
@Override
public ModerationLogDAO getModerationLogDAO() {
return (ModerationLogDAO) instantiateDAO(ModerationLogHibernateDAO.class);
}
@Override
public ModeratorDAO getModeratorDAO() {
return (ModeratorDAO) instantiateDAO(ModeratorHibernateDAO.class);
}
public ConfigDAO<InfoConfig, Integer> getInfoConfigDAO() {
ConfigHibernateDAO<InfoConfig, Integer> dao = new ConfigHibernateDAO<InfoConfig, Integer>(
InfoConfig.class);
dao.setSession(getCurrentSession());
return dao;
}
@Override
public ConfigDAO<CommentConfig, Integer> getCommetConfigDAO() {
ConfigHibernateDAO<CommentConfig, Integer> dao = new ConfigHibernateDAO<CommentConfig, Integer>(
CommentConfig.class);
dao.setSession(getCurrentSession());
return dao;
}
@Override
public ConfigDAO<UserConfig, Integer> getUserConfigDAO() {
ConfigHibernateDAO<UserConfig, Integer> dao = new ConfigHibernateDAO<UserConfig, Integer>(
UserConfig.class);
dao.setSession(getCurrentSession());
return dao;
}
@Override
public ConfigDAO<PrivateMsgConfig, Integer> getPrivateMsgConfigDAO() {
ConfigHibernateDAO<PrivateMsgConfig, Integer> dao = new ConfigHibernateDAO<PrivateMsgConfig, Integer>(
PrivateMsgConfig.class);
dao.setSession(getCurrentSession());
return dao;
}
@Override
public ConfigDAO<SystemContextConfig, Integer> getSystemContextConfigDAO() {
ConfigHibernateDAO<SystemContextConfig, Integer> dao = new ConfigHibernateDAO<SystemContextConfig, Integer>(
SystemContextConfig.class);
dao.setSession(getCurrentSession());
return dao;
}
@Override
public ConfigDAO<EmailConfig, Integer> getEmailConfigDAO() {
ConfigHibernateDAO<EmailConfig, Integer> dao = new ConfigHibernateDAO<EmailConfig, Integer>(
EmailConfig.class);
dao.setSession(getCurrentSession());
return dao;
}
public ConfigDAO<ModerationConfig, Integer> getModerationConfigDAO() {
ConfigHibernateDAO<ModerationConfig, Integer> dao = new ConfigHibernateDAO<ModerationConfig, Integer>(
ModerationConfig.class);
dao.setSession(getCurrentSession());
return dao;
}
@Override
public <T extends Config> ConfigDAO<T, Integer> getExtendedConfigDAO(
Class<T> clazz) {
ConfigHibernateDAO<T, Integer> dao = new ConfigHibernateDAO<T, Integer>(
clazz);
dao.setSession(getCurrentSession());
return dao;
}
@Override
public <T extends ExtendedBean, L extends ExtendedBeanDAO<T, Integer>> ExtendedBeanDAO<T, Integer> getExtendedBeanDAO(
Class<L> daoClazz, Class<T> clazz) throws SecurityException,
IllegalArgumentException, NoSuchMethodException,
InstantiationException, IllegalAccessException,
InvocationTargetException {
ExtendedBeanDAO<T, Integer> dao = super.getExtendedBeanDAO(daoClazz,
clazz);
ExtendedBeanHibernateDAO<T, Integer> extendedBeanDAO = (ExtendedBeanHibernateDAO<T, Integer>) dao;
extendedBeanDAO.setSession(getCurrentSession());
return (ExtendedBeanDAO<T, Integer>) extendedBeanDAO;
}
@Override
public boolean isTransactionSupported() {
return true;
}
@Override
public void beginTransaction() {
Session session = getCurrentSession();
session.beginTransaction();
}
@Override
public void commitTransaction() {
Session session = getCurrentSession();
session.getTransaction().commit();
}
@Override
public boolean isTransactionAlive() {
Session session = getCurrentSession();
return session.getTransaction().isActive();
}
@Override
public void rollbackTransaction() {
Session session = getCurrentSession();
session.getTransaction().rollback();
}
@Override
public void shutdown() {
if (isTransactionAlive())
rollbackTransaction();
getCurrentSession().close();
HibernateUtils.destroy();
}
}
| [
"[email protected]"
] | |
29a167b981204fcade445598358197ab9ea89454 | 153fdfea5ebf6db00d9c82ea733135872a5dea50 | /utils/bizcommon/datachain/DataFilter.java | 9873d0d65652ca3b72bcdb630e74cb46bb119a89 | [
"Apache-2.0"
] | permissive | zycgit/configuration | fbc04bea1b33b61d51d8dd5b31018d31d016e2c5 | c1c0b4fe17b5fa832c4a2271a6328ba8c85c8b2d | refs/heads/master | 2021-08-22T20:22:24.588389 | 2017-05-06T10:20:34 | 2017-05-06T10:20:34 | 73,467,721 | 0 | 0 | Apache-2.0 | 2021-08-02T16:56:12 | 2016-11-11T10:17:21 | Java | UTF-8 | Java | false | false | 1,407 | java | /*
/*
* 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.
*/
package org.more.bizcommon.datachain;
/**
*
* @version : 2016年5月6日
* @author 赵永春([email protected])
*/
public interface DataFilter<I, O> {
/**
* 正向转换对象。
* @param chain 过滤器链
* @throws Throwable 执行期间引发的异常。
*/
public O doForward(Domain<I> domain, DataFilterChain<I, O> chain) throws Throwable;
/**
* 执行反向转换对象
* @param chain 过滤器链
* @throws Throwable 执行期间引发的异常。
*/
public I doBackward(Domain<O> domain, DataFilterChain<I, O> chain) throws Throwable;
} | [
"[email protected]"
] | |
9838aa303d43ff1eefffdabd515520f633440318 | 21eb7e17c7985aa829220696a3504101e5c4d940 | /src/main/java/entities/User.java | 12853d6f862092dfeb26044ef892b2e38c129387 | [] | no_license | stefan2212/Week11 | 125a8693d08931fb19a2cdf3cde8f79f4b1d03cc | fb9cefb1ba7da19b141b0816d951a930e0d95e7b | refs/heads/master | 2021-05-14T07:11:30.936352 | 2018-01-07T23:52:15 | 2018-01-07T23:52:15 | 116,259,557 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 707 | java | package entities;
import javax.persistence.*;
@Entity
@Table(name = "users")
public class User {
@Id
@GeneratedValue(strategy = GenerationType.SEQUENCE)
private int id;
@Column(unique = true, name = "username")
private String username;
@Column(name = "password")
private String password;
public String getUsername() {
return username;
}
public void setUsername(String username) {
this.username = username;
}
public String getPassword() {
return password;
}
public void setPassword(String password) {
this.password = password;
}
@Override
public String toString(){
return username;
}
}
| [
"[email protected]"
] | |
6645a4ef5333ff84c0cccdcc201360359ab58d36 | 2d1e30d0a10ad8aa45c0152d26feb0a9d99f786f | /eap-component/eap-component-interface/src/main/java/com/mk/eap/component/common/print/PdfPrintEngineUtil.java | 0906c9f92fedb9ed12e065de3bc427ffced63e8e | [] | no_license | edf-x/edf-service | c2cc6394ef9cb36e46e605bf7407f9f6cbd80345 | 014a8bbfc28dcd32c8b3d9603916a0df66b073e9 | refs/heads/master | 2021-05-07T06:17:47.472770 | 2017-11-23T02:26:11 | 2017-11-23T02:26:11 | 111,748,482 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,196 | java | package com.mk.eap.component.common.print;
import org.apache.pdfbox.pdmodel.PDDocument;
import org.apache.pdfbox.printing.PDFPageable;
import java.awt.print.PrinterException;
import java.awt.print.PrinterJob;
import java.io.File;
import java.io.IOException;
public class PdfPrintEngineUtil {
private PDDocument pdDocumnet;
/**
* 来源文件
*/
private String srcFile;
public PdfPrintEngineUtil(PDDocument pdDocumnet) throws PrinterException {
this.setPdDocumnet(pdDocumnet);
printJob();
}
public PdfPrintEngineUtil(String srcFile) throws IOException, PrinterException {
this.srcFile = srcFile;
this.setPdDocumnet(PDDocument.load(new File(srcFile)));
printJob();
}
private void printJob() throws PrinterException {
PrinterJob job = PrinterJob.getPrinterJob();
job.setPageable(new PDFPageable(getPdDocumnet()));
if (job.printDialog()) {
job.print();
}
}
public PDDocument getPdDocumnet() {
return pdDocumnet;
}
public void setPdDocumnet(PDDocument pdDocumnet) {
this.pdDocumnet = pdDocumnet;
}
public String getSrcFile() {
return srcFile;
}
public void setSrcFile(String srcFile) {
this.srcFile = srcFile;
}
}
| [
"[email protected]"
] | |
6bbc6afdee3ed18f8f4af8344907ea7fe0f3cad7 | 8c73d5657fc32314a6d247f0cb0a74e4d594bdea | /rbf/src/main/java/iad/network/training/NetworkTrainer.java | 68ca29e5a930a268a9125a91dfd0a6c1f9cdf80c | [] | no_license | pg1809/iad | 7a07d8f6b61aa61ff98982f93abcfd98e8945ae5 | 8e51ecc609f73d8cbc3a0386ad3678626ded5d48 | refs/heads/master | 2021-01-10T18:35:19.488437 | 2015-06-04T18:51:08 | 2015-06-04T18:51:08 | 31,649,033 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 3,292 | java | package iad.network.training;
import iad.network.AbstractNetwork;
import iad.network.centers.CentersAdjustmentStrategy;
import iad.network.centers.RandomCentersStrategy;
import iad.network.input.InputRow;
import iad.network.layer.NeuronLayer;
import iad.network.neuron.AbstractNeuron;
import iad.network.neuron.NeuronInput;
import java.util.List;
import java.util.Random;
/**
*
* @author Wojciech Szałapski
*/
public abstract class NetworkTrainer {
private final static double DEFAULT_LEARNING_RATE = 0.1;
private final static double DEFAULT_MOMENTUM_FACTOR = 0;
protected CentersAdjustmentStrategy centersAdjustmentStrategy = new RandomCentersStrategy();
protected double learningRate = DEFAULT_LEARNING_RATE;
protected double momentumFactor = DEFAULT_MOMENTUM_FACTOR;
public abstract List<Double> trainNetwork(AbstractNetwork network, List<InputRow> trainingData);
protected double trainNetworkWithSampleSet(AbstractNetwork network, List<InputRow> trainingData) {
for (InputRow trainingDataSample : trainingData) {
trainNetworkWithSample(network, trainingDataSample.getExpectedOutput(), trainingDataSample.getValues());
}
double meanSquaredError = 0;
for (InputRow trainingDataSample : trainingData) {
double sampleError = 0;
double[] output = network.runNetwork(trainingDataSample.getValues());
for (int i = 0; i < output.length; ++i) {
sampleError += Math.pow(trainingDataSample.getExpectedOutput()[i] - output[i], 2);
}
sampleError /= 2;
sampleError /= output.length;
meanSquaredError += sampleError;
}
meanSquaredError /= trainingData.size();
return meanSquaredError;
}
protected void trainNetworkWithSample(AbstractNetwork network, double[] expectedOutput, double[] sample) {
network.runNetwork(sample);
network.getOutputLayer().updateDelta(expectedOutput, learningRate);
network.getHiddenLayer().updateDelta(null, learningRate);
network.getHiddenLayer().updateParameters(momentumFactor);
network.getOutputLayer().updateParameters(momentumFactor);
}
protected void adjustCentersInRadialLayer(NeuronLayer radialLayer, List<InputRow> data) {
centersAdjustmentStrategy.adjustCenters(radialLayer, data);
}
protected void generateStartingWeights(AbstractNetwork network) {
Random random = new Random();
generateStartingWeightsForLayer(network.getInputLayer(), random);
generateStartingWeightsForLayer(network.getHiddenLayer(), random);
generateStartingWeightsForLayer(network.getOutputLayer(), random);
}
private void generateStartingWeightsForLayer(NeuronLayer layer, Random random) {
for (AbstractNeuron neuron : layer.getNeurons()) {
neuron.getInputNeurons().stream()
.forEach((NeuronInput input) -> input.setWeight(random.nextDouble() - 0.5));
neuron.setBias(random.nextDouble() - 0.5);
}
}
public double getLearningRate() {
return learningRate;
}
public void setLearningRate(double learningRate) {
this.learningRate = learningRate;
}
}
| [
"[email protected]"
] | |
7d4e33399aafa67a464e749911a7de571857c5f7 | b2128bf5cae76ff637d37fdebc4b9cdad07aa87d | /com.onyem.jtracer.reader.meta/src/com/onyem/jtracer/reader/meta/DatabaseId.java | da9074b2231a7608e64aa1a7eaaa3bae5dcf89a9 | [] | no_license | algobardo/com.onyem.jtracer.reader | e3884f1a13433583ba5cd9642fba210c0c2b66d7 | a63488472f6a7d87cab0d0747961dbfe3c03d448 | refs/heads/master | 2021-01-18T05:42:27.609991 | 2013-07-15T06:36:29 | 2013-07-15T06:36:29 | 21,840,968 | 1 | 0 | null | null | null | null | UTF-8 | Java | false | false | 113 | java | package com.onyem.jtracer.reader.meta;
public interface DatabaseId {
long getId();
Class<?> getType();
}
| [
"[email protected]"
] | |
502e4b7d610f2ecce5351ec0f6c3ad3db24bbf9d | 0af8b92686a58eb0b64e319b22411432aca7a8f3 | /single-medium-project/src/main/java/org/gradle/test/performancenull_5/Productionnull_487.java | c79bb6c4ae3c7b2332625773ab1f026116053d5c | [] | no_license | gradle/performance-comparisons | b0d38db37c326e0ce271abebdb3c91769b860799 | e53dc7182fafcf9fedf07920cbbea8b40ee4eef4 | refs/heads/master | 2023-08-14T19:24:39.164276 | 2022-11-24T05:18:33 | 2022-11-24T05:18:33 | 80,121,268 | 17 | 15 | null | 2022-09-30T08:04:35 | 2017-01-26T14:25:33 | null | UTF-8 | Java | false | false | 582 | java | package org.gradle.test.performancenull_5;
public class Productionnull_487 {
private final String property;
public Productionnull_487(String param) {
this.property = param;
}
public String getProperty() {
return property;
}
private String prop0;
public String getProp0() {
return prop0;
}
public void setProp0(String value) {
prop0 = value;
}
private String prop1;
public String getProp1() {
return prop1;
}
public void setProp1(String value) {
prop1 = value;
}
}
| [
"[email protected]"
] | |
229da3a24f1efd15c0bdb2daba8eda717af7890c | 1b29113846134dc90ebd0065d9a7361bd82e091e | /Activities/POC/AccountLoginMS/src/main/java/com/ms/bootcamp/jwt/JwtUtils.java | 1dcd1d7735b746821be0be83bda2748fe17543a0 | [] | no_license | soorajshettyv/work | e97fa6fd06610ce4a10fa98b23c2080cb91ec60f | ca75ddc958122437bf33ca73802c2856618dd1a6 | refs/heads/master | 2023-02-22T07:28:57.457194 | 2021-01-11T11:55:36 | 2021-01-11T11:55:36 | 328,641,389 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 2,101 | java | package com.ms.bootcamp.jwt;
import java.util.Date;
import java.util.stream.Collectors;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.springframework.beans.factory.annotation.Value;
import org.springframework.security.core.Authentication;
import org.springframework.security.core.GrantedAuthority;
import org.springframework.stereotype.Component;
import com.ms.bootcamp.service.UserDetailsImpl;
import io.jsonwebtoken.*;
@Component
public class JwtUtils {
private static final Logger logger = LoggerFactory.getLogger(JwtUtils.class);
@Value("${jwtSecret}")
private String jwtSecret;
@Value("${jwtExpirationMs}")
private int jwtExpirationMs;
public String generateJwtToken(Authentication authentication) {
UserDetailsImpl userPrincipal = (UserDetailsImpl) authentication.getPrincipal();
final String authorities = authentication.getAuthorities().stream()
.map(GrantedAuthority::getAuthority)
.collect(Collectors.joining(","));
return Jwts.builder()
.setSubject((userPrincipal.getUsername()))
.claim("ROLE", authorities)
.setIssuedAt(new Date())
.setExpiration(new Date((new Date()).getTime() + jwtExpirationMs))
.signWith(SignatureAlgorithm.HS512, jwtSecret)
.compact();
}
public String getUserNameFromJwtToken(String token) {
return Jwts.parser().setSigningKey(jwtSecret).parseClaimsJws(token).getBody().getSubject();
}
public boolean validateJwtToken(String authToken) {
try {
Jwts.parser().setSigningKey(jwtSecret).parseClaimsJws(authToken);
return true;
} catch (SignatureException e) {
logger.error("Invalid JWT signature: {}", e.getMessage());
} catch (MalformedJwtException e) {
logger.error("Invalid JWT token: {}", e.getMessage());
} catch (ExpiredJwtException e) {
logger.error("JWT token is expired: {}", e.getMessage());
} catch (UnsupportedJwtException e) {
logger.error("JWT token is unsupported: {}", e.getMessage());
} catch (IllegalArgumentException e) {
logger.error("JWT claims string is empty: {}", e.getMessage());
}
return false;
}
}
| [
"[email protected]"
] | |
579fe753261cfab9e12330365717c761e9fb5107 | b661735c47af7ec54907eb020234a48832784d4e | /src/main/java/ca/jrvs/apps/twitter/example/JsonParser.java | dd99bff6774f4ff0f2f79c99728ef0df95402187 | [] | no_license | gursimran258/java_Apps | 46720bb8d10ad08c969a3262e04b1cfb60f594eb | d48a638dce42b665aadbb20bc8700c1ee224c7c0 | refs/heads/master | 2023-05-03T10:19:08.216056 | 2019-07-16T01:50:56 | 2019-07-16T01:50:56 | 194,971,136 | 0 | 0 | null | 2023-04-14T17:49:15 | 2019-07-03T03:13:39 | TSQL | UTF-8 | Java | false | false | 1,607 | java | package ca.jrvs.apps.twitter.example;
import ca.jrvs.apps.twitter.example.dto.Company;
import com.fasterxml.jackson.annotation.JsonInclude;
import com.fasterxml.jackson.core.JsonProcessingException;
import com.fasterxml.jackson.databind.ObjectMapper;
import com.fasterxml.jackson.databind.ObjectWriter;
import com.fasterxml.jackson.databind.SerializationFeature;
import java.io.File;
import java.io.IOException;
public class JsonParser {
/**
* Convert a java object to JSON string
*
* @param object input object
* @return JSON String
* @throws JsonProcessingException
*/
public static String toJson(Object object, boolean
prettyJson, boolean includeNullValues) throws
JsonProcessingException {
ObjectMapper mapper = new ObjectMapper();
if (!includeNullValues)
mapper.setSerializationInclusion(JsonInclude.Include.NON_NULL);
if (prettyJson)
mapper.enable(SerializationFeature.INDENT_OUTPUT);
return mapper.writeValueAsString(mapper);
}
/**
* Parse JSON string to a object
*
* @param json JSON str
* @param clazz object class
* @param <T> Type
* @return Object
* @throws IOException //
*/
public static <T> T toObjectFromJson(String json,
Class clazz) throws IOException {
ObjectMapper objectMapper = new ObjectMapper();
File file = new File(json);
// objectMapper.readValue(file, clazz.class);
return (T) objectMapper.readValue(json, clazz);
}
}
| [
"[email protected]"
] | |
e1db07cb93314b304c43b1a3cf36c768a80a7357 | 3776594e5fd87a54fc50a6ba5abd616dbac1d170 | /app/src/main/java/com/chuxin/law/ry/server/response/DefaultConversationResponse.java | 29126758db884277c0581e67fbaa0c9c0d552a46 | [
"Apache-2.0"
] | permissive | ZypTeam/TalkLaw | 3d0d90924b0c6ed9c766a57215aa1a22ce1701e3 | ad550878989338453f2644d8adbb5f1eca941f3e | refs/heads/master | 2021-09-14T08:29:51.454754 | 2018-05-10T10:30:59 | 2018-05-10T10:30:59 | 115,071,500 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 4,500 | java | package com.chuxin.law.ry.server.response;
import java.util.List;
/**
* Created by AMing on 16/4/1.
* Company RongCloud
*/
public class DefaultConversationResponse {
/**
* code : 200
* result : [{"type":"group","id":"E1IoyL5Pj","name":"用户体验群 Ⅰ","portraitUri":"","memberCount":3,"maxMemberCount":3000},{"type":"group","id":"iNj2YO4ib","name":"用户体验群 Ⅱ","portraitUri":"","memberCount":3,"maxMemberCount":3000},{"type":"group","id":"qGEj03bpP","name":"用户体验群 Ⅲ","portraitUri":"","memberCount":3,"maxMemberCount":3000},{"type":"chatroom","id":"OIBbeKlkx","name":"聊天室 I"},{"type":"chatroom","id":"675NdFjkx","name":"聊天室 II"},{"type":"chatroom","id":"MfgILRowx","name":"聊天室 III"},{"type":"chatroom","id":"lFVuoM7Jx","name":"聊天室 IV"}]
*/
private int code;
/**
* type : group
* id : E1IoyL5Pj
* name : 用户体验群 Ⅰ
* portraitUri :
* memberCount : 3
* maxMemberCount : 3000
*/
private List<ResultEntity> result;
public void setCode(int code) {
this.code = code;
}
public void setResult(List<ResultEntity> result) {
this.result = result;
}
public int getCode() {
return code;
}
public List<ResultEntity> getResult() {
return result;
}
public static class ResultEntity {
private String type;
private String id;
private String name;
private String portraitUri;
private int memberCount;
private int maxMemberCount;
public void setType(String type) {
this.type = type;
}
public void setId(String id) {
this.id = id;
}
public void setName(String name) {
this.name = name;
}
public void setPortraitUri(String portraitUri) {
this.portraitUri = portraitUri;
}
public void setMemberCount(int memberCount) {
this.memberCount = memberCount;
}
public void setMaxMemberCount(int maxMemberCount) {
this.maxMemberCount = maxMemberCount;
}
public String getType() {
return type;
}
public String getId() {
return id;
}
public String getName() {
return name;
}
public String getPortraitUri() {
return portraitUri;
}
public int getMemberCount() {
return memberCount;
}
public int getMaxMemberCount() {
return maxMemberCount;
}
}
//
// /**
// * code : 200
// * result : [{"type":"group","id":"9uWQgG6hH","memberCount":2,"maxMemberCount":3000},{"type":"group","id":"xQm0BvEUA","memberCount":2,"maxMemberCount":3000},{"type":"group","id":"h0COZMkPf","memberCount":2,"maxMemberCount":3000},{"type":"chatroom","id":"LoDld8izA"},{"type":"chatroom","id":"mFGfyNe51"},{"type":"chatroom","id":"Sv7gGCckF"},{"type":"chatroom","id":"u4pLPtsY9"}]
// */
//
// private int code;
// /**
// * type : group
// * id : 9uWQgG6hH
// * memberCount : 2
// * maxMemberCount : 3000
// */
//
// private List<ResultEntity> result;
//
// public void setCode(int code) {
// this.code = code;
// }
//
// public void setResult(List<ResultEntity> result) {
// this.result = result;
// }
//
// public int getCode() {
// return code;
// }
//
// public List<ResultEntity> getResult() {
// return result;
// }
//
// public static class ResultEntity {
// private String type;
// private String id;
// private int memberCount;
// private int maxMemberCount;
//
// public void setType(String type) {
// this.type = type;
// }
//
// public void setId(String id) {
// this.id = id;
// }
//
// public void setMemberCount(int memberCount) {
// this.memberCount = memberCount;
// }
//
// public void setMaxMemberCount(int maxMemberCount) {
// this.maxMemberCount = maxMemberCount;
// }
//
// public String getType() {
// return type;
// }
//
// public String getId() {
// return id;
// }
//
// public int getMemberCount() {
// return memberCount;
// }
//
// public int getMaxMemberCount() {
// return maxMemberCount;
// }
// }
}
| [
"liangjie@witmob"
] | liangjie@witmob |
219bac8983232e6b3a88743b88ea333669108e67 | a1826c2ed9c12cfc395fb1a14c1a2e1f097155cb | /imagesearch-20210120/src/main/java/com/aliyun/imagesearch20210120/models/ImagePropertyRequest.java | f78df91b8667bc915aa5dc7d7476bd3bfb5b02ec | [
"Apache-2.0"
] | permissive | aliyun/alibabacloud-java-sdk | 83a6036a33c7278bca6f1bafccb0180940d58b0b | 008923f156adf2e4f4785a0419f60640273854ec | refs/heads/master | 2023-09-01T04:10:33.640756 | 2023-09-01T02:40:45 | 2023-09-01T02:40:45 | 288,968,318 | 40 | 45 | null | 2023-06-13T02:47:13 | 2020-08-20T09:51:08 | Java | UTF-8 | Java | false | false | 909 | java | // This file is auto-generated, don't edit it. Thanks.
package com.aliyun.imagesearch20210120.models;
import com.aliyun.tea.*;
public class ImagePropertyRequest extends TeaModel {
@NameInMap("InstanceName")
public String instanceName;
@NameInMap("PicUrl")
public String picUrl;
public static ImagePropertyRequest build(java.util.Map<String, ?> map) throws Exception {
ImagePropertyRequest self = new ImagePropertyRequest();
return TeaModel.build(map, self);
}
public ImagePropertyRequest setInstanceName(String instanceName) {
this.instanceName = instanceName;
return this;
}
public String getInstanceName() {
return this.instanceName;
}
public ImagePropertyRequest setPicUrl(String picUrl) {
this.picUrl = picUrl;
return this;
}
public String getPicUrl() {
return this.picUrl;
}
}
| [
"[email protected]"
] | |
cfab2aec8fb62840d8e1c4c31443723e3dc2b383 | 41ff7a819acc00775c2f3bc76f15e31229d3da0c | /spring-demo-annotations/src/com/luv2code/springdemo/HappyFortuneService.java | 2f5209165edc1c07f0fc2fa047e4568c83137f6d | [] | no_license | ZuhairAhamed/Java-Spring | b7c67133ec8615d1f61293f09b23643216c7581c | 3b14b224acb57ad3db5644ff74943e19f1c3d810 | refs/heads/master | 2022-12-25T16:38:30.588070 | 2020-01-12T14:15:28 | 2020-01-12T14:15:28 | 229,875,035 | 0 | 0 | null | 2022-12-16T00:40:38 | 2019-12-24T05:16:11 | Java | UTF-8 | Java | false | false | 309 | java | package com.luv2code.springdemo;
import org.springframework.stereotype.Component;
@Component
public class HappyFortuneService implements FortuneService {
@Override
public String getFortuneService() {
// TODO Auto-generated method stub
return "This is for dependency injection with autowiring";
}
}
| [
"[email protected]"
] | |
4b77797c317804bbd671c6dd8229aa6dad3ba0c7 | 27b9397cce44075cf90b64a3d959df2c64cb39b4 | /springapi-paginacao-security-swagger/src/main/java/br/com/rs/forum/repository/TopicoRepository.java | 599be75bc62c2acef891593ea495ac52b1d8e075 | [] | no_license | wfcosta/springapi-paginacao-security-swagger | 9ffc68c4deb2f4d4b098f7ca3bfbb383d6cb3e4f | 8a8ea1455890b56201926b8019293c7041b1115e | refs/heads/master | 2021-04-22T22:45:15.288137 | 2020-03-25T11:56:29 | 2020-03-25T11:56:29 | 249,878,704 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 391 | java | package br.com.rs.forum.repository;
import org.springframework.data.domain.Page;
import org.springframework.data.domain.Pageable;
import org.springframework.data.jpa.repository.JpaRepository;
import br.com.rs.forum.modelo.Topico;
public interface TopicoRepository extends JpaRepository<Topico, Long> {
Page<Topico> findByCursoNome(String nomeCurso, Pageable paginacao);
}
| [
"[email protected]"
] | |
6a55045c110e558a03380b7b2981ba82eea92c88 | 9c7267e74031028d9f83c19c7382792d8253ff3d | /week-04/day4/flyable/src/Flyable.java | 7b2a125d8bc05082362f6775d2b8508e301a479d | [] | no_license | gergohs/all_tasks | 2ef18eaae6043c2962c30eda06d2c8168019b703 | 5ecb857fd3afac1f066aa215cd1fb1471ff9f1d4 | refs/heads/master | 2020-04-27T22:19:34.216097 | 2019-03-09T18:59:00 | 2019-03-09T18:59:00 | 174,732,568 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 107 | java | public interface Flyable {
public void land();
public void fly();
public void takeOff();
}
| [
"[email protected]"
] | |
4f506a06802064c980fcf56fa0783e90c390a445 | 1e1219895775e898be4eda6795b00d757404161b | /Roket_0.4/src/ranges/GroupedPlusRange.java | bbad46647fc236cce0204501b9a09bd90cc42181 | [] | no_license | aaaaaaaaalkj/boket | 28ac04a619bf88992f146c145b7f9e0c9dfdfeab | 0c325acdba9746e78a3a2427bb715187ed54a5e2 | refs/heads/master | 2021-01-02T22:50:04.022318 | 2018-01-04T09:18:37 | 2018-01-04T09:18:37 | 25,786,745 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,577 | java | package ranges;
import managementcards.cards.Rank;
public class GroupedPlusRange implements Range {
private final GroupedRange first;
public GroupedPlusRange(final GroupedRange first) {
this.first = first;
}
public final boolean isSuited() {
return first.isSuited();
}
public final boolean isPair() {
return first.isPair();
}
@Override
public final boolean contains(final ElementRange r) {
if (r.isPair() && this.isPair()) {
return r.getRank1().ordinal() >= first.getRank1().ordinal();
} else {
// r is not a pair
return r.isSuited() == this.isSuited()
&& r.isPair() == this.isPair()
&& r.getRank1() == first.getRank1()
&& r.getRank2().ordinal() >= first.getRank2().ordinal();
}
}
@Override
public final int size() {
if (isPair()) {
int count = Rank.VALUES.size() - first.getRank1().ordinal();
// each grouped pair has 6 items in it
return count * 6;
} else {
int count = first.getRank1().ordinal() - first.getRank2().ordinal();
if (isSuited()) {
return count * 4;
} else {
return count * 12;
}
}
}
public final SimpleRange ungroup() {
SimpleRange res = new SimpleRange();
int top = first.isPair() ? Rank.VALUES.size() : first.getRank1().ordinal();
for (int i = first.getRank2().ordinal(); i < top; i++) {
Rank r2 = Rank.VALUES.get(i);
Rank r1 = first.isPair() ? r2 : first.getRank1();
GroupedRange.ungroup2(res, r1, r2, first.isSuited());
}
return res;
}
}
| [
"[email protected]"
] | |
179c10ad326e16ef303a5ac2a6e9cad6375ef560 | 18c271b7219d6cbfeb20c384223c158261797d67 | /core/src/ru/spbu/apmath/prog/Score.java | bfc0efd978e7d825b976c24f5922b6d9fc2b0f76 | [] | no_license | 7KASPAR7/Sound-FlappyBird-Project | 96d72fe974c6e97a3bd8faf411e52e13133b192f | 441d0cadf41903dea9d87071fd1da90ed57fefbf | refs/heads/master | 2022-04-04T19:46:57.505466 | 2020-03-07T20:55:49 | 2020-03-07T20:55:49 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 701 | java | package ru.spbu.apmath.prog;
import javax.swing.*;
import java.awt.*;
public class Score extends Component {
int myscore = 10;
int x = 0;
int y = 0;
JLabel label= new JLabel("Ваш счет: ");
public void create(){
JFrame f = new JFrame("Cчётчик очков");
f.setLayout(new FlowLayout());
f.setSize(100, 100);
f.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
f.add(label);
f.setVisible(true);
}
public void update() {
myscore++;
}
public void render(){
label.setText("Ваш счет: " + (String.valueOf(myscore)));
}
public void recreate() {
myscore = 0;
}
}
| [
"[email protected]"
] | |
c5cdbcba4f015e5b39b4b41ee916f50fc4d2e427 | b36a85dd502904fc014f318e91a7ff5d67537905 | /src/main/java/com/redxun/oa/crm/manager/CrmProviderManager.java | 475e51c4a6dea917ca4b02a2b63cb6ffd916614d | [] | no_license | clickear/jsaas | 7c0819b4f21443c10845e549b521fa50c3a1c760 | ddffd4c42ee40c8a2728d46e4c7009a95f7f801f | refs/heads/master | 2020-03-16T09:00:40.649868 | 2018-04-18T12:13:50 | 2018-04-18T12:13:50 | 132,606,788 | 4 | 8 | null | 2018-05-08T12:37:25 | 2018-05-08T12:37:25 | null | UTF-8 | Java | false | false | 3,539 | java | package com.redxun.oa.crm.manager;
import javax.annotation.Resource;
import org.apache.commons.lang.StringUtils;
import org.springframework.stereotype.Service;
import com.alibaba.fastjson.JSON;
import com.redxun.bpm.activiti.handler.ProcessEndHandler;
import com.redxun.bpm.activiti.handler.ProcessStartAfterHandler;
import com.redxun.bpm.activiti.handler.TaskAfterHandler;
import com.redxun.bpm.core.entity.BpmInst;
import com.redxun.bpm.core.entity.IExecutionCmd;
import com.redxun.bpm.core.entity.ProcessStartCmd;
import com.redxun.bpm.core.entity.config.ProcessConfig;
import com.redxun.bpm.core.manager.BpmInstManager;
import com.redxun.core.constants.MStatus;
import com.redxun.core.dao.IDao;
import com.redxun.core.manager.BaseManager;
import com.redxun.core.util.BeanUtil;
import com.redxun.oa.crm.dao.CrmProviderDao;
import com.redxun.oa.crm.entity.CrmProvider;
/**
* <pre>
* 描述:CrmProvider业务服务类
* 构建组:miweb
* 作者:keith
* 邮箱: [email protected]
* 日期:2014-2-1-上午12:52:41
* 版权:广州红迅软件有限公司版权所有
* </pre>
*/
@Service
public class CrmProviderManager extends BaseManager<CrmProvider> implements
ProcessStartAfterHandler,TaskAfterHandler,ProcessEndHandler{
@Resource
private CrmProviderDao crmProviderDao;
@Resource
BpmInstManager bpmInstManager;
@SuppressWarnings("rawtypes")
@Override
protected IDao getDao() {
return crmProviderDao;
}
public void deleteCasecade(String proId){
CrmProvider crmProvider=get(proId);
if(crmProvider!=null){
if(StringUtils.isNotEmpty(crmProvider.getActInstId())){
bpmInstManager.deleteCasecadeByActInstId(crmProvider.getActInstId(), "");
}
delete(proId);
}
}
/**
* 通过Json更新供应商的值
* @param json
* @param busKey
*/
public void updateFromJson(String json,String busKey){
CrmProvider orgProvider=get(busKey);
if(orgProvider==null) return;
CrmProvider newProvider=JSON.parseObject(json,CrmProvider.class);
try {
BeanUtil.copyNotNullProperties(orgProvider, newProvider);
} catch (Exception e) {
e.printStackTrace();
}
crmProviderDao.update(orgProvider);
}
/**
* 2.任务审批完成时调用,用于更新供应商的数据
*/
@Override
public void taskAfterHandle(IExecutionCmd cmd, String nodeId, String busKey) {
updateFromJson(cmd.getJsonData(),busKey);
}
/**
* 3.流程成功审批完成时,对供应商的审批状态进行更新
*/
@Override
public void endHandle(BpmInst bpmInst) {
String busKey=bpmInst.getBusKey();
CrmProvider crmProvider=crmProviderDao.get(busKey);
if(crmProvider!=null){
crmProvider.setStatus(MStatus.ENABLED.name());
crmProviderDao.update(crmProvider);
}
}
/**
* 通过Json数据创建供应商
* @param json
* @param bpmInstId
* @return
*/
public CrmProvider createFromJson(String json,String actInstId){
CrmProvider crmProvider=JSON.parseObject(json, CrmProvider.class);
crmProvider.setActInstId(actInstId);
crmProviderDao.create(crmProvider);
return crmProvider;
}
/**
* 通过流程实例创建完成后通过表单的数据创建供应商信息
*/
// @Override
public String processStartAfterHandle(String json, String actInstId) {
CrmProvider crmProvider=createFromJson(json,actInstId);
crmProvider.setStatus(MStatus.INIT.name());
return crmProvider.getProId();
}
public String processStartAfterHandle(ProcessConfig processConfig, ProcessStartCmd cmd, BpmInst bpmInst) {
// TODO Auto-generated method stub
return null;
}
} | [
"yijiang331"
] | yijiang331 |
7dad5ee2409f0f9f8d8c7c3880bef548e6542629 | 30c5d9a7abef5914132dddc44fdf281b1cae549c | /src/cs455/overlay/transport/TCPServerThread.java | 56d587502e8a632ea36af5223e75acd2db4e51ed | [] | no_license | acarb95/SimplifiedDHT | d299ec810ddc4575ad975a20330c425f38f41bf9 | 8887aced51885f827f25df64fa425f11a2b64b34 | refs/heads/master | 2021-07-11T12:00:51.996201 | 2017-09-30T02:58:41 | 2017-09-30T02:58:41 | 105,335,891 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 3,380 | java | package cs455.overlay.transport;
import java.io.IOException;
import java.net.InetAddress;
import java.net.ServerSocket;
import java.net.Socket;
import java.util.ArrayList;
import java.util.HashMap;
import cs455.overlay.node.Node;
/***
* Represents the server thread that will be listening to nodes attempting to connect.
* It also holds a map of all the current connections that have been created. This allows
* the owning node to pull connections from the server thread and store into their own
* data structure.
*
* @author acarbona
*
*/
public class TCPServerThread extends Thread {
private ServerSocket sSocket;
private Node owner;
private HashMap<InetAddress, ArrayList<TCPConnection>> currentConnections;
public TCPServerThread(int portNum, Node owner) throws IOException {
sSocket = new ServerSocket(portNum);
this.owner = owner;
currentConnections = new HashMap<InetAddress, ArrayList<TCPConnection>>();
}
// Getters for the information of the server socket
public String getHostName() {
return sSocket.getInetAddress().getHostName();
}
public int getPort() {
return sSocket.getLocalPort();
}
public InetAddress getIP() {
return sSocket.getInetAddress();
}
// Returns the current connections list
public HashMap<InetAddress, ArrayList<TCPConnection>> getUnNamedConnections() {
return currentConnections;
}
// Allows the using node to add a connection back to the list if it is "deregistered"
public void addConnection(TCPConnection connection, InetAddress addr) {
if (currentConnections.containsKey(addr)) {
ArrayList<TCPConnection> connections = currentConnections.get(addr);
if (!connections.contains(connection)) {
currentConnections.get(addr).add(connection);
}
} else {
ArrayList<TCPConnection> connections = new ArrayList<TCPConnection>();
connections.add(connection);
currentConnections.put(addr, connections);
}
}
// If the using node pulls a connection from current connections it will need to be removed
// from the data structure
public void removeConnection(InetAddress addr, TCPConnection connection) {
if (currentConnections.containsKey(addr)) {
ArrayList<TCPConnection> connections = currentConnections.get(addr);
if (connections.contains(connection)) {
currentConnections.get(addr).remove(connection);
} else {
System.out.println("Error: Connection does not exist");
}
if (currentConnections.get(addr).size() == 0) {
currentConnections.remove(addr);
}
} else {
System.out.println("Error: Address not valid");
}
}
// Waits to get an incoming connection. If it gets one it will save it and start it's receiver thread
@Override
public void run() {
while(true) {
try {
Socket newClient = sSocket.accept();
TCPConnection newConnectionToClient = new TCPConnection(newClient, owner);
if (currentConnections.containsKey(newClient.getInetAddress())) {
currentConnections.get(newClient.getInetAddress()).add(newConnectionToClient);
} else {
ArrayList<TCPConnection> newlist = new ArrayList<TCPConnection>();
newlist.add(newConnectionToClient);
currentConnections.put(newClient.getInetAddress(), newlist);
}
newConnectionToClient.readData();
} catch (IOException e) {
System.out.println("Error in server thread. ");
e.printStackTrace();
}
}
}
}
| [
"[email protected]"
] | |
55cf40497cf9d34478ed523bde57022d919cca4e | 9d8b1f75c135ec80eb9325de8c3cf7162d12528e | /Examples/src/main/java/net/notfab/sentinel/example/gateway/jda/CommandListener.java | 0364332fe1cfdf88837ffc6b301fc6da1d82d128 | [] | no_license | Fabricio20/Sentinel | 6a7eea8cf20785a2aa6ba2cbd18ff887ba549617 | bb0e67ddbe8ae6f4010177037d0421fd65e2164b | refs/heads/master | 2020-09-28T05:35:30.444010 | 2020-03-15T20:03:50 | 2020-03-15T20:03:50 | 226,701,301 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 3,284 | java | package net.notfab.sentinel.example.gateway.jda;
import net.dv8tion.jda.api.entities.SelfUser;
import net.dv8tion.jda.api.events.message.guild.GuildMessageReceivedEvent;
import net.dv8tion.jda.api.hooks.ListenerAdapter;
import net.notfab.sentinel.example.gateway.jda.mapper.JDAtoSentinel;
import net.notfab.sentinel.sdk.discord.command.CommandFramework;
import net.notfab.sentinel.sdk.discord.events.CommandEvent;
import javax.annotation.Nonnull;
import java.util.ArrayList;
import java.util.List;
import java.util.Objects;
import java.util.regex.Matcher;
import java.util.regex.Pattern;
/**
* This is a basic JDA listener that listens for commands.
* <p>
* It's important to note that we should not be firing Command Events for Unknown commands, as they are
* handled in a QUEUE manner.
*/
public class CommandListener extends ListenerAdapter {
private final Pattern argPattern = Pattern.compile("(?:([^\\s\"]+)|\"((?:\\w+|\\\\\"|[^\"])+)\")");
private final CommandFramework commandFramework;
public CommandListener(CommandFramework commandFramework) {
this.commandFramework = commandFramework;
}
@Override
public void onGuildMessageReceived(@Nonnull GuildMessageReceivedEvent event) {
if (event.getAuthor().isBot()) return;
if (!"213044545825406976".equals(event.getGuild().getId())) {
return;
}
String rawMessage = event.getMessage().getContentRaw();
if (rawMessage.split("\\s+").length == 0) {
return;
}
String prefix = null;
// -- Find Prefix
SelfUser selfUser = event.getJDA().getSelfUser();
String split = rawMessage.split("\\s+")[0];
if (split.equals("<@" + selfUser.getId() + ">")) {
prefix = "@" + selfUser.getName();
} else if (split.equals("<@!" + selfUser.getId() + ">")) {
prefix = "@" + event.getGuild().getSelfMember().getNickname();
} else if (split.equalsIgnoreCase("!")) {
prefix = "!";
}
// -- End Prefix Finder
if (prefix == null) {
return;
}
// -- Argument Finder
List<String> arguments = this.getArguments(event.getMessage().getContentDisplay()
.replaceFirst(Pattern.quote(prefix), ""));
String commandName = arguments.get(0);
if (arguments.size() == 1) {
arguments.clear();
} else {
arguments.remove(0);
}
// -------------------------------------------------
CommandEvent commandEvent = new CommandEvent();
commandEvent.setArgs(arguments.toArray(new String[0]));
commandEvent.setName(commandName);
commandEvent.setMember(JDAtoSentinel.map(Objects.requireNonNull(event.getMember())));
commandEvent.setChannel(JDAtoSentinel.map(event.getChannel()));
this.commandFramework.fire(commandEvent);
}
private List<String> getArguments(String rawArgs) {
List<String> args = new ArrayList<>();
Matcher m = argPattern.matcher(rawArgs);
while (m.find()) {
if (m.group(1) == null) {
args.add(m.group(2));
} else {
args.add(m.group(1));
}
}
return args;
}
} | [
"[email protected]"
] | |
38cae9c9e15b34e36893279660ca8a6c6f21d7a9 | 3ebaee3a565d5e514e5d56b44ebcee249ec1c243 | /assetBank 3.77 decomplied fixed/src/java/com/bright/assetbank/plugin/constant/PagePositionConstants.java | bdc3bbee2200f03d94e0ec1636ea4ea380177a20 | [] | no_license | webchannel-dev/Java-Digital-Bank | 89032eec70a1ef61eccbef6f775b683087bccd63 | 65d4de8f2c0ce48cb1d53130e295616772829679 | refs/heads/master | 2021-10-08T19:10:48.971587 | 2017-11-07T09:51:17 | 2017-11-07T09:51:17 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 328 | java | package com.bright.assetbank.plugin.constant;
public abstract interface PagePositionConstants
{
public static final String c_ksDataStart = "dataStart";
}
/* Location: C:\Users\mamatha\Desktop\com.zip
* Qualified Name: com.bright.assetbank.plugin.constant.PagePositionConstants
* JD-Core Version: 0.6.0
*/ | [
"[email protected]"
] | |
cb6c647553f217499657e0c632eed29fdbf62887 | f8831a30323a0dea980c999bbd63611cae538a19 | /projects/previousProjects/strategyNoHierarchy-V0.1/src/main/java/dems/behaviorModels/plants/BioMassBehaviorModel.java | 3420962a7e46fbf2083fda2026b1ed14e27a8700 | [
"Apache-2.0"
] | permissive | ahmadsuleman/SmartGridCoSimulation | ee7e0a6064919c5f061215765b7d29613f84e74a | 14ad1fb796b85c27f9305f1adc0c885efa0147cf | refs/heads/master | 2023-04-06T07:09:53.555822 | 2020-02-06T10:43:53 | 2020-02-06T10:43:53 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 5,017 | java | /*
* Copyright (c) 2011-2015, fortiss GmbH.
* Licensed under the Apache License, Version 2.0.
*
* Use, modification and distribution are subject to the terms specified
* in the accompanying license file LICENSE.txt located at the root directory
* of this software distribution.
*/
package dems.behaviorModels.plants;
import java.util.LinkedList;
import dems.behaviorType.StrategyBehaviorType;
import dems.helper.CheckRequest;
import dems.helper.Costs;
import dems.messageContents.DEMSRequestContent;
import dems.messageContents.GenericAnswerContent;
import helper.MyDateTimeFormatter;
import helper.MyDoubleFormat;
import helper.Swmcsv;
import akka.advancedMessages.ErrorAnswerContent;
import akka.basicMessages.AnswerContent;
import akka.basicMessages.RequestContent;
import akka.systemActors.GlobalTime;
import behavior.BehaviorModel;
/**
*
* This is a specific behavior
*
* @author bytschkow
*
*/
public class BioMassBehaviorModel extends BehaviorModel {
public double installedPower;
public double cost = Costs.BIOMASS;
public StrategyBehaviorType plantType = StrategyBehaviorType.BIOMASS;
// Answer Content
public double actualPower;
public double plannedPower;
public GenericAnswerContent answerContentToSend = new GenericAnswerContent(0.0, 0.0);
DEMSRequestContent request;
public boolean individualRequestApplicable = false;
public double setPointPower;
private String htmlIndividualRequest = "";
/*
* Constructor
*/
public BioMassBehaviorModel() {
this.installedPower = 0.0;
}
public BioMassBehaviorModel(double installedPower) {
this.installedPower = installedPower;
}
public BioMassBehaviorModel(String path, double installedPower) {
this.installedPower = installedPower;
this.actorName = path;
}
@Override
public void handleRequest() {
request = (DEMSRequestContent) requestContentReceived;
handleIndividualRequest();
}
public void handleIndividualRequest() {
int i = CheckRequest.checkIndividualContent(request.individualRequestList, actorName);
if (i >= 0){
individualRequestApplicable = true;
setPointPower = request.individualRequestList.get(i).setPointPower;
htmlIndividualRequest = "<br>individualRequest: <br> setPointPower: " + MyDoubleFormat.f.format(setPointPower);
} else {
individualRequestApplicable = false;
setPointPower = installedPower*Swmcsv.getSWMProfileBioMass(GlobalTime.currentTime);
htmlIndividualRequest = "<br>individualRequest: null";
}
}
public void makeDecision() {
if (GlobalTime.currentTimeStep == 1) {
setPointPower = installedPower*Swmcsv.getSWMProfileBioMass(GlobalTime.currentTime);
}
double lastPowerValue = actualPower;
if (individualRequestApplicable) {
double powerChange = setPointPower - lastPowerValue;
double maxRampRateAllowed = installedPower * GlobalTime.period.getSeconds() / 60 * plantType.rampRate / 100;
// System.out.println("powerChange: " + powerChange);
// System.out.println("maxRampRateAllowed: " + maxRampRateAllowed);
// Checke ob sich das Kraftwerk schnell genug regeln l�sst.
// Dazu wird die installierte Leistung, der RampUp Faktor und die Periode gecheckt
if (Math.abs(powerChange) < maxRampRateAllowed ) {
actualPower = setPointPower;
}
// Wenn sich das Kraftwerk nich so schnell anpassen kann, dann wird es nur teilweise den Sollwert einstellen k�nnen.
else {
actualPower = lastPowerValue + Math.signum(powerChange) * maxRampRateAllowed;
// Power is not allowed to be less than 0
if (actualPower < 0 ) {
actualPower = 0;
}
if (actualPower > installedPower) {
actualPower = installedPower;
}
}
}
// Ohne Individuellen Request
else {
actualPower = setPointPower;
}
plannedPower = installedPower*Swmcsv.getSWMProfileBioMass(GlobalTime.nextTime);
answerContentToSend.currentProduction = actualPower;
answerContentToSend.scheduledProduction = setPointPower;
answerContentToSend.expectedProduction = plannedPower;
answerContentToSend.installedPower = this.installedPower;
answerContentToSend.costs = this.cost;
answerContentToSend.type = plantType;
if (individualRequestApplicable) {
answerContentToSend.factorConformation = setPointPower;
} else {
answerContentToSend.factorConformation = null;
}
answerContentToSend.time = GlobalTime.currentTimeStep;
answerContentToSend.dateTime = GlobalTime.currentTime.format(MyDateTimeFormatter.formatter);
answerContentToSend.IN = request.toHTML() + htmlIndividualRequest ;
answerContentToSend.OUT = answerContentToSend.toHTML();
}
public AnswerContent returnAnswerContentToSend() {
//System.out.println("BioMass: " + actualPower);
return answerContentToSend;
}
public RequestContent returnRequestContentToSend() {
return null;
}
@Override
public void handleError(LinkedList<ErrorAnswerContent> errors) {}
} | [
"[email protected]"
] | |
f082573ef5304d830e2a8384c0673d368a8a8c74 | fc54f06bf82e3525282a8807b69e9fbe0149c695 | /src/by/training/task/dao/mysql/implementation/MySQLAdministratorDAO.java | 9c151f8629b3bc5faa4fe9ae300e7ec5d45e2b39 | [] | no_license | FNtocik/Servlet-HTML-App-Example | 174e1177764d0ca6d70b0d1cda45146680163b57 | 1f0f8e9d734a5899ab08cbc1d46e39bbb6f765f8 | refs/heads/master | 2020-04-02T09:57:21.440601 | 2019-11-23T09:31:28 | 2019-11-23T09:31:28 | 154,318,289 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 6,630 | java | package by.training.task.dao.mysql.implementation;
import by.training.task.dao.interfaces.AdministratorDAO;
import by.training.task.dao.mysql.config.ConfigurationManager;
import by.training.task.dao.mysql.factory.MySQLDAOFactory;
import by.training.task.entities.Administrator;
import by.training.task.utils.LoggerManager;
import java.sql.Connection;
import java.sql.PreparedStatement;
import java.sql.ResultSet;
import java.sql.SQLException;
import java.util.ArrayList;
import java.util.List;
/**
* Data access implementation class to the table administrator in MySQL database
* @author Anton Puhachou
* @see by.training.task.dao.interfaces.AdministratorDAO
* */
public class MySQLAdministratorDAO implements AdministratorDAO {
/**
* method of obtaining a specific {@link Administrator} entity by id
* @param id id of entity
* @return {@link Administrator} entity
* @throws SQLException error close result set or connection
*/
@Override
public Administrator get(int id) throws SQLException {
Connection connection = MySQLDAOFactory.createConnection();
ResultSet resultSet = null;
Administrator entity = null;
if(connection != null) {
try {
PreparedStatement preparedStatement = connection.prepareStatement(ConfigurationManager.getInstance().getMySQLQueryAdminGet());
preparedStatement.setInt(1, id);
resultSet = preparedStatement.executeQuery();
if (resultSet.next()) {
entity = new Administrator(resultSet.getInt(1),
resultSet.getString(2),
resultSet.getString(3));
}
} catch (SQLException e) {
LoggerManager loggerManager = LoggerManager.getInstance();
loggerManager.error(this.getClass().toString(), e);
} finally {
if (resultSet != null) {
resultSet.close();
}
MySQLDAOFactory.closeConnection(connection);
}
}
return entity;
}
/**
* method of adding an {@link Administrator} entity to the database
* @param entity to add in database
* @return id of added entity
*/
@Override
public int create(Administrator entity) {
Connection connection = MySQLDAOFactory.createConnection();
int newId = -1;
if(connection != null) {
try {
PreparedStatement preparedStatement = connection.prepareStatement(ConfigurationManager.getInstance().getMySQLQueryAdminCreate());
preparedStatement.setString(1, entity.getLogin());
preparedStatement.setString(2, entity.getPassword());
newId = preparedStatement.executeUpdate();
} catch (SQLException e) {
LoggerManager loggerManager = LoggerManager.getInstance();
loggerManager.error(this.getClass().toString(), e);
} finally {
MySQLDAOFactory.closeConnection(connection);
}
}
return newId;
}
/**
* method of updating an {@link Administrator} entity in the database
* @param entity to update in database
* @return id of updated entity
*/
@Override
public int update(Administrator entity) {
Connection connection = MySQLDAOFactory.createConnection();
int updatedId = -1;
if(connection != null) {
try {
PreparedStatement preparedStatement = connection.prepareStatement(ConfigurationManager.getInstance().getMySQLQueryAdminUpdate());
preparedStatement.setString(1, entity.getLogin());
preparedStatement.setString(2, entity.getPassword());
preparedStatement.setInt(3, entity.getId());
updatedId = preparedStatement.executeUpdate();
} catch (SQLException e) {
LoggerManager loggerManager = LoggerManager.getInstance();
loggerManager.error(this.getClass().toString(), e);
} finally {
MySQLDAOFactory.closeConnection(connection);
}
}
return updatedId;
}
/**
* method of deleting an {@link Administrator} entity in the database
* @param id to delete in database
* @return id of deleted entity
*/
@Override
public int delete(int id) {
Connection connection = MySQLDAOFactory.createConnection();
int deletedId = -1;
if(connection != null) {
try {
PreparedStatement preparedStatement = connection.prepareStatement(ConfigurationManager.getInstance().getMySQLQueryAdminDelete());
preparedStatement.setInt(1, id);
deletedId = preparedStatement.executeUpdate();
} catch (SQLException e) {
LoggerManager loggerManager = LoggerManager.getInstance();
loggerManager.error(this.getClass().toString(), e);
} finally {
MySQLDAOFactory.closeConnection(connection);
}
}
return deletedId;
}
/**
* method of getting all of {@link Administrator} entities from the database
* @return list of entities
* @throws SQLException error close result set or connection
*/
@Override
public List<Administrator> getAll() throws SQLException {
Connection connection = MySQLDAOFactory.createConnection();
ResultSet resultSet = null;
List<Administrator> entities = new ArrayList<>();
if(connection != null) {
try {
PreparedStatement preparedStatement = connection.prepareStatement(ConfigurationManager.getInstance().getMySQLQueryAdminGetAll());
resultSet = preparedStatement.executeQuery();
while(resultSet.next()){
entities.add(new Administrator(resultSet.getInt(1),
resultSet.getString(2),
resultSet.getString(3)));
}
} catch (SQLException e) {
LoggerManager loggerManager = LoggerManager.getInstance();
loggerManager.error(this.getClass().toString(), e);
} finally {
if (resultSet != null) {
resultSet.close();
}
MySQLDAOFactory.closeConnection(connection);
}
}
return entities;
}
}
| [
"[email protected]"
] | |
c33f6186ee39fa65f93adad729ad44e3e8375451 | c879b96aa2fe85d54847b591e065eeea8103b29d | /spring-extensible-xml/src/main/java/cn/web1992/samples/xml/DescBeanDefinitionParser.java | ebf3439362415d8879e9ea289179a3167e77f69a | [] | no_license | web1992/springs | 9ca23eaeceab640713e490394dc1fe65144a9050 | 47b6d4da1fd7252443e48973f5580bfd2b00baa5 | refs/heads/master | 2022-12-25T20:31:08.497178 | 2020-03-07T17:25:56 | 2020-03-07T17:25:56 | 150,215,944 | 1 | 0 | null | 2022-12-16T04:37:54 | 2018-09-25T06:09:56 | Java | UTF-8 | Java | false | false | 1,281 | java | package cn.web1992.samples.xml;
import cn.web1992.Desc;
import org.springframework.beans.factory.support.BeanDefinitionBuilder;
import org.springframework.beans.factory.xml.AbstractSingleBeanDefinitionParser;
import org.springframework.util.StringUtils;
import org.w3c.dom.Element;
/**
* desc: 文件注释
* <p>
* Version 1.0.0
*
* @author web1992
* <p>
* Date 2019/1/17 12:16
*/
public class DescBeanDefinitionParser extends AbstractSingleBeanDefinitionParser {
@Override
protected Class getBeanClass(Element element) {
return Desc.class;
}
@Override
protected void doParse(Element element, BeanDefinitionBuilder bean) {
// this will never be null since the schema explicitly requires that a value be supplied
String name = element.getAttribute("name");
bean.addConstructorArgValue(name);
// this however is an optional property
String domain = element.getAttribute("domain");
if (StringUtils.hasText(domain)) {
bean.addPropertyValue("domain", domain);
}
// this however is an optional property
String blog = element.getAttribute("blog");
if (StringUtils.hasText(blog)) {
bean.addPropertyValue("blog", blog);
}
}
}
| [
"[email protected]"
] | |
7b6f9550796d48a848de863d6584aad76ea39d61 | d84b75004fb0118a393f567b272c1ee445866e26 | /代码包/response(验证码,跳转,下载文件,中文乱码,统计网站访问人数)/day35/src/app/DengLuServlet.java | 12635ddb127888ecf04d49548506cd1263778896 | [] | no_license | yourbigbro/sshsrepository | 840fc7ecddc75a76228ef37184fce5503ef20f96 | ddb461b608c3eb39b58a5cc000205ef960a6d9a9 | refs/heads/master | 2021-08-22T16:28:10.931858 | 2017-11-30T17:05:17 | 2017-11-30T17:05:26 | 109,405,119 | 0 | 1 | null | null | null | null | GB18030 | Java | false | false | 2,278 | java | package app;
import java.io.IOException;
import java.sql.SQLException;
import javax.servlet.ServletContext;
import javax.servlet.http.HttpServlet;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
import service.Service;
public class DengLuServlet extends HttpServlet {
private static final long serialVersionUID = 1L;
Service ser=new Service();
ServletContext servletcontext;
@Override
public void init(){
servletcontext=this.getServletContext();
int count =0;
servletcontext.setAttribute("count",count);
}
@Override
public void doGet(HttpServletRequest req,HttpServletResponse res) throws IOException{
if(req.getHeader("Referer")!="http://localhost:8080/day35/denglu.jsp"){//防盗链,防止不允许的页面请求这个.java后台文件
res.getWriter().write("fuck you");
}
String pa1 = req.getParameter("username");//获得前台传来的表单信息
String pa2 = req.getParameter("password");
String xinxi = null;
res.setCharacterEncoding("utf-8");//防止传给前台的中文信息出现乱码(问号)
res.setContentType("text/html;charset=utf-8");
try {
xinxi = ser.chaXun(pa1,pa2);
} catch (SQLException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
if(xinxi=="查询失败"){
res.getWriter().write("<h3 style='color:blue;'>用户名或者密码出错</h3>");//给前台传送信息
res.setHeader("Refresh","5;URL=http://localhost:8080/day35/denglu.jsp");//注意路径只有项目名称和页面名称
}else{
int count=(int) servletcontext.getAttribute("count");
count++;
servletcontext.setAttribute("count", count);
res.getWriter().write("<h3 style='color:bule'>登陆成功,您是第"+count+"位登陆者</h3>");
/*res.setHeader("Refresh","5;URL=http://localhost:8080/day35/xiazai.html");//这是刷新,不是重定向
*/ //重定向。重定向和刷新都能跳转页面,选一种即可。后者可以设置时间前者不能。
res.setStatus(302);
res.setHeader("Location","http://localhost:8080/day35/xiazai.html");
}
}
@Override
public void doPost(HttpServletRequest req,HttpServletResponse res) throws IOException{
doGet(req, res);//两种方式方法相同,所以直接调用
}
}
| [
"[email protected]"
] | |
03a766d7c36e940ced42fe09c9f7a27e58c79f93 | 5169cfdcd4e74633f8798097f078b4a830d56ccc | /leetcode/src/main/java/sj/project/leetcode/GenerateParentheses.java | 24cfe5947625a08e73e3da8bcf88d67d880ef5c4 | [] | no_license | chenshuaijin/leetcode-solution | f1a9e89a24fa7821c9bc67054a73daae940b8584 | 1293667c54ad0371ce7846391a5228664e1cbf7a | refs/heads/master | 2021-01-02T23:08:25.692607 | 2017-08-06T08:27:52 | 2017-08-06T08:27:52 | 99,472,798 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 841 | java | package sj.project.leetcode;
import java.util.LinkedList;
import java.util.List;
import org.junit.Test;
public class GenerateParentheses {
public List<String> generateParenthesis(int n) {
int left=0;
int right=0;
int closed=0;
List<String> result = new LinkedList<>();
if(n == 0)return result;
generate(new char[n*2], left, right, closed, n, result);
return result;
}
private void generate(char[] ca, int left, int right, int closed, int n, List<String> result){
if(closed == n){
result.add(new String(ca));
return;
}
if(left<n){
ca[left+right] = '(';
generate(ca, left+1, right, closed, n, result);
}
if(right<n && left>right){
ca[left+right] = ')';
generate(ca, left, right+1, closed+1, n, result);
}
}
@Test
public void test(){
System.out.println(generateParenthesis(3));
}
}
| [
"[email protected]"
] | |
f385db257d6afe5b0c723e4ed2f877980ff7cf23 | 3ea35a9d2a32a11f2c6e0fa21860f73c042ca1b3 | /II курс/Trim2/Практикум ООП и ДБ/h2/src/test/org/h2/test/db/TestOptimizations.java | 337865991f94cc03e3a18c8016c352b0f138db2e | [] | no_license | angelzbg/Informatika | 35be4926c16fb1eb2fd8e9459318c5ea9f5b1fd8 | 6c9e16087a30253e1a6d5cd9e9346a7cdd4b3e17 | refs/heads/master | 2021-02-08T14:50:46.438583 | 2020-03-01T14:18:26 | 2020-03-01T14:18:26 | 244,162,465 | 7 | 2 | null | null | null | null | UTF-8 | Java | false | false | 42,891 | java | /*
* Copyright 2004-2014 H2 Group. Multiple-Licensed under the MPL 2.0,
* and the EPL 1.0 (http://h2database.com/html/license.html).
* Initial Developer: H2 Group
*/
package org.h2.test.db;
import java.sql.Connection;
import java.sql.PreparedStatement;
import java.sql.ResultSet;
import java.sql.SQLException;
import java.sql.Statement;
import java.sql.Types;
import java.util.ArrayList;
import java.util.HashMap;
import java.util.Random;
import java.util.TreeSet;
import java.util.concurrent.TimeUnit;
import org.h2.api.ErrorCode;
import org.h2.test.TestBase;
import org.h2.tools.SimpleResultSet;
import org.h2.util.New;
import org.h2.util.StringUtils;
import org.h2.util.Task;
/**
* Test various optimizations (query cache, optimization for MIN(..), and
* MAX(..)).
*/
public class TestOptimizations extends TestBase {
/**
* Run just this test.
*
* @param a ignored
*/
public static void main(String... a) throws Exception {
TestBase.createCaller().init().test();
}
@Override
public void test() throws Exception {
deleteDb("optimizations");
testIdentityIndexUsage();
testFastRowIdCondition();
testExplainRoundTrip();
testOrderByExpression();
testGroupSubquery();
testAnalyzeLob();
testLike();
testExistsSubquery();
testQueryCacheConcurrentUse();
testQueryCacheResetParams();
testRowId();
testSortIndex();
testAutoAnalyze();
testInAndBetween();
testNestedIn();
testConstantIn1();
testConstantIn2();
testConstantTypeConversionToColumnType();
testNestedInSelectAndLike();
testNestedInSelect();
testInSelectJoin();
testMinMaxNullOptimization();
testUseCoveringIndex();
// testUseIndexWhenAllColumnsNotInOrderBy();
if (config.networked) {
return;
}
testOptimizeInJoinSelect();
testOptimizeInJoin();
testMultiColumnRangeQuery();
testDistinctOptimization();
testQueryCacheTimestamp();
testQueryCacheSpeed();
testQueryCache(true);
testQueryCache(false);
testIn();
testMinMaxCountOptimization(true);
testMinMaxCountOptimization(false);
testOrderedIndexes();
testConvertOrToIn();
deleteDb("optimizations");
}
private void testIdentityIndexUsage() throws Exception {
Connection conn = getConnection("optimizations");
Statement stat = conn.createStatement();
stat.execute("create table test(a identity)");
stat.execute("insert into test values()");
ResultSet rs = stat.executeQuery("explain select * from test where a = 1");
rs.next();
assertContains(rs.getString(1), "PRIMARY_KEY");
stat.execute("drop table test");
conn.close();
}
private void testFastRowIdCondition() throws Exception {
Connection conn = getConnection("optimizations");
Statement stat = conn.createStatement();
stat.executeUpdate("create table many(id int) " +
"as select x from system_range(1, 10000)");
ResultSet rs = stat.executeQuery("explain analyze select * from many " +
"where _rowid_ = 400");
rs.next();
assertContains(rs.getString(1), "/* scanCount: 2 */");
conn.close();
}
private void testExplainRoundTrip() throws Exception {
Connection conn = getConnection("optimizations");
assertExplainRoundTrip(conn,
"select x from dual where x > any(select x from dual)");
conn.close();
}
private void assertExplainRoundTrip(Connection conn, String sql)
throws SQLException {
Statement stat = conn.createStatement();
ResultSet rs = stat.executeQuery("explain " + sql);
rs.next();
String plan = rs.getString(1).toLowerCase();
plan = plan.replaceAll("\\s+", " ");
plan = plan.replaceAll("/\\*[^\\*]*\\*/", "");
plan = plan.replaceAll("\\s+", " ");
plan = StringUtils.replaceAll(plan, "system_range(1, 1)", "dual");
plan = plan.replaceAll("\\( ", "\\(");
plan = plan.replaceAll(" \\)", "\\)");
assertEquals(plan, sql);
}
private void testOrderByExpression() throws Exception {
Connection conn = getConnection("optimizations");
Statement stat = conn.createStatement();
stat.execute("create table test(id int primary key, name varchar)");
stat.execute("insert into test values(1, 'Hello'), (2, 'Hello'), (3, 'Hello')");
ResultSet rs;
rs = stat.executeQuery(
"explain select name from test where name='Hello' order by name");
rs.next();
String plan = rs.getString(1);
assertContains(plan, "tableScan");
stat.execute("drop table test");
conn.close();
}
private void testGroupSubquery() throws Exception {
Connection conn = getConnection("optimizations");
Statement stat = conn.createStatement();
stat.execute("create table t1(id int)");
stat.execute("create table t2(id int)");
stat.execute("insert into t1 values(2), (2), (3)");
stat.execute("insert into t2 values(2), (3)");
stat.execute("create index t1id_index on t1(id)");
ResultSet rs;
rs = stat.executeQuery("select id, (select count(*) from t2 " +
"where t2.id = t1.id) cc from t1 group by id order by id");
rs.next();
assertEquals(2, rs.getInt(1));
assertEquals(1, rs.getInt(2));
rs.next();
assertEquals(3, rs.getInt(1));
assertEquals(1, rs.getInt(2));
rs.next();
stat.execute("drop table t1, t2");
conn.close();
}
private void testAnalyzeLob() throws Exception {
Connection conn = getConnection("optimizations");
Statement stat = conn.createStatement();
stat.execute("create table test(v varchar, b binary, cl clob, bl blob) as " +
"select ' ', '00', ' ', '00' from system_range(1, 100)");
stat.execute("analyze");
ResultSet rs = stat.executeQuery("select column_name, selectivity " +
"from information_schema.columns where table_name='TEST'");
rs.next();
assertEquals("V", rs.getString(1));
assertEquals(1, rs.getInt(2));
rs.next();
assertEquals("B", rs.getString(1));
assertEquals(1, rs.getInt(2));
rs.next();
assertEquals("CL", rs.getString(1));
assertEquals(50, rs.getInt(2));
rs.next();
assertEquals("BL", rs.getString(1));
assertEquals(50, rs.getInt(2));
stat.execute("drop table test");
conn.close();
}
private void testLike() throws Exception {
Connection conn = getConnection("optimizations");
Statement stat = conn.createStatement();
stat.execute("create table test(name varchar primary key) as " +
"select x from system_range(1, 10)");
ResultSet rs = stat.executeQuery("explain select * from test " +
"where name like ? || '%' {1: 'Hello'}");
rs.next();
// ensure the ID = 10 part is evaluated first
assertContains(rs.getString(1), "PRIMARY_KEY_");
stat.execute("drop table test");
conn.close();
}
private void testExistsSubquery() throws Exception {
Connection conn = getConnection("optimizations");
Statement stat = conn.createStatement();
stat.execute("create table test(id int) as select x from system_range(1, 10)");
ResultSet rs = stat.executeQuery("explain select * from test " +
"where exists(select 1 from test, test, test) and id = 10");
rs.next();
// ensure the ID = 10 part is evaluated first
assertContains(rs.getString(1), "WHERE (ID = 10)");
stat.execute("drop table test");
conn.close();
}
private void testQueryCacheConcurrentUse() throws Exception {
if (config.lazy) {
return;
}
final Connection conn = getConnection("optimizations");
Statement stat = conn.createStatement();
stat.execute("create table test(id int primary key, data clob)");
stat.execute("insert into test values(0, space(10000))");
stat.execute("insert into test values(1, space(10001))");
Task[] tasks = new Task[2];
for (int i = 0; i < tasks.length; i++) {
tasks[i] = new Task() {
@Override
public void call() throws Exception {
PreparedStatement prep = conn.prepareStatement(
"select * from test where id = ?");
while (!stop) {
int x = (int) (Math.random() * 2);
prep.setInt(1, x);
ResultSet rs = prep.executeQuery();
rs.next();
String data = rs.getString(2);
if (data.length() != 10000 + x) {
throw new Exception(data.length() + " != " + x);
}
rs.close();
}
}
};
tasks[i].execute();
}
Thread.sleep(1000);
for (Task t : tasks) {
t.get();
}
stat.execute("drop table test");
conn.close();
}
private void testQueryCacheResetParams() throws SQLException {
Connection conn = getConnection("optimizations");
PreparedStatement prep;
prep = conn.prepareStatement("select ?");
prep.setString(1, "Hello");
prep.execute();
prep.close();
prep = conn.prepareStatement("select ?");
assertThrows(ErrorCode.PARAMETER_NOT_SET_1, prep).execute();
prep.close();
conn.close();
}
private void testRowId() throws SQLException {
if (config.memory) {
return;
}
Connection conn = getConnection("optimizations");
Statement stat = conn.createStatement();
ResultSet rs;
stat.execute("create table test(data varchar)");
stat.execute("select min(_rowid_ + 1) from test");
stat.execute("insert into test(_rowid_, data) values(10, 'Hello')");
stat.execute("insert into test(data) values('World')");
stat.execute("insert into test(_rowid_, data) values(20, 'Hello')");
stat.execute(
"merge into test(_rowid_, data) key(_rowid_) values(20, 'Hallo')");
rs = stat.executeQuery(
"select _rowid_, data from test order by _rowid_");
rs.next();
assertEquals(10, rs.getInt(1));
assertEquals("Hello", rs.getString(2));
rs.next();
assertEquals(11, rs.getInt(1));
assertEquals("World", rs.getString(2));
rs.next();
assertEquals(21, rs.getInt(1));
assertEquals("Hallo", rs.getString(2));
assertFalse(rs.next());
stat.execute("drop table test");
stat.execute("create table test(id int primary key, name varchar)");
stat.execute("insert into test values(0, 'Hello')");
stat.execute("insert into test values(3, 'Hello')");
stat.execute("insert into test values(2, 'Hello')");
rs = stat.executeQuery("explain select * from test where _rowid_ = 2");
rs.next();
assertContains(rs.getString(1), ".tableScan: _ROWID_ =");
rs = stat.executeQuery("explain select * from test where _rowid_ > 2");
rs.next();
assertContains(rs.getString(1), ".tableScan: _ROWID_ >");
rs = stat.executeQuery("explain select * from test order by _rowid_");
rs.next();
assertContains(rs.getString(1), "/* index sorted */");
rs = stat.executeQuery("select _rowid_, * from test order by _rowid_");
rs.next();
assertEquals(0, rs.getInt(1));
assertEquals(0, rs.getInt(2));
rs.next();
assertEquals(2, rs.getInt(1));
assertEquals(2, rs.getInt(2));
rs.next();
assertEquals(3, rs.getInt(1));
assertEquals(3, rs.getInt(2));
stat.execute("drop table test");
conn.close();
}
private void testSortIndex() throws SQLException {
Connection conn = getConnection("optimizations");
Statement stat = conn.createStatement();
stat.execute("drop table test if exists");
stat.execute("create table test(id int)");
stat.execute("create index idx_id_desc on test(id desc)");
stat.execute("create index idx_id_asc on test(id)");
ResultSet rs;
rs = stat.executeQuery("explain select * from test " +
"where id > 10 order by id");
rs.next();
assertContains(rs.getString(1), "IDX_ID_ASC");
rs = stat.executeQuery("explain select * from test " +
"where id < 10 order by id desc");
rs.next();
assertContains(rs.getString(1), "IDX_ID_DESC");
rs.next();
stat.execute("drop table test");
conn.close();
}
private void testAutoAnalyze() throws SQLException {
deleteDb("optimizations");
Connection conn = getConnection("optimizations");
Statement stat = conn.createStatement();
ResultSet rs = stat.executeQuery("select value " +
"from information_schema.settings where name='analyzeAuto'");
int auto = rs.next() ? rs.getInt(1) : 0;
if (auto != 0) {
stat.execute("create table test(id int)");
stat.execute("create user onlyInsert password ''");
stat.execute("grant insert on test to onlyInsert");
Connection conn2 = getConnection(
"optimizations", "onlyInsert", getPassword(""));
Statement stat2 = conn2.createStatement();
stat2.execute("insert into test select x " +
"from system_range(1, " + (auto + 10) + ")");
conn2.close();
}
conn.close();
}
private void testInAndBetween() throws SQLException {
deleteDb("optimizations");
Connection conn = getConnection("optimizations");
Statement stat = conn.createStatement();
ResultSet rs;
stat.execute("create table test(id int, name varchar)");
stat.execute("create index idx_name on test(id, name)");
stat.execute("insert into test values(1, 'Hello'), (2, 'World')");
rs = stat.executeQuery("select * from test " +
"where id between 1 and 3 and name in ('World')");
assertTrue(rs.next());
rs = stat.executeQuery("select * from test " +
"where id between 1 and 3 and name in (select 'World')");
assertTrue(rs.next());
stat.execute("drop table test");
conn.close();
}
private void testNestedIn() throws SQLException {
deleteDb("optimizations");
Connection conn = getConnection("optimizations");
Statement stat = conn.createStatement();
ResultSet rs;
stat.execute("create table accounts(id integer primary key, " +
"status varchar(255), tag varchar(255))");
stat.execute("insert into accounts values (31, 'X', 'A')");
stat.execute("create table parent(id int)");
stat.execute("insert into parent values(31)");
stat.execute("create view test_view as select a.status, a.tag " +
"from accounts a, parent t where a.id = t.id");
rs = stat.executeQuery("select * from test_view " +
"where status='X' and tag in ('A','B')");
assertTrue(rs.next());
rs = stat.executeQuery("select * from (select a.status, a.tag " +
"from accounts a, parent t where a.id = t.id) x " +
"where status='X' and tag in ('A','B')");
assertTrue(rs.next());
stat.execute("create table test(id int primary key, name varchar(255))");
stat.execute("create unique index idx_name on test(name, id)");
stat.execute("insert into test values(1, 'Hello'), (2, 'World')");
rs = stat.executeQuery("select * from (select * from test) " +
"where id=1 and name in('Hello', 'World')");
assertTrue(rs.next());
stat.execute("drop table test");
conn.close();
}
private void testConstantIn1() throws SQLException {
deleteDb("optimizations");
Connection conn = getConnection("optimizations");
Statement stat = conn.createStatement();
stat.execute("create table test(id int primary key, name varchar(255))");
stat.execute("insert into test values(1, 'Hello'), (2, 'World')");
assertSingleValue(stat,
"select count(*) from test where name in ('Hello', 'World', 1)", 2);
assertSingleValue(stat,
"select count(*) from test where name in ('Hello', 'World')", 2);
assertSingleValue(stat,
"select count(*) from test where name in ('Hello', 'Not')", 1);
stat.execute("drop table test");
conn.close();
}
private void testConstantIn2() throws SQLException {
deleteDb("optimizations");
Connection conn = getConnection("optimizations;IGNORECASE=TRUE");
Statement stat = conn.createStatement();
stat.executeUpdate("CREATE TABLE testValues (x VARCHAR(50))");
stat.executeUpdate("INSERT INTO testValues (x) SELECT 'foo' x");
ResultSet resultSet;
resultSet = stat.executeQuery(
"SELECT x FROM testValues WHERE x IN ('foo')");
assertTrue(resultSet.next());
resultSet = stat.executeQuery(
"SELECT x FROM testValues WHERE x IN ('FOO')");
assertTrue(resultSet.next());
resultSet = stat.executeQuery(
"SELECT x FROM testValues WHERE x IN ('foo','bar')");
assertTrue(resultSet.next());
resultSet = stat.executeQuery(
"SELECT x FROM testValues WHERE x IN ('FOO','bar')");
assertTrue(resultSet.next());
conn.close();
}
private void testConstantTypeConversionToColumnType() throws SQLException {
deleteDb("optimizations");
Connection conn = getConnection("optimizations;IGNORECASE=TRUE");
Statement stat = conn.createStatement();
stat.executeUpdate("CREATE TABLE test (x int)");
ResultSet resultSet;
resultSet = stat.executeQuery(
"EXPLAIN SELECT x FROM test WHERE x = '5'");
assertTrue(resultSet.next());
// String constant '5' has been converted to int constant 5 on
// optimization
assertTrue(resultSet.getString(1).endsWith("X = 5"));
stat.execute("drop table test");
conn.close();
}
private void testNestedInSelect() throws SQLException {
deleteDb("optimizations");
Connection conn = getConnection("optimizations");
Statement stat = conn.createStatement();
ResultSet rs;
stat.execute("create table test(id int primary key, name varchar) " +
"as select 1, 'Hello'");
stat.execute("select * from (select * from test) " +
"where id=1 and name in('Hello', 'World')");
stat.execute("drop table test");
stat.execute("create table test(id int, name varchar) as select 1, 'Hello'");
stat.execute("create index idx2 on test(id, name)");
rs = stat.executeQuery("select count(*) from test " +
"where id=1 and name in('Hello', 'x')");
rs.next();
assertEquals(1, rs.getInt(1));
conn.close();
}
private void testNestedInSelectAndLike() throws SQLException {
deleteDb("optimizations");
Connection conn = getConnection("optimizations");
Statement stat = conn.createStatement();
stat.execute("create table test(id int primary key)");
stat.execute("insert into test values(2)");
ResultSet rs = stat.executeQuery("select * from test where id in(1, 2)");
assertTrue(rs.next());
assertEquals(2, rs.getInt(1));
assertFalse(rs.next());
stat.execute("create table test2(id int primary key hash)");
stat.execute("insert into test2 values(2)");
rs = stat.executeQuery("select * from test where id in(1, 2)");
assertTrue(rs.next());
assertEquals(2, rs.getInt(1));
assertFalse(rs.next());
PreparedStatement prep;
prep = conn.prepareStatement("SELECT * FROM DUAL A " +
"WHERE A.X IN (SELECT B.X FROM DUAL B WHERE B.X LIKE ?)");
prep.setString(1, "1");
prep.execute();
prep = conn.prepareStatement("SELECT * FROM DUAL A " +
"WHERE A.X IN (SELECT B.X FROM DUAL B WHERE B.X IN (?, ?))");
prep.setInt(1, 1);
prep.setInt(2, 1);
prep.executeQuery();
conn.close();
}
private void testInSelectJoin() throws SQLException {
deleteDb("optimizations");
Connection conn = getConnection("optimizations");
Statement stat = conn.createStatement();
stat.execute("create table test(a int, b int, c int, d int) " +
"as select 1, 1, 1, 1 from dual;");
ResultSet rs;
PreparedStatement prep;
prep = conn.prepareStatement("SELECT 2 FROM TEST A "
+ "INNER JOIN (SELECT DISTINCT B.C AS X FROM TEST B "
+ "WHERE B.D = ?2) V ON 1=1 WHERE (A = ?1) AND (B = V.X)");
prep.setInt(1, 1);
prep.setInt(2, 1);
rs = prep.executeQuery();
assertTrue(rs.next());
assertFalse(rs.next());
prep = conn.prepareStatement(
"select 2 from test a where a=? and b in(" +
"select b.c from test b where b.d=?)");
prep.setInt(1, 1);
prep.setInt(2, 1);
rs = prep.executeQuery();
assertTrue(rs.next());
assertFalse(rs.next());
conn.close();
}
private void testOptimizeInJoinSelect() throws SQLException {
deleteDb("optimizations");
Connection conn = getConnection("optimizations");
Statement stat = conn.createStatement();
stat.execute("create table item(id int primary key)");
stat.execute("insert into item values(1)");
stat.execute("create alias opt for \"" +
getClass().getName() +
".optimizeInJoinSelect\"");
PreparedStatement prep = conn.prepareStatement(
"select * from item where id in (select x from opt())");
ResultSet rs = prep.executeQuery();
assertTrue(rs.next());
assertEquals(1, rs.getInt(1));
assertFalse(rs.next());
conn.close();
}
/**
* This method is called via reflection from the database.
*
* @return a result set
*/
public static ResultSet optimizeInJoinSelect() {
SimpleResultSet rs = new SimpleResultSet();
rs.addColumn("X", Types.INTEGER, 0, 0);
rs.addRow(1);
return rs;
}
private void testOptimizeInJoin() throws SQLException {
deleteDb("optimizations");
Connection conn = getConnection("optimizations");
Statement stat = conn.createStatement();
stat.execute("create table test(id int primary key)");
stat.execute("insert into test select x from system_range(1, 1000)");
ResultSet rs = stat.executeQuery("explain select * " +
"from test where id in (400, 300)");
rs.next();
String plan = rs.getString(1);
if (plan.indexOf("/* PUBLIC.PRIMARY_KEY_") < 0) {
fail("Expected using the primary key, got: " + plan);
}
conn.close();
}
private void testMinMaxNullOptimization() throws SQLException {
deleteDb("optimizations");
Connection conn = getConnection("optimizations");
Statement stat = conn.createStatement();
Random random = new Random(1);
int len = getSize(50, 500);
for (int i = 0; i < len; i++) {
stat.execute("drop table if exists test");
stat.execute("create table test(x int)");
if (random.nextBoolean()) {
int count = random.nextBoolean() ? 1 : 1 + random.nextInt(len);
if (count > 0) {
stat.execute("insert into test select null " +
"from system_range(1, " + count + ")");
}
}
int maxExpected = -1;
int minExpected = -1;
if (random.nextInt(10) != 1) {
minExpected = 1;
maxExpected = 1 + random.nextInt(len);
stat.execute("insert into test select x " +
"from system_range(1, " + maxExpected + ")");
}
String sql = "create index idx on test(x";
if (random.nextBoolean()) {
sql += " desc";
}
if (random.nextBoolean()) {
if (random.nextBoolean()) {
sql += " nulls first";
} else {
sql += " nulls last";
}
}
sql += ")";
stat.execute(sql);
ResultSet rs = stat.executeQuery(
"explain select min(x), max(x) from test");
rs.next();
if (!config.mvcc) {
String plan = rs.getString(1);
assertContains(plan, "direct");
}
rs = stat.executeQuery("select min(x), max(x) from test");
rs.next();
int min = rs.getInt(1);
if (rs.wasNull()) {
min = -1;
}
int max = rs.getInt(2);
if (rs.wasNull()) {
max = -1;
}
assertEquals(minExpected, min);
assertEquals(maxExpected, max);
}
conn.close();
}
private void testMultiColumnRangeQuery() throws SQLException {
deleteDb("optimizations");
Connection conn = getConnection("optimizations");
Statement stat = conn.createStatement();
stat.execute("CREATE TABLE Logs(id INT PRIMARY KEY, type INT)");
stat.execute("CREATE unique INDEX type_index ON Logs(type, id)");
stat.execute("INSERT INTO Logs SELECT X, MOD(X, 3) " +
"FROM SYSTEM_RANGE(1, 1000)");
stat.execute("ANALYZE SAMPLE_SIZE 0");
ResultSet rs;
rs = stat.executeQuery("EXPLAIN SELECT id FROM Logs " +
"WHERE id < 100 and type=2 AND id<100");
rs.next();
String plan = rs.getString(1);
assertContains(plan, "TYPE_INDEX");
conn.close();
}
private void testUseIndexWhenAllColumnsNotInOrderBy() throws SQLException {
deleteDb("optimizations");
Connection conn = getConnection("optimizations");
Statement stat = conn.createStatement();
stat.execute("create table test(id int primary key, account int, tx int)");
stat.execute("insert into test select x, x*100, x from system_range(1, 10000)");
stat.execute("analyze sample_size 5");
stat.execute("create unique index idx_test_account_tx on test(account, tx desc)");
ResultSet rs;
rs = stat.executeQuery("explain analyze " +
"select tx from test " +
"where account=22 and tx<9999999 " +
"order by tx desc limit 25");
rs.next();
String plan = rs.getString(1);
assertContains(plan, "index sorted");
conn.close();
}
private void testDistinctOptimization() throws SQLException {
deleteDb("optimizations");
Connection conn = getConnection("optimizations");
Statement stat = conn.createStatement();
stat.execute("CREATE TABLE TEST(ID INT PRIMARY KEY, " +
"NAME VARCHAR, TYPE INT)");
stat.execute("CREATE INDEX IDX_TEST_TYPE ON TEST(TYPE)");
Random random = new Random(1);
int len = getSize(10000, 100000);
int[] groupCount = new int[10];
PreparedStatement prep = conn.prepareStatement(
"INSERT INTO TEST VALUES(?, ?, ?)");
for (int i = 0; i < len; i++) {
prep.setInt(1, i);
prep.setString(2, "Hello World");
int type = random.nextInt(10);
groupCount[type]++;
prep.setInt(3, type);
prep.execute();
}
ResultSet rs;
rs = stat.executeQuery("SELECT TYPE, COUNT(*) FROM TEST " +
"GROUP BY TYPE ORDER BY TYPE");
for (int i = 0; rs.next(); i++) {
assertEquals(i, rs.getInt(1));
assertEquals(groupCount[i], rs.getInt(2));
}
assertFalse(rs.next());
rs = stat.executeQuery("SELECT DISTINCT TYPE FROM TEST " +
"ORDER BY TYPE");
for (int i = 0; rs.next(); i++) {
assertEquals(i, rs.getInt(1));
}
assertFalse(rs.next());
stat.execute("ANALYZE");
rs = stat.executeQuery("SELECT DISTINCT TYPE FROM TEST " +
"ORDER BY TYPE");
for (int i = 0; i < 10; i++) {
assertTrue(rs.next());
assertEquals(i, rs.getInt(1));
}
assertFalse(rs.next());
rs = stat.executeQuery("SELECT DISTINCT TYPE FROM TEST " +
"ORDER BY TYPE LIMIT 5 OFFSET 2");
for (int i = 2; i < 7; i++) {
assertTrue(rs.next());
assertEquals(i, rs.getInt(1));
}
assertFalse(rs.next());
rs = stat.executeQuery("SELECT DISTINCT TYPE FROM TEST " +
"ORDER BY TYPE LIMIT -1 OFFSET 0 SAMPLE_SIZE 3");
// must have at least one row
assertTrue(rs.next());
for (int i = 0; i < 3; i++) {
rs.getInt(1);
if (i > 0 && !rs.next()) {
break;
}
}
assertFalse(rs.next());
conn.close();
}
private void testQueryCacheTimestamp() throws Exception {
deleteDb("optimizations");
Connection conn = getConnection("optimizations");
PreparedStatement prep = conn.prepareStatement(
"SELECT CURRENT_TIMESTAMP()");
ResultSet rs = prep.executeQuery();
rs.next();
String a = rs.getString(1);
Thread.sleep(50);
rs = prep.executeQuery();
rs.next();
String b = rs.getString(1);
assertFalse(a.equals(b));
conn.close();
}
private void testQueryCacheSpeed() throws SQLException {
deleteDb("optimizations");
Connection conn = getConnection("optimizations");
Statement stat = conn.createStatement();
testQuerySpeed(stat,
"select sum(a.n), sum(b.x) from system_range(1, 100) b, " +
"(select sum(x) n from system_range(1, 4000)) a");
conn.close();
}
private void testQuerySpeed(Statement stat, String sql) throws SQLException {
stat.execute("set OPTIMIZE_REUSE_RESULTS 0");
stat.execute(sql);
long time = System.nanoTime();
stat.execute(sql);
time = System.nanoTime() - time;
stat.execute("set OPTIMIZE_REUSE_RESULTS 1");
stat.execute(sql);
long time2 = System.nanoTime();
stat.execute(sql);
time2 = System.nanoTime() - time2;
if (time2 > time * 2) {
fail("not optimized: " + TimeUnit.NANOSECONDS.toMillis(time) +
" optimized: " + TimeUnit.NANOSECONDS.toMillis(time2) +
" sql:" + sql);
}
}
private void testQueryCache(boolean optimize) throws SQLException {
deleteDb("optimizations");
Connection conn = getConnection("optimizations");
Statement stat = conn.createStatement();
if (optimize) {
stat.execute("set OPTIMIZE_REUSE_RESULTS 1");
} else {
stat.execute("set OPTIMIZE_REUSE_RESULTS 0");
}
stat.execute("create table test(id int)");
stat.execute("create table test2(id int)");
stat.execute("insert into test values(1), (1), (2)");
stat.execute("insert into test2 values(1)");
PreparedStatement prep = conn.prepareStatement(
"select * from test where id = (select id from test2)");
ResultSet rs1 = prep.executeQuery();
rs1.next();
assertEquals(1, rs1.getInt(1));
rs1.next();
assertEquals(1, rs1.getInt(1));
assertFalse(rs1.next());
stat.execute("update test2 set id = 2");
ResultSet rs2 = prep.executeQuery();
rs2.next();
assertEquals(2, rs2.getInt(1));
conn.close();
}
private void testMinMaxCountOptimization(boolean memory)
throws SQLException {
deleteDb("optimizations");
Connection conn = getConnection("optimizations");
Statement stat = conn.createStatement();
stat.execute("create " + (memory ? "memory" : "") +
" table test(id int primary key, value int)");
stat.execute("create index idx_value_id on test(value, id);");
int len = getSize(1000, 10000);
HashMap<Integer, Integer> map = New.hashMap();
TreeSet<Integer> set = new TreeSet<Integer>();
Random random = new Random(1);
for (int i = 0; i < len; i++) {
if (i == len / 2) {
if (!config.memory) {
conn.close();
conn = getConnection("optimizations");
stat = conn.createStatement();
}
}
switch (random.nextInt(10)) {
case 0:
case 1:
case 2:
case 3:
case 4:
case 5:
if (random.nextInt(1000) == 1) {
stat.execute("insert into test values(" + i + ", null)");
map.put(new Integer(i), null);
} else {
int value = random.nextInt();
stat.execute("insert into test values(" + i + ", " + value + ")");
map.put(i, value);
set.add(value);
}
break;
case 6:
case 7:
case 8: {
if (map.size() > 0) {
for (int j = random.nextInt(i), k = 0; k < 10; k++, j++) {
if (map.containsKey(j)) {
Integer x = map.remove(j);
if (x != null) {
set.remove(x);
}
stat.execute("delete from test where id=" + j);
}
}
}
break;
}
case 9: {
ArrayList<Integer> list = New.arrayList(map.values());
int count = list.size();
Integer min = null, max = null;
if (count > 0) {
min = set.first();
max = set.last();
}
ResultSet rs = stat.executeQuery(
"select min(value), max(value), count(*) from test");
rs.next();
Integer minDb = (Integer) rs.getObject(1);
Integer maxDb = (Integer) rs.getObject(2);
int countDb = rs.getInt(3);
assertEquals(minDb, min);
assertEquals(maxDb, max);
assertEquals(countDb, count);
break;
}
default:
}
}
conn.close();
}
private void testIn() throws SQLException {
deleteDb("optimizations");
Connection conn = getConnection("optimizations");
Statement stat = conn.createStatement();
PreparedStatement prep;
ResultSet rs;
assertFalse(stat.executeQuery("select * from dual " +
"where x in()").next());
assertFalse(stat.executeQuery("select * from dual " +
"where null in(1)").next());
assertFalse(stat.executeQuery("select * from dual " +
"where null in(null)").next());
assertFalse(stat.executeQuery("select * from dual " +
"where null in(null, 1)").next());
assertFalse(stat.executeQuery("select * from dual " +
"where 1+x in(3, 4)").next());
assertFalse(stat.executeQuery("select * from dual d1, dual d2 " +
"where d1.x in(3, 4)").next());
stat.execute("create table test(id int primary key, name varchar)");
stat.execute("insert into test values(1, 'Hello')");
stat.execute("insert into test values(2, 'World')");
prep = conn.prepareStatement("select * from test t1 where t1.id in(?)");
prep.setInt(1, 1);
rs = prep.executeQuery();
rs.next();
assertEquals(1, rs.getInt(1));
assertEquals("Hello", rs.getString(2));
assertFalse(rs.next());
prep = conn.prepareStatement("select * from test t1 " +
"where t1.id in(?, ?) order by id");
prep.setInt(1, 1);
prep.setInt(2, 2);
rs = prep.executeQuery();
rs.next();
assertEquals(1, rs.getInt(1));
assertEquals("Hello", rs.getString(2));
rs.next();
assertEquals(2, rs.getInt(1));
assertEquals("World", rs.getString(2));
assertFalse(rs.next());
prep = conn.prepareStatement("select * from test t1 where t1.id "
+ "in(select t2.id from test t2 where t2.id=?)");
prep.setInt(1, 2);
rs = prep.executeQuery();
rs.next();
assertEquals(2, rs.getInt(1));
assertEquals("World", rs.getString(2));
assertFalse(rs.next());
prep = conn.prepareStatement("select * from test t1 where t1.id "
+ "in(select t2.id from test t2 where t2.id=? and t1.id<>t2.id)");
prep.setInt(1, 2);
rs = prep.executeQuery();
assertFalse(rs.next());
prep = conn.prepareStatement("select * from test t1 where t1.id "
+ "in(select t2.id from test t2 where t2.id in(cast(?+10 as varchar)))");
prep.setInt(1, 2);
rs = prep.executeQuery();
assertFalse(rs.next());
conn.close();
}
/**
* Where there are multiple indices, and we have an ORDER BY, select the
* index that already has the required ordering.
*/
private void testOrderedIndexes() throws SQLException {
deleteDb("optimizations");
Connection conn = getConnection("optimizations");
Statement stat = conn.createStatement();
stat.execute("CREATE TABLE my_table(K1 INT, K2 INT, " +
"VAL VARCHAR, PRIMARY KEY(K1, K2))");
stat.execute("CREATE INDEX my_index ON my_table(K1, VAL)");
ResultSet rs = stat.executeQuery(
"EXPLAIN PLAN FOR SELECT * FROM my_table WHERE K1=7 " +
"ORDER BY K1, VAL");
rs.next();
assertContains(rs.getString(1), "/* PUBLIC.MY_INDEX: K1 = 7 */");
stat.execute("DROP TABLE my_table");
// where we have two covering indexes, make sure
// we choose the one that covers more
stat.execute("CREATE TABLE my_table(K1 INT, K2 INT, VAL VARCHAR)");
stat.execute("CREATE INDEX my_index1 ON my_table(K1, K2)");
stat.execute("CREATE INDEX my_index2 ON my_table(K1, K2, VAL)");
rs = stat.executeQuery(
"EXPLAIN PLAN FOR SELECT * FROM my_table WHERE K1=7 " +
"ORDER BY K1, K2, VAL");
rs.next();
assertContains(rs.getString(1), "/* PUBLIC.MY_INDEX2: K1 = 7 */");
conn.close();
}
private void testConvertOrToIn() throws SQLException {
deleteDb("optimizations");
Connection conn = getConnection("optimizations");
Statement stat = conn.createStatement();
stat.execute("create table test(id int primary key, name varchar(255))");
stat.execute("insert into test values" +
"(1, '1'), (2, '2'), (3, '3'), (4, '4'), (5, '5')");
ResultSet rs = stat.executeQuery("EXPLAIN PLAN FOR SELECT * " +
"FROM test WHERE ID=1 OR ID=2 OR ID=3 OR ID=4 OR ID=5");
rs.next();
assertContains(rs.getString(1), "ID IN(1, 2, 3, 4, 5)");
rs = stat.executeQuery("SELECT COUNT(*) FROM test " +
"WHERE ID=1 OR ID=2 OR ID=3 OR ID=4 OR ID=5");
rs.next();
assertEquals(5, rs.getInt(1));
conn.close();
}
private void testUseCoveringIndex() throws SQLException {
deleteDb("optimizations");
Connection conn = getConnection("optimizations");
Statement stat = conn.createStatement();
stat.execute("CREATE TABLE TABLE_A(id IDENTITY PRIMARY KEY NOT NULL, " +
"name VARCHAR NOT NULL, active BOOLEAN DEFAULT TRUE, " +
"UNIQUE KEY TABLE_A_UK (name) )");
stat.execute("CREATE TABLE TABLE_B(id IDENTITY PRIMARY KEY NOT NULL, " +
"TABLE_a_id BIGINT NOT NULL, createDate TIMESTAMP DEFAULT NOW(), " +
"UNIQUE KEY TABLE_B_UK (table_a_id, createDate), " +
"FOREIGN KEY (table_a_id) REFERENCES TABLE_A(id) )");
stat.execute("INSERT INTO TABLE_A (name) SELECT 'package_' || CAST(X as VARCHAR) " +
"FROM SYSTEM_RANGE(1, 100) WHERE X <= 100");
stat.execute("INSERT INTO TABLE_B (table_a_id, createDate) SELECT " +
"CASE WHEN table_a_id = 0 THEN 1 ELSE table_a_id END, createDate " +
"FROM ( SELECT ROUND((RAND() * 100)) AS table_a_id, " +
"DATEADD('SECOND', X, NOW()) as createDate FROM SYSTEM_RANGE(1, 50000) " +
"WHERE X < 50000 )");
stat.execute("CREATE INDEX table_b_idx ON table_b(table_a_id, id)");
stat.execute("ANALYZE");
ResultSet rs = stat.executeQuery("EXPLAIN ANALYZE SELECT MAX(b.id) as id " +
"FROM table_b b JOIN table_a a ON b.table_a_id = a.id GROUP BY b.table_a_id " +
"HAVING A.ACTIVE = TRUE");
rs.next();
assertContains(rs.getString(1), "/* PUBLIC.TABLE_B_IDX: TABLE_A_ID = A.ID */");
rs = stat.executeQuery("EXPLAIN ANALYZE SELECT MAX(id) FROM table_b GROUP BY table_a_id");
rs.next();
assertContains(rs.getString(1), "/* PUBLIC.TABLE_B_IDX");
conn.close();
}
}
| [
"[email protected]"
] | |
742667bdadf5f4b693015f3e625ebf49578f6255 | 7e156561d89c1ee30f9fea6d6bdbd3cf639ce5f3 | /src/main/java/com/spms/view/ProjectTopicManagerView.java | dc9b7cc076d5d7dc726d7c80cc76c37ba31c8291 | [] | no_license | JavaAdore/spms | 94c4e4cd1fed00bf18e5a946d53d728b9083d10f | dfb5d82e76f92350675d570d0e0e788e0ed6bb6a | refs/heads/master | 2016-09-13T16:44:27.466890 | 2016-04-28T21:30:35 | 2016-04-28T21:30:35 | 56,404,734 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 3,209 | java |
package com.spms.view;
import java.io.Serializable;
import java.util.List;
import javax.annotation.PostConstruct;
import javax.ejb.EJB;
import javax.faces.application.FacesMessage;
import javax.faces.bean.ManagedBean;
import javax.faces.bean.ViewScoped;
import javax.faces.context.FacesContext;
import com.spms.entity.ProjectTopic;
import com.spms.service.ProjectTopicService;
@ManagedBean
@ViewScoped
public class ProjectTopicManagerView implements Serializable {
private static final long serialVersionUID = 1L;
@EJB
ProjectTopicService projectTopicService;
@PostConstruct
public void postConstruct() {
refreshProjectTopicList();
}
private List<ProjectTopic> projectTopicList;
private ProjectTopic newProjectTopic;
private ProjectTopic selectedProjectTopic;
public void refreshProjectTopicList() {
projectTopicList = projectTopicService.getAllProjectTopics();
}
public void beforeCreateNewProjectTopic() {
newProjectTopic = new ProjectTopic();
}
public void createNewProjectTopic() {
ProjectTopic projectTopic = projectTopicService.findByTopicTitle(newProjectTopic.getTopicTitle());
if(projectTopic != null){
FacesContext.getCurrentInstance().validationFailed();
FacesContext.getCurrentInstance().addMessage(null,
new FacesMessage(FacesMessage.SEVERITY_ERROR, "Topic Title: " + newProjectTopic.getTopicTitle() + " Already Exist.", ""));
return;
}
newProjectTopic = projectTopicService.create(newProjectTopic);
projectTopicList.add(newProjectTopic);
FacesContext.getCurrentInstance().addMessage(null,
new FacesMessage("Project Topic: " + newProjectTopic.getTopicTitle() + " created successfully."));
}
public void updateSelectedProjectTopic() {
ProjectTopic projectTopic = projectTopicService.findByTopicTitle(selectedProjectTopic.getTopicTitle());
if(projectTopic != null && !projectTopic.getId().equals(selectedProjectTopic.getId())){
FacesContext.getCurrentInstance().validationFailed();
FacesContext.getCurrentInstance().addMessage(null,
new FacesMessage(FacesMessage.SEVERITY_ERROR, "Topic Title: " + selectedProjectTopic.getTopicTitle() + " Already Exist.", ""));
return;
}
projectTopicService.update(selectedProjectTopic);
refreshProjectTopicList();
FacesContext.getCurrentInstance().addMessage(null,
new FacesMessage("Project Topic: " + selectedProjectTopic.getTopicTitle() + " updated successfully."));
}
public void deleteSelectedProjectTopic() {
projectTopicService.delete(selectedProjectTopic);
projectTopicList.remove(selectedProjectTopic);
FacesContext.getCurrentInstance().addMessage(null,
new FacesMessage("Project Topic: " + selectedProjectTopic.getTopicTitle() + " deleted successfully."));
}
public List<ProjectTopic> getProjectTopicList() {
return projectTopicList;
}
public ProjectTopic getNewProjectTopic() {
return newProjectTopic;
}
public void setNewProjectTopic(ProjectTopic newProjectTopic) {
this.newProjectTopic = newProjectTopic;
}
public ProjectTopic getSelectedProjectTopic() {
return selectedProjectTopic;
}
public void setSelectedProjectTopic(ProjectTopic selectedProjectTopic) {
this.selectedProjectTopic = selectedProjectTopic;
}
}
| [
"[email protected]"
] | |
ce4934dd1b4c501c3de4602a1ee8ec51c40afff2 | 3f81cd3e17d83c0b03dde3f32f5d20e7ad888791 | /dcs-dubbo-service/src/test/java/Bean.java | 90ac23255f6f67ca1a7e224b1b76ab467bead0d6 | [] | no_license | HineLee/dcs-dubbo | 11eed3f6588cd3394ddd92310537c1bcefc6c94d | de501f6960aed7391252f7b7b3e70bb47bd33354 | refs/heads/master | 2020-03-22T03:45:53.272333 | 2018-07-10T01:58:55 | 2018-07-10T01:58:55 | 139,451,067 | 1 | 0 | null | null | null | null | UTF-8 | Java | false | false | 599 | java | import java.util.List;
public class Bean {
private String name;
private List<ListBean> listBeans;
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
public List<ListBean> getListBeans() {
return listBeans;
}
public void setListBeans(List<ListBean> listBeans) {
this.listBeans = listBeans;
}
@Override
public String toString() {
return "Bean{" +
"name='" + name + '\'' +
", listBeans=" + listBeans +
'}';
}
}
| [
"[email protected]"
] | |
1f296a351bcd8233f55bd06a5e68168b17f6dbcc | d88b6f9f2eaa0006256fb2cecd2726d755ebc04f | /src/org/usfirst/frc/team4240/robot/Robot.java | 9d70a4f6b9fedfdb203a206a9090d06f31af0f98 | [] | no_license | xKIAxMaDDoG/troTek | c61f497b9beb2bd90611e194e3c3b3004c44bf9a | e7d35aedc31213e5fac18aec938bed4e0c5de8c6 | refs/heads/master | 2020-03-06T21:32:30.333006 | 2018-05-01T15:11:14 | 2018-05-01T15:11:14 | 127,080,171 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 5,083 | java | // RobotBuilder Version: 2.0
//
// This file was generated by RobotBuilder. It contains sections of
// code that are automatically generated and assigned by robotbuilder.
// These sections will be updated in the future when you export to
// Java from RobotBuilder. Do not put any code or make any change in
// the blocks indicating autogenerated code or it will be lost on an
// update. Deleting the comments indicating the section will prevent
// it from being updated in the future.
package org.usfirst.frc.team4240.robot;
import edu.wpi.first.wpilibj.TimedRobot;
import edu.wpi.first.wpilibj.command.Command;
import edu.wpi.first.wpilibj.command.Scheduler;
import edu.wpi.first.wpilibj.livewindow.LiveWindow;
import edu.wpi.first.wpilibj.smartdashboard.SendableChooser;
import edu.wpi.first.wpilibj.smartdashboard.SmartDashboard;
import org.usfirst.frc.team4240.robot.commands.*;
import org.usfirst.frc.team4240.robot.subsystems.*;
import edu.wpi.first.wpilibj.CameraServer;
import edu.wpi.cscore.UsbCamera;
/**
* The VM is configured to automatically run this class, and to call the
* functions corresponding to each mode, as described in the TimedRobot
* documentation. If you change the name of this class or the package after
* creating this project, you must also update the build.properties file in
* the project.
*/
public class Robot extends TimedRobot {
Command autonomousCommand;
SendableChooser<Command> chooser = new SendableChooser<>();
public static OI oi;
// BEGIN AUTOGENERATED CODE, SOURCE=ROBOTBUILDER ID=DECLARATIONS
public static driveTrain driveTrain;
public static intake intake;
public static flipper flipper;
public static intakeLift intakeLift;
// END AUTOGENERATED CODE, SOURCE=ROBOTBUILDER ID=DECLARATIONS
/**
* This function is run when the robot is first started up and should be
* used for any initialization code.
*/
@Override
public void robotInit() {
UsbCamera camera1 = CameraServer.getInstance().startAutomaticCapture();
camera1.setResolution(320, 240);
UsbCamera camera2 = CameraServer.getInstance().startAutomaticCapture();
camera2.setResolution(320, 240);
RobotMap.init();
// BEGIN AUTOGENERATED CODE, SOURCE=ROBOTBUILDER ID=CONSTRUCTORS
driveTrain = new driveTrain();
SmartDashboard.putData(driveTrain);
intake = new intake();
flipper = new flipper();
intakeLift = new intakeLift();
// END AUTOGENERATED CODE, SOURCE=ROBOTBUILDER ID=CONSTRUCTORS
// OI must be constructed after subsystems. If the OI creates Commands
//(which it very likely will), subsystems are not guaranteed to be
// constructed yet. Thus, their requires() statements may grab null
// pointers. Bad news. Don't move it.
oi = new OI();
// Add commands to Autonomous Sendable Chooser
// BEGIN AUTOGENERATED CODE, SOURCE=ROBOTBUILDER ID=AUTONOMOUS
chooser.addObject("AutonomousNothing", new AutonomousNothing());
chooser.addDefault("Autonomous Command", new AutonomousCommand());
// END AUTOGENERATED CODE, SOURCE=ROBOTBUILDER ID=AUTONOMOUS
SmartDashboard.putData("Auto mode", chooser);
}
/**
* This function is called when the disabled button is hit.
* You can use it to reset subsystems before shutting down.
*/
@Override
public void disabledInit(){
}
@Override
public void disabledPeriodic() {
Scheduler.getInstance().run();
}
@Override
public void autonomousInit() {
autonomousCommand = chooser.getSelected();
// schedule the autonomous command (example)
if (autonomousCommand != null) autonomousCommand.start();
}
/**
* This function is called periodically during autonomous
*/
@Override
public void autonomousPeriodic() {
Scheduler.getInstance().run();
}
@Override
public void teleopInit() {
SmartDashboard.putNumber("Angle", Robot.driveTrain.getIMUAngle());
SmartDashboard.putNumber("Current0", Robot.driveTrain.pdp.getCurrent(0));
SmartDashboard.putNumber("Current1", Robot.driveTrain.pdp.getCurrent(1));
SmartDashboard.putNumber("Current2", Robot.driveTrain.pdp.getCurrent(2));
SmartDashboard.putNumber("Current3", Robot.driveTrain.pdp.getCurrent(3));
SmartDashboard.putNumber("Current4", Robot.driveTrain.pdp.getCurrent(4));
SmartDashboard.putNumber("Current5", Robot.driveTrain.pdp.getCurrent(5));
// This makes sure that the autonomous stops running when
// teleop starts running. If you want the autonomous to
// continue until interrupted by another command, remove
// this line or comment it out.
if (autonomousCommand != null) autonomousCommand.cancel();
}
/**
* This function is called periodically during operator control
*/
@Override
public void teleopPeriodic() {
Scheduler.getInstance().run();
}
}
| [
"[email protected]"
] | |
41bd2e802dd5bfb7268ab54146de5f2f1bbcd0ea | 0d526054c0f03827fe664a869f3ce9f9f385962c | /src/java/com/met/hrmis/jpa/entities/PayGradeXLeaveTypeXDays.java | cc02173511a7b1bac13f652ef4dae23cc4271173 | [] | no_license | QuantSolutionsGh/MegaHrmis | e07ff108848474fa2b21e77bff03ebff7b6fc91b | 7a272dda0f0f340a73a5050eba29265995c90da7 | refs/heads/master | 2021-01-10T16:08:26.808261 | 2016-04-09T00:18:38 | 2016-04-09T00:18:38 | 55,811,558 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 2,593 | java | /*
* To change this template, choose Tools | Templates
* and open the template in the editor.
*/
package com.met.hrmis.jpa.entities;
import java.io.Serializable;
import javax.persistence.*;
import org.hibernate.annotations.CacheConcurrencyStrategy;
import org.hibernate.annotations.GenericGenerator;
/**
*
* @author BERNARD
*/
@Entity
@org.hibernate.annotations.Cache(usage=CacheConcurrencyStrategy.READ_WRITE)
@Table(uniqueConstraints=
@UniqueConstraint(columnNames = {"PAYGRADE","LEAVETYPE"}))
public class PayGradeXLeaveTypeXDays implements Serializable {
private static final long serialVersionUID = 1L;
@Id
@GeneratedValue(generator = "system-uuid")
@GenericGenerator(name = "system-uuid", strategy = "uuid")
@Column(name = "ID")
private String id;
@JoinColumn(name="PAYGRADE",referencedColumnName="ID")
@ManyToOne
private PayGrade payGrade;
@JoinColumn(name="LEAVETYPE",referencedColumnName="ID")
@ManyToOne
private LeaveTypes leaveType;
@Column(name="DAYS_ALLOCATED")
private Integer daysAllocated;
public Integer getDaysAllocated() {
return daysAllocated;
}
public void setDaysAllocated(Integer daysAllocated) {
this.daysAllocated = daysAllocated;
}
public LeaveTypes getLeaveType() {
return leaveType;
}
public void setLeaveType(LeaveTypes leaveType) {
this.leaveType = leaveType;
}
public PayGrade getPayGrade() {
return payGrade;
}
public void setPayGrade(PayGrade payGrade) {
this.payGrade = payGrade;
}
public String getId() {
return id;
}
public void setId(String id) {
this.id = id;
}
@Override
public int hashCode() {
int hash = 0;
hash += (id != null ? id.hashCode() : 0);
return hash;
}
@Override
public boolean equals(Object object) {
// TODO: Warning - this method won't work in the case the id fields are not set
if (!(object instanceof PayGradeXLeaveTypeXDays)) {
return false;
}
PayGradeXLeaveTypeXDays other = (PayGradeXLeaveTypeXDays) object;
if ((this.id == null && other.id != null) || (this.id != null && !this.id.equals(other.id))) {
return false;
}
return true;
}
@Override
public String toString() {
return "com.met.hrmis.jpa.entities.PayGradeXLeaveTypeXDays[ id=" + id + " ]";
}
}
| [
"BERNARD@DBA-PC"
] | BERNARD@DBA-PC |
7b6624423849d3ad340da5decce38ef6214dca0d | 8d739096d2de46b52e7a67abf3989bb78a92154f | /src/main/java/com/qualitychemicals/qciss/QcissApplication.java | 23276bacdd62f62b29e55f9d02dd723b543dd4c1 | [] | no_license | lodkazibwe/QCiStaffSacco | 4804289a784e6a14848e161f957b3162e2b56100 | 338aea4eb8d2fda41fa575113c5adba6cd8d0844 | refs/heads/master | 2023-08-04T00:23:32.187562 | 2021-10-03T09:47:55 | 2021-10-03T09:47:55 | 295,292,716 | 0 | 1 | null | null | null | null | UTF-8 | Java | false | false | 617 | java | package com.qualitychemicals.qciss;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.context.annotation.Bean;
import org.springframework.scheduling.annotation.EnableScheduling;
import org.springframework.web.client.RestTemplate;
@SpringBootApplication
@EnableScheduling
public class QcissApplication {
public static void main(String[] args) {
SpringApplication.run(QcissApplication.class, args);
}
@Bean
public RestTemplate getRestTemplate(){
return new RestTemplate();
}
}
| [
"[email protected]"
] | |
4465eb60feb9a766ea1876e81ad288b586fac703 | bfa87c63379411ec83adb97e468865456bf377d9 | /src/test/java/com/zx/sms/connect/manager/cmpp/TestCMPPEndPoint.java | 8d4de37b3677ccce7a7f77f7c2dc8a1f3ffa904b | [] | no_license | sun1534/CMPPGate | dbd11bd72750c6dfa4b0f39542dfd6bdf023ebad | 0ad31b8a07bae9d548bf633fa31495da3b37937f | refs/heads/master | 2020-12-26T01:59:24.768261 | 2015-09-10T13:14:56 | 2015-09-10T13:14:56 | 43,128,349 | 1 | 0 | null | 2015-09-25T09:38:16 | 2015-09-25T09:38:15 | null | UTF-8 | Java | false | false | 3,556 | java | package com.zx.sms.connect.manager.cmpp;
import java.nio.charset.Charset;
import java.util.ArrayList;
import java.util.List;
import java.util.concurrent.locks.LockSupport;
import org.junit.Test;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import com.zx.sms.connect.manager.CMPPEndpointManager;
import com.zx.sms.handler.api.BusinessHandlerInterface;
import com.zx.sms.handler.api.gate.SessionConnectedHandler;
import com.zx.sms.handler.api.smsbiz.MessageReceiveHandler;
/**
*经测试,35个连接,每个连接每200/s条消息
*lenovoX250能承担7000/s消息编码解析无压力。
*10000/s的消息服务不稳定,开个网页,或者打开其它程序导致系统抖动,会有大量消息延迟 (超过500ms)
*
*低负载时消息编码解码可控制在10ms以内。
*
*/
public class TestCMPPEndPoint {
private static final Logger logger = LoggerFactory.getLogger(TestCMPPEndPoint.class);
@Test
public void testCMPPEndpoint() throws Exception {
final CMPPEndpointManager manager = CMPPEndpointManager.INS;
CMPPServerEndpointEntity server = new CMPPServerEndpointEntity();
server.setId("server");
server.setHost("127.0.0.1");
server.setPort(7891);
server.setValid(true);
CMPPServerChildEndpointEntity child = new CMPPServerChildEndpointEntity();
child.setId("child");
child.setChartset(Charset.forName("utf-8"));
child.setGroupName("test");
child.setUserName("901782");
child.setPassword("ICP");
child.setValid(true);
child.setWindows((short)16);
child.setVersion((short)48);
child.setMaxChannels((short)20);
child.setRetryWaitTimeSec((short)10);
child.setMaxRetryCnt((short)3);
List<BusinessHandlerInterface> serverhandlers = new ArrayList<BusinessHandlerInterface>();
serverhandlers.add(new SessionConnectedHandler());
serverhandlers.add(new MessageReceiveHandler());
child.setBusinessHandlerSet(serverhandlers);
server.addchild(child);
manager.addEndpointEntity(server);
CMPPClientEndpointEntity client = new CMPPClientEndpointEntity();
client.setId("client");
client.setHost("127.0.0.1");
client.setPort(7891);
client.setChartset(Charset.forName("utf-8"));
client.setGroupName("test");
client.setUserName("901782");
client.setPassword("ICP");
client.setWindows((short)16);
client.setVersion((short)48);
client.setRetryWaitTimeSec((short)10);
List<BusinessHandlerInterface> clienthandlers = new ArrayList<BusinessHandlerInterface>();
clienthandlers.add(new MessageReceiveHandler());
clienthandlers.add(new SessionConnectedHandler());
client.setBusinessHandlerSet(clienthandlers);
manager.addEndpointEntity(client);
CMPPClientEndpointEntity clientErr = new CMPPClientEndpointEntity();
clientErr.setId("clienterr");
clientErr.setHost("127.0.0.1");
clientErr.setPort(7891);
clientErr.setChartset(Charset.forName("utf-8"));
clientErr.setGroupName("test");
clientErr.setUserName("123456");
clientErr.setPassword("1234456");
clientErr.setWindows((short)16);
clientErr.setVersion((short)48);
clientErr.setValid(false);
List<BusinessHandlerInterface> clientclientErrhandlers = new ArrayList<BusinessHandlerInterface>();
clientclientErrhandlers.add(new MessageReceiveHandler());
clientErr.setBusinessHandlerSet(clientclientErrhandlers);
manager.addEndpointEntity(clientErr);
manager.openAll();
LockSupport.park();
// Thread.sleep(300000);
CMPPEndpointManager.INS.close();
}
}
| [
"[email protected]"
] | |
ad4e8745329524be0702cebc9806c63b706803c8 | 21071dbf5d432c5a66b6b1fe9b7b394ea04da96f | /app/src/main/java/com/us47codex/mvvmarch/base/BaseViewModel.java | 4dbbaf1c13e20f37876ba7850ae6e8344418fe9c | [
"Apache-2.0"
] | permissive | us47codex/MVVM-Architecture | 65cb5b4523c15d39846a4636c44ecd7b04507b23 | 3012ebb5c0bb65f7a752f9b0da6f3f4e05560b98 | refs/heads/master | 2020-09-21T11:43:42.500155 | 2019-12-03T17:32:48 | 2019-12-03T17:32:48 | 224,778,718 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 12,007 | java | package com.us47codex.mvvmarch.base;
import android.app.Application;
import android.content.Context;
import androidx.annotation.NonNull;
import androidx.core.util.Pair;
import androidx.lifecycle.AndroidViewModel;
import com.google.gson.Gson;
import com.jakewharton.rxrelay2.PublishRelay;
import com.us47codex.mvvmarch.R;
import com.us47codex.mvvmarch.SunTecApplication;
import com.us47codex.mvvmarch.SunTecPreferenceManager;
import com.us47codex.mvvmarch.constant.Constants;
import com.us47codex.mvvmarch.enums.ApiCallStatus;
import com.us47codex.mvvmarch.helper.AppLog;
import com.us47codex.mvvmarch.helper.AppUtils;
import com.us47codex.mvvmarch.helper.ErrorMessageHandlerModel;
import com.us47codex.mvvmarch.roomDatabase.SunTecDatabase;
import org.json.JSONObject;
import java.util.HashMap;
import java.util.Objects;
import io.reactivex.disposables.CompositeDisposable;
import io.reactivex.schedulers.Schedulers;
import okhttp3.ResponseBody;
import retrofit2.Response;
public abstract class BaseViewModel extends AndroidViewModel {
private static final String TAG = BaseViewModel.class.getSimpleName();
private final CompositeDisposable mCompositeDisposable;
private final Context context;
private final PublishRelay<ApiCallStatus> statusBehaviorRelay = PublishRelay.create();
private final PublishRelay<String> errorRelay = PublishRelay.create();
/* private final PublishRelay<String> errorCodeRelay = PublishRelay.create();*/
private final PublishRelay<Pair<String, Object>> responseRelay = PublishRelay.create();
protected BaseViewModel(@NonNull Application application) {
super(application);
this.mCompositeDisposable = new CompositeDisposable();
this.context = application;
}
protected CompositeDisposable getCompositeDisposable() {
return mCompositeDisposable;
}
public Context getContextBaseViewModel() {
return context;
}
public SunTecDatabase getDatabase() {
return SunTecApplication.getInstance().getDatabase();
}
public SunTecPreferenceManager getPreference() {
return SunTecApplication.getInstance().getPreferenceManager();
}
@Override
protected void onCleared() {
getCompositeDisposable().clear();
System.gc();
super.onCleared();
}
/* protected long getCustomerId(){
return CustomerApplication.getInstance().getSessionManager().getLongValue(SessionManager.CUSTOMER_ID, 0);
}
protected long getEmployeeId(){
return CustomerApplication.getInstance().getSessionManager().getLongValue(SessionManager.EMPLOYEE_ID, 0);
}*/
public PublishRelay<ApiCallStatus> getStatusBehaviorRelay() {
return statusBehaviorRelay;
}
public PublishRelay<String> getErrorRelay() {
return errorRelay;
}
/* public PublishRelay<String> getErrorCodeRelay() {
return errorCodeRelay;
}*/
public PublishRelay<Pair<String, Object>> getResponseRelay() {
return responseRelay;
}
/**
* Function will handle onSuccess Response of Retrofit call
*
* @param response Retrofit Response
* @param API_TAG for Identify API call
* @param showProgressBar is need to handle Progress Bar
* @return JSONObject with added API_TAG
*/
protected JSONObject parseOnSuccess(Response<ResponseBody> response, String API_TAG, boolean showProgressBar) throws NullPointerException {
if (AppUtils.isResponseSuccess(response.code())) {
try {
String res = response.body() != null ? response.body().string() : "";
if (!AppUtils.isEmpty(res)) {
JSONObject obj = new JSONObject(res);
if (obj.has(Constants.KEY_CODE)) {
AppLog.error(TAG, "parseOnSuccess :: API TAG : " + API_TAG + ":: Error : " + obj.getString(Constants.KEY_CODE));
if (showProgressBar)
getStatusBehaviorRelay().accept(ApiCallStatus.ERROR);
String errMessage = AppUtils.getMessageForErrorCode(obj, getContextBaseViewModel());
getErrorRelay().accept(errMessage);
} else if (obj.has(Constants.KEY_SUCCESS)) {
if (obj.getString(Constants.KEY_SUCCESS).equals(Constants.API_SUCCESS)) {
AppLog.error(TAG, "parseOnSuccess :: API TAG : " + API_TAG + ":: Success : ");
obj.put(Constants.KEY_API_TAG, API_TAG);
return obj;
} else {
AppLog.error(TAG, "parseOnSuccess :: API TAG : " + API_TAG + ":: Error : " + obj.opt(Constants.KEY_MESSAGE));
if (showProgressBar)
getStatusBehaviorRelay().accept(ApiCallStatus.ERROR);
String errMessage = AppUtils.getMessageForErrorCode(obj, getContextBaseViewModel());
getErrorRelay().accept(errMessage);
}
}
} else {
AppLog.error(TAG, "parseOnSuccess :: API TAG : " + API_TAG + ":: Error : Response Null");
if (showProgressBar)
getStatusBehaviorRelay().accept(ApiCallStatus.ERROR);
getErrorRelay().accept(context.getString(R.string.something_went_wrong));
}
} catch (Exception e) {
e.printStackTrace();
AppLog.error(TAG, "parseOnSuccess :: API TAG : " + API_TAG + ":: Error : " + e);
if (showProgressBar)
getStatusBehaviorRelay().accept(ApiCallStatus.ERROR);
getErrorRelay().accept(Objects.requireNonNull(e.getLocalizedMessage()));
}
} else {
AppLog.error(TAG, String.valueOf(response.code()));
if (/*response.code() == Constants.BAD_REQUEST ||*/
/*response.code() == Constants.UNAUTHORIZED ||*/
response.code() == Constants.FORBIDDEN ||
response.code() == Constants.NOT_FOUND ||
response.code() == Constants.REQUEST_TIMEOUT ||
response.code() == Constants.SERVER_BROKEN ||
response.code() == Constants.BAD_GATEWAY ||
response.code() == Constants.SERVICE_UNAVAILABLE ||
response.code() == Constants.GATEWAY_TIMEOUT) {
getCompositeDisposable().add(
AppUtils.getErrorMessageFRomErrorCode(response.code())
.subscribeOn(Schedulers.io())
.onErrorReturn(throwable -> {
throwable.printStackTrace();
return throwable.getLocalizedMessage();
})
.doOnSuccess(message -> {
AppLog.error(TAG, "parseOnSuccess :: API TAG : " + API_TAG + ":: Error : " + message);
if (showProgressBar)
getStatusBehaviorRelay().accept(ApiCallStatus.ERROR);
getErrorRelay().accept(message);
})
.subscribe()
);
} else {
if (response.code() != Constants.UNAUTHORIZED) {
Gson gson = new Gson();
ErrorMessageHandlerModel message = null;
if (response.errorBody() != null) {
message = gson.fromJson(response.errorBody().charStream(), ErrorMessageHandlerModel.class);
}
if (message == null && response.body() != null) {
message = gson.fromJson(response.body().charStream(),
ErrorMessageHandlerModel.class);
}
getCompositeDisposable().add(
AppUtils.getMyLanguageErrorMessage(message)
.subscribeOn(Schedulers.io())
.onErrorReturn(Throwable::getLocalizedMessage)
.doOnSuccess(message1 -> {
if (showProgressBar) {
getStatusBehaviorRelay().accept(ApiCallStatus.ERROR);
}
getErrorRelay().accept(message1);
})
.subscribe()
);
} else {
try {
String s = Objects.requireNonNull(response.errorBody()).string();
JSONObject jsonObject = new JSONObject(s);
if (showProgressBar) {
getStatusBehaviorRelay().accept(ApiCallStatus.ERROR);
}
if (jsonObject.has(Constants.KEY_MESSAGE)) {
getErrorRelay().accept(jsonObject.getString(Constants.KEY_MESSAGE));
} else if (jsonObject.has(Constants.KEY_ERROR)) {
getErrorRelay().accept(jsonObject.getString(Constants.KEY_ERROR));
}
} catch (Exception e) {
if (showProgressBar) {
getStatusBehaviorRelay().accept(ApiCallStatus.ERROR);
}
getErrorRelay().accept(e.getLocalizedMessage());
e.printStackTrace();
}
}
}
}
return null;
}
/**
* Function will handle onSuccess Response of Retrofit call
*
* @param error Throwable error
* @param API_TAG for Identify API call
* @param showProgressBar is need to handle Progress Bar
*/
protected void parseOnError(Throwable error, String API_TAG, boolean showProgressBar) {
try {
if (error.getCause() == null) {
if (showProgressBar)
getStatusBehaviorRelay().accept(ApiCallStatus.ERROR);
getErrorRelay().accept(context.getString(R.string.please_try_again));
/*getErrorCodeRelay().accept(AppUtils.isEmpty(error.getLocalizedMessage()) ?
Constants.ERR_SOMETHING_WRONG : error.getLocalizedMessage());*/
} else {
AppLog.error(TAG, "parseOnError :: API TAG : " + API_TAG + ":: Error : " + error.getLocalizedMessage());
if (showProgressBar)
getStatusBehaviorRelay().accept(ApiCallStatus.ERROR);
if (Objects.requireNonNull(error.getLocalizedMessage()).equalsIgnoreCase("timeout")
|| error.getLocalizedMessage().equalsIgnoreCase("time out")) {
getErrorRelay().accept(context.getString(R.string.please_try_again));
} else {
getErrorRelay().accept(AppUtils.isEmpty(error.getLocalizedMessage()) ? Constants.ERR_SOMETHING_WRONG : error.getLocalizedMessage());
}
}
} catch (NullPointerException e) {
e.printStackTrace();
} catch (Exception e) {
e.printStackTrace();
}
}
protected HashMap<String, String> getHeaders() {
HashMap<String, String> headers = new HashMap<>();
headers.put("Authorization", "Bearer " + SunTecApplication.getInstance().getPreferenceManager().getStringValue(SunTecPreferenceManager.PREF_AUTHENTICATION_TOKEN, ""));
return headers;
}
}
| [
"[email protected]"
] | |
4d5dfed4690baecc31c2806ece2f55c20da0f010 | 8be0e72567e2f06838972e56e1f0462f249703b6 | /IWebDemo/src/com/springDemo/web/service/package-info.java | 9205fe0fdbbb42097a7c6b9610b96b0b3820ea21 | [] | no_license | heiyeliuying/SpringDemo | cbbb4bc636feca2913fc4c364bf00853c5d1ddff | 4fe4a37f02760afcde187ea6b046d0909804cbef | refs/heads/master | 2020-04-12T13:11:37.332188 | 2015-01-09T03:41:38 | 2015-01-09T03:41:38 | 28,995,001 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 71 | java | /**
* 存放所有的服务
*/
package com.springDemo.web.service; | [
"[email protected]"
] | |
56fec433448854b772b9484f8162e1bc48796054 | ee8e96d3a550fffa8d84b022218f5ebc7a1dce14 | /guns/src/main/java/com/se/manager/SeServletInitializer.java | 61bdf8a42df32eb5623d9e6e708926f2180034e6 | [
"Apache-2.0"
] | permissive | hnshengen/shengen-springboot-demo | 6123559db0d741f1abf500c131f8cadd743d19a5 | d2656ba3ae4e01d73f0ec1a209c006134f23f217 | refs/heads/master | 2020-04-29T14:14:13.131068 | 2019-03-20T01:00:19 | 2019-03-20T01:00:19 | 176,190,294 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,143 | java | /**
* Copyright 2018-2020 stylefeng & fengshuonan (https://gitee.com/stylefeng)
* <p>
* 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
* <p>
* http://www.apache.org/licenses/LICENSE-2.0
* <p>
* 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.
*/
package com.se.manager;
import org.springframework.boot.builder.SpringApplicationBuilder;
import org.springframework.boot.web.servlet.support.SpringBootServletInitializer;
/**
* Se Web程序启动类
*
* @author fengshuonan
* @date 2017-05-21 9:43
*/
public class SeServletInitializer extends SpringBootServletInitializer {
@Override
protected SpringApplicationBuilder configure(SpringApplicationBuilder builder) {
return builder.sources(SeApplication.class);
}
}
| [
"[email protected]"
] | |
428d3947b1310f11802bf4dda98e9a95c075ca44 | 74dd6a93f6f3ffa8fe6d7f7f789d0c55ec373f43 | /src/com/perl5/lang/perl/extensions/packageprocessor/impl/StrictProcessor.java | b746858c08872bf1c46fab99bbc75e269b45b5e5 | [
"Apache-2.0"
] | permissive | nazarov-yuriy/Perl5-IDEA | 63516336454e38a319c363af3a653d6393e2a0b3 | 9e0e439f474fa774900bb08bda23e9941607f982 | refs/heads/master | 2021-01-22T11:21:51.523196 | 2017-06-12T14:04:06 | 2017-06-12T14:04:06 | 92,687,514 | 0 | 0 | null | 2017-05-28T21:14:50 | 2017-05-28T21:14:50 | null | UTF-8 | Java | false | false | 2,169 | java | /*
* Copyright 2015-2017 Alexandr Evstigneev
*
* 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.
*/
package com.perl5.lang.perl.extensions.packageprocessor.impl;
import com.perl5.lang.perl.extensions.packageprocessor.PerlPackageOptionsProvider;
import com.perl5.lang.perl.extensions.packageprocessor.PerlPragmaProcessorBase;
import com.perl5.lang.perl.extensions.packageprocessor.PerlStrictProvider;
import com.perl5.lang.perl.internals.PerlStrictMask;
import com.perl5.lang.perl.psi.PerlUseStatement;
import org.jetbrains.annotations.NotNull;
import java.util.Collections;
import java.util.HashMap;
import java.util.Map;
/**
* Created by hurricup on 18.08.2015.
*/
public class StrictProcessor extends PerlPragmaProcessorBase implements PerlPackageOptionsProvider, PerlStrictProvider {
protected static final HashMap<String, String> OPTIONS = new HashMap<String, String>();
static {
OPTIONS.put("vars", "generates a compile-time error if you access a variable that was neither explicitly declared");
OPTIONS.put("refs", "generates a runtime error if you use symbolic references");
OPTIONS.put("subs", "generates a compile-time error if you try to use a bareword identifier that's not a subroutine");
}
@NotNull
@Override
public Map<String, String> getOptions() {
return OPTIONS;
}
@NotNull
@Override
public Map<String, String> getOptionsBundles() {
return Collections.emptyMap();
}
@Override
public PerlStrictMask getStrictMask(PerlUseStatement useStatement, PerlStrictMask currentMask) {
// fixme implement modification
return currentMask == null ? new PerlStrictMask() : currentMask.clone();
}
}
| [
"[email protected]"
] | |
89ad9273a0a5ac62415b5ec9aca47792377c1f6e | 5f3a0885eaeccb17c989703a988b2f9b080ef5d2 | /src/controller/AddNModifyPrisonStaff.java | 2b37b82fb924fa0d8327ce068356fa1f7ed7a9a6 | [] | no_license | Sevajper/Prison-Database-Java-SQL | 02e65886be0558f8dfa2861822d2d0996d294ecd | a1a156d50bdcd32b3f5291da8a403cd5287571fe | refs/heads/master | 2020-05-26T17:04:51.695060 | 2019-05-23T22:12:55 | 2019-05-23T22:12:55 | 188,312,407 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 4,745 | java | package controller;
import java.net.URL;
import java.sql.Connection;
import java.sql.PreparedStatement;
import java.util.ResourceBundle;
import org.sqlite.SQLiteException;
import javafx.event.ActionEvent;
import javafx.fxml.FXML;
import javafx.fxml.Initializable;
import javafx.scene.control.Alert;
import javafx.scene.control.Button;
import javafx.scene.control.TextField;
import javafx.scene.control.Alert.AlertType;
import model.ConnectToDatabase;
public class AddNModifyPrisonStaff implements Initializable {
@FXML
private TextField addStaffID, addName, addAge, addSex, addJob;
private String id;
@FXML
private Button addBtn, modifyBtn;
@SuppressWarnings("unused")
private boolean maybe;
@Override
public void initialize(URL location, ResourceBundle resources) {
addStaffID.setText(this.id);
}
public void modifyInformation(String id, String name, int age, String sex, String job) {
addStaffID.setText(id);
addName.setText(name);
addAge.setText(Integer.toString(age));
addSex.setText(sex);
addJob.setText(job);
}
public void checkModify(boolean maybe) {
this.maybe = maybe;
if (maybe) {
addStaffID.setDisable(true);
}
}
@FXML
private void addToPrisonStaffTable(ActionEvent event) {
try {
Connection connect = ConnectToDatabase.getConnection();
PreparedStatement state = connect
.prepareStatement("INSERT INTO PRISON_STAFF(staff_id, name, age, sex, job) VALUES (?,?,?,?,?)");
if (this.addStaffID.getText() == null || this.addStaffID.getText().isEmpty() || this.addName.getText().isEmpty()
|| this.addAge.getText().isEmpty() || this.addSex.getText().isEmpty()
|| this.addJob.getText().isEmpty()) {
Alert errorAlert = new Alert(AlertType.ERROR);
errorAlert.setHeaderText("Input not valid");
errorAlert.setContentText("Fields cannot be empty.");
errorAlert.showAndWait();
return;
} else {
@SuppressWarnings("unused")
int age = Integer.parseInt(this.addAge.getText());
state.setString(1, this.addStaffID.getText());
state.setString(2, this.addName.getText());
state.setInt(3, Integer.valueOf(this.addAge.getText()));
state.setString(4, this.addSex.getText());
state.setString(5, this.addJob.getText());
state.execute();
connect.close();
}
} catch (SQLiteException sq) {
Alert errorAlert = new Alert(AlertType.ERROR);
errorAlert.setHeaderText("Input not valid");
errorAlert.setContentText("That staffID already exists.");
errorAlert.showAndWait();
return;
} catch (NumberFormatException nfe) {
Alert errorAlert = new Alert(AlertType.ERROR);
errorAlert.setHeaderText("Input not valid");
errorAlert.setContentText("Age must be a number.");
errorAlert.showAndWait();
return;
} catch (Exception e) {
e.printStackTrace();
}
addBtn.getScene().getWindow().hide();
}
@FXML
private void modifyPrisonStaffTable(ActionEvent event) {
try {
addStaffID.setDisable(true);
Connection connect = ConnectToDatabase.getConnection();
String updateInfo = "UPDATE PRISON_STAFF SET staff_id=?, name=?, age=?, sex=?, job=? WHERE staff_id='"
+ this.addStaffID.getText() + "'";
PreparedStatement state = connect.prepareStatement(updateInfo);
if (this.addStaffID.getText().isEmpty() || this.addName.getText().isEmpty()
|| this.addAge.getText().isEmpty() || this.addSex.getText().isEmpty()
|| this.addJob.getText().isEmpty()) {
Alert errorAlert = new Alert(AlertType.ERROR);
errorAlert.setHeaderText("Input not valid");
errorAlert.setContentText("Fields cannot be empty.");
errorAlert.showAndWait();
return;
} else {
@SuppressWarnings("unused")
int age = Integer.parseInt(this.addAge.getText());
state.setString(1, this.addStaffID.getText());
state.setString(2, this.addName.getText());
state.setInt(3, Integer.valueOf(this.addAge.getText()));
state.setString(4, this.addSex.getText());
state.setString(5, this.addJob.getText());
state.execute();
connect.close();
}
} catch (SQLiteException sq) {
Alert errorAlert = new Alert(AlertType.ERROR);
errorAlert.setHeaderText("Input not valid");
errorAlert.setContentText("That staffID already exists.");
errorAlert.showAndWait();
return;
} catch (NumberFormatException nfe) {
Alert errorAlert = new Alert(AlertType.ERROR);
errorAlert.setHeaderText("Input not valid");
errorAlert.setContentText("Age must be a number.");
errorAlert.showAndWait();
return;
} catch (Exception e) {
e.printStackTrace();
}
modifyBtn.getScene().getWindow().hide();
}
}
| [
"[email protected]"
] | |
b190a597a8643d1e4fcf753b12dfd6fe45408e2f | b14e869d3639c465dd9e753ec22bcf5065f79144 | /src/main/java/eftaios/model/events/SuccessfulAttackEvent.java | 7a388e613fa9ce330d2f27b60b1cd9eec731d3e6 | [] | no_license | riccardo-lomazzi/EFTAIOS | 55c8f0cd71a1f4a56dc88aa4ffa30290df9d590d | c98a78f15aa7c5c0978edaffdc3e1510e91c5b4a | refs/heads/master | 2020-03-26T22:32:36.480036 | 2019-03-09T10:14:16 | 2019-03-09T10:14:16 | 145,467,273 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,221 | java | package eftaios.model.events;
import java.util.List;
import eftaios.model.avatars.Player;
import eftaios.view.EventVisitor;
public class SuccessfulAttackEvent extends GameEvent {
/**
*
*/
private static final long serialVersionUID = -7088001662396929370L;
private List<Player> eliminatedPlayers;
public SuccessfulAttackEvent(String message, List<Player> eliminatedPlayers) {
super(message);
this.eliminatedPlayers=eliminatedPlayers;
}
/**
* Function that gets the list of the eliminated players
* @return List of elimiated Players
* @param /
*/
public List<Player> getEliminatedPlayersList(){
return eliminatedPlayers;
}
/**
* Built with the visitor pattern in mind, it's a function
* that accepts a Visit from an EventVistor instance and calls the visitEvent method
* of the visitor, by passing an instance of itself, the visited object.
* The visitor contains overloaded methods for every GameEvent
* @return void
* @param the visitor of the event (EventVisitor)
*/
@Override
public void acceptVisit(EventVisitor visitor) {
visitor.visitEvent(this);
}
}
| [
"[email protected]"
] | |
fc6f7a3271c2b8f2370b0a73a4fab5b214fba6e5 | 871474c49d50461ddefbfe4236982eef6f24d7ad | /server/tenant/tenant-dao/src/main/java/com/nodecollege/cloud/dao/plugins/GenerateStart.java | 8ea685f478902aa568e6edb409ac81cf96bdcd70 | [
"Apache-2.0"
] | permissive | MartyZaneOS/nodecollege-upms | 636ce46099c74d8150cf3de7e01c96fb8f3ca644 | f7c831fb362622285ae831829cc1826cc4037e60 | refs/heads/master | 2023-03-03T00:58:48.594978 | 2021-02-09T08:44:51 | 2021-02-09T08:44:51 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,511 | java | package com.nodecollege.cloud.dao.plugins;
import org.mybatis.generator.api.MyBatisGenerator;
import org.mybatis.generator.config.Configuration;
import org.mybatis.generator.config.xml.ConfigurationParser;
import org.mybatis.generator.internal.DefaultShellCallback;
import java.io.InputStream;
import java.util.ArrayList;
import java.util.List;
/**
* 注意:根据个人pc不同,要调整generatorConfig.xml中的对应文件的路径
* <p>
* 1. 配置generatorConfig.xml
* 2. 运行该类,生成对应的文件
*
* @author LC
* @date 17:54 2019/11/2
**/
public class GenerateStart {
public static void main(String[] args) {
try {
System.out.println("--------------------start generator-------------------");
List<String> warnings = new ArrayList<>();
boolean overWrite = true;
ConfigurationParser cp = new ConfigurationParser(warnings);
InputStream resourceAsStream = GenerateStart.class.getClassLoader().getResourceAsStream("generatorConfig.xml");
Configuration config = cp.parseConfiguration(resourceAsStream);
DefaultShellCallback callback = new DefaultShellCallback(overWrite);
MyBatisGenerator myBatisGenerator = new MyBatisGenerator(config, callback, warnings);
myBatisGenerator.generate(null);
System.out.println("--------------------end generator-------------------");
} catch (Exception e) {
e.printStackTrace();
}
}
}
| [
"[email protected]"
] | |
03c468cb5da2755072e7b00acffa386968067fad | 3d4349c88a96505992277c56311e73243130c290 | /Preparation/processed-dataset/feature-envy_3_1492/1.java | 7d9da06ba8a40bf7a3e5738a85197c16b5bc95b1 | [] | no_license | D-a-r-e-k/Code-Smells-Detection | 5270233badf3fb8c2d6034ac4d780e9ce7a8276e | 079a02e5037d909114613aedceba1d5dea81c65d | refs/heads/master | 2020-05-20T00:03:08.191102 | 2019-05-15T11:51:51 | 2019-05-15T11:51:51 | 185,272,690 | 7 | 4 | null | null | null | null | UTF-8 | Java | false | false | 3,471 | java | /**
* This method is called recursively to process the task hierarchy and
* create the equivalent data structure in GanttProject.
*
* @param defaultCalendar
* BaseCalendar instance
* @param task
* Parent task
* @param node
* Parent node
* @throws Exception
*/
private void processTask(TaskManager tm, MPXCalendar defaultCalendar, Task task, DefaultMutableTreeNode node) throws Exception {
//
// Calculate the duration in days
//
MPXCalendar taskCalendar = task.getCalendar();
MPXCalendar cal;
if (taskCalendar != null) {
cal = taskCalendar;
} else {
cal = defaultCalendar;
}
final MPXDuration duration;
boolean milestone = task.getMilestoneValue();
if (milestone == true) {
duration = MILESTONE_DURATION;
} else {
Date taskStart = task.getStart();
Date taskFinish = task.getFinish();
if (taskStart != null && taskFinish != null) {
//duration = cal.getDuration(taskStart, taskFinish);
duration = task.getDuration();
} else {
duration = task.getDuration();
}
}
//
// Create the new task object
//
GanttTask gtask = tm.createTask();
// gtask.setChecked();
// gtask.setColor();
gtask.setCompletionPercentage((int) task.getPercentageCompleteValue());
// gtask.setExpand()
// gtask.setLength();
gtask.setMilestone(milestone);
gtask.setName(task.getName() == null ? "-" : task.getName());
gtask.setNotes(task.getNotes());
Priority prio = task.getPriority();
if (prio != null) {
int priority = prio.getValue();
int p;
switch(priority) {
case Priority.HIGHEST:
case Priority.HIGHER:
case Priority.VERY_HIGH:
p = 2;
break;
case Priority.LOWEST:
case Priority.LOWER:
case Priority.VERY_LOW:
p = 0;
break;
default:
p = 1;
}
gtask.setPriority(p);
}
// gtask.setShape();
// gtask.setStartFixed()
// gtask.setTaskID()
gtask.setWebLink(task.getHyperlink());
Date taskStart = task.getStart();
assert taskStart != null : "Task=" + task + " has null start";
gtask.setStart(new GanttCalendar(taskStart));
// gtask.setDuration(tm.createLength((long) duration.getDuration()));
long longDuration = (long) Math.ceil(duration.convertUnits(TimeUnit.DAYS).getDuration());
if (longDuration > 0) {
gtask.setDuration(tm.createLength(longDuration));
} else {
System.err.println("Task " + task.getName() + " has duration=" + duration + " which is 0 as long integer. This duration has been ignored, task has got the default duration");
}
// gtask.setEnd(new GanttCalendar(task.getFinish()));
//
// Add the task and process any child tasks
//
tm.registerTask(gtask);
m_tasks.addObject(gtask, (TaskNode) node, -1);
m_taskMap.put(task.getID(), new Integer(gtask.getTaskID()));
LinkedList children = task.getChildTasks();
if (children.size() != 0) {
node = m_tasks.getNode(gtask.getTaskID());
Iterator iter = children.iterator();
while (iter.hasNext() == true) {
processTask(tm, defaultCalendar, (Task) iter.next(), node);
}
}
}
| [
"[email protected]"
] | |
08e5a5584a0a9a1b1ccbf6b13978c0353a110ce6 | 48f269a8f55c7704ba1c746d3861fbb4002ffde1 | /posts/src/main/java/ru/alikka/posts/repositories/CommentRepository.java | 3f9d8594c09498baff653f5c96edfab47b93c215 | [] | no_license | alikkakold/thoughts-board | ceaaf45eb6ed5f35e3ba633efa147554e6429090 | dcb6676f75f9ac064a09ae3d9866540f27ae138c | refs/heads/main | 2023-07-01T00:15:18.287637 | 2021-08-03T17:07:15 | 2021-08-03T17:07:15 | 392,377,585 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 217 | java | package ru.alikka.posts.repositories;
import org.springframework.data.jpa.repository.JpaRepository;
import ru.alikka.posts.models.Comment;
public interface CommentRepository extends JpaRepository<Comment, Long>{
}
| [
"[email protected]"
] | |
da60367e8c8e1dbe77c26b15bfd12f0f8fb95d9a | 0c65f879cdf8858b9e931bb9a3a914cc76307685 | /src/main/java/ch/alpine/sophus/lie/so2/So2Exponential.java | c88ca4eb1b31226ef11500a0850916528ba9665e | [] | no_license | datahaki/sophus | b9674f6e4068d907f8667fb546398fc0dbb5abc6 | cedce627452a70beed13ee2031a1cf98a413c2a7 | refs/heads/master | 2023-08-16T23:45:40.252757 | 2023-08-09T17:46:17 | 2023-08-09T17:46:17 | 232,996,526 | 3 | 0 | null | 2022-06-08T22:39:06 | 2020-01-10T08:02:55 | Java | UTF-8 | Java | false | false | 773 | java | // code by ob
package ch.alpine.sophus.lie.so2;
import ch.alpine.sophus.hs.Exponential;
import ch.alpine.tensor.Scalar;
import ch.alpine.tensor.Tensor;
import ch.alpine.tensor.Tensors;
/** a group element SO(2) is represented as a Scalar in [-pi, pi)
*
* an element of the algebra so(2) is represented as 'vector' of length 1
* (Actually a scalar, but Exponential requires a vector) */
public enum So2Exponential implements Exponential {
INSTANCE;
@Override // from Exponential
public Scalar exp(Tensor scalar) {
return (Scalar) scalar;
}
@Override // from Exponential
public Scalar log(Tensor scalar) {
return (Scalar) scalar;
}
@Override // from Exponential
public Tensor vectorLog(Tensor scalar) {
return Tensors.of(scalar);
}
}
| [
"[email protected]"
] | |
72e4f4ee66cb0f517a1a334afb9cbe58ce2e5d8a | 91051c44679ebe828e185423e7da07240b3beb37 | /app/src/main/java/bengeos/com/dailynews/Adapters/ListItemAdapter.java | f183a3ea1df77adf7606bb047a354cd0f19a683a | [] | no_license | bengeos/DailyEnjera | 9b51335a4b7b8327f58bc098adfc51d90cd11a74 | 63f87e32630109aa2575945dd63692295a9198a9 | refs/heads/master | 2021-01-19T07:29:22.907618 | 2017-04-07T12:50:24 | 2017-04-07T12:50:24 | 87,545,034 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 3,796 | java | package bengeos.com.dailynews.Adapters;
import android.content.Context;
import android.content.Intent;
import android.os.Bundle;
import android.support.v7.widget.PopupMenu;
import android.support.v7.widget.RecyclerView;
import android.view.LayoutInflater;
import android.view.MenuInflater;
import android.view.MenuItem;
import android.view.View;
import android.view.ViewGroup;
import android.widget.ImageView;
import android.widget.TextView;
import com.bumptech.glide.Glide;
import java.util.Collections;
import java.util.List;
import bengeos.com.dailynews.DetailView;
import bengeos.com.dailynews.R;
/**
* Created by bengeos on 1/25/17.
*/
public class ListItemAdapter extends RecyclerView.Adapter<ListItemAdapter.DataObjectHolder> {
private static List<Album> myItems;
private static Context myContext;
public ListItemAdapter(List<Album> myItems, Context myContext) {
this.myItems = myItems;
if(myItems != null){
Collections.reverse(myItems);
}
this.myContext = myContext;
}
@Override
public DataObjectHolder onCreateViewHolder(ViewGroup parent, int viewType) {
View view = LayoutInflater.from(parent.getContext()).inflate(R.layout.album_item, parent, false);
DataObjectHolder dataObjectHolder = new DataObjectHolder(view);
return dataObjectHolder;
}
@Override
public void onBindViewHolder(DataObjectHolder holder, int position) {
holder.Title.setText(myItems.get(position).getTitle());
holder.Content.setText(myItems.get(position).getContent());
holder.AlbumImage.setImageResource(myItems.get(position).getImageID());
// Glide.with(myContext)
// .load(myItems.get(position).getImageURL())
// .into(holder.AlbumImage);
}
@Override
public int getItemCount() {
return myItems.size();
}
public static class DataObjectHolder extends RecyclerView.ViewHolder implements View.OnClickListener, View.OnLongClickListener {
private TextView Title, Content, PubDate;
private ImageView AlbumImage,Overflow;
public DataObjectHolder(View itemView) {
super(itemView);
Title = (TextView) itemView.findViewById(R.id.txt_album_title);
Content = (TextView) itemView.findViewById(R.id.txt_album_content);
AlbumImage = (ImageView) itemView.findViewById(R.id.img_album_image);
itemView.setOnClickListener(this);
itemView.setOnLongClickListener(this);
}
@Override
public void onClick(View v) {
Intent intent = new Intent(myContext, DetailView.class);
Bundle b = new Bundle();
b.putString("ImageID",String.valueOf(myItems.get(getAdapterPosition()).getImageID()));
b.putString("Title",String.valueOf(myItems.get(getAdapterPosition()).getTitle()));
b.putString("Content",String.valueOf(myItems.get(getAdapterPosition()).getContent()));
intent.putExtras(b);
myContext.startActivity(intent);
}
@Override
public boolean onLongClick(View v) {
return true;
}
}
private static void showPopupMenu(View view, final Album album) {
// inflate menu
PopupMenu popup = new PopupMenu(myContext, view);
MenuInflater inflater = popup.getMenuInflater();
inflater.inflate(R.menu.pop_menu, popup.getMenu());
popup.setOnMenuItemClickListener(new PopupMenu.OnMenuItemClickListener() {
@Override
public boolean onMenuItemClick(MenuItem item) {
if(item.getItemId() == R.id.action_settings){
}
return false;
}
});
popup.show();
}
}
| [
"[email protected]"
] | |
799a594bdf8ed6600960296eec1c1d703e2ed9af | eb97ee5d4f19d7bf028ae9a400642a8c644f8fe3 | /tags/old/s2-backport175-old/src/test/org/seasar/framework/container/factory/Hoge2.java | 84e76ef3bf114ef1afc5060a0b70c97fd2b26e1c | [] | no_license | svn2github/s2container | 54ca27cf0c1200a93e1cb88884eb8226a9be677d | 625adc6c4e1396654a7297d00ec206c077a78696 | refs/heads/master | 2020-06-04T17:15:02.140847 | 2013-08-09T09:38:15 | 2013-08-09T09:38:15 | 10,850,644 | 0 | 1 | null | null | null | null | UTF-8 | Java | false | false | 784 | java | package test.org.seasar.framework.container.factory;
/**
* @author higa
* @org.seasar.framework.container.annotation.backport175.Component(
* name = "aaa",
* instance = "prototype",
* autoBinding = "property")
*
*/
public class Hoge2 {
/**
* @param aaa
* @org.seasar.framework.container.annotation.backport175.Binding("aaa2")
*/
public void setAaa(String aaa) {
}
/**
* @param bbb
* @org.seasar.framework.container.annotation.backport175.Binding(
* bindingType="none")
*/
public void setBbb(String bbb) {
}
/**
* @param ccc
* @org.seasar.framework.container.annotation.Binding
*/
public void setCcc(String ccc) {
}
}
| [
"higa@319488c0-e101-0410-93bc-b5e51f62721a"
] | higa@319488c0-e101-0410-93bc-b5e51f62721a |
87c27942b5ed9221c525025769e1b2f36fc002dc | 3bab61c52499fa9ffdb68a36e9f149ee74f10d0e | /instrumentation/runtime-metrics/library/src/main/java/io/opentelemetry/instrumentation/runtimemetrics/GarbageCollector.java | 1643e973a16e1672d28e173355491e5c0dac41c3 | [
"Apache-2.0"
] | permissive | markfink-splunk/opentelemetry-java-instrumentation | ee0620bb23365d252634c08e0c4e39090c45f6ea | ef076c50427f289003c44c1ccb9b2a073741628b | refs/heads/main | 2023-03-03T11:41:38.086086 | 2021-02-07T23:27:12 | 2021-02-07T23:27:12 | 336,903,305 | 0 | 0 | Apache-2.0 | 2021-02-07T22:24:38 | 2021-02-07T22:24:38 | null | UTF-8 | Java | false | false | 1,785 | java | /*
* Copyright The OpenTelemetry Authors
* SPDX-License-Identifier: Apache-2.0
*/
package io.opentelemetry.instrumentation.runtimemetrics;
import io.opentelemetry.api.common.Labels;
import io.opentelemetry.api.metrics.GlobalMetricsProvider;
import io.opentelemetry.api.metrics.Meter;
import java.lang.management.GarbageCollectorMXBean;
import java.lang.management.ManagementFactory;
import java.util.ArrayList;
import java.util.List;
/**
* Registers observers that generate metrics about JVM garbage collectors.
*
* <p>Example usage:
*
* <pre>{@code
* GarbageCollector.registerObservers();
* }</pre>
*
* <p>Example metrics being exported:
*
* <pre>
* runtime.jvm.gc.collection{gc="PS1"} 6.7
* </pre>
*/
public final class GarbageCollector {
private static final String GC_LABEL_KEY = "gc";
/** Register all observers provided by this module. */
public void registerObservers() {
List<GarbageCollectorMXBean> garbageCollectors = ManagementFactory.getGarbageCollectorMXBeans();
Meter meter = GlobalMetricsProvider.getMeter(GarbageCollector.class.getName());
List<Labels> labelSets = new ArrayList<>(garbageCollectors.size());
for (final GarbageCollectorMXBean gc : garbageCollectors) {
labelSets.add(Labels.of(GC_LABEL_KEY, gc.getName()));
}
meter
.longSumObserverBuilder("runtime.jvm.gc.collection")
.setDescription("Time spent in a given JVM garbage collector in milliseconds.")
.setUnit("ms")
.setUpdater(
resultLongObserver -> {
for (int i = 0; i < garbageCollectors.size(); i++) {
resultLongObserver.observe(
garbageCollectors.get(i).getCollectionTime(), labelSets.get(i));
}
})
.build();
}
}
| [
"[email protected]"
] | |
d0cb21a01daa8eb26524a6de2edc198fe25c236f | 8e563818e6b29fd063d2d23a80e87a8282819fc1 | /src/main/java/com/batista/model/Endereco_.java | 9218460fa099e4bee17434d7a3fc09fd4e64ca45 | [] | no_license | EvertonBt/financas | a95790176e0f1745ea4e6f1be7ba229a882373ac | 7a2a5d2eecf006066417ca1f1bca311a6cdbfeeb | refs/heads/master | 2022-12-07T01:49:41.955545 | 2020-09-06T18:56:17 | 2020-09-06T18:56:17 | 275,978,218 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,142 | java | package com.batista.model;
import javax.annotation.Generated;
import javax.persistence.metamodel.SingularAttribute;
import javax.persistence.metamodel.StaticMetamodel;
@Generated(value = "org.hibernate.jpamodelgen.JPAMetaModelEntityProcessor")
@StaticMetamodel(Endereco.class)
public abstract class Endereco_ {
public static volatile SingularAttribute<Endereco, String> cidade;
public static volatile SingularAttribute<Endereco, String> estado;
public static volatile SingularAttribute<Endereco, String> complemento;
public static volatile SingularAttribute<Endereco, String> numero;
public static volatile SingularAttribute<Endereco, String> logradouro;
public static volatile SingularAttribute<Endereco, String> bairro;
public static volatile SingularAttribute<Endereco, String> cep;
public static final String CIDADE = "cidade";
public static final String ESTADO = "estado";
public static final String COMPLEMENTO = "complemento";
public static final String NUMERO = "numero";
public static final String LOGRADOURO = "logradouro";
public static final String BAIRRO = "bairro";
public static final String CEP = "cep";
}
| [
"[email protected]"
] | |
9b20b003ae1dfe6c17e7f8966af731f9eaa09a38 | 071a9fa7cfee0d1bf784f6591cd8d07c6b2a2495 | /corpus/norm-class/eclipse.jdt.ui/2761.java | e986afede87fd9b138d0e0665cdac78b7ce83502 | [
"MIT"
] | permissive | masud-technope/ACER-Replication-Package-ASE2017 | 41a7603117f01382e7e16f2f6ae899e6ff3ad6bb | cb7318a729eb1403004d451a164c851af2d81f7a | refs/heads/master | 2021-06-21T02:19:43.602864 | 2021-02-13T20:44:09 | 2021-02-13T20:44:09 | 187,748,164 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 91 | java | invalid test interrupted execution flow testinterruptedexecutionflow main foo foo exception | [
"[email protected]"
] | |
badbe29e7c7597ce1c361df3d14813a3788c281d | 9b662298963bac27c607b3a580709c2f5370cb9c | /spring-statemachine-samples/eventservice/src/main/java/demo/eventservice/StateMachineController.java | 86041ce3ed9deb7f3a23479f73e69f3cb3a14178 | [
"Apache-2.0"
] | permissive | spring-projects/spring-statemachine | 0be59593b76a83ef288326c01f4120ef304912a6 | 6bddecd3f282cc6caad0feb9bce362883f3b2a4f | refs/heads/main | 2023-09-03T21:39:43.935492 | 2023-06-19T09:52:03 | 2023-06-19T09:52:03 | 30,310,864 | 1,496 | 683 | null | 2023-09-03T05:42:29 | 2015-02-04T17:15:36 | Java | UTF-8 | Java | false | false | 3,631 | java | /*
* Copyright 2016-2019 the original author or authors.
*
* 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
*
* https://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.
*/
package demo.eventservice;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.http.HttpStatus;
import org.springframework.messaging.support.MessageBuilder;
import org.springframework.statemachine.StateMachine;
import org.springframework.statemachine.persist.StateMachinePersister;
import org.springframework.stereotype.Controller;
import org.springframework.ui.Model;
import org.springframework.util.Assert;
import org.springframework.util.StringUtils;
import org.springframework.web.bind.annotation.RequestBody;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestMethod;
import org.springframework.web.bind.annotation.RequestParam;
import org.springframework.web.bind.annotation.ResponseStatus;
import demo.eventservice.StateMachineConfig.Events;
import demo.eventservice.StateMachineConfig.States;
import reactor.core.publisher.Mono;
@Controller
public class StateMachineController {
//tag::snippetA[]
@Autowired
private StateMachine<States, Events> stateMachine;
@Autowired
private StateMachinePersister<States, Events, String> stateMachinePersister;
//end::snippetA[]
@Autowired
private String stateChartModel;
@RequestMapping("/")
public String home() {
return "redirect:/state";
}
//tag::snippetB[]
@RequestMapping("/state")
public String feedAndGetState(@RequestParam(value = "user", required = false) String user,
@RequestParam(value = "id", required = false) Events id, Model model) throws Exception {
model.addAttribute("user", user);
model.addAttribute("allTypes", Events.values());
model.addAttribute("stateChartModel", stateChartModel);
// we may get into this page without a user so
// do nothing with a state machine
if (StringUtils.hasText(user)) {
resetStateMachineFromStore(user);
if (id != null) {
feedMachine(user, id);
}
model.addAttribute("states", stateMachine.getState().getIds());
model.addAttribute("extendedState", stateMachine.getExtendedState().getVariables());
}
return "states";
}
//end::snippetB[]
//tag::snippetC[]
@RequestMapping(value = "/feed",method= RequestMethod.POST)
@ResponseStatus(HttpStatus.OK)
public void feedPageview(@RequestBody(required = true) Pageview event) throws Exception {
Assert.notNull(event.getUser(), "User must be set");
Assert.notNull(event.getId(), "Id must be set");
resetStateMachineFromStore(event.getUser());
feedMachine(event.getUser(), event.getId());
}
//end::snippetC[]
//tag::snippetD[]
private void feedMachine(String user, Events id) throws Exception {
stateMachine
.sendEvent(Mono.just(MessageBuilder
.withPayload(id).build()))
.blockLast();
stateMachinePersister.persist(stateMachine, "testprefix:" + user);
}
//end::snippetD[]
//tag::snippetE[]
private StateMachine<States, Events> resetStateMachineFromStore(String user) throws Exception {
return stateMachinePersister.restore(stateMachine, "testprefix:" + user);
}
//end::snippetE[]
}
| [
"[email protected]"
] | |
eed7af85db08d31479bfb5bc4852a8e85c91cb4c | 36ba7792e0cccfe9c217a2fe58700292af6d2204 | /in_dev_npc_combat_b/AdamantDragon338Combat.java | ad833b27c3e097901b6e4cc0a9d14e312c962db8 | [] | no_license | danielsojohn/BattleScape-Server-NoMaven | 92a678ab7d0e53a68b10d047638c580c902673cb | 793a1c8edd7381a96db0203b529c29ddf8ed8db9 | refs/heads/master | 2020-09-09T01:55:54.517436 | 2019-11-15T05:08:02 | 2019-11-15T05:08:02 | 221,307,980 | 0 | 0 | null | 2019-11-12T20:41:54 | 2019-11-12T20:41:53 | null | UTF-8 | Java | false | false | 8,247 | java | package script.npc.combat;
import java.util.Arrays;
import java.util.List;
import com.palidino.osrs.io.cache.NpcId;
import com.palidino.osrs.model.npc.combat.NpcCombatDefinition;
import com.palidino.osrs.model.npc.combat.NpcCombatDrop;
import com.palidino.osrs.model.npc.combat.NpcCombatDropTable;
import com.palidino.osrs.model.npc.combat.NpcCombatDropTableDrop;
import com.palidino.osrs.model.item.RandomItem;
import com.palidino.osrs.io.cache.ItemId;
import com.palidino.osrs.model.npc.combat.NpcCombatHitpoints;
import com.palidino.osrs.model.npc.combat.NpcCombatStats;
import com.palidino.osrs.model.CombatBonus;
import com.palidino.osrs.model.npc.combat.NpcCombatAggression;
import com.palidino.osrs.model.npc.combat.NpcCombatImmunity;
import com.palidino.osrs.model.npc.combat.style.NpcCombatStyle;
import com.palidino.osrs.model.npc.combat.style.NpcCombatStyleType;
import com.palidino.osrs.model.npc.combat.style.NpcCombatDamage;
import com.palidino.osrs.model.npc.combat.style.NpcCombatProjectile;
import com.palidino.osrs.model.HitType;
import com.palidino.osrs.model.Graphic;
import com.palidino.osrs.model.npc.combat.style.NpcCombatEffect;
import com.palidino.osrs.model.npc.combat.style.special.NpcCombatTargetTile;
import com.palidino.osrs.model.npc.combat.NpcCombat;
import lombok.var;
public class AdamantDragon338Combat extends NpcCombat {
@Override
public List<NpcCombatDefinition> getCombatDefinitions() {
var drop = NpcCombatDrop.builder();
var dropTable = NpcCombatDropTable.builder().chance(0.016).broadcast(true).log(true);
dropTable.drop(NpcCombatDropTableDrop.items(new RandomItem(ItemId.DRACONIC_VISAGE)));
drop.table(dropTable.build());
dropTable = NpcCombatDropTable.builder().chance(0.03).broadcast(true).log(true);
dropTable.drop(NpcCombatDropTableDrop.items(new RandomItem(ItemId.DRAGON_METAL_SLICE)));
drop.table(dropTable.build());
dropTable = NpcCombatDropTable.builder().chance(0.15).log(true);
dropTable.drop(NpcCombatDropTableDrop.items(new RandomItem(ItemId.DRAGON_LIMBS)));
drop.table(dropTable.build());
dropTable = NpcCombatDropTable.builder().chance(0.31);
dropTable.drop(NpcCombatDropTableDrop.items(new RandomItem(ItemId.CLUE_SCROLL_ELITE)));
drop.table(dropTable.build());
dropTable = NpcCombatDropTable.builder().chance(NpcCombatDropTable.CHANCE_RARE).log(true);
dropTable.drop(NpcCombatDropTableDrop.items(new RandomItem(ItemId.DRAGON_PLATELEGS)));
dropTable.drop(NpcCombatDropTableDrop.items(new RandomItem(ItemId.DRAGON_PLATESKIRT)));
dropTable.drop(NpcCombatDropTableDrop.items(new RandomItem(ItemId.DRAGON_MED_HELM)));
dropTable.drop(NpcCombatDropTableDrop.items(new RandomItem(ItemId.DRAGON_BOLTS_UNF, 15, 40)));
dropTable.drop(NpcCombatDropTableDrop.items(new RandomItem(ItemId.WRATH_TALISMAN)));
drop.table(dropTable.build());
dropTable = NpcCombatDropTable.builder().chance(NpcCombatDropTable.CHANCE_UNCOMMON);
dropTable.drop(NpcCombatDropTableDrop.items(new RandomItem(ItemId.RUNE_SCIMITAR)));
dropTable.drop(NpcCombatDropTableDrop.items(new RandomItem(ItemId.WRATH_RUNE, 10, 30)));
dropTable.drop(NpcCombatDropTableDrop.items(new RandomItem(ItemId.GRIMY_AVANTOE_NOTED)));
dropTable.drop(NpcCombatDropTableDrop.items(new RandomItem(ItemId.GRIMY_SNAPDRAGON_NOTED)));
dropTable.drop(NpcCombatDropTableDrop.items(new RandomItem(ItemId.GRIMY_TORSTOL_NOTED)));
dropTable.drop(NpcCombatDropTableDrop.items(new RandomItem(ItemId.GRIMY_RANARR_WEED_NOTED)));
dropTable.drop(NpcCombatDropTableDrop.items(new RandomItem(ItemId.ADAMANTITE_BAR_NOTED, 5, 34)));
dropTable.drop(NpcCombatDropTableDrop.items(new RandomItem(ItemId.RUNITE_BAR)));
dropTable.drop(NpcCombatDropTableDrop.items(new RandomItem(ItemId.DRAGON_JAVELIN_HEADS, 22, 24)));
drop.table(dropTable.build());
dropTable = NpcCombatDropTable.builder().chance(NpcCombatDropTable.CHANCE_COMMON);
dropTable.drop(NpcCombatDropTableDrop.items(new RandomItem(ItemId.ADAMANT_PLATEBODY)));
dropTable.drop(NpcCombatDropTableDrop.items(new RandomItem(ItemId.RUNE_MACE)));
dropTable.drop(NpcCombatDropTableDrop.items(new RandomItem(ItemId.ADAMANT_ARROW, 30, 39)));
dropTable.drop(NpcCombatDropTableDrop.items(new RandomItem(ItemId.CHAOS_RUNE, 62, 130)));
dropTable.drop(NpcCombatDropTableDrop.items(new RandomItem(ItemId.DEATH_RUNE, 23, 90)));
dropTable.drop(NpcCombatDropTableDrop.items(new RandomItem(ItemId.ADAMANT_BOLTS_UNF, 22, 40)));
dropTable.drop(NpcCombatDropTableDrop.items(new RandomItem(ItemId.ADAMANT_JAVELIN_HEADS, 42, 46)));
dropTable.drop(NpcCombatDropTableDrop.items(new RandomItem(ItemId.ADAMANTITE_ORE_NOTED, 2, 30)));
dropTable.drop(NpcCombatDropTableDrop.items(new RandomItem(ItemId.DIAMOND_NOTED, 1, 3)));
drop.table(dropTable.build());
dropTable = NpcCombatDropTable.builder().chance(NpcCombatDropTable.CHANCE_ALWAYS);
dropTable.drop(NpcCombatDropTableDrop.items(new RandomItem(ItemId.DRAGON_BONES)));
dropTable.drop(NpcCombatDropTableDrop.items(new RandomItem(ItemId.ADAMANTITE_BAR, 2)));
drop.table(dropTable.build());
var combat = NpcCombatDefinition.builder();
combat.id(NpcId.ADAMANT_DRAGON_338);
combat.hitpoints(NpcCombatHitpoints.total(295));
combat.stats(NpcCombatStats.builder().attackLevel(280).magicLevel(186).rangedLevel(186).defenceLevel(272).bonus(CombatBonus.DEFENCE_STAB, 30).bonus(CombatBonus.DEFENCE_SLASH, 110).bonus(CombatBonus.DEFENCE_CRUSH, 85).bonus(CombatBonus.DEFENCE_MAGIC, 30).bonus(CombatBonus.DEFENCE_RANGED, 95).build());
combat.aggression(NpcCombatAggression.PLAYERS);
combat.immunity(NpcCombatImmunity.builder().poison(true).venom(true).build());
combat.combatScript("adamantdragon").deathAnimation(92).blockAnimation(89);
combat.drop(drop.build());
var style = NpcCombatStyle.builder();
style.type(NpcCombatStyleType.melee(CombatBonus.ATTACK_SLASH));
style.damage(NpcCombatDamage.builder().maximum(29).prayerEffectiveness(0.6).build());
style.animation(80).attackSpeed(4);
style.projectile(NpcCombatProjectile.id(335));
combat.style(style.build());
style = NpcCombatStyle.builder();
style.type(NpcCombatStyleType.RANGED);
style.damage(NpcCombatDamage.builder().maximum(19).prayerEffectiveness(0.6).build());
style.animation(6722).attackSpeed(4);
style.projectile(NpcCombatProjectile.id(335));
combat.style(style.build());
style = NpcCombatStyle.builder();
style.type(NpcCombatStyleType.builder().type(HitType.MAGIC).weight(2).build());
style.damage(NpcCombatDamage.builder().maximum(19).prayerEffectiveness(0.6).splashOnMiss(true).build());
style.animation(6722).attackSpeed(4);
style.targetGraphic(new Graphic(166, 124));
style.projectile(NpcCombatProjectile.id(335));
combat.style(style.build());
style = NpcCombatStyle.builder();
style.type(NpcCombatStyleType.MAGIC);
style.damage(NpcCombatDamage.builder().maximum(8).ignorePrayer(true).poisonImmunityEffectiveness(0.6).build());
style.animation(6722).attackSpeed(4);
style.targetGraphic(new Graphic(1487));
style.projectile(NpcCombatProjectile.builder().id(1486).speedMinimumDistance(8).build());
style.effect(NpcCombatEffect.builder().poison(4).build());
var targetTile = NpcCombatTargetTile.builder().radius(2);
targetTile.breakOff(NpcCombatTargetTile.BreakOff.builder().count(2).distance(3).maximumDamage(14).afterTargettedTile(true).build());
style.specialAttack(targetTile.build());
combat.style(style.build());
style = NpcCombatStyle.builder();
style.type(NpcCombatStyleType.DRAGONFIRE);
style.damage(NpcCombatDamage.maximum(60));
style.animation(81).attackSpeed(6);
style.projectile(NpcCombatProjectile.id(335));
combat.style(style.build());
return Arrays.asList(combat.build());
}
}
| [
"[email protected]"
] | |
4722c8dbaab7e1a2704b094831415c480ad88bec | 79b42f57e300f6c88b34db32cabdb66863ac6480 | /src/main/java/com/pengdh/exception/BizException.java | 21ac4c6c68bd7f602406e18d01dc375bfa22c69b | [] | no_license | alexpdh/restful_json | 7f44d57c3f2e93944c7470a5b55a24aaf17b6692 | 2e27381d988cc9bcfa628a70c4a3bb6553650e3e | refs/heads/master | 2021-01-13T07:57:45.066422 | 2016-12-10T20:15:37 | 2016-12-10T20:16:22 | 69,602,427 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 349 | java | package com.pengdh.exception;
/**
*
* @author yingjun
*
*/
public class BizException extends RuntimeException {
private static final long serialVersionUID = 1L;
public BizException(String message) {
super(message);
}
public BizException(String message, Throwable cause) {
super(message, cause);
}
}
| [
"[email protected]"
] | |
116b6c5d6855bd1bae4f41474862aba601abadc6 | d2c3d872bf573b858e60391c6107745a39d1148e | /jme3-core/src/main/java/com/jme3/math/SplineInterface.java | 05764cb279c255524c4d3f2a581bdcc660d98587 | [
"BSD-3-Clause"
] | permissive | tr0k/jmonkeyengine | 5b572b785ebcf093dc0a822c2a68ba20962fd493 | 5ebdfece4794394f97d95aa54aabe4ea032af300 | refs/heads/master | 2021-01-19T07:17:51.594559 | 2016-03-17T20:52:52 | 2016-04-10T21:38:41 | 53,972,699 | 0 | 0 | null | 2016-03-15T19:32:17 | 2016-03-15T19:32:17 | null | UTF-8 | Java | false | false | 454 | java | package com.jme3.math;
public interface SplineInterface {
public void addControlPoint(Vector3f controlPoint);
public void removeControlPoint(Vector3f controlPoint);
public void clearControlPoints();
public Vector3f interpolate(float value, int currentControlPoint, Vector3f store);
public void computeTotalLentgh();
public float[] getPositionArrayForMesh(int nbSubSegments);
public short[] getIndicesArrayForMesh(int nbSubSegments);
}
| [
"[email protected]"
] | |
42587307e3b7614a681e12db9bee73dd552e666c | c71d2a087a6f2204cfe0b6f0c7b649b681a8c51f | /src/test/java/br/com/santiago/ccl/services/SetServiceTest.java | b6799522ef1141c7b3aa8c78c0178a21ad9a22aa | [] | no_license | tvps20/cclweb-api | 59df5fd6e25235c1266c910c5b6e5647f473c557 | d052a22249adb1d899fb93f812e2da3357b4f9cd | refs/heads/master | 2023-03-29T09:27:17.917709 | 2021-03-28T16:35:49 | 2021-03-28T16:35:49 | 338,881,941 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 6,221 | java | package br.com.santiago.ccl.services;
import static org.junit.jupiter.api.Assertions.assertEquals;
import static org.junit.jupiter.api.Assertions.assertNotNull;
import static org.junit.jupiter.api.Assertions.assertThrows;
import static org.mockito.Mockito.doThrow;
import static org.mockito.Mockito.verify;
import static org.mockito.Mockito.when;
import java.util.ArrayList;
import java.util.List;
import java.util.Optional;
import org.junit.jupiter.api.Test;
import org.mockito.InjectMocks;
import org.mockito.Mock;
import org.mockito.Mockito;
import org.springframework.dao.DataIntegrityViolationException;
import org.springframework.data.jpa.repository.JpaRepository;
import br.com.santiago.ccl.builders.PieceBuilder;
import br.com.santiago.ccl.builders.SetBuilder;
import br.com.santiago.ccl.builders.ThemeBuilder;
import br.com.santiago.ccl.domain.Piece;
import br.com.santiago.ccl.domain.Set;
import br.com.santiago.ccl.domain.Theme;
import br.com.santiago.ccl.dtos.SetListResponseDto;
import br.com.santiago.ccl.dtos.SetRequestDto;
import br.com.santiago.ccl.repositories.SetRepository;
import br.com.santiago.ccl.services.exceptions.DataIntegrityException;
import br.com.santiago.ccl.services.exceptions.ObjectNotFoundException;
import br.com.santiago.ccl.services.exceptions.ObjectUniqueException;
import br.com.santiago.ccl.services.interfaces.ICrudService;
class SetServiceTest extends AbstractBaseServiceTest<Set, SetRequestDto> {
@InjectMocks
private SetService setService;
@Mock
private SetRepository setRepository;
@Mock
private ThemeService themeServive;
@Mock
private PieceService pieceService;
@Test
public void mustReturnSuccess_WhenInsertPiece() {
Long setId = this.baseEntity.getId();
Piece piece = PieceBuilder.createMockPiece();
when(this.baseRepository.findById(setId)).thenReturn(this.baseEntityOpt);
when(this.pieceService.insert(piece)).thenReturn(piece);
Piece result = this.setService.insetPiece(setId, piece);
assertEquals(piece, result);
}
@Test
public void mustReturnSuccess_WhenInsertTheme() {
Long setId = this.baseEntity.getId();
Theme theme = Theme.builder().name("New Theme").build();
when(this.baseRepository.findById(setId)).thenReturn(this.baseEntityOpt);
when(this.themeServive.saveAll(Mockito.anyList())).thenReturn(new ArrayList<Theme>());
Theme result = this.setService.insertTheme(setId, theme);
assertEquals(theme, result);
}
@Test
public void mustReturnException_WhenInsertUniqueTheme() {
Long setId = this.baseEntity.getId();
Theme theme = ThemeBuilder.createMockTheme();
when(this.baseRepository.findById(setId)).thenReturn(this.baseEntityOpt);
assertThrows(ObjectUniqueException.class, () -> this.setService.insertTheme(setId, theme));
verify(this.baseRepository, Mockito.times(1)).findById(setId);
}
@Test
public void mustReturnException_WhenInsertTheme() {
Long setId = this.baseEntity.getId();
Theme theme = Theme.builder().name("New Theme").build();
when(this.baseRepository.findById(setId)).thenReturn(this.baseEntityOpt);
doThrow(DataIntegrityViolationException.class).when(this.themeServive).saveAll(Mockito.anyList());
assertThrows(DataIntegrityException.class, () -> this.setService.insertTheme(setId, theme));
verify(this.baseRepository, Mockito.times(1)).findById(setId);
}
@Test
public void mustReturnSuccess_WhenDeletePiece() {
Long pieceId = PieceBuilder.createMockPiece().getId();
this.setService.deletePiece(pieceId);
verify(this.pieceService, Mockito.times(1)).deleteById(pieceId);
}
@Test
public void mustReturnSuccess_WhenDeleteTheme() {
Long setId = this.baseEntity.getId();
Theme theme = ThemeBuilder.createMockTheme();
when(this.baseRepository.findById(setId)).thenReturn(this.baseEntityOpt);
when(this.themeServive.findById(setId)).thenReturn(theme);
this.setService.deleteTheme(setId, theme.getId());
verify(this.baseRepository, Mockito.times(1)).findById(setId);
verify(this.themeServive, Mockito.times(1)).findById(theme.getId());
verify(this.baseRepository, Mockito.times(1)).save(this.baseEntity);
}
@Test
public void mustReturnException_WhenDeleteThemeNotFound() {
Long setId = this.baseEntity.getId();
Long themeId = 1L;
Theme theme = Theme.builder().name("Theme is not found").build();
when(this.baseRepository.findById(setId)).thenReturn(this.baseEntityOpt);
when(this.themeServive.findById(Mockito.anyLong())).thenReturn(theme);
assertThrows(ObjectNotFoundException.class, () -> this.setService.deleteTheme(setId, themeId));
verify(this.baseRepository, Mockito.times(1)).findById(setId);
verify(this.themeServive, Mockito.times(1)).findById(themeId);
}
@Test
public void mustReturnException_WhenDeleteTheme() {
Long setId = this.baseEntity.getId();
Theme theme = ThemeBuilder.createMockTheme();
when(this.baseRepository.findById(setId)).thenReturn(this.baseEntityOpt);
when(this.themeServive.findById(setId)).thenReturn(theme);
doThrow(DataIntegrityViolationException.class).when(this.baseRepository).save(this.baseEntity);
assertThrows(DataIntegrityException.class, () -> this.setService.deleteTheme(setId, theme.getId()));
verify(this.baseRepository, Mockito.times(1)).findById(setId);
verify(this.themeServive, Mockito.times(1)).findById(theme.getId());
}
@Test
public void mustReturnSuccess_WhenParseToSetListDto() {
SetListResponseDto result = this.setService.parseToSetListDto(this.baseEntity);
assertNotNull(result);
}
@Override
public Set mockEntityBuilder() {
return SetBuilder.createMockSet();
}
@Override
public Optional<Set> mockEntityOptBuilder() {
return SetBuilder.createMockSetOpt();
}
@Override
public List<Set> mockCollectionEntityListBuilder() {
return SetBuilder.createMockSetsList();
}
@Override
public ICrudService<Set, SetRequestDto> getService() {
return this.setService;
}
@Override
public JpaRepository<Set, Long> getRepository() {
return this.setRepository;
}
@Override
public Set getEntityUpdate() {
Set setUpdate = this.baseEntity;
setUpdate.setSetId("Set Update");
return setUpdate;
}
@Override
public SetRequestDto mockDtoBuilder() {
return SetBuilder.createMockSetRequestDto();
}
}
| [
"[email protected]"
] | |
8e83bca7f3f7980c2a21f2fbc451def8f38447e0 | b61f65a8634427855c498f1accfb41af46fbf236 | /src/main/java/com/example/camunda/config/CamundaConfiguration.java | e02134f90342f4c02e373039170b1144bba20c2e | [] | no_license | jakubt4/camunda-example | e9bdbdf2285c3f868ab9a7fc58ab80468b035bfb | f8331cdcd50af1149a6cebf4d6609d16a47acbc3 | refs/heads/main | 2023-02-17T22:59:39.592956 | 2021-01-17T20:04:42 | 2021-01-17T20:04:42 | 330,283,860 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 2,457 | java | package com.example.camunda.config;
import java.io.IOException;
import javax.sql.DataSource;
import org.camunda.bpm.engine.ProcessEngine;
import org.camunda.bpm.engine.spring.ProcessEngineFactoryBean;
import org.camunda.bpm.engine.spring.SpringProcessEngineConfiguration;
import org.camunda.bpm.engine.spring.SpringProcessEngineServicesConfiguration;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.beans.factory.annotation.Value;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;
import org.springframework.context.annotation.Import;
import org.springframework.core.io.Resource;
import org.springframework.core.io.support.ResourcePatternResolver;
import org.springframework.jdbc.datasource.DataSourceTransactionManager;
import org.springframework.transaction.PlatformTransactionManager;
@Configuration
@Import( SpringProcessEngineServicesConfiguration.class )
public class CamundaConfiguration {
@Value("${camunda.bpm.history-level:full}")
private String historyLevel;
// configure data source via application.properties
@Autowired
private DataSource dataSource;
@Autowired
private ResourcePatternResolver resourceLoader;
@Bean
public SpringProcessEngineConfiguration processEngineConfiguration() throws IOException {
final SpringProcessEngineConfiguration config = new SpringProcessEngineConfiguration();
config.setDataSource(dataSource);
config.setDatabaseSchemaUpdate("true");
config.setTransactionManager(transactionManager());
config.setHistory(historyLevel);
config.setJobExecutorActivate(true);
config.setMetricsEnabled(false);
// deploy all processes from folder 'processes'
final Resource[] resources = resourceLoader.getResources("classpath:/processes/*.bpmn");
config.setDeploymentResources(resources);
return config;
}
@Bean
public PlatformTransactionManager transactionManager() {
return new DataSourceTransactionManager(dataSource);
}
@Bean
public ProcessEngineFactoryBean processEngine() throws IOException {
final ProcessEngineFactoryBean factoryBean = new ProcessEngineFactoryBean();
factoryBean.setProcessEngineConfiguration(processEngineConfiguration());
return factoryBean;
}
@Bean
public ProcessEngine processEngine(ProcessEngineFactoryBean factoryBean) throws Exception {
return factoryBean.getObject();
}
}
| [
"[email protected]"
] |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.