blob_id
stringlengths
40
40
directory_id
stringlengths
40
40
path
stringlengths
7
410
content_id
stringlengths
40
40
detected_licenses
listlengths
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
684M
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
132 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
28 values
content
stringlengths
3
9.45M
authors
listlengths
1
1
author_id
stringlengths
0
352
3098c376cf956291741963d251da9191a5415fdd
be8f88d297706b3fb2c2cde2023041d0a27858b0
/app/src/androidTest/java/com/example/epomeroy/accounts/SavingsAccount.java
ed207fee1bf0fbfcf4f516b64a5857a1bb140832
[]
no_license
EarlPomeroy/MyBank
2ac501994ab78fb6471623bfec3b07fa1ff0d3d5
7bba301e977cb41d38aea3c3f6da0215d3928415
refs/heads/master
2021-05-29T14:33:20.311221
2015-09-12T21:31:17
2015-09-12T21:31:17
null
0
0
null
null
null
null
UTF-8
Java
false
false
308
java
package com.example.epomeroy.accounts; /** * Created by epomeroy on 9/12/15. */ public class SavingsAccount extends BankAccount { @Override public void withdraw(double amount) { if ( this.getNumberOfWithdraw() >= 3) { return; } super.withdraw(amount); } }
[ "epomeroy@ultramain.com" ]
epomeroy@ultramain.com
fbb10691f52f36b2c2799fae7ef2936aa53d096a
af06dc36b55703f50da9ff91c3fd038b1a6c0d9f
/observer/PatternTest.java
6e037f3dbe22ea658225b554ae40b00dbec70070
[]
no_license
pawelztef/java-design-patterns
fb77b509df3f319c4dc635367cc9d9d65949db39
3327834989eb66ecb0435b6e7af9d30c94d12bd5
refs/heads/master
2020-09-04T04:09:53.588468
2020-01-02T06:12:57
2020-01-03T13:41:21
219,654,263
0
0
null
null
null
null
UTF-8
Java
false
false
381
java
public class PatternTest { public static void main(String... args) { StockGrabber stockGrabber = new StockGrabber(); StockObserver stockObserver1 = new StockObserver(stockGrabber); StockObserver stockObserver2 = new StockObserver(stockGrabber); stockGrabber.setImbPrice(197.600); stockGrabber.setAppPrice(302.600); stockGrabber.setGooPrice(223.700); } }
[ "ubuntu@ip-172-31-34-84.eu-west-1.compute.internal" ]
ubuntu@ip-172-31-34-84.eu-west-1.compute.internal
cce457cd48524a629728a82f9ca839ee1af4a48d
e315c2bb2ea17cd8388a39aa0587e47cb417af0a
/configGenerale/tn/com/smartsoft/configGenerale/devises/devise/presentation/model/DeviseModel.java
f7b2ff3be932afa42740eb2d19e776efc89aa1ff
[]
no_license
wissem007/badges
000536a40e34e20592fe6e4cb2684d93604c44c9
2064bd07b52141cf3cff0892e628cc62b4f94fdc
refs/heads/master
2020-12-26T14:06:11.693609
2020-01-31T23:40:07
2020-01-31T23:40:07
237,530,008
0
0
null
null
null
null
UTF-8
Java
false
false
452
java
package tn.com.smartsoft.configGenerale.devises.devise.presentation.model; import java.util.List; import tn.com.smartsoft.framework.presentation.model.GenericEntiteModel; public class DeviseModel extends GenericEntiteModel { /** * */ private static final long serialVersionUID = 1L; /*private List listPays; public List getListPays() { return listPays; } public void setListPays(List listPays) { this.listPays = listPays; }*/ }
[ "alouiwiss@gmail.com" ]
alouiwiss@gmail.com
04b27806f76a493bbe44866e9f98c44c3971342b
8b5186f23dc859275cab7d768b14f61a3483ea24
/src/main/java/net/coderlin/java/demo/pattern/singleton/HungrySingleton.java
7f48ba2190b8d4833a11aab3e6a5295aa95663cc
[]
no_license
linhui0705/java-demo
396430fe5faf32318a2d7d18ed46ddf701fc07b2
f3a6772b4ca4d790c312780a783bc9e03c31b475
refs/heads/master
2022-12-28T22:30:40.732297
2020-12-06T06:53:14
2020-12-06T06:53:14
239,146,444
0
0
null
2022-12-16T05:11:59
2020-02-08T14:34:17
Java
UTF-8
Java
false
false
564
java
package net.coderlin.java.demo.pattern.singleton; /** * Title: HungrySingleton * Description: * 饿汉式 * 是否Lazy初始化:否 * 是否多线程安全:是 * 实现难度:易 * * @author Lin Hui * Created on 2020/2/17 10:29 下午 */ public class HungrySingleton { private static HungrySingleton INSTANCE = new HungrySingleton(); private HungrySingleton() { } public static HungrySingleton getInstance() { return INSTANCE; } public void print() { System.out.println("Hello HungrySingleton"); } }
[ "linhui0705@gmail.com" ]
linhui0705@gmail.com
a00467a9367f1260db814714c0025f6e4a5f8875
06d539739b7d7fb6b99a67c16f4f93ce0de8561a
/src/firstgrage/loop/DoWhileExam02.java
9f000a661456a72a5b1228119b6cad7bdc9c6114
[]
no_license
coding-guide/DoIt
407852236a975d522938fb30bc79f204cd4dd5c7
b87db0ce88761c5f72172f4a7e12343a5aba7c68
refs/heads/master
2022-12-25T22:31:12.750994
2020-10-02T11:13:49
2020-10-02T11:13:49
290,527,863
0
0
null
null
null
null
UTF-8
Java
false
false
493
java
package firstgrage.loop; import java.util.Scanner; public class DoWhileExam02 { public static void main(String[] args) { // 키보드로 정수 N을 입력받아 0부터 N까지 출력하시오. Scanner in = new Scanner(System.in); System.out.println("숫자 N을 입력하세요>>>"); int inputNumber = in.nextInt(); System.out.println("---0부터 숫자 N까지의 수 나열하기---"); int i = 0; do { System.out.print(i + " "); i++; }while(i <= inputNumber); } }
[ "srkim8744@korea.kr" ]
srkim8744@korea.kr
9fe9036414f572a160db44b8623f5092963bdf56
7156ec6c2cc73f82e617c516fc52c05b7704f154
/Java/_100_same_tree.java
9011efcc6ec582b7557f27b455090074c3dde8b7
[]
no_license
dreamgazer/LeetGryphon
b4f2562f574bb520a8a06de410c94bac172a99e2
10b7777bf97b4df0ca1dfbaa238e43ff5e8d5031
refs/heads/master
2020-03-22T21:46:46.397441
2019-04-15T21:59:56
2019-04-15T21:59:56
140,713,257
1
0
null
null
null
null
UTF-8
Java
false
false
520
java
/** * Definition for a binary tree node. * public class TreeNode { * int val; * TreeNode left; * TreeNode right; * TreeNode(int x) { val = x; } * } */ class Solution { public boolean isSameTree(TreeNode p, TreeNode q) { if(p == null && q == null) return true; if(p == null || q == null) return false; if(p.val == q.val){ return isSameTree(p.left, q.left)&&isSameTree(p.right, q.right); } else{ return false; } } }
[ "574110878@qq.com" ]
574110878@qq.com
e738adbfcb11fb97e16ff7083da6c3b9500189e9
44afdb736f7ba8c29484b538a8599cd128694d80
/src/test/java/com/sample/test/demo/tests/DemoTest.java
a1c4371d95181745b49cd0c4e686d22da277c169
[]
no_license
SHanmapur/SQEDemonstrationChallengeUIProject
14a3546457931bf7656015302334bd5306e6331c
585b4321e5f4003e9aef622279049aa9ceca2f38
refs/heads/master
2023-02-05T15:07:40.539320
2020-12-24T16:37:11
2020-12-24T16:37:11
null
0
0
null
null
null
null
UTF-8
Java
false
false
1,595
java
package com.sample.test.demo.tests; import org.testng.annotations.Test; import com.sample.test.demo.TestBase; import com.sample.test.demo.constants.PizzaToppings; import com.sample.test.demo.constants.PizzaTypes; import pages.OrderPage; public class DemoTest extends TestBase { @Test(description = "This Test case is POSITVE scenario - which takes all inputs and places an order then verifys success message") public void placeAnOrderTest() { OrderPage op = new OrderPage(driver); op.selectPizaType(PizzaTypes.MEDIUM_TWOTOPPINGS.getDisplayName()); op.selectPizaToppingsOption1(PizzaToppings.OLIVES.getDisplayName()); op.selectPizaToppingsOption2(PizzaToppings.MUSHROOMS.getDisplayName()); op.chosePizzaQuantity("2"); op.enterAddress("Swetha", "9987664455", "testSwetha@gmail.com"); op.choosePaymentMethod("cc"); op.placeOrder(); op.verifyThatOderPlaced(PizzaTypes.MEDIUM_TWOTOPPINGS.getDisplayName()); } @Test(description = "This Test case is Negative scenario - which takes all inputs except payment and places an order then verifys that oder should not be placed ") public void placeAnOrderWithOutPaymentTest() { OrderPage op = new OrderPage(driver); op.selectPizaType(PizzaTypes.MEDIUM_TWOTOPPINGS.getDisplayName()); op.selectPizaToppingsOption1(PizzaToppings.OLIVES.getDisplayName()); op.selectPizaToppingsOption2(PizzaToppings.MUSHROOMS.getDisplayName()); op.chosePizzaQuantity("2"); op.enterAddress("Swetha", "9987664455", "testSwetha@gmail.com"); op.placeOrder(); op.verifyThatOderPlaced(PizzaTypes.MEDIUM_TWOTOPPINGS.getDisplayName()); } }
[ "shwethareddy06@gmail.com" ]
shwethareddy06@gmail.com
cb5e5713ae4d590c9dbb07bee31b4d0d56e2ad9f
be73270af6be0a811bca4f1710dc6a038e4a8fd2
/crash-reproduction-moho/results/MATH-60b-5-24-PESA_II-WeightedSum:TestLen:CallDiversity/org/apache/commons/math/distribution/NormalDistributionImpl_ESTest.java
5a5316857103e043bdb761a9cf2652e7bc797477
[]
no_license
STAMP-project/Botsing-multi-objectivization-using-helper-objectives-application
cf118b23ecb87a8bf59643e42f7556b521d1f754
3bb39683f9c343b8ec94890a00b8f260d158dfe3
refs/heads/master
2022-07-29T14:44:00.774547
2020-08-10T15:14:49
2020-08-10T15:14:49
285,804,495
0
0
null
null
null
null
UTF-8
Java
false
false
587
java
/* * This file was automatically generated by EvoSuite * Sun Jan 19 18:15:26 UTC 2020 */ package org.apache.commons.math.distribution; import org.junit.Test; import static org.junit.Assert.*; import org.evosuite.runtime.EvoRunner; import org.evosuite.runtime.EvoRunnerParameters; import org.junit.runner.RunWith; @RunWith(EvoRunner.class) @EvoRunnerParameters(useVFS = true, useJEE = true) public class NormalDistributionImpl_ESTest extends NormalDistributionImpl_ESTest_scaffolding { @Test public void notGeneratedAnyTest() { // EvoSuite did not generate any tests } }
[ "pouria.derakhshanfar@gmail.com" ]
pouria.derakhshanfar@gmail.com
341e0036f2f7d9c0fcf3cf8c8de9573fb89bf3d8
d48f254cff557ce34dfad8d35923d151fb3723ac
/app/src/main/java/com/atguigu/bibiq/utils/TimeUtils.java
b69df1b34cc8f7c6a9a78576037b448a99e6d8ac
[]
no_license
642609666/BibiQ
cc6597c9ea3b69acb924c0112ccb07e1c39635b5
6ea3a456cf3f31c36591a6c22eb4cd69b90952c3
refs/heads/master
2021-01-22T22:44:47.968249
2017-04-07T02:52:47
2017-04-07T02:52:47
85,575,064
0
0
null
null
null
null
UTF-8
Java
false
false
5,859
java
package com.atguigu.bibiq.utils; import java.text.SimpleDateFormat; import java.util.Calendar; import java.util.Date; import java.util.Formatter; import java.util.Locale; /** * Created by ${ * 李岩 * QQ/微信: 642609666} on 3/23 0023. * 功能:时间转换 */ public class TimeUtils { private StringBuilder mFormatBuilder; private Formatter mFormatter; public TimeUtils() { // 转换成字符串的时间 mFormatBuilder = new StringBuilder(); mFormatter = new Formatter(mFormatBuilder, Locale.getDefault()); } /** * 把毫秒转换成:1:20:30这里形式 * * @param timeMs * @return */ public String stringForTime(int timeMs) { int totalSeconds = timeMs / 1000; int seconds = totalSeconds % 60; int minutes = (totalSeconds / 60) % 60; int hours = totalSeconds / 3600; mFormatBuilder.setLength(0); if (hours > 0) { return mFormatter.format("%d:%02d:%02d", hours, minutes, seconds) .toString(); } else { return mFormatter.format("%02d:%02d", minutes, seconds).toString(); } } /** * 从时间(毫秒)中提取出日期 * * @param millisecond * @return */ public static String getDateFromMillisecond(Long millisecond) { Date date = null; try { date = new Date(millisecond); } catch (Exception e) { e.printStackTrace(); } Calendar current = Calendar.getInstance(); ////今天 Calendar today = Calendar.getInstance(); today.set(Calendar.YEAR, current.get(Calendar.YEAR)); today.set(Calendar.MONTH, current.get(Calendar.MONTH)); today.set(Calendar.DAY_OF_MONTH, current.get(Calendar.DAY_OF_MONTH)); // Calendar.HOUR——12小时制的小时数 Calendar.HOUR_OF_DAY——24小时制的小时数 today.set(Calendar.HOUR_OF_DAY, 0); today.set(Calendar.MINUTE, 0); today.set(Calendar.SECOND, 0); //昨天 Calendar yesterday = Calendar.getInstance(); yesterday.set(Calendar.YEAR, current.get(Calendar.YEAR)); yesterday.set(Calendar.MONTH, current.get(Calendar.MONTH)); yesterday.set(Calendar.DAY_OF_MONTH, current.get(Calendar.DAY_OF_MONTH) - 1); yesterday.set(Calendar.HOUR_OF_DAY, 0); yesterday.set(Calendar.MINUTE, 0); yesterday.set(Calendar.SECOND, 0); // 今年 Calendar thisYear = Calendar.getInstance(); thisYear.set(Calendar.YEAR, current.get(Calendar.YEAR)); thisYear.set(Calendar.MONTH, 0); thisYear.set(Calendar.DAY_OF_MONTH, 0); thisYear.set(Calendar.HOUR_OF_DAY, 0); thisYear.set(Calendar.MINUTE, 0); thisYear.set(Calendar.SECOND, 0); current.setTime(date); //今年以前 if (current.before(thisYear)) { SimpleDateFormat format = new SimpleDateFormat("yyyy-MM-dd"); String dateStr = format.format(date); return dateStr; } else if (current.after(today)) { return "今天"; } else if (current.before(today) && current.after(yesterday)) { return "昨天"; } else { SimpleDateFormat format = new SimpleDateFormat("MM-dd"); String dateStr = format.format(date); return dateStr; } } /** * 从时间(毫秒)中提取出时间(时:分) * 时间格式: 时:分 * * @param millisecond * @return */ public static String getTimeFromMillisecond(int millisecond) { SimpleDateFormat simpleDateFormat = new SimpleDateFormat("HH:mm"); Date date = new Date(millisecond); String timeStr = simpleDateFormat.format(date); return timeStr; } /** * 将毫秒转化成固定格式的时间 * 时间格式: yyyy-MM-dd HH:mm:ss * * @param millisecond * @return */ public static String getDateTimeFromMillisecond(Long millisecond) { SimpleDateFormat simpleDateFormat = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss"); Date date = new Date(millisecond); String dateStr = simpleDateFormat.format(date); return dateStr; } /** * 将时间转化成毫秒 * 时间格式: yyyy-MM-dd HH:mm:ss * * @param time * @return */ public static Long timeStrToSecond(String time) { try { SimpleDateFormat format = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss"); Long second = format.parse(time).getTime(); return second; } catch (Exception e) { e.printStackTrace(); } return -1l; } /** * 获取时间间隔 * * @param millisecond * @return */ public static String getSpaceTime(Long millisecond) { Calendar calendar = Calendar.getInstance(); Long currentMillisecond = calendar.getTimeInMillis(); //间隔秒 Long spaceSecond = (currentMillisecond - millisecond) / 1000; //一分钟之内 if (spaceSecond >= 0 && spaceSecond < 60) { return "片刻之前"; } //一小时之内 else if (spaceSecond / 60 > 0 && spaceSecond / 60 < 60) { return spaceSecond / 60 + "分钟之前"; } //一天之内 else if (spaceSecond / (60 * 60) > 0 && spaceSecond / (60 * 60) < 24) { return spaceSecond / (60 * 60) + "小时之前"; } //3天之内 else if (spaceSecond / (60 * 60 * 24) > 0 && spaceSecond / (60 * 60 * 24) < 3) { return spaceSecond / (60 * 60 * 24) + "天之前"; } else { return getDateTimeFromMillisecond(millisecond); } } }
[ "642609666@qq.com" ]
642609666@qq.com
92c85230b33903985b869b66ddbdb9641366e3ca
656da06c9709e4631750accd294b8070a6f8a8dc
/src/test/java/com/example/html1/Html1ApplicationTests.java
229745e46ed43ff96779278246eeb8252d848ffa
[]
no_license
indonswe/html3
1e2af40b9608459d63420593a523b3139c05aaaa
110d3c140586931ce1cd1fcfa76216c0cbaae9b0
refs/heads/master
2023-03-25T19:46:58.929233
2021-03-25T13:01:33
2021-03-25T13:01:33
350,337,558
0
0
null
null
null
null
UTF-8
Java
false
false
217
java
package com.example.html1; import org.junit.jupiter.api.Test; import org.springframework.boot.test.context.SpringBootTest; @SpringBootTest class Html1ApplicationTests { @Test void contextLoads() { } }
[ "afc2002afc@hotmail.com" ]
afc2002afc@hotmail.com
12f93816f965309fa0a1d56423c748d20a7f89ae
385809f67f807e462e2abfe139f74b32813aaaa7
/src/han/util/JPattern.java
cee0ad6b0b067979fbb677c2a4a981f1bd26f8dc
[]
no_license
shiftcat/juser-board
812a26e4c8a2c367d9700d644e38ede87a1da701
47193f063ccde0f1fefb106391dbe9bdc0d73100
refs/heads/master
2020-03-30T08:37:33.906715
2018-10-01T03:09:56
2018-10-01T03:09:56
151,029,127
0
0
null
null
null
null
WINDOWS-1252
Java
false
false
1,862
java
package han.util; import java.util.regex.Pattern; public class JPattern { private static final String userIdPattern; private static final String hanglPattern; private static final String emailPattern; private static final String passwdPattern; private static final String juminPattern; private static final String phoneNumberPattern; private static final String mobileNumberPattern; static { userIdPattern = "^[a-zA-Z][a-zA-Z0-9]{3,7}"; emailPattern = "^[a-zA-Z0-9-]+@[a-zA-Z0-9-]+(\\.[a-zA-Z-]+)+$"; hanglPattern = "[\uAC00-\uD7A3¤¡-¤¾¤¿-¤Ó]{2,10}"; passwdPattern = "\\p{Graph}{4,8}"; juminPattern = "[0-9]{6}-[0-9]{7}"; phoneNumberPattern = "^[0][1-9]{1,2}-[0-9]{3,4}-[0-9]{4}"; mobileNumberPattern = "^01[0-9]{1}-[0-9]{3,4}-[0-9]{4}"; } public JPattern() { } public static boolean userId(String userid) { if( Pattern.matches(userIdPattern, userid) ) { return true; } return false; } public static boolean hanglName(String name) { if( Pattern.matches(hanglPattern, name) ) { return true; } return false; } public static boolean email(String email) { if( Pattern.matches( emailPattern, email ) ) { return true; } return false; } public static boolean passwd(String passwd) { if( Pattern.matches( passwdPattern, passwd ) ) { return true; } return false; } public static boolean jumin(String jumin) { if( Pattern.matches( juminPattern, jumin ) ) { return true; } return false; } public static boolean phone(String phone) { if( Pattern.matches(phoneNumberPattern, phone ) ) { return true; } return false; } public static boolean mobile(String mobile) { if( Pattern.matches( mobileNumberPattern, mobile ) ) { return true; } return false; } }
[ "shiftcat@daum.net" ]
shiftcat@daum.net
8483b9b5ac59dc01d8e4cd01148e3a61aa9918af
9053984c3cf0794bd736c6cd4edb6c126943ff14
/src/com/cjlu/newspublish/actions/impl/NewsAction.java
410a70d5d4c2b7589de7eebb78ccdadeb50d2e0a
[ "Apache-2.0" ]
permissive
loyalyonggang/NewsPublish
699d75c911cdbf363f230c9b7b2e4156c79f434e
b2bdcb3c327606163b3ec286a372e99690c4a574
refs/heads/master
2021-05-14T06:16:12.270953
2015-10-26T13:19:49
2015-10-26T13:19:49
null
0
0
null
null
null
null
GB18030
Java
false
false
13,969
java
package com.cjlu.newspublish.actions.impl; import java.io.ByteArrayInputStream; import java.io.File; import java.io.FileInputStream; import java.io.FileOutputStream; import java.io.IOException; import java.io.UnsupportedEncodingException; import java.util.ArrayList; import java.util.Date; import java.util.List; import javassist.bytecode.stackmap.TypeData.ClassName; import javax.servlet.http.Cookie; import org.apache.log4j.Logger; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.context.annotation.Scope; import org.springframework.stereotype.Controller; import com.cjlu.newspublish.actions.BaseAction; import com.cjlu.newspublish.constant.WebConstant; import com.cjlu.newspublish.models.Comment; import com.cjlu.newspublish.models.News; import com.cjlu.newspublish.models.NewsType; import com.cjlu.newspublish.models.Page; import com.cjlu.newspublish.models.State; import com.cjlu.newspublish.models.User; import com.cjlu.newspublish.models.VisitorCounter; import com.cjlu.newspublish.services.CommentService; import com.cjlu.newspublish.services.NewsService; import com.cjlu.newspublish.services.NewsTypeService; import com.cjlu.newspublish.services.StateService; import com.cjlu.newspublish.services.VisitorCounterService; import com.cjlu.newspublish.utils.CookieUtils; import com.cjlu.newspublish.utils.DataUtils; import com.cjlu.newspublish.utils.SearchIndexUtils; import com.cjlu.newspublish.utils.ValidateUtils; @Controller @Scope("prototype") public class NewsAction extends BaseAction<News> { private static final long serialVersionUID = 2627607447756718173L; @Autowired private NewsService newsService; @Autowired private NewsTypeService newsTypeService; @Autowired private CommentService commentService; @Autowired private VisitorCounterService visitorCounterService; @Autowired private StateService stateService; private int maxResult = WebConstant.MAX_RESULT; private int result = WebConstant.RESULT; private int pageSize = WebConstant.PAGE_SIZE; private Integer adminId = null; private List<List<News>> allNews = null; private List<NewsType> allNewsTypes = null; private List<State> allStates = null; private List<Comment> allComments = null; private Integer newsId = null;; private String comment = null; private User user = null; private VisitorCounter visitorCounter = null; private Integer count = null; private boolean flag = false; private Integer commentId = null; private String ipAddress = null; private Integer stateId = null; private static Logger logger = Logger.getLogger(ClassName.class); private String keywords; // 搜索时选择标题还是正文 private int sw; private Integer page; private Page<News> p; // 今日头条 private List<News> headlines = null; // 健康问答 private List<News> healthFAQs = null; // 医药时讯 private List<News> drugslines = null; // 健康资讯 private List<News> healthlines = null; // 生活专栏 private List<News> lifelines = null; // 孕妇专区 private List<News> pregnantlines = null; // 不孕不育 private List<News> infertilitylines = null; // 两性专区 private List<News> genderlines = null; // 热点曝光 private List<News> hotlines = null; private File upload; private String uploadFileName; private String uploadContentType; // 搜索某条新闻 public String getSearchedNews() { if (keywords != null && keywords.trim() != "") { sessionMap.put("keywords", keywords); } SearchIndexUtils utils = SearchIndexUtils.Instance(); if (sw == 0) { if (page == null) { utils.pageNo = 1; p = utils.searchIndex("title", (String) sessionMap.get("keywords"), false); } else { utils.pageNo = page; p = utils.searchIndex("title", (String) sessionMap.get("keywords"), false); } } else { if (page == null) { utils.pageNo = 1; p = utils.searchIndex("content", (String) sessionMap.get("keywords"), false); } else { utils.pageNo = page; p = utils.searchIndex("content", (String) sessionMap.get("keywords"), false); } } requestMap.put("page", p); requestMap.put("sw", sw); return "to_searchResultPage"; } // 后台搜索某条新闻 public String searchNews() { if (keywords != null && keywords.trim() != "") { sessionMap.put("keywords", keywords); } SearchIndexUtils utils = SearchIndexUtils.Instance(); if (sw == 0) { if (page == null) { utils.pageNo = 1; p = utils.searchIndex("title", (String) sessionMap.get("keywords"), false); } else { utils.pageNo = page; p = utils.searchIndex("title", (String) sessionMap.get("keywords"), false); } } else { if (page == null) { utils.pageNo = 1; p = utils.searchIndex("content", (String) sessionMap.get("keywords"), false); } else { utils.pageNo = page; p = utils.searchIndex("content", (String) sessionMap.get("keywords"), false); } } requestMap.put("page", p); requestMap.put("sw", sw); return "to_searchPage"; } // 用户发表某条评论 public String publishComment() { user = (User) sessionMap.get("user"); ipAddress = httpRequest.getRemoteAddr(); commentService.publishComment(comment, ipAddress, newsId, user); logger.info(user.getUsername() + "发表评论:" + comment + " ,IP地址:" + ipAddress + " ,新闻ID:" + newsId); allComments = commentService.getViewNewsAllComment(newsId); try { writeJSON(allComments); } catch (IOException e) { e.printStackTrace(); } return null; } // 管理员删除某条评论 public String deleteComment() { commentService.deleteComment(commentId); logger.info("管理员删除评论:" + commentId); allComments = commentService.getViewNewsAllComment(newsId); try { writeJSON(allComments); } catch (IOException e) { e.printStackTrace(); } return null; } // 得到所有已通过的新闻 public String getAllPassedNews() { headlines = newsService.getRecentNews(1, maxResult); healthFAQs = newsService.getRecentNews(3, maxResult); drugslines = newsService.getRecentNews(4, result); healthlines = newsService.getRecentNews(2, result); lifelines = newsService.getRecentNews(5, result); pregnantlines = newsService.getRecentNews(6, result); infertilitylines = newsService.getRecentNews(7, result); genderlines = newsService.getRecentNews(8, result); hotlines = newsService.getRecentNews(9, result); allNews = new ArrayList<List<News>>(); allNews.add(headlines); allNews.add(healthFAQs); allNews.add(drugslines); allNews.add(healthlines); allNews.add(lifelines); allNews.add(pregnantlines); allNews.add(infertilitylines); allNews.add(genderlines); allNews.add(hotlines); requestMap.put("allNews", allNews); return "to_homePage"; } // 得到所有未通过的新闻 public String getAllNotPassedNews() { p = new Page<News>(); if (page == null) { p = newsService.listAllNotPassedNewsPage(1, pageSize); } else { p = newsService.listAllNotPassedNewsPage(page, pageSize); } requestMap.put("page", p); return "to_examineNewsListPage"; } // 得到所有的新闻 public String getAllNews() { p = new Page<News>(); if (page == null) { p = newsService.listAllNewsPage(1, pageSize); } else { p = newsService.listAllNewsPage(page, pageSize); } requestMap.put("page", p); if (sessionMap.get("allNewsTypes") == null) { allNewsTypes = newsTypeService.findAllEntities(); sessionMap.put("allNewsTypes", allNewsTypes); } if (sessionMap.get("allStates") == null) { allStates = stateService.findAllEntities(); sessionMap.put("allStates", allStates); } return "to_newsListPage"; } // 判断用户是否存在指定的cookie,以此来更新新闻点击量 public void countVisitorNum(Integer newsId) { String key = DataUtils.md5(newsId.toString()); String value = DataUtils.md5("true" + newsId); Cookie c = null; try { c = CookieUtils.getCookie(httpRequest, "COUNT_" + key); } catch (UnsupportedEncodingException e) { e.printStackTrace(); } if (c != null) { if (value.equals(c.getValue())) { flag = false; } else { flag = true; count++; } } else { flag = true; count++; CookieUtils.addCookie(httpResponse, "COUNT_" + key, value, 60 * 60 * 2); } } // 前台得到某条新闻的页面 public String getViewNews() { model = newsService.getViewNews(model.getId()); allComments = commentService.getViewNewsAllComment(model.getId()); requestMap.put("allComments", allComments); visitorCounter = new VisitorCounter(httpRequest.getRemoteAddr(), new Date(), (User) sessionMap.get("user"), model); visitorCounterService.saveEntity(visitorCounter); count = model.getCount(); countVisitorNum(model.getId()); application.setAttribute("count", count); if (flag) { model.setCount(count); newsService.updateEntity(model); } return "to_viewNewsPage"; } // 后台得到某条新闻的页面 public String getNews() { model = newsService.getViewNews(model.getId()); allComments = commentService.getViewNewsAllComment(model.getId()); requestMap.put("allComments", allComments); return "to_newsPage"; } // 后台改变新闻的状态 @SuppressWarnings("unchecked") public String changeNewsState() { model = newsService.getEntity(model.getId()); allStates = (List<State>) sessionMap.get("allStates"); State s = allStates.get(sw - 1); model.setState(s); if (s.getId() == 1) { newsService.createNewsIndex(model); } newsService.updateEntity(model); return "to_NewsAction_getAllNotPassedNews"; } // 后台得到某条未通过新闻的页面 public String getExamineNews() { model = newsService.getViewNews(model.getId()); if (sessionMap.get("allNewsTypes") == null) { allNewsTypes = newsTypeService.findAllEntities(); sessionMap.put("allNewsTypes", allNewsTypes); } if (sessionMap.get("allStates") == null) { allStates = stateService.findAllEntities(); sessionMap.put("allStates", allStates); } return "to_examineNewsPage"; } // 后台更新某条新闻 public String updateNews() { if (model.getId() != null && model.getId() > 0) { model = newsService.getEntity(model.getId()); } if (sessionMap.get("allNewsTypes") == null) { allNewsTypes = newsTypeService.findAllEntities(); sessionMap.put("allNewsTypes", allNewsTypes); } return "to_updateNewsPage"; } // 上传缩略图 private void uploadThumbnail(String uploadFileName) throws IOException { String ext = uploadFileName.substring(uploadFileName.lastIndexOf(".")); long filename = System.nanoTime(); String dir = application.getRealPath("/files/" + filename + ext); System.out.println(dir); FileOutputStream out = new FileOutputStream(dir); FileInputStream in = new FileInputStream(upload); byte[] buffer = new byte[1024]; int len = 0; while ((len = in.read(buffer)) != -1) { out.write(buffer, 0, len); } out.close(); in.close(); model.setThumbnail("/files/" + filename + ext); } // 后台保存某条新闻 public String saveNews() throws IOException { System.out.println("uploadFileName" + uploadFileName); if (ValidateUtils.isValid(uploadFileName)) { try { uploadThumbnail(uploadFileName); } catch (Exception e) { addFieldError("logoPhoto", "图片上传失败"); System.out.println("图片上传失败"); e.printStackTrace(); return "upload_error"; } } if (stateId != null && model.getId() != null) { State s = stateService.getEntity(stateId); model.setState(s); System.out.println(model.toString()); } newsService.saveNews(model, adminId); logger.info("管理员更新新闻:" + model.getTitle()); return "to_NewsAction_getAllNews"; } // 后台删除某条新闻 public String deleteNews() { try { if (model.getId() != null && model.getId() > 0) { newsService.deleteNews(model.getId()); inputStream = new ByteArrayInputStream("1".getBytes("UTF-8")); logger.info("管理员删除新闻:" + model.getTitle()); } } catch (Exception e) { try { inputStream = new ByteArrayInputStream("0".getBytes("UTF-8")); e.printStackTrace(); } catch (UnsupportedEncodingException e1) { e1.printStackTrace(); } } return "ajax_success"; } // 后台增加某条新闻 public String addNews() { if (sessionMap.get("allNewsTypes") == null) { allNewsTypes = newsTypeService.findAllEntities(); sessionMap.put("allNewsTypes", allNewsTypes); } return "to_addNewsPage"; } public Integer getAdminId() { return adminId; } public void setAdminId(Integer adminId) { this.adminId = adminId; } public String getComment() { return comment; } public void setComment(String comment) { this.comment = comment; } public Integer getNewsId() { return newsId; } public void setNewsId(Integer newsId) { this.newsId = newsId; } public Integer getCommentId() { return commentId; } public void setCommentId(Integer commentId) { this.commentId = commentId; } public Integer getStateId() { return stateId; } public void setStateId(Integer stateId) { this.stateId = stateId; } public String getKeywords() { return keywords; } public void setKeywords(String keywords) { this.keywords = keywords; } public Integer getPage() { return page; } public void setPage(Integer page) { this.page = page; } public int getSw() { return sw; } public void setSw(int sw) { this.sw = sw; } public File getUpload() { return upload; } public void setUpload(File upload) { this.upload = upload; } public String getUploadFileName() { return uploadFileName; } public void setUploadFileName(String uploadFileName) { this.uploadFileName = uploadFileName; } public String getUploadContentType() { return uploadContentType; } public void setUploadContentType(String uploadContentType) { this.uploadContentType = uploadContentType; } }
[ "yqr271228943@gmail.com" ]
yqr271228943@gmail.com
66254eb0537aed107ab17a3158e99dbb76c04369
49c06b467242fb31559e841752e1df4f4245a9e2
/src/structural/adapter/src/Client.java
a21f7a6ce3543ecc4d5f435bfbcc1addea2cb56b
[]
no_license
luafabio/design-patterns
e361a6d4f40ab821a3c7a9e3e3003751cfd2004a
a1eb16b0ad98a401295b549d306db63f29b96d23
refs/heads/master
2021-04-21T17:40:22.011364
2020-03-24T21:35:13
2020-03-24T21:35:13
249,800,795
0
0
null
null
null
null
UTF-8
Java
false
false
495
java
package structural.adapter.src; public class Client { public static void main(String[] args) { Client client = new Client(); LegacyRectangle legacyRectangle = new LegacyRectangle(); LegacyRectangleAdapter adapter = new LegacyRectangleAdapter(legacyRectangle); client.calculateRectangleSize(adapter); } public void calculateRectangleSize(Rectangle rectangle) { System.out.println("Rectangle size: " + rectangle.determineSize()); } }
[ "luis.fabio@mercadolibre.com" ]
luis.fabio@mercadolibre.com
7d1ef3ae1c208bdb92a2f61d9948a1c0f5c7eeb4
45d645a0f684f6ccb69e5fc69a56db97c79076b3
/lemon-framework/lemon-framework-common/src/main/java/com/hisun/lemon/framework/annotation/LemonBody.java
125d49c03f2bcff578e92f811c839f217bdd88fc
[]
no_license
learndockering/framework
fe1826f86d15a6ec01c1b532f09b214d80fd571d
0e28e71ef9285e9335be32cec86eb2c290cbca5c
refs/heads/master
2020-03-18T03:51:50.856813
2018-04-24T03:08:32
2018-04-24T03:08:32
null
0
0
null
null
null
null
UTF-8
Java
false
false
491
java
package com.hisun.lemon.framework.annotation; import java.lang.annotation.Documented; import java.lang.annotation.ElementType; import java.lang.annotation.Retention; import java.lang.annotation.RetentionPolicy; import java.lang.annotation.Target; /** * GET请求参数为GenericDTO或其子类对象 * @author yuzhou * @date 2017年8月22日 * @time 下午1:07:51 * */ @Documented @Retention(RetentionPolicy.RUNTIME) @Target({ElementType.PARAMETER}) public @interface LemonBody { }
[ "luomeng@9fbank.com.cn" ]
luomeng@9fbank.com.cn
f99ef1da280aa40f71a38776623fc0558fdc390e
6049c91117b4da7b2ca5ef4ad59e2e5d309ccb89
/app/src/main/java/com/example/submission5/components/movie/MovieDetailActivity.java
64d346eee0cc3c49b24a9c1c80802b824db9f5e3
[]
no_license
Syahal/CatalogueMovieFinal
4e9840b163a8f3df1c33e7777d05feef16d7d0f1
433071df921310e7f3de1fb85dd235599cb2427f
refs/heads/master
2020-09-04T04:27:10.317247
2019-11-07T09:12:36
2019-11-07T09:12:36
219,657,213
0
0
null
null
null
null
UTF-8
Java
false
false
6,270
java
package com.example.submission5.components.movie; import androidx.appcompat.app.AppCompatActivity; import androidx.core.content.ContextCompat; import android.content.ContentValues; import android.net.Uri; import android.os.Bundle; import android.view.Menu; import android.view.MenuItem; import android.widget.ImageView; import android.widget.TextView; import android.widget.Toast; import com.bumptech.glide.Glide; import com.bumptech.glide.request.RequestOptions; import com.example.submission5.R; import com.example.submission5.components.widget.FavoriteWidgetProvider; import com.example.submission5.models.movies.MovieItems; import jp.wasabeef.glide.transformations.BlurTransformation; import static com.example.submission5.connection.DBContract.FavoriteMoviesColumn.CONTENT_URL; import static com.example.submission5.connection.DBContract.FavoriteMoviesColumn.LANGUAGE; import static com.example.submission5.connection.DBContract.FavoriteMoviesColumn.OVERVIEW; import static com.example.submission5.connection.DBContract.FavoriteMoviesColumn.POPULARITY; import static com.example.submission5.connection.DBContract.FavoriteMoviesColumn.POSTER_PATH; import static com.example.submission5.connection.DBContract.FavoriteMoviesColumn.RELEASE_DATE; import static com.example.submission5.connection.DBContract.FavoriteMoviesColumn.TITLE; import static com.example.submission5.connection.DBContract.FavoriteMoviesColumn.VOTE_AVERAGE; import static com.example.submission5.connection.DBContract.FavoriteMoviesColumn._ID; import static com.example.submission5.MainActivity.dbFavorite; public class MovieDetailActivity extends AppCompatActivity { public static final String MOVIE_EXTRA = "movie_extra"; private int id; private String title, overview, release, vote, popularity, language, poster; private TextView tvMovieTitle, tvMovieOverview, tvMovieRelease, tvMovieVote, tvMoviePopularity, tvMovieLanguage; private ImageView imgMoviePoster, imgMovieBlur; @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setTitle(R.string.movie_detail_header); setContentView(R.layout.activity_movie_detail); bindView(); getData(); setData(); } public void bindView() { tvMovieTitle = findViewById(R.id.tv_detail_name); tvMovieOverview = findViewById(R.id.tv_detail_overview); tvMovieRelease = findViewById(R.id.tv_detail_release); tvMovieVote = findViewById(R.id.tv_detail_vote_average); tvMoviePopularity = findViewById(R.id.tv_detail_popularity); tvMovieLanguage = findViewById(R.id.tv_detail_original_language); imgMoviePoster = findViewById(R.id.img_poster_detail); imgMovieBlur = findViewById(R.id.img_blur_detail); } private void getData() { MovieItems movieItems = getIntent().getParcelableExtra(MOVIE_EXTRA); assert movieItems != null; id = movieItems.getId(); title = movieItems.getMovieTitle(); overview = movieItems.getMovieOverview(); release = movieItems.getMovieReleasedate(); vote = movieItems.getMovieVoteAvg(); popularity = movieItems.getMoviePopularity(); language = movieItems.getMovieLanguage(); poster = movieItems.getMoviePosterpath(); } private void setData() { tvMovieTitle.setText(title); tvMovieOverview.setText(overview); tvMovieRelease.setText(release); tvMovieVote.setText(vote); tvMoviePopularity.setText(popularity); tvMovieLanguage.setText(language); Glide.with(this) .load("https://image.tmdb.org/t/p/w342" + poster) .apply(RequestOptions.bitmapTransform(new BlurTransformation(10, 1))) .into(imgMovieBlur); Glide.with(this) .load("https://image.tmdb.org/t/p/w185" + poster) .into(imgMoviePoster); } public boolean onCreateOptionsMenu(Menu menu) { getMenuInflater().inflate(R.menu.fav_menu, menu); if (dbFavorite.dao().isFavMov(id) == 1) { menu.getItem(0).setIcon(ContextCompat.getDrawable(this, R.drawable.ic_favorite_24dp)); menu.getItem(0).setChecked(true); } else { menu.getItem(0).setIcon(ContextCompat.getDrawable(this, R.drawable.ic_add_to_favorite_24dp)); menu.getItem(0).setChecked(false); } return super.onCreateOptionsMenu(menu); } @Override public boolean onOptionsItemSelected(MenuItem menuItem) { MovieItems movieItems = new MovieItems(); movieItems.setId(id); movieItems.setMovieTitle(title); movieItems.setMovieOverview(overview); movieItems.setMovieReleasedate(release); movieItems.setMovieVoteAvg(vote); movieItems.setMoviePopularity(popularity); movieItems.setMovieLanguage(language); movieItems.setMoviePosterpath(poster); ContentValues values = new ContentValues(); values.put(_ID, id); values.put(TITLE, title); values.put(OVERVIEW, overview); values.put(RELEASE_DATE, release); values.put(VOTE_AVERAGE, vote); values.put(POPULARITY, popularity); values.put(LANGUAGE, language); values.put(POSTER_PATH, poster); if (menuItem.getItemId() == R.id.is_favorite) { if (menuItem.isChecked()) { menuItem.setChecked(false); dbFavorite.dao().delete(movieItems); Uri uri = Uri.parse(CONTENT_URL + "/" + id); getContentResolver().delete(uri, null, null); menuItem.setIcon(R.drawable.ic_add_to_favorite_24dp); Toast.makeText(this, R.string.remove_from_favorite, Toast.LENGTH_SHORT).show(); } else { menuItem.setChecked(true); dbFavorite.dao().addMovieItem(movieItems); getContentResolver().insert(CONTENT_URL, values); menuItem.setIcon(R.drawable.ic_favorite_24dp); Toast.makeText(this, R.string.added_to_favorite, Toast.LENGTH_SHORT).show(); } } return super.onOptionsItemSelected(menuItem); } }
[ "achmadsyahal24@gmail.com" ]
achmadsyahal24@gmail.com
b94514a93deb822ea5a4c808542d91fe9aaf29ea
33d329f17ad4912a23dd9ee6fd3b07863c2ccce6
/src/main/java/com/esgi/stats19/api/common/entities/Country.java
3047ef3546e8e415495eb4073a554f580a6fa59d
[ "Apache-2.0" ]
permissive
stats19/stats19-api
8eb38cce4cc832ab73bf811d298f98925eb731a2
30d6f1d55973a205fbfb45dfdf245b1ad14dbe41
refs/heads/master
2022-11-18T06:18:26.940612
2020-07-15T19:49:29
2020-07-15T19:49:29
256,801,806
0
0
null
2020-06-30T10:43:13
2020-04-18T16:34:13
Java
UTF-8
Java
false
false
818
java
package com.esgi.stats19.api.common.entities; import lombok.AllArgsConstructor; import lombok.Builder; import lombok.Data; import lombok.NoArgsConstructor; import javax.persistence.*; import javax.validation.constraints.NotNull; import javax.validation.constraints.Size; import java.util.List; @Data @Entity @Builder @NoArgsConstructor @AllArgsConstructor public class Country { @Id @GeneratedValue(strategy = GenerationType.IDENTITY) private Integer countryId; @NotNull @Column(length = 45) @Size(min = 2, max = 45) private String name; @OneToMany(mappedBy = "country", cascade = CascadeType.ALL, fetch = FetchType.LAZY) private List<League> leagues; @OneToMany(mappedBy = "country", cascade = CascadeType.ALL, fetch = FetchType.LAZY) private List<Match> matches; }
[ "luis.valdez@affluences.com" ]
luis.valdez@affluences.com
a09bf5480f9c6dabcf44f06176cb9f21c111b62c
8ba06c2dcf2b2342b140b28f8f6055ee420faa20
/src/main/java/com/wangxile/springioc/beandefinition/BeanDefinition.java
8e405b34c3362fc75ac2154dd6ea6fe3d00c0543
[]
no_license
wangxile/spring-ioc
0289ece8ddef02f209eff380dc52c9dabaab818e
f5cfaf372616a808c68c0cd5f1e1856e54e11914
refs/heads/master
2020-08-23T05:53:26.673840
2019-10-22T09:42:16
2019-10-22T09:42:16
216,557,335
0
0
null
null
null
null
UTF-8
Java
false
false
285
java
package com.wangxile.springioc.beandefinition; import lombok.Data; /** * @Author:wangqi * @Description: * @Date:Created in 2019/10/21 * @Modified by: */ @Data public class BeanDefinition { private String className; private String alias; private String superNames; }
[ "1553376706@qq.com" ]
1553376706@qq.com
c752bd971788a811723f7f7649805f3aa88f0ced
76a66820dde694588ce4697b736e6c22da79a366
/solutions/ChallengeThree.java
ac5988fd0645d9ef1ee132bc0d0e7570347f226f
[ "MIT" ]
permissive
SA-JackMax/java-beginner-problems-from-lrakai
39ea3b18e4db8357de466cada02dc21e17cebdca
f2c372b170ab59cfa2e9de64a8c9e08561e9bc93
refs/heads/master
2023-07-11T19:51:51.733384
2019-11-15T23:06:05
2019-11-15T23:06:05
null
0
0
null
null
null
null
UTF-8
Java
false
false
2,194
java
import java.time.LocalDate; public class ChallengeThree { public static String dayOfWeek(String date) { /** * Returns a String storing the day of the week in all capital letters of the * given date String * Complete the implementation of the DateUtil class and use it in this function * Arguments * date - a String storing a local date, such as "2000-01-01" * Examples * dayOfWeek("2000-01-01") returns "SATURDAY" */ // ==================================== // Do not change the code before this // CODE1: Write code to return the day of the week of the String date // using the DateUtil class at the bottom of this file return new DateUtil(date).dayOfWeek(); // ==================================== // Do not change the code after this } public static void main(String[] args) { String theDayOfWeek = dayOfWeek("2000-01-01"); String expected = "SATURDAY"; // Expected output is // true System.out.println(theDayOfWeek == expected); } } class DateUtil { LocalDate theDate; public DateUtil(String date) { /** * Initialize the theDate field using the String date argument * Arguments * date - a String storing a local date, such as "2000-01-01" */ // ==================================== // Do not change the code before this // CODE2: Write code to initialize the date field of the class theDate = LocalDate.parse(date); // ==================================== // Do not change the code after this } public String dayOfWeek() { /** * Return a String the day of the week represented by theDate */ // ==================================== // Do not change the code before this // CODE3: Write code to return the String day of the week of theDate return theDate.getDayOfWeek().toString(); // ==================================== // Do not change the code after this } }
[ "lmrakai@gmail.com" ]
lmrakai@gmail.com
b384644270be1b1404346bb44d7ea705ca021c9c
40b218f8e7d61f4737c89fa05ad6a14f3cab0afd
/Petagram3/app/src/main/java/com/rubach/petagram/contactoActivity.java
4cd994de0a24a58e94d634f0b6525d7d1493f487
[]
no_license
rucode/Petagram_Fragment_BaseDatos
a95131d04c5b8a11fdfad85efe5b7d3d7b24c343
aeea3046ebe51bed9ab82a8cad9cc18274977cb9
refs/heads/master
2020-04-02T05:29:08.002058
2016-08-08T03:41:52
2016-08-08T03:42:05
65,160,631
0
1
null
null
null
null
UTF-8
Java
false
false
2,660
java
package com.rubach.petagram; import android.support.v7.app.AppCompatActivity; import android.os.Bundle; import android.support.v7.widget.Toolbar; import android.view.KeyEvent; import android.view.View; import android.widget.Button; import android.widget.EditText; import android.widget.Toast; import com.rubach.petagram.email.SendMail; public class contactoActivity extends AppCompatActivity { private EditText txtNombre; private EditText txtCorreo; private EditText txtBodyEmail; @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_contacto); //muestro flecha de retroceder Toolbar miActionBar=(Toolbar) findViewById(R.id.miActionBar); setSupportActionBar(miActionBar); //agrega la flecha hacia atras. getSupportActionBar().setDisplayHomeAsUpEnabled(true); //muestro el logo getSupportActionBar().setLogo(R.drawable.cat_footprint_48); getSupportActionBar().setDisplayUseLogoEnabled(true); //cargo los textview txtNombre = (EditText) findViewById(R.id.txtNombre); txtCorreo= (EditText) findViewById(R.id.txtCorreo); txtBodyEmail= (EditText) findViewById(R.id.txtBodyEmail); //cargo accion del boton Button btnSiguiente = (Button)findViewById(R.id.btnSiguiente); assert btnSiguiente != null; btnSiguiente.setOnClickListener(new View.OnClickListener() { @Override public void onClick(View v) { CargoDatos(); } }); } public void CargoDatos(){ //envio el email Toast.makeText(getBaseContext(),"favor configurar casilla y passord para el envio", Toast.LENGTH_SHORT).show(); //Para testear esta funcionalidad, se debe probar con usuario y clave (gmail) de cada uno, en la clase Config.java. //luego descomentar la funcion sendEmail(); //sendEmail(); } //metodo para cuando pulsa el boton de ir atras. public boolean onKeyDown(int keyCode, KeyEvent event) { if (keyCode==KeyEvent.KEYCODE_BACK){ finish(); } return super.onKeyDown(keyCode, event); } private void sendEmail() { //seteo las variables. String email = txtCorreo.getText().toString().trim(); String subject = txtNombre.getText().toString().trim(); String message = txtBodyEmail.getText().toString().trim(); //Creo el objeto SendMail sm = new SendMail(this, email, subject, message); //Envio el email sm.execute(); } }
[ "ronaldu@gmail.com" ]
ronaldu@gmail.com
baa3ed2859a969a424dbb8c85971e3ca18aefb30
edfb6d6416fae12b0978018145e57eb0866a8031
/src/main/java/streams/OptionalsFromEmptyStreams.java
29eef3813f554778820bf488483b4354058443dd
[]
no_license
xiaoyuzaijinbu/TIJ5-code
1ac7a2dcfc24413faf0824390cfe53d8295234a0
2698645e6505f2590a41b0760742240690e9b3a0
refs/heads/master
2021-03-12T00:41:40.618292
2021-01-26T03:39:50
2021-01-26T03:39:50
246,574,335
0
0
null
null
null
null
UTF-8
Java
false
false
1,005
java
package streams;// streams/OptionalsFromEmptyStreams.java // (c)2017 MindView LLC: see Copyright.txt // We make no guarantees that this code is fit for any purpose. // Visit http://OnJava8.com for more book information. import java.util.*; import java.util.stream.*; class OptionalsFromEmptyStreams { public static void main(String[] args) { System.out.println(Stream.<String>empty() .findFirst()); System.out.println(Stream.<String>empty() .findAny()); System.out.println(Stream.<String>empty() .max(String.CASE_INSENSITIVE_ORDER)); System.out.println(Stream.<String>empty() .min(String.CASE_INSENSITIVE_ORDER)); System.out.println(Stream.<String>empty() .reduce((s1, s2) -> s1 + s2)); System.out.println(IntStream.empty() .average()); } } /* Output: Optional.empty Optional.empty Optional.empty Optional.empty Optional.empty OptionalDouble.empty */
[ "1609433522@qq.com" ]
1609433522@qq.com
002dbb1dfac4468aa91666d2dffaef0609907737
56fa5184e7fc46c60f340b38fa8988b4461e2533
/blur-indexer/src/main/java/org/apache/blur/indexer/MergeSortRowIdMatcher.java
66cd2ac77e6e6578b28da547ab6c7e0a40947b22
[ "Apache-2.0", "MIT", "BSD-3-Clause" ]
permissive
ThePrathamOS/incubator-blur
1bf5e62bb7c449eec8081a9d46dbcec373834d28
078f789bcbe0e3ac9e6945df5d01821c4b946462
refs/heads/master
2020-03-19T11:00:59.554787
2017-06-22T12:06:31
2017-06-22T12:06:31
null
0
0
null
null
null
null
UTF-8
Java
false
false
12,999
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.apache.blur.indexer; import java.io.IOException; import java.util.ArrayList; import java.util.Arrays; import java.util.Collection; import java.util.Comparator; import java.util.List; import java.util.Set; import java.util.TreeSet; import java.util.UUID; import java.util.concurrent.TimeUnit; import org.apache.blur.index.AtomicReaderUtil; import org.apache.blur.log.Log; import org.apache.blur.log.LogFactory; import org.apache.blur.store.hdfs.DirectoryDecorator; import org.apache.blur.store.hdfs.HdfsDirectory; import org.apache.blur.utils.BlurConstants; import org.apache.hadoop.conf.Configuration; import org.apache.hadoop.fs.BlockLocation; import org.apache.hadoop.fs.FileStatus; import org.apache.hadoop.fs.FileSystem; import org.apache.hadoop.fs.HdfsBlockLocation; import org.apache.hadoop.fs.Path; import org.apache.hadoop.hdfs.protocol.ExtendedBlock; import org.apache.hadoop.hdfs.protocol.LocatedBlock; import org.apache.hadoop.io.NullWritable; import org.apache.hadoop.io.SequenceFile; import org.apache.hadoop.io.SequenceFile.CompressionType; import org.apache.hadoop.io.SequenceFile.Reader; import org.apache.hadoop.io.SequenceFile.Writer; import org.apache.hadoop.io.Text; import org.apache.hadoop.io.compress.CompressionCodec; import org.apache.hadoop.io.compress.DeflateCodec; import org.apache.hadoop.io.compress.GzipCodec; import org.apache.hadoop.io.compress.zlib.ZlibFactory; import org.apache.hadoop.util.Progressable; import org.apache.lucene.index.AtomicReaderContext; import org.apache.lucene.index.DirectoryReader; import org.apache.lucene.index.IndexCommit; import org.apache.lucene.index.SegmentInfo; import org.apache.lucene.index.SegmentInfoPerCommit; import org.apache.lucene.index.SegmentInfos; import org.apache.lucene.index.SegmentReader; import org.apache.lucene.index.Terms; import org.apache.lucene.index.TermsEnum; import org.apache.lucene.store.Directory; import org.apache.lucene.util.BytesRef; public class MergeSortRowIdMatcher { private static final String DEL = ".del"; private static final Log LOG = LogFactory.getLog(MergeSortRowIdMatcher.class); private static final Progressable NO_OP = new Progressable() { @Override public void progress() { } }; private static final long _10_SECONDS = TimeUnit.SECONDS.toNanos(10); public interface Action { void found(Text rowId) throws IOException; } private final MyReader[] _readers; private final Configuration _configuration; private final Path _cachePath; private final IndexCommit _indexCommit; private final Directory _directory; private final Progressable _progressable; private DirectoryReader _reader; public MergeSortRowIdMatcher(Directory directory, long generation, Configuration configuration, Path cachePath) throws IOException { this(directory, generation, configuration, cachePath, null); } public MergeSortRowIdMatcher(Directory directory, long generation, Configuration configuration, Path cachePath, Progressable progressable) throws IOException { List<IndexCommit> listCommits = DirectoryReader.listCommits(directory); _indexCommit = findIndexCommit(listCommits, generation); _configuration = configuration; _cachePath = cachePath; _directory = directory; _progressable = progressable == null ? NO_OP : progressable; _readers = openReaders(); } public void lookup(Text rowId, Action action) throws IOException { if (lookup(rowId)) { action.found(rowId); } } private boolean lookup(Text rowId) throws IOException { advanceReadersIfNeeded(rowId); sortReaders(); return checkReaders(rowId); } private boolean checkReaders(Text rowId) { for (MyReader reader : _readers) { int compareTo = reader.getCurrentRowId().compareTo(rowId); if (compareTo == 0) { return true; } else if (compareTo > 0) { return false; } } return false; } private void advanceReadersIfNeeded(Text rowId) throws IOException { _progressable.progress(); for (MyReader reader : _readers) { if (rowId.compareTo(reader.getCurrentRowId()) > 0) { advanceReader(reader, rowId); } } } private void advanceReader(MyReader reader, Text rowId) throws IOException { while (reader.next()) { if (rowId.compareTo(reader.getCurrentRowId()) <= 0) { return; } } } private static final Comparator<MyReader> COMP = new Comparator<MyReader>() { @Override public int compare(MyReader o1, MyReader o2) { return o1.getCurrentRowId().compareTo(o2.getCurrentRowId()); } }; private void sortReaders() { Arrays.sort(_readers, COMP); } private MyReader[] openReaders() throws IOException { Collection<SegmentKey> segmentKeys = getSegmentKeys(); MyReader[] readers = new MyReader[segmentKeys.size()]; int i = 0; for (SegmentKey segmentKey : segmentKeys) { readers[i++] = openReader(segmentKey); } return readers; } private MyReader openReader(SegmentKey segmentKey) throws IOException { Path file = getCacheFilePath(segmentKey); FileSystem fileSystem = _cachePath.getFileSystem(_configuration); if (!fileSystem.exists(file)) { createCacheFile(file, segmentKey); } Reader reader = new SequenceFile.Reader(_configuration, SequenceFile.Reader.file(file)); return new MyReader(reader); } private void createCacheFile(Path file, SegmentKey segmentKey) throws IOException { LOG.info("Building cache for segment [{0}] to [{1}]", segmentKey, file); Path tmpPath = getTmpWriterPath(file.getParent()); try (Writer writer = createWriter(_configuration, tmpPath)) { DirectoryReader reader = getReader(); for (AtomicReaderContext context : reader.leaves()) { SegmentReader segmentReader = AtomicReaderUtil.getSegmentReader(context.reader()); if (segmentReader.getSegmentName().equals(segmentKey.getSegmentName())) { writeRowIds(writer, segmentReader); break; } } } commitWriter(_configuration, file, tmpPath); } public static void commitWriter(Configuration configuration, Path file, Path tmpPath) throws IOException { FileSystem fileSystem = tmpPath.getFileSystem(configuration); LOG.info("Commit tmp [{0}] to file [{1}]", tmpPath, file); if (!fileSystem.rename(tmpPath, file)) { LOG.warn("Could not commit tmp file [{0}] to file [{1}]", tmpPath, file); } } public static Path getTmpWriterPath(Path dir) { return new Path(dir, UUID.randomUUID().toString() + ".tmp"); } public static Writer createWriter(Configuration configuration, Path tmpPath) throws IOException { return SequenceFile.createWriter(configuration, SequenceFile.Writer.file(tmpPath), SequenceFile.Writer.keyClass(Text.class), SequenceFile.Writer.valueClass(NullWritable.class), SequenceFile.Writer.compression(CompressionType.BLOCK, getCodec(configuration))); } private static CompressionCodec getCodec(Configuration configuration) { if (ZlibFactory.isNativeZlibLoaded(configuration)) { return new GzipCodec(); } return new DeflateCodec(); } private void writeRowIds(Writer writer, SegmentReader segmentReader) throws IOException { Terms terms = segmentReader.terms(BlurConstants.ROW_ID); if (terms == null) { return; } TermsEnum termsEnum = terms.iterator(null); BytesRef rowId; long s = System.nanoTime(); while ((rowId = termsEnum.next()) != null) { long n = System.nanoTime(); if (n + _10_SECONDS > s) { _progressable.progress(); s = System.nanoTime(); } writer.append(new Text(rowId.utf8ToString()), NullWritable.get()); } } private IndexCommit findIndexCommit(List<IndexCommit> listCommits, long generation) throws IOException { for (IndexCommit commit : listCommits) { if (commit.getGeneration() == generation) { return commit; } } throw new IOException("Generation [" + generation + "] not found."); } static class SegmentKey { final String _segmentName; final String _id; SegmentKey(String segmentName, String id) throws IOException { _segmentName = segmentName; _id = id; } String getSegmentName() { return _segmentName; } @Override public String toString() { return _id; } } private DirectoryReader getReader() throws IOException { if (_reader == null) { _reader = DirectoryReader.open(_indexCommit); } return _reader; } private Collection<SegmentKey> getSegmentKeys() throws IOException { List<SegmentKey> keys = new ArrayList<SegmentKey>(); SegmentInfos segmentInfos = new SegmentInfos(); segmentInfos.read(_directory, _indexCommit.getSegmentsFileName()); for (SegmentInfoPerCommit segmentInfoPerCommit : segmentInfos) { String name = segmentInfoPerCommit.info.name; String id = getId(segmentInfoPerCommit.info); keys.add(new SegmentKey(name, id)); } return keys; } private String getId(SegmentInfo si) throws IOException { HdfsDirectory dir = getHdfsDirectory(si.dir); Set<String> files = new TreeSet<String>(si.files()); return getId(_configuration, dir, files); } private static String getId(Configuration configuration, HdfsDirectory dir, Set<String> files) throws IOException { long ts = 0; String file = null; for (String f : files) { if (f.endsWith(DEL)) { continue; } long fileModified = dir.getFileModified(f); if (fileModified > ts) { ts = fileModified; file = f; } } Path path = dir.getPath(); FileSystem fileSystem = path.getFileSystem(configuration); Path realFile = new Path(path, file); if (!fileSystem.exists(realFile)) { realFile = dir.getRealFilePathFromSymlink(file); if (!fileSystem.exists(realFile)) { throw new IOException("Lucene file [" + file + "] for dir [" + path + "] can not be found."); } } return getFirstBlockId(fileSystem, realFile); } public static String getIdForSingleSegmentIndex(Configuration configuration, Path indexPath) throws IOException { HdfsDirectory dir = new HdfsDirectory(configuration, indexPath); Set<String> files = new TreeSet<String>(Arrays.asList(dir.listAll())); return getId(configuration, dir, files); } private static String getFirstBlockId(FileSystem fileSystem, Path realFile) throws IOException { FileStatus fileStatus = fileSystem.getFileStatus(realFile); BlockLocation[] locations = fileSystem.getFileBlockLocations(fileStatus, 0, 1); HdfsBlockLocation location = (HdfsBlockLocation) locations[0]; LocatedBlock locatedBlock = location.getLocatedBlock(); ExtendedBlock block = locatedBlock.getBlock(); return toNiceString(block.getBlockId()); } private static String toNiceString(long blockId) { return "b" + blockId; } private static HdfsDirectory getHdfsDirectory(Directory dir) { if (dir instanceof HdfsDirectory) { return (HdfsDirectory) dir; } else if (dir instanceof DirectoryDecorator) { DirectoryDecorator dd = (DirectoryDecorator) dir; return getHdfsDirectory(dd.getOriginalDirectory()); } else { throw new RuntimeException("Unknown directory type."); } } private Path getCacheFilePath(SegmentKey segmentKey) { return new Path(_cachePath, segmentKey + ".seq"); } static class MyReader { final Reader _reader; final Text _rowId = new Text(); boolean _finished = false; public MyReader(Reader reader) { _reader = reader; } public Text getCurrentRowId() { return _rowId; } public boolean next() throws IOException { if (_finished) { return false; } if (_reader.next(_rowId)) { return true; } _finished = true; return false; } public boolean isFinished() { return _finished; } } public static Path getCachePath(Path cachePath, String table, String shardName) { return new Path(new Path(cachePath, table), shardName); } }
[ "amccurry@gmail.com" ]
amccurry@gmail.com
e9407bfbbfa1c0df8a9804bac206c3b11bafbe48
385c56d0505a0f865a37de50c9259b782e98cb14
/ten.java
46bf73288d5d90cae4904f3b510376f3fdfc658a
[]
no_license
Ankita-Harkude/199DSJava
9933d7209737f499da9f633beeb9bd05bb0ca7a9
3c2022cc56a43392887804219ebd82f5c724526d
refs/heads/main
2023-09-01T00:53:17.056839
2021-10-23T11:54:47
2021-10-23T11:54:47
null
0
0
null
null
null
null
UTF-8
Java
false
false
41
java
pswm { System.out.println("Hello All"); }
[ "ankitaharkude@gmail.com" ]
ankitaharkude@gmail.com
694dac4251e67f76b0a0af140542b1a27195d088
6eeecf939eb23853ae332408290a2db9a23e0fa5
/src/databases/MySQL.java
b3baec5a018dc3e9666b2f698c59428da735e88e
[]
no_license
superdyoll/Auction
1bc6daa70228b1498906c7649798c760cd70ec65
6d2215626e22908817f79c67f82eae2d03cd28f5
refs/heads/master
2021-03-27T20:09:15.858124
2015-05-15T14:58:49
2015-05-15T14:58:49
33,179,462
0
0
null
null
null
null
UTF-8
Java
false
false
1,217
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 databases; import java.sql.Connection; import java.sql.DriverManager; import java.sql.SQLException; import java.util.logging.Level; import java.util.logging.Logger; /** * * @author Lloyd */ public class MySQL implements Database { String url = "jdbc:mysql://lloydremotemeuk.domaincommysql.com:3306/auction"; String uname = "my_auction"; String pswrd = "yuvNKJN2"; Connection con = null; @Override public Connection getConnection() { if (con == null){ try { con = DriverManager.getConnection(url, uname, pswrd); } catch (SQLException ex) { Logger.getLogger(MySQL.class.getName()).log(Level.SEVERE, null, ex); } } return con; } @Override public void close() { if(con != null){ try { con.close(); } catch (SQLException ex) { Logger.getLogger(MySQL.class.getName()).log(Level.SEVERE, null, ex); } } } }
[ "superdyoll@gmail.com" ]
superdyoll@gmail.com
a5d3087fb37bd10c7de5f4ec3f072c707f4aa81b
b95edc31858d0e1547e71f766211f370b2ef4895
/src/main/java/com/pojogen/internal/Property.java
dbafb70179880c1b88d703aaec9758e2665ceee5
[ "Apache-2.0" ]
permissive
pojogen/pojogen
ea7dd604a07cdfbdfa7916ec2555559872e8c0fd
c4ea9c324d8dda3bc4f29294cf9195c2664086fa
refs/heads/master
2021-01-18T09:30:18.090956
2014-08-20T19:43:18
2014-08-20T19:43:18
null
0
0
null
null
null
null
UTF-8
Java
false
false
361
java
package com.pojogen.internal; import static com.google.common.base.Preconditions.checkNotNull; final class Property { private final String name; private final Type type; Property(String name, Type type) { this.name = checkNotNull(name); this.type = checkNotNull(type); } String getName() { return name; } Type getType() { return type; } }
[ "laurent.moss@gmail.com" ]
laurent.moss@gmail.com
f8c407a2a187c079cd4b1fd8d2404c45aa2520c1
3d007e3a6226277b2ab235c303fb30b78a75f708
/src/main/java/com/how2java/tmall/service/ProductService.java
56b4e56a8ae37e6eb45f163e9c0d305d05b23e79
[]
no_license
Lazyb0x/TmallSpringBoot
b3b14fcd1f9b83df6474ad272f83b05d04ccefa5
d8a2e504901f9e456869c78d656873ec21c63267
refs/heads/master
2022-07-16T16:02:00.058796
2020-03-24T09:06:26
2020-03-24T09:06:26
210,607,729
0
0
null
2022-06-21T01:56:10
2019-09-24T13:18:08
JavaScript
UTF-8
Java
false
false
3,711
java
package com.how2java.tmall.service; import com.how2java.tmall.dao.ProductDAO; import com.how2java.tmall.pojo.Category; import com.how2java.tmall.pojo.Product; import com.how2java.tmall.util.Page4Navigator; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.data.domain.Page; import org.springframework.data.domain.PageRequest; import org.springframework.data.domain.Pageable; import org.springframework.data.domain.Sort; import org.springframework.stereotype.Service; import java.util.ArrayList; import java.util.List; @Service public class ProductService { @Autowired ProductDAO productDAO; @Autowired CategoryService categoryService; @Autowired ProductImageService productImageService; @Autowired OrderItemService orderItemService; @Autowired ReviewService reviewService; public void add(Product bean){ productDAO.save(bean); } public void delete(int id){ productDAO.delete(id); } public void update(Product bean){ productDAO.save(bean); } public Product get(int id) { return productDAO.findOne(id); } public Page4Navigator<Product> list(int cid, int start, int size, int navigatePages){ Category category = categoryService.get(cid); Sort sort = new Sort(Sort.Direction.DESC, "id"); Pageable pageable = new PageRequest(start, size, sort); Page<Product> pageFromJPA = productDAO.findByCategory(category, pageable); return new Page4Navigator<>(pageFromJPA, navigatePages); } public List<Product> listByCategory(Category category){ return productDAO.findByCategoryOrderById(category); } public void fill(List<Category> categories){ for (Category category : categories){ fill(category); } } /** * 给分类填充产品 * @param category 分类 */ public void fill(Category category){ //获得所有产品这样好吗 List<Product> products = listByCategory(category); productImageService.setFirstProductImages(products); category.setProducts(products); } public void fillByRow(List<Category> categories){ int productNumberEachRow = 8; for (Category category : categories) { List<Product> products = category.getProducts(); List<List<Product>> productsByRow = new ArrayList<>(); for (int i = 0; i < products.size(); i+=productNumberEachRow) { int size = i+productNumberEachRow; size= size>products.size()?products.size():size; List<Product> productsOfEachRow =products.subList(i, size); productsByRow.add(productsOfEachRow); } category.setProductsByRow(productsByRow); } } public void setSaleAndReviewNumber(Product product){ int saleCount = orderItemService.getSaleCount(product); product.setSaleCount(saleCount); int reviewCount = reviewService.getCount(product); product.setReviewCount(reviewCount); } public void setSaleAndReviewNumber(List<Product> products){ for (Product product : products){ setSaleAndReviewNumber(product); } } public List<Product> search(String keyword, int start, int size) { Sort sort = new Sort(Sort.Direction.DESC, "id"); Pageable pageable = new PageRequest(start, size, sort); List<Product> products = productDAO.findByNameLike("%" + keyword + "%", pageable); return products; } }
[ "gym1998421@gmail.com" ]
gym1998421@gmail.com
9d347491d72b4e8e35c22a5bf4ac494efda3efeb
9c6755241eafce525184949f8c5dd11d2e6cefd1
/src/leetcode/algorithms/MaxScoreIndices.java
695b2541fd07f1754f1fa6e98eac361274ae066b
[]
no_license
Baltan/leetcode
782491c3281ad04efbe01dd0dcba2d9a71637a31
0951d7371ab93800e04429fa48ce99c51284d4c4
refs/heads/master
2023-08-17T00:47:41.880502
2023-08-16T16:04:32
2023-08-16T16:04:32
172,838,932
13
3
null
null
null
null
UTF-8
Java
false
false
2,161
java
package leetcode.algorithms; import java.util.ArrayList; import java.util.List; /** * Description: 2155. All Divisions With the Highest Score of a Binary Array * * @author Baltan * @date 2022/1/31 12:58 */ public class MaxScoreIndices { public static void main(String[] args) { System.out.println(maxScoreIndices(new int[]{0, 0, 1, 0})); System.out.println(maxScoreIndices(new int[]{0, 0, 0})); System.out.println(maxScoreIndices(new int[]{1, 1})); } public static List<Integer> maxScoreIndices(int[] nums) { List<Integer> result = new ArrayList<>(); /** * 假设当i为0的时候,即左子数组为空数组,右子数组为nums自身时,所求和为0(等于任意值x都可) */ int sum = 0; /** * 假设当i为0时就是所求和的最大值状态 */ int max = 0; /** * 从左向右逐一将nums中的每个元素从右子数组移出放进左子数组中,如果元素是0,会使得左子数组中0的个数加1,右子数组中1的个 * 数不变,从而所求和sum加1;反之如果元素是1,会使得左子数组中0的个数不变,右子数组中1的个数减1,从而所求和sum减1。通过 * 以上操作可以获得所求和为最大值时的状态 */ for (int i = 0; i < nums.length; i++) { sum += nums[i] == 0 ? 1 : -1; max = Math.max(max, sum); } /** * 重新将i初始化为0,即左子数组为空数组,右子数组为nums自身时 */ sum = 0; /** * 先判断当前初始化状态能否使所求和达到最大值 */ if (max == sum) { result.add(0); } /** * 从左向右逐一将nums中的每个元素从右子数组移出放进左子数组中,判断能否使所求和达到最大值 */ for (int i = 0; i < nums.length; i++) { sum += nums[i] == 0 ? 1 : -1; if (max == sum) { result.add(i + 1); } } return result; } }
[ "617640006@qq.com" ]
617640006@qq.com
5f30c6bb6e947dfa49d663717a390590cdd9abee
5a4e85cda26bdeb4a9a0334b34d8f8f9d6d0b76a
/src/org/dav/service/settings/ViewSettings.java
decd3d0b8069f2c0f35669906cbd41c50da0f173
[]
no_license
ADolodarenko/DAVService
cb7fe2485719f98e5dd648aa638e68c45dde0926
dabe59bea588be0bc76983d3c2d47e74769fcdda
refs/heads/master
2020-04-01T01:49:55.915494
2019-08-12T14:43:42
2019-08-12T14:43:42
152,754,309
0
0
null
null
null
null
UTF-8
Java
false
false
3,817
java
package org.dav.service.settings; import org.dav.service.settings.parameter.ParameterHeader; import org.dav.service.util.Constants; import org.dav.service.util.ResourceManager; import java.awt.*; import java.util.Locale; public class ViewSettings extends TransmissiveSettings { private static final int PARAM_COUNT = 1; private boolean mainWindowMaximized; private Point mainWindowPosition; private Dimension mainWindowSize; private Dimension mainWindowPreferredSize; public ViewSettings(ResourceManager resourceManager, Dimension mainWindowPreferredSize) throws Exception { super(resourceManager); headers = new ParameterHeader[PARAM_COUNT]; headers[0] = new ParameterHeader(Constants.KEY_PARAM_APP_LOCALE, Locale.class, resourceManager.getCurrentLocale()); this.mainWindowPreferredSize = mainWindowPreferredSize; mainWindowMaximized = false; mainWindowPosition = new Point(0, 0); mainWindowSize = new Dimension(this.mainWindowPreferredSize); init(); } @Override public void load() throws Exception { super.load(); loadMainWindowMaximized(); loadMainWindowPosition(); loadMainWindowSize(); } @Override public void save() throws Exception { SettingsManager.setStringValue(headers[0].getKeyString(), getAppLocale().toString()); SettingsManager.setStringValue(Constants.KEY_PARAM_MAIN_WIN_MAXIMIZED, String.valueOf(mainWindowMaximized)); SettingsManager.setIntValue(Constants.KEY_PARAM_MAIN_WIN_X, mainWindowPosition.x); SettingsManager.setIntValue(Constants.KEY_PARAM_MAIN_WIN_Y, mainWindowPosition.y); SettingsManager.setIntValue(Constants.KEY_PARAM_MAIN_WIN_WIDTH, mainWindowSize.width); SettingsManager.setIntValue(Constants.KEY_PARAM_MAIN_WIN_HEIGHT, mainWindowSize.height); SettingsManager.saveSettings(resourceManager.getConfig()); } private void loadMainWindowMaximized() { String maximizedString = SettingsManager.getStringValue(Constants.KEY_PARAM_MAIN_WIN_MAXIMIZED); if (Constants.MESS_TRUE.equalsIgnoreCase(maximizedString)) mainWindowMaximized = true; else mainWindowMaximized = false; } private void loadMainWindowPosition() { int x = 0; if (SettingsManager.hasValue(Constants.KEY_PARAM_MAIN_WIN_X)) x = SettingsManager.getIntValue(Constants.KEY_PARAM_MAIN_WIN_X, x); int y = 0; if (SettingsManager.hasValue(Constants.KEY_PARAM_MAIN_WIN_Y)) y = SettingsManager.getIntValue(Constants.KEY_PARAM_MAIN_WIN_Y, y); mainWindowPosition = new Point(x, y); } private void loadMainWindowSize() { int width = 0; if (SettingsManager.hasValue(Constants.KEY_PARAM_MAIN_WIN_WIDTH)) width = SettingsManager.getIntValue(Constants.KEY_PARAM_MAIN_WIN_WIDTH, width); int height = 0; if (SettingsManager.hasValue(Constants.KEY_PARAM_MAIN_WIN_HEIGHT)) height = SettingsManager.getIntValue(Constants.KEY_PARAM_MAIN_WIN_HEIGHT, height); if (width > 0 && height > 0) mainWindowSize = new Dimension(width, height); else mainWindowSize = mainWindowPreferredSize; } public Locale getAppLocale() { return ((Locale) paramMap.get(headers[0].getKeyString()).getValue()); } public boolean isMainWindowMaximized() { return mainWindowMaximized; } public Point getMainWindowPosition() { return mainWindowPosition; } public Dimension getMainWindowSize() { return mainWindowSize; } public void setMainWindowMaximized(boolean mainWindowMaximized) { this.mainWindowMaximized = mainWindowMaximized; } public void setMainWindowPosition(Point mainWindowPosition) { this.mainWindowPosition = mainWindowPosition; } public void setMainWindowSize(Dimension mainWindowSize) { this.mainWindowSize = mainWindowSize; } }
[ "adolodar@gmail.com" ]
adolodar@gmail.com
9697c15fbd0912f8f38c08b604588f67bc6d19be
478f8dd3b62a73f4e966f9d4c2c34a6dbeed2ee7
/src/main/java/com/ideabook/util/TestGenerator.java
d05a643fb5358a72229ef8b70e48d2800e80b928
[]
no_license
lizhihao1993/spring-boot-mybatis-log-exception-swagger2
091425b85b5ad2adc7ce0d68a918dac46d77540e
48c1b2d0b729c608001fee3e0a932ef9f2de01b8
refs/heads/master
2021-06-23T04:29:21.589576
2017-08-14T08:48:41
2017-08-14T08:48:41
100,246,846
0
0
null
null
null
null
UTF-8
Java
false
false
1,789
java
package com.ideabook.util; import org.mybatis.generator.api.MyBatisGenerator; import org.mybatis.generator.config.Configuration; import org.mybatis.generator.config.xml.ConfigurationParser; import org.mybatis.generator.exception.InvalidConfigurationException; import org.mybatis.generator.exception.XMLParserException; import org.mybatis.generator.internal.DefaultShellCallback; import java.io.File; import java.io.IOException; import java.sql.SQLException; import java.util.ArrayList; import java.util.List; /** * 根据数据库的表 生成相关的代码,不要重复生成文件!!!! * 如果重复生成,会造成 Mapper.xml文件内容重复,从而报错。 */ public class TestGenerator { public static void main(String[] args) { List<String> warnings = new ArrayList<String>(); boolean overwrite = true; String genCfg = "/GeneratorConfiguration.xml"; File configFile = new File(TestGenerator.class.getResource(genCfg).getFile()); ConfigurationParser cp = new ConfigurationParser(warnings); Configuration config = null; try { config = cp.parseConfiguration(configFile); } catch (IOException e) { e.printStackTrace(); } catch (XMLParserException e) { e.printStackTrace(); } DefaultShellCallback callback = new DefaultShellCallback(overwrite); MyBatisGenerator myBatisGenerator = null; try { myBatisGenerator = new MyBatisGenerator(config, callback, warnings); System.out.println("yes.."); } catch (InvalidConfigurationException e) { e.printStackTrace(); System.out.println("o ....no..."); } try { myBatisGenerator.generate(null); } catch (SQLException e) { e.printStackTrace(); } catch (IOException e) { e.printStackTrace(); } catch (InterruptedException e) { e.printStackTrace(); } } }
[ "839008347@qq.com" ]
839008347@qq.com
75fc3011fa6820654cf2f7758c7017b9d13046a4
4a94247f4e4e862289a621596a0ad172ae018e2f
/src/main/java/com/tpo/bankjob/conf/GlobalProperties.java
54fba3a5e68aa515ede1b9f17ed4128c03b03048
[]
no_license
gaxelac0/bankjob
3e0f4cc34bc534d1c7e68cad08af2ea11b831e82
9d4b6c8553b5831ac7fcaf9d27950bba28693607
refs/heads/master
2023-09-02T06:40:18.337919
2021-11-18T13:17:29
2021-11-18T13:17:29
null
0
0
null
null
null
null
UTF-8
Java
false
false
277
java
package com.tpo.bankjob.conf; //@Configuration //@PropertySource("classpath:global.properties") public class GlobalProperties { // @Value("${dias}") private int dias; public int getDias() { return dias; } public void setDias(int dias) { this.dias = dias; } }
[ "glacuesta@secureauth.com" ]
glacuesta@secureauth.com
9240bd8a6f039044f3b64a5900eb21b3404c9526
26bc276f868e7042fb91b7b20fd02810abfbb056
/src/main/java/edu/nefu/myblog/config/ErrorPageConfig.java
12486c2667e610e06bf032f11b444425f222e0a3
[]
no_license
wenbinai/my-blog
8790cb3c106166540f06d0bf174091b9b6bb40dc
bd17ef8e1c8e9394f6e8967c0c7714b69c111e49
refs/heads/master
2023-01-31T13:49:20.790621
2020-12-13T14:02:25
2020-12-13T14:02:25
315,952,316
1
0
null
null
null
null
UTF-8
Java
false
false
558
java
package edu.nefu.myblog.config; import org.springframework.boot.web.server.ErrorPage; import org.springframework.boot.web.server.ErrorPageRegistrar; import org.springframework.boot.web.server.ErrorPageRegistry; import org.springframework.context.annotation.Configuration; import org.springframework.http.HttpStatus; @Configuration public class ErrorPageConfig implements ErrorPageRegistrar { @Override public void registerErrorPages(ErrorPageRegistry registry) { registry.addErrorPages(new ErrorPage(HttpStatus.FORBIDDEN, "/403")); } }
[ "208176146@qq.com" ]
208176146@qq.com
5d9765ddc6ed8990bfe201ffaa29b19d11fa3516
a41cf0c0c1c9d3b338b791fdd6dcc389cb1f58a8
/week-04/projects/src/FuckingTrump.java
0f3e2bd923000c0e2777312e8a29080cca0e00b9
[]
no_license
greenfox-zerda-raptors/regnisalram
019db74ec2adf7122773cb3c17c666c941cf3081
49379da526438b9aa12fdb4b3d3cbd6142087f6b
refs/heads/master
2021-01-11T05:46:05.800423
2017-01-13T09:21:34
2017-01-13T09:21:34
71,349,302
0
0
null
null
null
null
UTF-8
Java
false
false
1,656
java
import java.util.*; import java.io.*; /** * Created by regnisalram on 11/11/16. */ public class FuckingTrump { public static void main(String[] args) { Scanner input = new Scanner(System.in); System.out.println("Did you vote for Trump? y/n"); System.out.println(vote(input.nextLine())); System.out.println(); System.out.println("Also, here is a random thing that he promised to do:\n" + scared()); System.out.println(); System.out.println("facts are from mashable.com (http://mashable.com/2016/11/10/donald-trump-campaign-promises/#h_sjIOHVimqP)"); } public static String vote(String answer) { String message; if (answer.equals("y")) { message = "What the fuck did you just do?"; } else if (answer.equals("n")) { message = "What the fuck are we gonna do?"; } else { message = "Well, if you can't decide, that's already scary."; } return message; } public static String scared() { List<String> lines = new ArrayList<String>(); File promiseList = new File("/Users/regnisalram/greenfox/regnisalram/week-04/projects/promises.txt"); try { BufferedReader reader = new BufferedReader(new FileReader(promiseList)); String line = reader.readLine(); while (line != null) { lines.add(line); line = reader.readLine(); } } catch (Exception e) { } Random r = new Random(); String randomLine = lines.get(r.nextInt(lines.size())); return randomLine; } }
[ "reka.bence@gmail.com" ]
reka.bence@gmail.com
82ca76893b50ef7fee7e6494113cfe17e7097ce8
877172b6b88ee9ccb8f284dad3919b24ce81926f
/basicSample/src/main/java/com/urban/basicsample/core/OpEnroll.java
5ed82c012dd8941487552f07778926c9cfc147ba
[]
no_license
AndrewBlinets/poseschalka_BSUIR
0d82fb8dae095349732e3d3be79c784ccebeee33
9db504f420bb8608ec82b964fdf9b36db2ed2af7
refs/heads/master
2021-01-12T08:10:19.449462
2017-02-10T07:42:14
2017-02-10T07:42:21
76,492,422
2
0
null
null
null
null
UTF-8
Java
false
false
9,915
java
package com.urban.basicsample.core; import com.digitalpersona.android.ptapi.PtConnectionI; import com.digitalpersona.android.ptapi.PtConstants; import com.digitalpersona.android.ptapi.PtException; import com.digitalpersona.android.ptapi.callback.PtGuiStateCallback; import com.digitalpersona.android.ptapi.resultarg.PtBirArg; import com.digitalpersona.android.ptapi.struct.PtBir; import com.digitalpersona.android.ptapi.struct.PtFingerListItem; import com.digitalpersona.android.ptapi.struct.PtGuiSampleImage; import com.digitalpersona.android.ptapi.struct.PtInputBir; import com.digitalpersona.android.ptapi.struct.PtSessionCfgV5; public abstract class OpEnroll extends Thread { private static short SESSION_CFG_VERSION = 5; private PtConnectionI mConn; private int mFingerId; public OpEnroll(PtConnectionI conn, int fingerId) { super("EnrollmentThread" + fingerId); mConn = conn; mFingerId = fingerId; } /** * Enrollment execution code. */ @SuppressWarnings("unused") @Override public void run() { try { // Optional: Set session configuration to enroll 3-5 swipes instead of 5-10 modifyEnrollmentType(); // Obtain finger template PtInputBir template = enroll(); // Test, if finger already isn't enrolled in device. // If yes and template corresponds to finger ID, remove it. Otherwise report an error. /*if(testAndClean()) { // Store enrolled template and finger ID to device addFinger(template); }*/ //This code show how to convert templates, it makes 2 conversions (to ISO template and back) //and verifies that the result match with the original template //Note: PtConvertTemplateEx is supported only by TCD50 V3 (TCD50 with area sensor) and TCD51 if(false) { //Convert just enrolled template to ISO template byte [] mIsoRawTemplate = mConn.convertTemplateEx(PtConstants.PT_TEMPLATE_TYPE_AUTO,PtConstants.PT_TEMPLATE_ENVELOPE_NONE, template.bir.data,PtConstants.PT_TEMPLATE_TYPE_ISO_FMR,PtConstants.PT_TEMPLATE_ENVELOPE_NONE,null,0); //Convert ISO template back to alpha template, get raw template (without header) byte [] aAlphaRawTemplate = mConn.convertTemplateEx(PtConstants.PT_TEMPLATE_TYPE_ISO_FMR,PtConstants.PT_TEMPLATE_ENVELOPE_NONE, mIsoRawTemplate,PtConstants.PT_TEMPLATE_TYPE_ALPHA,PtConstants.PT_TEMPLATE_ENVELOPE_NONE,null,0); //Create template with header PtBir aAlphaBir = new PtBir(); aAlphaBir.factorsMask = template.bir.factorsMask; aAlphaBir.formatID= template.bir.formatID; aAlphaBir.formatOwner= template.bir.formatOwner; aAlphaBir.headerVersion= template.bir.headerVersion; aAlphaBir.purpose= template.bir.purpose; aAlphaBir.quality= template.bir.quality; aAlphaBir.type= template.bir.type; //add raw alpha template data to this header, round up size to 4 and add empty payload (another 4 zero bytes) aAlphaBir.data = new byte[4+((aAlphaRawTemplate.length + 3) & ~3)]; //copy raw template for(int i=0;i<aAlphaRawTemplate.length;i++) { aAlphaBir.data[i] = aAlphaRawTemplate[i]; } //fill additional zero bytes for(int i=aAlphaRawTemplate.length;i<aAlphaBir.data.length;i++) { aAlphaBir.data[i] = 0; } //Convert PtBir to PtInputBir PtInputBir aAlphaInputBir = MakeInputBirFromBir(aAlphaBir); //Match the resulting template against the old template from PtEnroll, should match if(mConn.verify(0,0,false,aAlphaInputBir,null,null,null,null,PtConstants.PT_BIO_INFINITE_TIMEOUT,false,null,null,null)) { onDisplayMessage("Match"); } else { onDisplayMessage("No match!"); } } } catch (PtException e) { // Errors reported in nested methods if(e.getCode() == PtException.PT_STATUS_OPERATION_CANCELED) { } } onFinished(); } /** * Modify enrollment to 3-5 swipes. */ private void modifyEnrollmentType() throws PtException { try { PtSessionCfgV5 sessionCfg = (PtSessionCfgV5) mConn.getSessionCfgEx(SESSION_CFG_VERSION); sessionCfg.enrollMinTemplates = (byte) 3; sessionCfg.enrollMaxTemplates = (byte) 5; mConn.setSessionCfgEx(SESSION_CFG_VERSION, sessionCfg); } catch (PtException e) { onDisplayMessage("Unable to set session cfg - " + e.getMessage()); throw e; } } /** * Simple conversion PtBir to PtInputBir */ private static PtInputBir MakeInputBirFromBir(PtBir aBir) { PtInputBir aInputBir = new PtInputBir(); aInputBir.form = PtConstants.PT_FULLBIR_INPUT; aInputBir.bir = aBir; return aInputBir; } /** * Obtain finger template. */ private PtInputBir enroll() throws PtException { PtGuiStateCallback guiCallback = new PtGuiStateCallback() { public byte guiStateCallbackInvoke(int guiState, int message, byte progress, PtGuiSampleImage sampleBuffer, byte[] data) throws PtException { String s = PtHelper.GetGuiStateCallbackMessage(guiState,message,progress); if(s != null) { onDisplayMessage(s); } return isInterrupted() ? PtConstants.PT_CANCEL : PtConstants.PT_CONTINUE; } }; PtBirArg newTemplate = new PtBirArg(); try { // Register notification callback of operation state // Valid for entire PTAPI session lifetime mConn.setGUICallbacks(null, guiCallback); // Enroll finger, don't store template directly to device but return it to host // to allow verification, if finger isn't already enrolled mConn.enroll(PtConstants.PT_PURPOSE_ENROLL, null, newTemplate, null, null, PtConstants.PT_BIO_INFINITE_TIMEOUT, null, null, null); } catch (PtException e) { onDisplayMessage("Enrollment failed - " + e.getMessage()); throw e; } // Convert obtained BIR to INPUT BIR class return MakeInputBirFromBir(newTemplate.value); } /** Test, if finger already isn't enrolled in device. * If yes and template corresponds to finger ID, remove it. Otherwise report an error. * @return True, if finger can be stored. */ private boolean testAndClean() { try { // List fingers stored in device PtFingerListItem[] fingerList = mConn.listAllFingers(); if(fingerList != null) { for(int i=0; i<fingerList.length; i++) { PtFingerListItem item = fingerList[i]; byte[] fingerData = item.fingerData; if((fingerData != null) && (fingerData.length >= 1)) { int fingerId = item.fingerData[0]; if(fingerId == mFingerId) { // Delete finger from device mConn.deleteFinger(item.slotNr); } else { PtInputBir comparedBir = new PtInputBir(); comparedBir.form = PtConstants.PT_SLOT_INPUT; comparedBir.slotNr = item.slotNr; // Verify, if template doesn't match the enrolled one (last good template) if(mConn.verifyMatch(null, null, null, null, comparedBir, null, null, null, null) == true) { onDisplayMessage("Finger already enrolled as " + FingerId.NAMES[fingerId]); return false; } } } } } } catch (PtException e) { onDisplayMessage("testAndClean failed - " + e.getMessage()); return false; } return true; } /** * Store enrolled template and finger ID to device * @param template InputBir. */ private void addFinger(PtInputBir template) { try { //store template int slot = mConn.storeFinger(template); //store fingerId byte[] fingerData = new byte[1]; fingerData[0] = (byte) mFingerId; mConn.setFingerData(slot, fingerData); } catch (PtException e) { onDisplayMessage("addFinger failed - " + e.getMessage()); } } /** * Display message. To be overridden by sample activity. * @param message Message text. */ abstract protected void onDisplayMessage(String message); /** * Called, if operation is finished. * @param message Message text. */ abstract protected void onFinished(); }
[ "Yahor_Urbam@epam.com" ]
Yahor_Urbam@epam.com
a79dbb371abc282f68059f99a9a1ad426cf8cc70
ab71e6f0b5f9bf20ab7f9e1a1356a7fc0c4e3b24
/Java_tut/Hooman.java
fcb86d3b268a028dd5a95d441f0ac2f8a103c233
[]
no_license
Securiteru/RoadToJava-Done
bfa97cf8cd3b253d54964b65d4d28dba8aabd7ee
c529492de66f281827a20a32ef668d0cd4fcd0bf
refs/heads/master
2020-03-22T12:09:05.758336
2018-08-21T18:09:05
2018-08-21T18:09:05
140,020,378
0
0
null
null
null
null
UTF-8
Java
false
false
299
java
package Java_tut; public class Hooman implements info { private String name; public Hooman(String name) { super(); this.name = name; } public void greet() { System.out.println("Hellloooo"); } @Override public void showInfo() { System.out.println("Person name is " + name); } }
[ "securiteradmin@gmail.com" ]
securiteradmin@gmail.com
e3ee8aa395a6ca18605b041900096dc4be97eed2
295850531e3e3cda905df084ba7cd0b04d7b3331
/demos/flamingo-demo/src/main/java/org/pushingpixels/demo/flamingo/svg/filetypes/transcoded/ext_pub.java
a43e6e1ce2ac6a21fccd240e0a0576e577d63744
[ "BSD-3-Clause" ]
permissive
fangyuzhong2016/radiance
4a2103866b30cba779213e5ec8a12dafd7e6d475
9460f6577499da97625f23b286073b5ad968ad6a
refs/heads/sunshine
2023-05-11T18:01:14.871021
2021-06-05T02:54:29
2021-06-05T02:54:29
194,482,878
0
0
BSD-3-Clause
2021-04-11T03:35:53
2019-06-30T06:25:05
Java
UTF-8
Java
false
false
20,985
java
package org.pushingpixels.demo.flamingo.svg.filetypes.transcoded; import java.awt.*; import java.awt.geom.*; import java.awt.image.BufferedImage; import java.io.*; import java.lang.ref.WeakReference; import java.util.Base64; import java.util.Stack; import javax.imageio.ImageIO; import javax.swing.SwingUtilities; import javax.swing.plaf.UIResource; import org.pushingpixels.neon.api.icon.ResizableIcon; import org.pushingpixels.neon.api.icon.ResizableIconUIResource; /** * This class has been automatically generated using <a * href="https://github.com/kirill-grouchnikov/radiance">Photon SVG transcoder</a>. */ public class ext_pub implements ResizableIcon { private Shape shape = null; private GeneralPath generalPath = null; private Paint paint = null; private Stroke stroke = null; private Shape clip = null; private Stack<AffineTransform> transformsStack = new Stack<>(); private void _paint0(Graphics2D g,float origAlpha) { transformsStack.push(g.getTransform()); // g.setComposite(AlphaComposite.getInstance(3, 1.0f * origAlpha)); transformsStack.push(g.getTransform()); g.transform(new AffineTransform(0.009999999776482582f, 0.0f, 0.0f, 0.009999999776482582f, 0.13999999687075615f, -0.0f)); // _0 g.setComposite(AlphaComposite.getInstance(3, 1.0f * origAlpha)); transformsStack.push(g.getTransform()); g.transform(new AffineTransform(1.0f, 0.0f, 0.0f, 1.0f, 0.0f, 0.0f)); // _0_0 if (generalPath == null) { generalPath = new GeneralPath(); } else { generalPath.reset(); } generalPath.moveTo(45.2f, 1.0f); generalPath.lineTo(72.1f, 27.7f); generalPath.lineTo(72.1f, 99.0f); generalPath.lineTo(0.3f, 99.0f); generalPath.lineTo(0.3f, 1.0f); generalPath.lineTo(45.2f, 1.0f); generalPath.closePath(); shape = generalPath; paint = new LinearGradientPaint(new Point2D.Double(36.20000076293945, 3.005000114440918), new Point2D.Double(36.20000076293945, 101.0), new float[] {0.0f,0.124f,0.262f,0.41f,0.571f,0.752f,1.0f}, new Color[] {new Color(0, 107, 105, 255),new Color(0, 128, 127, 255),new Color(0, 147, 147, 255),new Color(0, 163, 163, 255),new Color(0, 176, 175, 255),new Color(8, 184, 183, 255),new Color(20, 187, 187, 255)}, MultipleGradientPaint.CycleMethod.NO_CYCLE, MultipleGradientPaint.ColorSpaceType.SRGB, new AffineTransform(1.0f, 0.0f, 0.0f, -1.0f, 0.0f, 102.0f)); g.setPaint(paint); g.fill(shape); g.setTransform(transformsStack.pop()); g.setComposite(AlphaComposite.getInstance(3, 1.0f * origAlpha)); transformsStack.push(g.getTransform()); g.transform(new AffineTransform(1.0f, 0.0f, 0.0f, 1.0f, 0.0f, 0.0f)); // _0_1 if (generalPath == null) { generalPath = new GeneralPath(); } else { generalPath.reset(); } generalPath.moveTo(45.2f, 1.0f); generalPath.lineTo(72.1f, 27.7f); generalPath.lineTo(72.1f, 99.0f); generalPath.lineTo(0.3f, 99.0f); generalPath.lineTo(0.3f, 1.0f); generalPath.lineTo(45.2f, 1.0f); generalPath.closePath(); shape = generalPath; paint = new LinearGradientPaint(new Point2D.Double(0.32499998807907104, 49.99700164794922), new Point2D.Double(72.07499694824219, 49.99700164794922), new float[] {0.005f,0.343f,1.0f}, new Color[] {new Color(7, 114, 101, 0),new Color(0, 106, 105, 0),new Color(0, 56, 54, 0)}, MultipleGradientPaint.CycleMethod.NO_CYCLE, MultipleGradientPaint.ColorSpaceType.SRGB, new AffineTransform(1.0f, 0.0f, 0.0f, 1.0f, 0.0f, 0.0f)); g.setPaint(paint); g.fill(shape); paint = new Color(0, 110, 108, 255); stroke = new BasicStroke(2.0f,0,0,4.0f,null,0.0f); if (generalPath == null) { generalPath = new GeneralPath(); } else { generalPath.reset(); } generalPath.moveTo(45.2f, 1.0f); generalPath.lineTo(72.1f, 27.7f); generalPath.lineTo(72.1f, 99.0f); generalPath.lineTo(0.3f, 99.0f); generalPath.lineTo(0.3f, 1.0f); generalPath.lineTo(45.2f, 1.0f); generalPath.closePath(); shape = generalPath; g.setPaint(paint); g.setStroke(stroke); g.draw(shape); g.setTransform(transformsStack.pop()); g.setComposite(AlphaComposite.getInstance(3, 1.0f * origAlpha)); transformsStack.push(g.getTransform()); g.transform(new AffineTransform(1.0f, 0.0f, 0.0f, 1.0f, 0.0f, 0.0f)); // _0_2 if (generalPath == null) { generalPath = new GeneralPath(); } else { generalPath.reset(); } generalPath.moveTo(8.8f, 91.1f); generalPath.lineTo(8.8f, 71.2f); generalPath.lineTo(15.3f, 71.2f); generalPath.curveTo(17.8f, 71.2f, 19.4f, 71.299995f, 20.1f, 71.5f); generalPath.curveTo(21.2f, 71.8f, 22.2f, 72.4f, 23.0f, 73.4f); generalPath.curveTo(23.8f, 74.4f, 24.2f, 75.700005f, 24.2f, 77.3f); generalPath.curveTo(24.2f, 78.5f, 24.0f, 79.5f, 23.5f, 80.4f); generalPath.curveTo(23.1f, 81.200005f, 22.5f, 81.9f, 21.8f, 82.4f); generalPath.curveTo(21.099998f, 82.9f, 20.4f, 83.200005f, 19.699999f, 83.3f); generalPath.curveTo(18.699999f, 83.5f, 17.3f, 83.600006f, 15.499999f, 83.600006f); generalPath.lineTo(12.9f, 83.600006f); generalPath.lineTo(12.9f, 91.100006f); generalPath.lineTo(8.8f, 91.100006f); generalPath.closePath(); generalPath.moveTo(12.8f, 74.6f); generalPath.lineTo(12.8f, 80.2f); generalPath.lineTo(15.0f, 80.2f); generalPath.curveTo(16.6f, 80.2f, 17.7f, 80.1f, 18.2f, 79.899994f); generalPath.curveTo(18.7f, 79.7f, 19.2f, 79.399994f, 19.5f, 78.899994f); generalPath.curveTo(19.8f, 78.49999f, 20.0f, 77.899994f, 20.0f, 77.399994f); generalPath.curveTo(20.0f, 76.7f, 19.8f, 76.09999f, 19.4f, 75.59999f); generalPath.curveTo(19.0f, 75.09999f, 18.4f, 74.79999f, 17.8f, 74.69999f); generalPath.curveTo(17.3f, 74.59999f, 16.4f, 74.59999f, 14.9f, 74.59999f); generalPath.lineTo(12.799999f, 74.59999f); generalPath.closePath(); generalPath.moveTo(27.400002f, 71.2f); generalPath.lineTo(31.400002f, 71.2f); generalPath.lineTo(31.400002f, 82.0f); generalPath.curveTo(31.400002f, 83.7f, 31.400002f, 84.8f, 31.500002f, 85.3f); generalPath.curveTo(31.700003f, 86.100006f, 32.100002f, 86.8f, 32.7f, 87.3f); generalPath.curveTo(33.3f, 87.8f, 34.2f, 88.0f, 35.4f, 88.0f); generalPath.curveTo(36.5f, 88.0f, 37.4f, 87.8f, 38.0f, 87.3f); generalPath.curveTo(38.6f, 86.8f, 38.9f, 86.3f, 39.0f, 85.600006f); generalPath.curveTo(39.1f, 84.90001f, 39.2f, 83.8f, 39.2f, 82.200005f); generalPath.lineTo(39.2f, 71.200005f); generalPath.lineTo(43.2f, 71.200005f); generalPath.lineTo(43.2f, 81.600006f); generalPath.curveTo(43.2f, 84.00001f, 43.100002f, 85.700005f, 42.9f, 86.600006f); generalPath.curveTo(42.7f, 87.600006f, 42.300003f, 88.40001f, 41.7f, 89.100006f); generalPath.curveTo(41.1f, 89.8f, 40.3f, 90.3f, 39.3f, 90.700005f); generalPath.curveTo(38.3f, 91.100006f, 37.0f, 91.3f, 35.5f, 91.3f); generalPath.curveTo(33.6f, 91.3f, 32.1f, 91.100006f, 31.2f, 90.600006f); generalPath.curveTo(30.300003f, 90.100006f, 29.400002f, 89.600006f, 28.900002f, 88.90001f); generalPath.curveTo(28.400002f, 88.20001f, 28.000002f, 87.50001f, 27.800001f, 86.70001f); generalPath.curveTo(27.500002f, 85.60001f, 27.400002f, 83.90001f, 27.400002f, 81.70001f); generalPath.lineTo(27.400002f, 71.2f); generalPath.closePath(); generalPath.moveTo(47.5f, 71.2f); generalPath.lineTo(55.5f, 71.2f); generalPath.curveTo(57.1f, 71.2f, 58.3f, 71.299995f, 59.0f, 71.399994f); generalPath.curveTo(59.8f, 71.49999f, 60.5f, 71.799995f, 61.1f, 72.2f); generalPath.curveTo(61.699997f, 72.6f, 62.199997f, 73.2f, 62.6f, 73.899994f); generalPath.curveTo(63.0f, 74.59999f, 63.199997f, 75.399994f, 63.199997f, 76.2f); generalPath.curveTo(63.199997f, 77.1f, 62.899998f, 78.0f, 62.399998f, 78.799995f); generalPath.curveTo(61.899998f, 79.59999f, 61.199997f, 80.2f, 60.399998f, 80.49999f); generalPath.curveTo(61.6f, 80.899994f, 62.6f, 81.49999f, 63.199997f, 82.299995f); generalPath.curveTo(63.899998f, 83.1f, 64.2f, 84.1f, 64.2f, 85.299995f); generalPath.curveTo(64.2f, 86.2f, 63.999996f, 87.1f, 63.6f, 87.899994f); generalPath.curveTo(63.199997f, 88.799995f, 62.6f, 89.399994f, 61.899998f, 89.899994f); generalPath.curveTo(61.199997f, 90.399994f, 60.3f, 90.7f, 59.199997f, 90.799995f); generalPath.curveTo(58.499996f, 90.899994f, 56.899998f, 90.899994f, 54.299995f, 90.899994f); generalPath.lineTo(47.499996f, 90.899994f); generalPath.lineTo(47.499996f, 71.2f); generalPath.closePath(); generalPath.moveTo(51.6f, 74.5f); generalPath.lineTo(51.6f, 79.1f); generalPath.lineTo(54.199997f, 79.1f); generalPath.curveTo(55.799995f, 79.1f, 56.699997f, 79.1f, 57.1f, 79.0f); generalPath.curveTo(57.8f, 78.9f, 58.3f, 78.7f, 58.699997f, 78.3f); generalPath.curveTo(59.1f, 77.9f, 59.299995f, 77.4f, 59.299995f, 76.8f); generalPath.curveTo(59.299995f, 76.200005f, 59.099995f, 75.700005f, 58.799995f, 75.3f); generalPath.curveTo(58.499996f, 74.9f, 57.999996f, 74.700005f, 57.299995f, 74.600006f); generalPath.curveTo(56.899994f, 74.600006f, 55.799995f, 74.50001f, 53.899994f, 74.50001f); generalPath.lineTo(51.599995f, 74.50001f); generalPath.closePath(); generalPath.moveTo(51.6f, 82.4f); generalPath.lineTo(51.6f, 87.700005f); generalPath.lineTo(55.3f, 87.700005f); generalPath.curveTo(56.8f, 87.700005f, 57.7f, 87.700005f, 58.1f, 87.600006f); generalPath.curveTo(58.699997f, 87.50001f, 59.199997f, 87.200005f, 59.6f, 86.8f); generalPath.curveTo(60.0f, 86.4f, 60.199997f, 85.8f, 60.199997f, 85.100006f); generalPath.curveTo(60.199997f, 84.50001f, 60.1f, 84.00001f, 59.799995f, 83.600006f); generalPath.curveTo(59.499996f, 83.200005f, 59.099995f, 82.90001f, 58.499996f, 82.700005f); generalPath.curveTo(57.999996f, 82.50001f, 56.799995f, 82.4f, 54.899998f, 82.4f); generalPath.lineTo(51.6f, 82.4f); generalPath.closePath(); shape = generalPath; paint = new Color(255, 255, 255, 255); g.setPaint(paint); g.fill(shape); g.setTransform(transformsStack.pop()); g.setComposite(AlphaComposite.getInstance(3, 1.0f * origAlpha)); transformsStack.push(g.getTransform()); g.transform(new AffineTransform(1.0f, 0.0f, 0.0f, 1.0f, 0.0f, 0.0f)); // _0_3 if (generalPath == null) { generalPath = new GeneralPath(); } else { generalPath.reset(); } generalPath.moveTo(31.1f, 36.2f); generalPath.curveTo(31.1f, 33.0f, 29.5f, 31.400002f, 27.1f, 31.400002f); generalPath.curveTo(26.1f, 31.400002f, 25.4f, 31.500002f, 25.0f, 31.7f); generalPath.lineTo(25.0f, 41.2f); generalPath.curveTo(25.5f, 41.4f, 26.1f, 41.5f, 26.8f, 41.5f); generalPath.curveTo(29.5f, 41.4f, 31.099998f, 39.6f, 31.099998f, 36.2f); generalPath.closePath(); shape = generalPath; paint = new LinearGradientPaint(new Point2D.Double(28.031999588012695, 41.41299819946289), new Point2D.Double(28.031999588012695, 31.378000259399414), new float[] {0.005f,0.343f,1.0f}, new Color[] {new Color(0, 130, 129, 255),new Color(0, 106, 105, 255),new Color(0, 56, 54, 255)}, MultipleGradientPaint.CycleMethod.NO_CYCLE, MultipleGradientPaint.ColorSpaceType.SRGB, new AffineTransform(1.0f, 0.0f, 0.0f, 1.0f, 0.0f, 0.0f)); g.setPaint(paint); g.fill(shape); g.setTransform(transformsStack.pop()); g.setComposite(AlphaComposite.getInstance(3, 1.0f * origAlpha)); transformsStack.push(g.getTransform()); g.transform(new AffineTransform(1.0f, 0.0f, 0.0f, 1.0f, 0.0f, 0.0f)); // _0_4 if (generalPath == null) { generalPath = new GeneralPath(); } else { generalPath.reset(); } generalPath.moveTo(15.0f, 55.3f); generalPath.lineTo(41.1f, 62.0f); generalPath.lineTo(41.1f, 19.3f); generalPath.lineTo(15.0f, 26.0f); generalPath.lineTo(15.0f, 55.3f); generalPath.closePath(); generalPath.moveTo(22.8f, 29.3f); generalPath.curveTo(23.9f, 29.0f, 25.3f, 28.8f, 27.0f, 28.8f); generalPath.curveTo(29.2f, 28.8f, 30.8f, 29.5f, 31.8f, 30.8f); generalPath.curveTo(32.7f, 32.0f, 33.3f, 33.7f, 33.3f, 35.899998f); generalPath.curveTo(33.3f, 38.1f, 32.8f, 39.899998f, 32.0f, 41.1f); generalPath.curveTo(30.8f, 42.899998f, 28.9f, 43.8f, 26.8f, 43.8f); generalPath.curveTo(26.099998f, 43.8f, 25.5f, 43.8f, 25.0f, 43.6f); generalPath.lineTo(25.0f, 53.399998f); generalPath.lineTo(22.8f, 53.399998f); generalPath.lineTo(22.8f, 29.3f); generalPath.closePath(); shape = generalPath; paint = new LinearGradientPaint(new Point2D.Double(28.030000686645508, 62.0), new Point2D.Double(28.030000686645508, 19.29199981689453), new float[] {0.005f,0.343f,1.0f}, new Color[] {new Color(0, 130, 129, 255),new Color(0, 106, 105, 255),new Color(0, 56, 54, 255)}, MultipleGradientPaint.CycleMethod.NO_CYCLE, MultipleGradientPaint.ColorSpaceType.SRGB, new AffineTransform(1.0f, 0.0f, 0.0f, 1.0f, 0.0f, 0.0f)); g.setPaint(paint); g.fill(shape); g.setTransform(transformsStack.pop()); g.setComposite(AlphaComposite.getInstance(3, 1.0f * origAlpha)); transformsStack.push(g.getTransform()); g.transform(new AffineTransform(1.0f, 0.0f, 0.0f, 1.0f, 0.0f, 0.0f)); // _0_5 if (generalPath == null) { generalPath = new GeneralPath(); } else { generalPath.reset(); } generalPath.moveTo(43.3f, 24.7f); generalPath.lineTo(43.3f, 27.300001f); generalPath.lineTo(52.1f, 27.300001f); generalPath.lineTo(52.1f, 34.600002f); generalPath.lineTo(43.3f, 34.600002f); generalPath.lineTo(43.3f, 37.4f); generalPath.lineTo(52.1f, 37.4f); generalPath.lineTo(52.1f, 40.600002f); generalPath.lineTo(43.3f, 40.600002f); generalPath.lineTo(43.3f, 43.2f); generalPath.lineTo(52.1f, 43.2f); generalPath.lineTo(52.1f, 46.5f); generalPath.lineTo(43.3f, 46.5f); generalPath.lineTo(43.3f, 49.4f); generalPath.lineTo(52.1f, 49.4f); generalPath.lineTo(52.1f, 52.7f); generalPath.lineTo(43.3f, 52.7f); generalPath.lineTo(43.3f, 58.2f); generalPath.lineTo(58.199997f, 58.2f); generalPath.lineTo(58.199997f, 24.7f); generalPath.closePath(); shape = generalPath; paint = new LinearGradientPaint(new Point2D.Double(50.73899841308594, 58.152000427246094), new Point2D.Double(50.73899841308594, 24.680999755859375), new float[] {0.005f,0.343f,1.0f}, new Color[] {new Color(0, 130, 129, 255),new Color(0, 106, 105, 255),new Color(0, 56, 54, 255)}, MultipleGradientPaint.CycleMethod.NO_CYCLE, MultipleGradientPaint.ColorSpaceType.SRGB, new AffineTransform(1.0f, 0.0f, 0.0f, 1.0f, 0.0f, 0.0f)); g.setPaint(paint); g.fill(shape); g.setTransform(transformsStack.pop()); g.setComposite(AlphaComposite.getInstance(3, 0.99f * origAlpha)); transformsStack.push(g.getTransform()); g.transform(new AffineTransform(1.0f, 0.0f, 0.0f, 1.0f, 0.0f, 0.0f)); // _0_6 g.setComposite(AlphaComposite.getInstance(3, 1.0f * origAlpha)); transformsStack.push(g.getTransform()); g.transform(new AffineTransform(1.0f, 0.0f, 0.0f, 1.0f, 0.0f, 0.0f)); // _0_6_0 if (generalPath == null) { generalPath = new GeneralPath(); } else { generalPath.reset(); } generalPath.moveTo(45.2f, 1.0f); generalPath.lineTo(72.1f, 27.7f); generalPath.lineTo(45.2f, 27.7f); generalPath.lineTo(45.2f, 1.0f); generalPath.closePath(); shape = generalPath; paint = new LinearGradientPaint(new Point2D.Double(45.2140007019043, 74.22899627685547), new Point2D.Double(58.66699981689453, 87.68199920654297), new float[] {0.0f,0.297f,0.44f,0.551f,0.645f,0.729f,0.804f,0.874f,0.938f,0.998f,1.0f}, new Color[] {new Color(214, 237, 232, 255),new Color(211, 235, 230, 255),new Color(199, 227, 223, 255),new Color(183, 216, 213, 255),new Color(160, 203, 201, 255),new Color(132, 186, 185, 255),new Color(98, 167, 167, 255),new Color(52, 147, 148, 255),new Color(0, 127, 127, 255),new Color(0, 107, 106, 255),new Color(0, 107, 105, 255)}, MultipleGradientPaint.CycleMethod.NO_CYCLE, MultipleGradientPaint.ColorSpaceType.SRGB, new AffineTransform(1.0f, 0.0f, 0.0f, -1.0f, 0.0f, 102.0f)); g.setPaint(paint); g.fill(shape); g.setTransform(transformsStack.pop()); g.setComposite(AlphaComposite.getInstance(3, 1.0f * origAlpha)); transformsStack.push(g.getTransform()); g.transform(new AffineTransform(1.0f, 0.0f, 0.0f, 1.0f, 0.0f, 0.0f)); // _0_6_1 if (generalPath == null) { generalPath = new GeneralPath(); } else { generalPath.reset(); } generalPath.moveTo(45.2f, 1.0f); generalPath.lineTo(72.1f, 27.7f); generalPath.lineTo(45.2f, 27.7f); generalPath.lineTo(45.2f, 1.0f); generalPath.closePath(); shape = generalPath; paint = new Color(0, 0, 0, 0); g.setPaint(paint); g.fill(shape); paint = new Color(0, 110, 108, 255); stroke = new BasicStroke(2.0f,0,2,4.0f,null,0.0f); if (generalPath == null) { generalPath = new GeneralPath(); } else { generalPath.reset(); } generalPath.moveTo(45.2f, 1.0f); generalPath.lineTo(72.1f, 27.7f); generalPath.lineTo(45.2f, 27.7f); generalPath.lineTo(45.2f, 1.0f); generalPath.closePath(); shape = generalPath; g.setPaint(paint); g.setStroke(stroke); g.draw(shape); g.setTransform(transformsStack.pop()); g.setTransform(transformsStack.pop()); g.setTransform(transformsStack.pop()); g.setTransform(transformsStack.pop()); } @SuppressWarnings("unused") private void innerPaint(Graphics2D g) { float origAlpha = 1.0f; Composite origComposite = g.getComposite(); if (origComposite instanceof AlphaComposite) { AlphaComposite origAlphaComposite = (AlphaComposite)origComposite; if (origAlphaComposite.getRule() == AlphaComposite.SRC_OVER) { origAlpha = origAlphaComposite.getAlpha(); } } _paint0(g, origAlpha); shape = null; generalPath = null; paint = null; stroke = null; clip = null; transformsStack.clear(); } /** * Returns the X of the bounding box of the original SVG image. * * @return The X of the bounding box of the original SVG image. */ public static double getOrigX() { return 0.13300000131130219; } /** * Returns the Y of the bounding box of the original SVG image. * * @return The Y of the bounding box of the original SVG image. */ public static double getOrigY() { return 0.0; } /** * Returns the width of the bounding box of the original SVG image. * * @return The width of the bounding box of the original SVG image. */ public static double getOrigWidth() { return 0.7379999160766602; } /** * Returns the height of the bounding box of the original SVG image. * * @return The height of the bounding box of the original SVG image. */ public static double getOrigHeight() { return 1.0; } /** The current width of this resizable icon. */ private int width; /** The current height of this resizable icon. */ private int height; /** * Creates a new transcoded SVG image. This is marked as private to indicate that app * code should be using the {@link #of(int, int)} method to obtain a pre-configured instance. */ private ext_pub() { this.width = (int) getOrigWidth(); this.height = (int) getOrigHeight(); } @Override public int getIconHeight() { return height; } @Override public int getIconWidth() { return width; } @Override public synchronized void setDimension(Dimension newDimension) { this.width = newDimension.width; this.height = newDimension.height; } @Override public synchronized void paintIcon(Component c, Graphics g, int x, int y) { Graphics2D g2d = (Graphics2D) g.create(); g2d.setRenderingHint(RenderingHints.KEY_ANTIALIASING, RenderingHints.VALUE_ANTIALIAS_ON); g2d.setRenderingHint(RenderingHints.KEY_INTERPOLATION, RenderingHints.VALUE_INTERPOLATION_BICUBIC); g2d.translate(x, y); double coef1 = (double) this.width / getOrigWidth(); double coef2 = (double) this.height / getOrigHeight(); double coef = Math.min(coef1, coef2); g2d.clipRect(0, 0, this.width, this.height); g2d.scale(coef, coef); g2d.translate(-getOrigX(), -getOrigY()); if (coef1 != coef2) { if (coef1 < coef2) { int extraDy = (int) ((getOrigWidth() - getOrigHeight()) / 2.0); g2d.translate(0, extraDy); } else { int extraDx = (int) ((getOrigHeight() - getOrigWidth()) / 2.0); g2d.translate(extraDx, 0); } } Graphics2D g2ForInner = (Graphics2D) g2d.create(); innerPaint(g2ForInner); g2ForInner.dispose(); g2d.dispose(); } /** * Returns a new instance of this icon with specified dimensions. * * @param width Required width of the icon * @param height Required height of the icon * @return A new instance of this icon with specified dimensions. */ public static ResizableIcon of(int width, int height) { ext_pub base = new ext_pub(); base.width = width; base.height = height; return base; } /** * Returns a new {@link UIResource} instance of this icon with specified dimensions. * * @param width Required width of the icon * @param height Required height of the icon * @return A new {@link UIResource} instance of this icon with specified dimensions. */ public static ResizableIconUIResource uiResourceOf(int width, int height) { ext_pub base = new ext_pub(); base.width = width; base.height = height; return new ResizableIconUIResource(base); } /** * Returns a factory that returns instances of this icon on demand. * * @return Factory that returns instances of this icon on demand. */ public static Factory factory() { return ext_pub::new; } }
[ "kirill.grouchnikov@gmail.com" ]
kirill.grouchnikov@gmail.com
7afc53906333378a80e367ba80d2f95accf1b769
7746f1d294b3999245f9dbfe11b2af7ddc28a4ba
/src/main/java/com/setu/biller/service/BillPaymentService.java
ccfb5b2d0f9e774a660bdd4023110ebd38128c19
[]
no_license
krisrajaryan27/biller
b5de6c6255e3f3220b697db3fd8a5ce6a337d981
40acf8087df9190b0a6512695aad93f1873d5af4
refs/heads/master
2022-11-25T00:34:19.584371
2020-07-23T17:02:15
2020-07-23T17:02:15
281,979,796
1
0
null
null
null
null
UTF-8
Java
false
false
509
java
package com.setu.biller.service; import com.setu.biller.dto.BillPaymentRequest; import com.setu.biller.dto.BillPaymentUpdateResponse; import com.setu.biller.dto.DueResponse; import com.setu.biller.exception.BillerException; /** * @author Krishna Verma * @date 21/07/2020 */ public interface BillPaymentService { DueResponse getBillOfPaymentDue(String mobileNumber) throws BillerException; BillPaymentUpdateResponse updatePayment(BillPaymentRequest billPaymentRequest) throws BillerException; }
[ "kverma@atheerair.com" ]
kverma@atheerair.com
97469758bf953a35a4bea33cfcd184002e4c21ab
9f861371fb3c8f99905c54bc844dff2953b1615a
/controlStatements/FactorialRecursion.java
30563977124134bd323e83edc46ff7ffd505ac7e
[]
no_license
chkrishnadheeraj/java
ed665020a60dab7e0ab475c4b4baf96c63f71056
8e9a118dcd27ce9dff8d77030f1f08283d3864f8
refs/heads/master
2021-04-27T13:18:53.970034
2018-12-14T06:54:29
2018-12-14T06:54:29
122,437,479
0
0
null
2018-02-22T06:02:48
2018-02-22T06:02:47
null
UTF-8
Java
false
false
543
java
package controlStatements; import java.util.Scanner; class FactorialRecursion{ static int fact(int n){ int output; if(n==1){ return 1; } output = fact(n-1)* n; return output; } public static void main(String args[]){ Scanner scanner = new Scanner(System.in); int num = scanner.nextInt(); System.out.println("Factorial of entered number is: "+fact(num)); } /* Works only for integer range, try to make it work for bigger numbers also. */ }
[ "projects.ravindra@gmail.com" ]
projects.ravindra@gmail.com
f42d9318f23ab02dfd3a0db0f1d997012c5c08aa
cfe3fe6122bf28eb0dcbb370d854ed90e4a8eb67
/jpa03-model07/src/main/java/me/kickscar/practices/jpa03/model07/repository/JpaBlogQryDslRepositoryImpl.java
e4bc34f563ca5f0598f6fd22c2854bcef72e8b19
[]
no_license
MaximSungmo/jpa-practices
34cff2fe490ce54e2a9486339d1c5ec613e1db65
07fffd72eeaadb41b13b209725b9eed57c24fda9
refs/heads/master
2020-12-06T10:55:16.365594
2020-01-07T08:16:49
2020-01-07T08:16:49
232,445,710
1
0
null
2020-01-08T00:46:38
2020-01-08T00:46:37
null
UTF-8
Java
false
false
1,262
java
package me.kickscar.practices.jpa03.model07.repository; import com.querydsl.jpa.impl.JPAQueryFactory; import me.kickscar.practices.jpa03.model07.domain.Blog; import me.kickscar.practices.jpa03.model07.dto.BlogDto; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.data.jpa.repository.support.QuerydslRepositorySupport; import java.util.List; import static me.kickscar.practices.jpa03.model07.domain.QBlog.blog; import me.kickscar.practices.jpa03.model07.dto.QBlogDto; public class JpaBlogQryDslRepositoryImpl extends QuerydslRepositorySupport implements JpaBlogQryDslRepository { @Autowired private JPAQueryFactory queryFactory; public JpaBlogQryDslRepositoryImpl() { super(Blog.class); } @Override public List<Blog> findAll2() { return queryFactory .select(blog) .from(blog) .innerJoin(blog.user) .fetchJoin() .fetch(); } @Override public List<BlogDto> findAll3() { return queryFactory .select(new QBlogDto(blog.no, blog.name, blog.user.id.as("userId"))) .from(blog) .innerJoin(blog.user) .fetch(); } }
[ "bitacademy.cafe24@gmail.com" ]
bitacademy.cafe24@gmail.com
2152ed5b52b65a096b32673fd42e1056d6fdc62b
ee13febec4497ed708647a137834758c00992612
/src/Map/MapPractice1.java
5ac5772c16f94f4a872d9de4fa3a105491aa6999
[]
no_license
sdetOST/JavaOST19
e2488b4656087f8d577ec9af42d8004abf3db423
f8759ab86eacb2ace8dcfb187e91acb4c9c094e1
refs/heads/master
2020-09-06T16:41:46.945132
2020-01-02T12:00:56
2020-01-02T12:00:56
220,483,738
0
0
null
null
null
null
UTF-8
Java
false
false
4,164
java
package Map; import java.util.*; public class MapPractice1 { public static void main(String[] args) { // Map-general implementation HashMAp // SortedMap extends Map interface // NavigableMap extends SortedMap // TreeMap extends NavigableMap Map<String, Integer> scoreMap= new HashMap <> (); //put(); scoreMap.put("Ahmet", 10); scoreMap.put("Mehmet", 20); scoreMap.put("Murat", 40); scoreMap.put("Mustafa", 40); scoreMap.put("Ali", 50); scoreMap.put("Murat", 60); scoreMap.put("Veli", 50); scoreMap.put("Kemal", 40); System.out.println(scoreMap); //{Ahmet=10, Mustafa=40, Mehmet=20, Murat=60, Ali=50} // // size(); // // System.out.println(scoreMap.size()); //5 // // //isEmpty(); // // System.out.println(scoreMap.isEmpty()); //false //// scoreMap.clear(); // System.out.println(scoreMap.isEmpty()); //true // // //get (objects); // // System.out.println(scoreMap.get("Mehmet")); //20 // System.out.println(scoreMap.get(20)); //null --we need to write our key, not value - // // // //containsKey(objects Key); // // System.out.println(scoreMap.containsKey("Mustafa")); //true // System.out.println(scoreMap.containsKey(40)); //false -- we need to pass key as parameter, // //if we add value, it gives us false // // //containsValue(Object value); // // System.out.println(scoreMap.containsValue(40)); //true // System.out.println(scoreMap.containsValue("Mustafa")); //false --we need to pass value as parameter // //if we add key, it gives us false // // // //remove(Object key); // // System.out.println(scoreMap.remove("Ahmet")); //10 // System.out.println(scoreMap.remove("Semih")); //null // System.out.println(scoreMap); //{Mustafa=40, Mehmet=20, Murat=60, Ali=50} --remove Ahmet and Ahmet's value // // // void putAll---lookslike AddAll(list, set,queue) // // Map<String, Integer> scoreMap2= new HashMap <> (); // // scoreMap2.put("Ayse", 70); // scoreMap2.put("Fatma", 80); // scoreMap2.put("Gul", 90); // // scoreMap2.putAll(scoreMap); //add all scoreMAp elements inside scoreMap2 // // System.out.println(scoreMap2); //{Mustafa=40, Ayse=70, Fatma=80, Mehmet=20, Murat=60, Gul=90, Ali=50} // // // //putIfAbsent(K key, V value)--the key have to match exactly. it return us correct value // //and if key doesn't match, it return null and add the key and value in our map // // System.out.println(scoreMap.putIfAbsent("Ali",80)); //50 // // System.out.println(scoreMap); // // System.out.println(scoreMap.putIfAbsent("Halil",90)); //null // // System.out.println(scoreMap); //{Mustafa=40, Halil=90, Mehmet=20, Murat=60, Ali=50} // // // //getOrDefault(ObjectKey, V defaultvalue); // // System.out.println(scoreMap2.get("Lale")); //return null -not exist in our list // // System.out.println(scoreMap2.getOrDefault( "Lale", 100)); //it gives 100 -default value // // System.out.println(scoreMap2.getOrDefault( "Mehmet", 100)); //it gives 20-Mehmet's value // // System.out.println(scoreMap2); //{Mustafa=40, Ayse=70, Fatma=80, Mehmet=20, Murat=60, Gul=90, Ali=50} // // //boolean--> remove(Object key, Object Value)-- key and value need to "match" // // System.out.println(scoreMap2.remove("Fatma",70)); //false // System.out.println(scoreMap2); //{Mustafa=40, Ayse=70, Fatma=80, Mehmet=20, Murat=60, Gul=90, Ali=50} // // System.out.println(scoreMap2.remove("Gul",90)); //true --it is match // System.out.println(scoreMap2); //{Mustafa=40, Ayse=70, Fatma=80, Mehmet=20, Murat=60, Ali=50} // // // // // boolean--> replace(Key k,V Old Value, V new Value) // //it need to match key and old value // // System.out.println(scoreMap2.replace("Fatma",80,15)); //true // System.out.println(scoreMap2); //{Mustafa=40, Ayse=70, Fatma=15, Mehmet=20, Murat=60, Ali=50} // // System.out.println(scoreMap2.replace("Fatma",80,30)); //false // System.out.println(scoreMap2); //{Mustafa=40, Ayse=70, Fatma=15, Mehmet=20, Murat=60, Ali=50} } }
[ "“osturkakin@gmail.com”" ]
“osturkakin@gmail.com”
8c0f98dcabb3a6cebba2fbce3e09ae0a54d62a97
379f24bd7b1b2fd641a854ea62b119f20b970d13
/src/main/java/com/feinik/excel/write/ExcelBuilderImpl.java
f08dd3627e36bb3400d4c91d070d6d06a61a671a
[ "Apache-2.0" ]
permissive
dnsfm/easyexcel-util
793e5f89784e5ad9f74093d298b26cd9cf1e88ba
abfffd27e1a3e81a1a65eee345cda83a4843619e
refs/heads/master
2022-12-26T16:34:30.648170
2019-09-13T08:47:12
2019-09-13T08:47:12
null
0
0
null
null
null
null
UTF-8
Java
false
false
5,255
java
package com.feinik.excel.write; import com.alibaba.excel.event.WriteHandler; import com.alibaba.excel.exception.ExcelGenerateException; import com.alibaba.excel.metadata.BaseRowModel; import com.alibaba.excel.metadata.ExcelColumnProperty; import com.alibaba.excel.metadata.Sheet; import com.alibaba.excel.metadata.Table; import com.alibaba.excel.support.ExcelTypeEnum; import com.alibaba.excel.util.CollectionUtils; import com.alibaba.excel.util.POITempFile; import com.alibaba.excel.util.TypeUtil; import com.alibaba.excel.util.WorkBookUtil; import com.feinik.excel.context.WriteContext; import net.sf.cglib.beans.BeanMap; import org.apache.poi.ss.usermodel.Cell; import org.apache.poi.ss.usermodel.CellStyle; import org.apache.poi.ss.usermodel.Row; import org.apache.poi.ss.util.CellRangeAddress; import java.io.IOException; import java.io.InputStream; import java.io.OutputStream; import java.util.List; /** * @author jipengfei */ public class ExcelBuilderImpl implements ExcelBuilder { private WriteContext context; public ExcelBuilderImpl(InputStream templateInputStream, OutputStream out, ExcelTypeEnum excelType, boolean needHead, WriteHandler writeHandler) { try { //初始化时候创建临时缓存目录,用于规避POI在并发写bug POITempFile.createPOIFilesDirectory(); context = new WriteContext(templateInputStream, out, excelType, needHead, writeHandler); } catch (Exception e) { throw new RuntimeException(e); } } @Override public void addContent(List data, int startRow) { if (CollectionUtils.isEmpty(data)) { return; } int rowNum = context.getCurrentSheet().getLastRowNum(); if (rowNum == 0) { Row row = context.getCurrentSheet().getRow(0); if (row == null) { if (context.getExcelHeadProperty() == null || !context.needHead()) { rowNum = -1; } } } if (rowNum < startRow) { rowNum = startRow; } for (int i = 0; i < data.size(); i++) { int n = i + rowNum + 1; addOneRowOfDataToExcel(data.get(i), n); } } @Override public void addContent(List data, Sheet sheetParam) { context.currentSheet(sheetParam); addContent(data, sheetParam.getStartRow()); } @Override public void addContent(List data, Sheet sheetParam, Table table) { context.currentSheet(sheetParam); context.currentTable(table); addContent(data, sheetParam.getStartRow()); } @Override public void merge(int firstRow, int lastRow, int firstCol, int lastCol) { CellRangeAddress cra = new CellRangeAddress(firstRow, lastRow, firstCol, lastCol); context.getCurrentSheet().addMergedRegion(cra); } @Override public void finish() { try { context.getWorkbook().write(context.getOutputStream()); context.getWorkbook().close(); } catch (IOException e) { throw new ExcelGenerateException("IO error", e); } } @Override public WriteContext getContext() { return context; } private void addBasicTypeToExcel(List<Object> oneRowData, Row row) { if (CollectionUtils.isEmpty(oneRowData)) { return; } for (int i = 0; i < oneRowData.size(); i++) { Object cellValue = oneRowData.get(i); Cell cell = WorkBookUtil.createCell(row, i, context.getCurrentContentStyle(), cellValue, TypeUtil.isNum(cellValue)); if (null != context.getAfterWriteHandler()) { context.getAfterWriteHandler().cell(i, cell); } } } private void addJavaObjectToExcel(Object oneRowData, Row row) { int i = 0; BeanMap beanMap = BeanMap.create(oneRowData); for (ExcelColumnProperty excelHeadProperty : context.getExcelHeadProperty().getColumnPropertyList()) { BaseRowModel baseRowModel = (BaseRowModel)oneRowData; String cellValue = TypeUtil.getFieldStringValue(beanMap, excelHeadProperty.getField().getName(), excelHeadProperty.getFormat()); CellStyle cellStyle = baseRowModel.getStyle(i) != null ? baseRowModel.getStyle(i) : context.getCurrentContentStyle(); Cell cell = WorkBookUtil.createCell(row, i, cellStyle, cellValue, TypeUtil.isNum(excelHeadProperty.getField())); if (null != context.getAfterWriteHandler()) { context.getAfterWriteHandler().cell(i, cell); } i++; } } private void addOneRowOfDataToExcel(Object oneRowData, int n) { Row row = WorkBookUtil.createRow(context.getCurrentSheet(), n); if (null != context.getAfterWriteHandler()) { context.getAfterWriteHandler().row(n, row); } if (oneRowData instanceof List) { addBasicTypeToExcel((List)oneRowData, row); } else { addJavaObjectToExcel(oneRowData, row); } } }
[ "feinik@foxmail.com" ]
feinik@foxmail.com
09bd2a53dbff90322166785b34ca5fa345e5a842
4fb46d16f80374a71056bd5dc292a4dc054b7787
/app/src/main/java/com/shuan/Project/asyncTasks/AddCollege.java
2e6a8f4d8b5161e8c7c663cd610a19bc36dace83
[]
no_license
ShuanTech/Project-master
b6aa98ff8c9c65a266fab902bb1b074794e14cfd
cc9d1391c1e171181172a788f9a322e28b483e4d
refs/heads/master
2020-12-02T06:39:22.322232
2017-09-13T17:23:39
2017-09-13T17:23:39
96,867,268
0
0
null
null
null
null
UTF-8
Java
false
false
1,822
java
package com.shuan.Project.asyncTasks; import android.content.Context; import android.os.AsyncTask; import android.widget.Toast; import com.shuan.Project.Utils.Common; import com.shuan.Project.parser.Connection; import com.shuan.Project.parser.php; import org.json.JSONException; import org.json.JSONObject; import java.util.HashMap; /** * Created by Android on 8/6/2016. */ public class AddCollege extends AsyncTask<String,String,String> { private Common mApp; private Context mContext; private String u_id,clgName,univ,loc,conCent,agrt,s=""; private HashMap<String, String> aData; public AddCollege(Context mContext, String u_id, String clgName, String univ, String loc, String conCent, String agrt) { this.mContext = mContext; this.u_id = u_id; this.clgName = clgName; this.univ = univ; this.loc = loc; this.conCent = conCent; this.agrt = agrt; } @Override protected String doInBackground(String... params) { aData = new HashMap<String, String>(); aData.put("u_id", u_id); aData.put("clgName", clgName); aData.put("univ", univ); aData.put("loc", loc); aData.put("coCent", conCent); aData.put("agrt", agrt); try { JSONObject json = Connection.UrlConnection(php.qualify, aData); int succ = json.getInt("success"); if(succ==0){ s="false"; }else{ s="true"; } } catch (JSONException e) { } return null; } @Override protected void onPostExecute(String s) { super.onPostExecute(s); if(s.equalsIgnoreCase("false")){ Toast.makeText(mContext,"Error! Try Again.",Toast.LENGTH_SHORT).show(); } } }
[ "shuantechpvtltd@gmail.com" ]
shuantechpvtltd@gmail.com
9fcc054d1378333236b5bc534a9a0f88cfedb884
cf1693c8339dd2c78877adb2234713f7bb114016
/src/main/java/logic/ViewUpdates/ChangeBallUpdate.java
89c004b19f2882bb89e71f1ab4ef06021c22d146
[]
no_license
Vasepulv/cc3002-breakout
7c3ed5bc1c2621103cb85f5bd8a6944b4ade9da4
57be1e401e23c137cddb7f3bc16d5ddf010ec327
refs/heads/master
2020-04-07T02:45:56.561575
2018-12-27T17:41:25
2018-12-27T17:41:25
157,988,923
0
0
null
null
null
null
UTF-8
Java
false
false
736
java
package logic.ViewUpdates; import logic.ViewUpdates.LevelChangesUpdate; import logic.ViewUpdates.LevelChangesUpdateReceiver; /** * This represents the update of when a ball is dropped, changing the view; * * @author Valentina Sepulveda * @version 1.0 */ public class ChangeBallUpdate implements LevelChangesUpdate { private int sign; public ChangeBallUpdate(int sign){ this.sign=sign; } /** * This method returns the sign of the action to take with the balls, by either increase it or reduce it. * @return sign */ public int getSign(){ return sign; } @Override public void accept(LevelChangesUpdateReceiver update) { update.changeBallUpdate(this); } }
[ "v.sepulveda.2@ug.uchile.cl" ]
v.sepulveda.2@ug.uchile.cl
a3341a315ed7e09fdfd94ec9421f67c897841809
53271e7ba89e73c15e78b91935c16a7814b9a74b
/mall-mbg/src/main/java/com/tsien/mall/mbg/domain/model/oms/OmsCompanyAddress.java
1f3ee225002e48ca2f3bd9ebc509afa82ecd15a7
[]
no_license
Tsien16/mall-swarm
98b885117c39e63cf42fe2664301970b69fed291
04576067447b41db4f2d0fc6e3e365b19f33d512
refs/heads/master
2023-01-03T21:35:18.496722
2020-10-23T10:07:56
2020-10-23T10:07:56
306,597,333
0
0
null
null
null
null
UTF-8
Java
false
false
1,344
java
package com.tsien.mall.mbg.domain.model.oms; import lombok.AllArgsConstructor; import lombok.Builder; import lombok.Data; import lombok.NoArgsConstructor; import java.time.LocalDateTime; /** * Created with IntelliJ IDEA. * 订单管理模块-公司收发货地址表 * * @author tsien * @version 1.0.0 * @date 2020/10/11 0011 0:14 */ @Data @Builder @AllArgsConstructor @NoArgsConstructor public class OmsCompanyAddress { /** * 主键 */ private Long id; /** * 地址名称 */ private String addressName; /** * 收发货人姓名 */ private String name; /** * 收货人电话 */ private String phone; /** * 邮政编码 */ private String postCode; /** * 省/直辖市 */ private String province; /** * 市 */ private String city; /** * 区 */ private String region; /** * 详细地址 */ private String detailAddress; /** * 默认发货地址:0->否;1->是 */ private Integer sendStatus; /** * 是否默认收货地址:0->否;1->是 */ private Integer receiveStatus; /** * 创建时间 */ private LocalDateTime createTime; /** * 更新时间 */ private LocalDateTime updateTime; }
[ "tsien16@qq.com" ]
tsien16@qq.com
a3f8e5eebe717e890b8509b0620e38def860e1bc
b7910e40356c56c733b1a63484cc94dcc7426320
/day3 (161109)/Quizz5.java
e60c41a86c1948991a8145aa509e92a21ed22e02
[]
no_license
jinhn/java_study
ffb748caf9d3704c16ba1d2f4d957d09ae7ce84a
767c2ddb084ac911cbff7c8fbfd1cf28da94d5f0
refs/heads/master
2020-06-14T20:13:08.421228
2016-12-16T06:42:04
2016-12-16T06:42:04
75,351,691
0
0
null
null
null
null
UHC
Java
false
false
845
java
import java.util.Scanner; public class Quizz5 { public static void main(String[] args) { // 국어, 영어, 수학점수를 입력받아서 // 총점, 평균, 학점을 출력하기 // 학점은 90이상:A, 80이상:B, 70이상:C, 60이상:D, 그 외는 F Scanner sc = new Scanner(System.in); System.out.print("국어: "); int kor = sc.nextInt(); System.out.print("영어: "); int eng = sc.nextInt(); System.out.print("수학: "); int math = sc.nextInt(); int total = kor + eng + math; int avg = total / 3; String grade = ""; if (total >= 90) { grade = "A"; } else if (total >= 80) { grade = "B"; } else if (total >= 70) { grade = "C"; } else if (total >= 60) { grade = "D"; } else { grade = "F"; } System.out.println("총점 " + total + " 평균 " + avg + " 학점 " + grade); } }
[ "jinhn1313@gmail.com" ]
jinhn1313@gmail.com
f6ff6b3a6b2595aa0a89dcae4c978ac3dee08709
bb1c36eba1dd7684af02f532f97dec0facd145dc
/Javame/BuddyProfile.java
bdf223cc4d9d152849cc0c264f8d62bf1ee3342e
[]
no_license
shesheshe/linethrift
220d34ca865f4adbd918117aa20daeb67210cac5
114b1ff1acde89b9018e05e645dd7098b4e0e900
refs/heads/master
2020-09-06T07:32:27.212969
2019-09-28T08:33:11
2019-09-28T08:33:11
null
0
0
null
null
null
null
UTF-8
Java
false
true
14,732
java
/** * Autogenerated by Thrift Compiler (0.13.0) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated */ import java.util.Hashtable; import java.util.Vector; import java.util.Enumeration; import org.apache.thrift.*; import org.apache.thrift.meta_data.*; import org.apache.thrift.transport.*; import org.apache.thrift.protocol.*; public class BuddyProfile implements TBase { private static final TStruct STRUCT_DESC = new TStruct("BuddyProfile"); private static final TField BUDDY_ID_FIELD_DESC = new TField("buddyId", TType.STRING, (short)1); private static final TField MID_FIELD_DESC = new TField("mid", TType.STRING, (short)2); private static final TField SEARCH_ID_FIELD_DESC = new TField("searchId", TType.STRING, (short)3); private static final TField DISPLAY_NAME_FIELD_DESC = new TField("displayName", TType.STRING, (short)4); private static final TField STATUS_MESSAGE_FIELD_DESC = new TField("statusMessage", TType.STRING, (short)5); private static final TField CONTACT_COUNT_FIELD_DESC = new TField("contactCount", TType.I64, (short)11); private String buddyId; private String mid; private String searchId; private String displayName; private String statusMessage; private long contactCount; // isset id assignments private static final int __CONTACTCOUNT_ISSET_ID = 0; private boolean[] __isset_vector = new boolean[1]; public BuddyProfile() { } public BuddyProfile( String buddyId, String mid, String searchId, String displayName, String statusMessage, long contactCount) { this(); this.buddyId = buddyId; this.mid = mid; this.searchId = searchId; this.displayName = displayName; this.statusMessage = statusMessage; this.contactCount = contactCount; setContactCountIsSet(true); } /** * Performs a deep copy on <i>other</i>. */ public BuddyProfile(BuddyProfile other) { System.arraycopy(other.__isset_vector, 0, __isset_vector, 0, other.__isset_vector.length); if (other.isSetBuddyId()) { this.buddyId = other.buddyId; } if (other.isSetMid()) { this.mid = other.mid; } if (other.isSetSearchId()) { this.searchId = other.searchId; } if (other.isSetDisplayName()) { this.displayName = other.displayName; } if (other.isSetStatusMessage()) { this.statusMessage = other.statusMessage; } this.contactCount = other.contactCount; } public BuddyProfile deepCopy() { return new BuddyProfile(this); } public void clear() { this.buddyId = null; this.mid = null; this.searchId = null; this.displayName = null; this.statusMessage = null; setContactCountIsSet(false); this.contactCount = 0; } public String getBuddyId() { return this.buddyId; } public void setBuddyId(String buddyId) { this.buddyId = buddyId; } public void unsetBuddyId() { this.buddyId = null; } /** Returns true if field buddyId is set (has been assigned a value) and false otherwise */ public boolean isSetBuddyId() { return this.buddyId != null; } public void setBuddyIdIsSet(boolean value) { if (!value) { this.buddyId = null; } } public String getMid() { return this.mid; } public void setMid(String mid) { this.mid = mid; } public void unsetMid() { this.mid = null; } /** Returns true if field mid is set (has been assigned a value) and false otherwise */ public boolean isSetMid() { return this.mid != null; } public void setMidIsSet(boolean value) { if (!value) { this.mid = null; } } public String getSearchId() { return this.searchId; } public void setSearchId(String searchId) { this.searchId = searchId; } public void unsetSearchId() { this.searchId = null; } /** Returns true if field searchId is set (has been assigned a value) and false otherwise */ public boolean isSetSearchId() { return this.searchId != null; } public void setSearchIdIsSet(boolean value) { if (!value) { this.searchId = null; } } public String getDisplayName() { return this.displayName; } public void setDisplayName(String displayName) { this.displayName = displayName; } public void unsetDisplayName() { this.displayName = null; } /** Returns true if field displayName is set (has been assigned a value) and false otherwise */ public boolean isSetDisplayName() { return this.displayName != null; } public void setDisplayNameIsSet(boolean value) { if (!value) { this.displayName = null; } } public String getStatusMessage() { return this.statusMessage; } public void setStatusMessage(String statusMessage) { this.statusMessage = statusMessage; } public void unsetStatusMessage() { this.statusMessage = null; } /** Returns true if field statusMessage is set (has been assigned a value) and false otherwise */ public boolean isSetStatusMessage() { return this.statusMessage != null; } public void setStatusMessageIsSet(boolean value) { if (!value) { this.statusMessage = null; } } public long getContactCount() { return this.contactCount; } public void setContactCount(long contactCount) { this.contactCount = contactCount; setContactCountIsSet(true); } public void unsetContactCount() { __isset_vector[__CONTACTCOUNT_ISSET_ID] = false; } /** Returns true if field contactCount is set (has been assigned a value) and false otherwise */ public boolean isSetContactCount() { return __isset_vector[__CONTACTCOUNT_ISSET_ID]; } public void setContactCountIsSet(boolean value) { __isset_vector[__CONTACTCOUNT_ISSET_ID] = value; } public boolean equals(Object that) { if (that == null) return false; if (that instanceof BuddyProfile) return this.equals((BuddyProfile)that); return false; } public boolean equals(BuddyProfile that) { if (that == null) return false; if (this == that) return true; boolean this_present_buddyId = true && this.isSetBuddyId(); boolean that_present_buddyId = true && that.isSetBuddyId(); if (this_present_buddyId || that_present_buddyId) { if (!(this_present_buddyId && that_present_buddyId)) return false; if (!this.buddyId.equals(that.buddyId)) return false; } boolean this_present_mid = true && this.isSetMid(); boolean that_present_mid = true && that.isSetMid(); if (this_present_mid || that_present_mid) { if (!(this_present_mid && that_present_mid)) return false; if (!this.mid.equals(that.mid)) return false; } boolean this_present_searchId = true && this.isSetSearchId(); boolean that_present_searchId = true && that.isSetSearchId(); if (this_present_searchId || that_present_searchId) { if (!(this_present_searchId && that_present_searchId)) return false; if (!this.searchId.equals(that.searchId)) return false; } boolean this_present_displayName = true && this.isSetDisplayName(); boolean that_present_displayName = true && that.isSetDisplayName(); if (this_present_displayName || that_present_displayName) { if (!(this_present_displayName && that_present_displayName)) return false; if (!this.displayName.equals(that.displayName)) return false; } boolean this_present_statusMessage = true && this.isSetStatusMessage(); boolean that_present_statusMessage = true && that.isSetStatusMessage(); if (this_present_statusMessage || that_present_statusMessage) { if (!(this_present_statusMessage && that_present_statusMessage)) return false; if (!this.statusMessage.equals(that.statusMessage)) return false; } boolean this_present_contactCount = true; boolean that_present_contactCount = true; if (this_present_contactCount || that_present_contactCount) { if (!(this_present_contactCount && that_present_contactCount)) return false; if (this.contactCount != that.contactCount) return false; } return true; } public int hashCode() { return 0; } public int compareTo(Object otherObject) { if (!getClass().equals(otherObject.getClass())) { return getClass().getName().compareTo(otherObject.getClass().getName()); } BuddyProfile other = (BuddyProfile)otherObject; int lastComparison = 0; lastComparison = TBaseHelper.compareTo(isSetBuddyId(), other.isSetBuddyId()); if (lastComparison != 0) { return lastComparison; } if (isSetBuddyId()) { lastComparison = TBaseHelper.compareTo(this.buddyId, other.buddyId); if (lastComparison != 0) { return lastComparison; } } lastComparison = TBaseHelper.compareTo(isSetMid(), other.isSetMid()); if (lastComparison != 0) { return lastComparison; } if (isSetMid()) { lastComparison = TBaseHelper.compareTo(this.mid, other.mid); if (lastComparison != 0) { return lastComparison; } } lastComparison = TBaseHelper.compareTo(isSetSearchId(), other.isSetSearchId()); if (lastComparison != 0) { return lastComparison; } if (isSetSearchId()) { lastComparison = TBaseHelper.compareTo(this.searchId, other.searchId); if (lastComparison != 0) { return lastComparison; } } lastComparison = TBaseHelper.compareTo(isSetDisplayName(), other.isSetDisplayName()); if (lastComparison != 0) { return lastComparison; } if (isSetDisplayName()) { lastComparison = TBaseHelper.compareTo(this.displayName, other.displayName); if (lastComparison != 0) { return lastComparison; } } lastComparison = TBaseHelper.compareTo(isSetStatusMessage(), other.isSetStatusMessage()); if (lastComparison != 0) { return lastComparison; } if (isSetStatusMessage()) { lastComparison = TBaseHelper.compareTo(this.statusMessage, other.statusMessage); if (lastComparison != 0) { return lastComparison; } } lastComparison = TBaseHelper.compareTo(isSetContactCount(), other.isSetContactCount()); if (lastComparison != 0) { return lastComparison; } if (isSetContactCount()) { lastComparison = TBaseHelper.compareTo(this.contactCount, other.contactCount); if (lastComparison != 0) { return lastComparison; } } return 0; } public void read(TProtocol iprot) throws TException { TField field; iprot.readStructBegin(); while (true) { field = iprot.readFieldBegin(); if (field.type == TType.STOP) { break; } switch (field.id) { case 1: // BUDDY_ID if (field.type == TType.STRING) { this.buddyId = iprot.readString(); } else { TProtocolUtil.skip(iprot, field.type); } break; case 2: // MID if (field.type == TType.STRING) { this.mid = iprot.readString(); } else { TProtocolUtil.skip(iprot, field.type); } break; case 3: // SEARCH_ID if (field.type == TType.STRING) { this.searchId = iprot.readString(); } else { TProtocolUtil.skip(iprot, field.type); } break; case 4: // DISPLAY_NAME if (field.type == TType.STRING) { this.displayName = iprot.readString(); } else { TProtocolUtil.skip(iprot, field.type); } break; case 5: // STATUS_MESSAGE if (field.type == TType.STRING) { this.statusMessage = iprot.readString(); } else { TProtocolUtil.skip(iprot, field.type); } break; case 11: // CONTACT_COUNT if (field.type == TType.I64) { this.contactCount = iprot.readI64(); setContactCountIsSet(true); } else { TProtocolUtil.skip(iprot, field.type); } break; default: TProtocolUtil.skip(iprot, field.type); } iprot.readFieldEnd(); } iprot.readStructEnd(); validate(); } public void write(TProtocol oprot) throws TException { validate(); oprot.writeStructBegin(STRUCT_DESC); if (this.buddyId != null) { oprot.writeFieldBegin(BUDDY_ID_FIELD_DESC); oprot.writeString(this.buddyId); oprot.writeFieldEnd(); } if (this.mid != null) { oprot.writeFieldBegin(MID_FIELD_DESC); oprot.writeString(this.mid); oprot.writeFieldEnd(); } if (this.searchId != null) { oprot.writeFieldBegin(SEARCH_ID_FIELD_DESC); oprot.writeString(this.searchId); oprot.writeFieldEnd(); } if (this.displayName != null) { oprot.writeFieldBegin(DISPLAY_NAME_FIELD_DESC); oprot.writeString(this.displayName); oprot.writeFieldEnd(); } if (this.statusMessage != null) { oprot.writeFieldBegin(STATUS_MESSAGE_FIELD_DESC); oprot.writeString(this.statusMessage); oprot.writeFieldEnd(); } oprot.writeFieldBegin(CONTACT_COUNT_FIELD_DESC); oprot.writeI64(this.contactCount); oprot.writeFieldEnd(); oprot.writeFieldStop(); oprot.writeStructEnd(); } public String toString() { StringBuffer sb = new StringBuffer("BuddyProfile("); boolean first = true; sb.append("buddyId:"); if (this.buddyId == null) { sb.append("null"); } else { sb.append(this.buddyId); } first = false; if (!first) sb.append(", "); sb.append("mid:"); if (this.mid == null) { sb.append("null"); } else { sb.append(this.mid); } first = false; if (!first) sb.append(", "); sb.append("searchId:"); if (this.searchId == null) { sb.append("null"); } else { sb.append(this.searchId); } first = false; if (!first) sb.append(", "); sb.append("displayName:"); if (this.displayName == null) { sb.append("null"); } else { sb.append(this.displayName); } first = false; if (!first) sb.append(", "); sb.append("statusMessage:"); if (this.statusMessage == null) { sb.append("null"); } else { sb.append(this.statusMessage); } first = false; if (!first) sb.append(", "); sb.append("contactCount:"); sb.append(this.contactCount); first = false; sb.append(")"); return sb.toString(); } public void validate() throws TException { // check for required fields } }
[ "tikuwakunn@icloud.com" ]
tikuwakunn@icloud.com
9b8118ffb97e3fb2bbea6e57d4540efe0ac84739
61065bac369a35282d09c116116ce8f79a1796c9
/app/src/main/java/com/ravi/ezio/personeltodolist/Activities/MainActivity.java
cf8f4e98a0783d600add498c5527787395d01875
[]
no_license
ravidelcj/PersonelToDoList-
edaf0a2b1c88c3914c43cdefc31473a247f3aecf
1d0833c25111056dba95af861e554c09e031f6db
refs/heads/master
2021-01-01T03:53:11.920942
2016-05-06T18:08:52
2016-05-06T18:08:52
57,975,982
0
0
null
null
null
null
UTF-8
Java
false
false
4,019
java
package com.ravi.ezio.personeltodolist.Activities; import android.app.ProgressDialog; import android.content.Context; import android.content.Intent; import android.content.SharedPreferences; import android.os.AsyncTask; import android.preference.PreferenceManager; import android.support.design.widget.FloatingActionButton; import android.support.v7.app.AppCompatActivity; import android.os.Bundle; import android.support.v7.widget.LinearLayoutManager; import android.support.v7.widget.RecyclerView; import android.view.View; import android.widget.TextView; import com.ravi.ezio.personeltodolist.Backend.CustomToDoType; import com.ravi.ezio.personeltodolist.Backend.DatabaseHelper; import com.ravi.ezio.personeltodolist.Backend.MyRecyclerView; import com.ravi.ezio.personeltodolist.R; import java.util.ArrayList; import java.util.List; public class MainActivity extends AppCompatActivity { public static MainActivity mainActivity; TextView emptyDatabaseNotice; RecyclerView recyclerView; MyRecyclerView recyclerAdapter; List<CustomToDoType> list; DatabaseHelper databaseHelper; private FloatingActionButton addToDo; @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); mainActivity=this; SharedPreferences prefs= PreferenceManager.getDefaultSharedPreferences(this); if(!prefs.getBoolean("first",false)) { SharedPreferences.Editor editor=prefs.edit(); editor.putBoolean("first",true); editor.commit(); Intent intent=new Intent(this,Splash.class); startActivity(intent); finish(); } setContentView(R.layout.activity_main); init(); //searching for data in database MyAsync async=new MyAsync(this,databaseHelper); async.execute(); addToDo.setOnClickListener(new View.OnClickListener() { @Override public void onClick(View v) { startActivity(new Intent(MainActivity.this,EnterInfo.class)); finish(); } }); } //Initialising various parameters private void init() { addToDo= (FloatingActionButton) findViewById(R.id.add); databaseHelper=new DatabaseHelper(this); list=new ArrayList<CustomToDoType>(); recyclerView= (RecyclerView) findViewById(R.id.recycler); recyclerView.setLayoutManager(new LinearLayoutManager(this)); emptyDatabaseNotice= (TextView) findViewById(R.id.emptyDatabase); } private class MyAsync extends AsyncTask<Void,Void,Void> { DatabaseHelper databaseHelper; Context context; ProgressDialog progressDialog; public MyAsync(Context context, DatabaseHelper databaseHelper) { this.context=context; progressDialog=new ProgressDialog(context); this.databaseHelper=databaseHelper; } @Override protected void onPreExecute() { super.onPreExecute(); progressDialog.setMessage("Loading..."); progressDialog.setCancelable(false); progressDialog.show(); } @Override protected Void doInBackground(Void... params) { list= databaseHelper.getAllToDo(); return null; } @Override protected void onPostExecute(Void aVoid) { super.onPostExecute(aVoid); progressDialog.dismiss(); if(list.isEmpty()) { recyclerView.setVisibility(View.GONE); emptyDatabaseNotice.setVisibility(View.VISIBLE); } else { recyclerView.setVisibility(View.VISIBLE); emptyDatabaseNotice.setVisibility(View.GONE); recyclerAdapter=new MyRecyclerView(context,list); recyclerView.setAdapter(recyclerAdapter); } } } }
[ "ravi.delcj@gmail.com" ]
ravi.delcj@gmail.com
6573b4d9dc6ebfc8b5ffa02bb0aa1d0fb8ec2cf3
c222bb3808d941b0d8d0d7e337e62b2cda3eaae4
/app/src/main/java/com/locationback/locatontrack/MainActivity.java
21b27553ff38c774f7b8447d0fd62872c292cddb
[]
no_license
azamyadullahi/locatonTrack
1e5b41fb269eb1514bd19480fa32f46ef101f976
dea271d90ececfe2dca51bd6e494d667353730ba
refs/heads/master
2020-09-22T20:27:17.659316
2019-12-02T07:45:34
2019-12-02T07:45:34
225,315,042
0
0
null
null
null
null
UTF-8
Java
false
false
4,511
java
package com.locationback.locatontrack; import androidx.annotation.NonNull; import androidx.appcompat.app.AppCompatActivity; import android.content.Intent; import android.os.Bundle; import android.text.TextUtils; import android.view.View; import android.widget.Button; import android.widget.EditText; import android.widget.ProgressBar; import android.widget.Toast; import com.google.android.gms.tasks.OnCompleteListener; import com.google.android.gms.tasks.Task; import com.google.firebase.auth.AuthResult; import com.google.firebase.auth.FirebaseAuth; public class MainActivity extends AppCompatActivity { private EditText inputEmail, inputPassword; private FirebaseAuth auth; private ProgressBar progressBar; private Button btnSignup, btnLogin, btnReset; @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_main); //Get Firebase auth instance auth = FirebaseAuth.getInstance(); if (auth.getCurrentUser() != null) { startActivity(new Intent(MainActivity.this, secondActivity.class)); finish(); } // set the view now setContentView(R.layout.activity_main); inputEmail = (EditText) findViewById(R.id.email); inputPassword = (EditText) findViewById(R.id.password); progressBar = (ProgressBar) findViewById(R.id.progressBar); btnSignup = (Button) findViewById(R.id.btn_signup); btnLogin = (Button) findViewById(R.id.btn_login); btnReset = (Button) findViewById(R.id.btn_reset_password); //Get Firebase auth instance auth = FirebaseAuth.getInstance(); btnSignup.setOnClickListener(new View.OnClickListener() { @Override public void onClick(View v) { startActivity(new Intent(MainActivity.this, SignupActivity.class)); } }); btnReset.setOnClickListener(new View.OnClickListener() { @Override public void onClick(View v) { startActivity(new Intent(MainActivity.this, ResetPasswordActivity.class)); } }); btnLogin.setOnClickListener(new View.OnClickListener() { @Override public void onClick(View v) { String email = inputEmail.getText().toString(); final String password = inputPassword.getText().toString(); if (TextUtils.isEmpty(email)) { Toast.makeText(getApplicationContext(), "Enter email address!", Toast.LENGTH_SHORT).show(); return; } if (TextUtils.isEmpty(password)) { Toast.makeText(getApplicationContext(), "Enter password!", Toast.LENGTH_SHORT).show(); return; } progressBar.setVisibility(View.VISIBLE); //authenticate user auth.signInWithEmailAndPassword(email, password) .addOnCompleteListener(MainActivity.this, new OnCompleteListener<AuthResult>() { @Override public void onComplete(@NonNull Task<AuthResult> task) { // If sign in fails, display a message to the user. If sign in succeeds // the auth state listener will be notified and logic to handle the // signed in user can be handled in the listener. progressBar.setVisibility(View.GONE); if (!task.isSuccessful()) { // there was an error if (password.length() < 6) { inputPassword.setError(getString(R.string.minimum_password)); } else { Toast.makeText(MainActivity.this, getString(R.string.auth_failed), Toast.LENGTH_LONG).show(); } } else { Intent intent = new Intent(MainActivity.this, secondActivity.class); startActivity(intent); finish(); } } }); } }); } }
[ "azam.yadullahi@gmail.com" ]
azam.yadullahi@gmail.com
677bb9e8270676de6b0d785ea555e4cfbd190c1a
21db6f35adef3f7ed5d679a5974151e2226835c6
/src/main/java/com/example/web3/model/AreaChecker.java
d08f3cdbfce46156b123b3b156d36a2a47c9a21b
[]
no_license
robqqq/Web3
f3f2f6f41a2a8913acf82652d22978141c344216
bba158615e67c656a5e137d63a8a49f9db06b5de
refs/heads/master
2023-08-30T16:25:07.559831
2021-11-11T11:04:17
2021-11-11T11:04:17
426,964,117
0
2
null
null
null
null
UTF-8
Java
false
false
94
java
package com.example.web3.model; public interface AreaChecker<T> { boolean check(T p); }
[ "bavykin03@outlook.com" ]
bavykin03@outlook.com
ca4b341dcf13562020b1ff62c3776922cfc03748
fabd10e104ce8cc5979760cf704c2468fb5809dc
/app/src/main/java/music/hs/com/materialmusicv2/objects/events/controllerevents/VisualizerData.java
5df02376b7fe7cdeb7958955b7389ceb0ce4980c
[ "Apache-2.0" ]
permissive
Harisrini99/HSMusicPlayer
9a740d76d658f5ca60f403407c20d3c2c6fa7db5
a0beb1415ed695e7cc45f38e73585135c4f94d76
refs/heads/master
2021-09-07T14:14:16.637841
2021-08-21T17:04:10
2021-08-21T17:04:10
241,160,990
0
0
null
null
null
null
UTF-8
Java
false
false
202
java
package music.hs.com.materialmusicv2.objects.events.controllerevents; public class VisualizerData { public byte[] data; public VisualizerData(byte[] data) { this.data = data; } }
[ "harisrini99@gmail.com" ]
harisrini99@gmail.com
bb51708f36c444f7225aa4b0ff2cff0062cb71af
176ed3006bf1bcbae74043f67d987ea3203dae4e
/android/app/src/main/java/com/rajarsheechatterjee/NavigationBarColor/NavigationBarColorModule.java
6fcd4e122294db6641009cc2927872274b645ace
[ "MIT" ]
permissive
BLWine/lnreader
40d1d95dd178341d2828e9cc308fbe59efe52562
e79563f2d0c71efc309267a933a6bbf096a8a764
refs/heads/main
2023-09-04T18:37:06.585595
2021-11-17T09:16:18
2021-11-17T09:16:18
429,681,759
0
0
MIT
2021-11-19T05:36:41
2021-11-19T05:36:40
null
UTF-8
Java
false
false
7,941
java
package com.rajarsheechatterjee.LNReader; import android.animation.ArgbEvaluator; import android.animation.ValueAnimator; import android.annotation.TargetApi; import android.graphics.Color; import android.os.Build; import android.app.Activity; import android.view.View; import android.view.Window; import android.view.WindowManager; import androidx.annotation.UiThread; import com.facebook.react.bridge.Arguments; import com.facebook.react.bridge.Promise; import com.facebook.react.bridge.ReactApplicationContext; import com.facebook.react.bridge.ReactContextBaseJavaModule; import com.facebook.react.bridge.ReactMethod; import com.facebook.react.bridge.UiThreadUtil; import com.facebook.react.bridge.WritableMap; import java.util.HashMap; import java.util.Map; import com.facebook.react.uimanager.IllegalViewOperationException; import static com.facebook.react.bridge.UiThreadUtil.runOnUiThread; public class NavigationBarColorModule extends ReactContextBaseJavaModule { public static final String REACT_CLASS = "NavigationBarColor"; private static final String ERROR_NO_ACTIVITY = "E_NO_ACTIVITY"; private static final String ERROR_NO_ACTIVITY_MESSAGE = "Tried to change the navigation bar while not attached to an Activity"; private static final String ERROR_API_LEVEL = "API_LEVEl"; private static final String ERROR_API_LEVEL_MESSAGE = "Only Android Oreo and above is supported"; private static ReactApplicationContext reactContext = null; private static final int UI_FLAG_HIDE_NAV_BAR = View.SYSTEM_UI_FLAG_LAYOUT_STABLE | View.SYSTEM_UI_FLAG_LAYOUT_HIDE_NAVIGATION | View.SYSTEM_UI_FLAG_HIDE_NAVIGATION // hide nav bar | View.SYSTEM_UI_FLAG_IMMERSIVE_STICKY; public NavigationBarColorModule(ReactApplicationContext context) { super(context); reactContext = context; } public void setNavigationBarTheme(Activity activity, Boolean light) { if (activity != null && Build.VERSION.SDK_INT >= Build.VERSION_CODES.O) { Window window = activity.getWindow(); int flags = window.getDecorView().getSystemUiVisibility(); if (light) { flags |= View.SYSTEM_UI_FLAG_LIGHT_NAVIGATION_BAR; } else { flags &= ~View.SYSTEM_UI_FLAG_LIGHT_NAVIGATION_BAR; } window.getDecorView().setSystemUiVisibility(flags); } } @Override public String getName() { return REACT_CLASS; } @Override public Map<String, Object> getConstants() { final Map<String, Object> constants = new HashMap<>(); constants.put("EXAMPLE_CONSTANT", "example"); return constants; } @ReactMethod public void changeNavigationBarColor(final String color, final Boolean light, final Boolean animated, final Promise promise) { final WritableMap map = Arguments.createMap(); if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.LOLLIPOP) { if (getCurrentActivity() != null) { try { final Window window = getCurrentActivity().getWindow(); runOnUiThread(new Runnable() { @Override public void run() { if (color.equals("transparent") || color.equals("translucent")) { window.clearFlags(WindowManager.LayoutParams.FLAG_LAYOUT_NO_LIMITS); window.clearFlags(WindowManager.LayoutParams.FLAG_TRANSLUCENT_NAVIGATION); if (color.equals("transparent")) { window.setFlags(WindowManager.LayoutParams.FLAG_LAYOUT_NO_LIMITS, WindowManager.LayoutParams.FLAG_LAYOUT_NO_LIMITS); } else { window.setFlags(WindowManager.LayoutParams.FLAG_TRANSLUCENT_NAVIGATION, WindowManager.LayoutParams.FLAG_TRANSLUCENT_NAVIGATION); } setNavigationBarTheme(getCurrentActivity(), light); map.putBoolean("success", true); promise.resolve(map); return; } else { window.clearFlags(WindowManager.LayoutParams.FLAG_LAYOUT_NO_LIMITS); window.clearFlags(WindowManager.LayoutParams.FLAG_TRANSLUCENT_NAVIGATION); } if (animated) { Integer colorFrom = window.getNavigationBarColor(); Integer colorTo = Color.parseColor(String.valueOf(color)); //window.setNavigationBarColor(colorTo); ValueAnimator colorAnimation = ValueAnimator.ofObject(new ArgbEvaluator(), colorFrom, colorTo); colorAnimation.addUpdateListener(new ValueAnimator.AnimatorUpdateListener() { @Override public void onAnimationUpdate(ValueAnimator animator) { window.setNavigationBarColor((Integer) animator.getAnimatedValue()); } }); colorAnimation.start(); } else { window.setNavigationBarColor(Color.parseColor(String.valueOf(color))); } setNavigationBarTheme(getCurrentActivity(), light); WritableMap map = Arguments.createMap(); map.putBoolean("success", true); promise.resolve(map); } }); } catch (IllegalViewOperationException e) { map.putBoolean("success", false); promise.reject("error", e); } } else { promise.reject(ERROR_NO_ACTIVITY, new Throwable(ERROR_NO_ACTIVITY_MESSAGE)); } } else { promise.reject(ERROR_API_LEVEL, new Throwable(ERROR_API_LEVEL_MESSAGE)); } } @ReactMethod public void hideNavigationBar(Promise promise) { try { runOnUiThread(new Runnable() { @Override public void run() { if (getCurrentActivity() != null) { View decorView = getCurrentActivity().getWindow().getDecorView(); decorView.setSystemUiVisibility(UI_FLAG_HIDE_NAV_BAR); } } }); } catch (IllegalViewOperationException e) { WritableMap map = Arguments.createMap(); map.putBoolean("success", false); promise.reject("error", e); } } @ReactMethod public void showNavigationBar(Promise promise) { try { runOnUiThread(new Runnable() { @Override public void run() { if (getCurrentActivity() != null) { Window w = getCurrentActivity().getWindow(); w.setStatusBarColor(Color.TRANSPARENT); w.setNavigationBarColor(Color.TRANSPARENT); View decorView = w.getDecorView(); decorView.setSystemUiVisibility(View.SYSTEM_UI_FLAG_LAYOUT_HIDE_NAVIGATION | View.SYSTEM_UI_FLAG_LAYOUT_STABLE); } } }); } catch (IllegalViewOperationException e) { WritableMap map = Arguments.createMap(); map.putBoolean("success", false); promise.reject("error", e); } } }
[ "rajarshee.adm@gmail.com" ]
rajarshee.adm@gmail.com
16908d404336433048f974542459056553561e47
2f01c487dcc1aaff60f300042974ac33aa9ccb47
/app/src/main/java/com/mahta/rastin/broadcastapplication/helper/HttpManager.java
ea670e035ec62fe6fe35b17969df79d848a19072
[]
no_license
rastinbw/broadcast_application_client
1967f16b1ca5647edaff92fb9919ebf06b4e250e
381e2da933eea1aa9cf906994f1a7d834fcdf54c
refs/heads/master
2020-03-26T11:33:12.030419
2018-09-04T10:01:48
2018-09-04T10:01:48
144,847,130
0
0
null
null
null
null
UTF-8
Java
false
false
3,365
java
package com.mahta.rastin.broadcastapplication.helper; import android.content.ContentValues; import com.mahta.rastin.broadcastapplication.global.G; import com.mahta.rastin.broadcastapplication.interfaces.OnResultListener; import java.io.IOException; import java.util.concurrent.TimeUnit; import okhttp3.FormBody; import okhttp3.OkHttpClient; import okhttp3.Request; import okhttp3.RequestBody; import okhttp3.Response; public class HttpManager{ private OnResultListener onResultListener; private OkHttpClient client; private String httpResult; private static final int CONNECT_TIMEOUT = 10; private static final int WRITE_TIMEOUT = 10; private static final int READ_TIMEOUT = 30; HttpManager(){ client = new OkHttpClient.Builder() .connectTimeout(CONNECT_TIMEOUT,TimeUnit.SECONDS) .writeTimeout(WRITE_TIMEOUT, TimeUnit.SECONDS) .readTimeout(READ_TIMEOUT, TimeUnit.SECONDS) .build(); } public void post(String url, ContentValues params){ FormBody.Builder builder = new FormBody.Builder(); if (params!=null && params.size() > 0) for (String key:params.keySet()) { builder.add(key,params.getAsString(key)); } RequestBody body = builder.build(); Request request = new Request.Builder() .url(url) .post(body) .build(); doRequest(request); } public void get(String url,String[] args){ StringBuilder builder = new StringBuilder(); builder.append(url); if (args != null && args.length>0) for (String arg:args) { builder.append("/"); builder.append(arg); } // try { // URLEncoder.encode(builder.toString(), "UTF-8"); // } catch (UnsupportedEncodingException e) { // e.printStackTrace(); // } G.i(builder.toString()); // TODO: 6/3/18 remove this line Request request = new Request.Builder() .url(builder.toString()) .get() .build(); doRequest(request); } private void doRequest(final Request request){ Thread thread = new Thread(new Runnable() { @Override public void run() { Response response; try { response = client.newCall(request).execute(); if (!response.isSuccessful()) { G.e(response.body().string()); }else { httpResult = response.body().string(); if(onResultListener!=null){ G.HANDLER.post(new Runnable() { @Override public void run() { onResultListener.onResult(httpResult); } }); } } } catch (IOException e) { G.e(e.getMessage()); } } }); thread.start(); } public void setOnResultListener(OnResultListener onResultListener){ this.onResultListener = onResultListener; } }
[ "rastinbw@gmail.com" ]
rastinbw@gmail.com
8fe48367161e9646fac5f1132f31cfb7208db87a
71939f28b20bbc2f741e6245057494e9b9ef2e42
/dj-service/src/main/java/cn/dlbdata/dj/dto/vangard/VanguardParamVo.java
2451c4feba7d57a3f64c6ffb4da9dfd5d1d83d49
[]
no_license
jamesxiao2016/jlyz-parent
801d213e013723459881067025e5c5b3a8ccd81f
60d2b0a9faa04d45ab2d342f2fac82ad1c1ad849
refs/heads/master
2020-03-17T17:11:52.811523
2018-07-05T02:18:40
2018-07-05T02:19:01
null
0
0
null
null
null
null
UTF-8
Java
false
false
922
java
package cn.dlbdata.dj.dto.vangard; import java.io.Serializable; /** * 先锋作用VO * * @author xiaowei * */ public class VanguardParamVo implements Serializable { /** * */ private static final long serialVersionUID = -6241975440130813359L; // 用户ID private Long userId; private VanguardVo honor;//获得荣誉 private VanguardVo recognition;//先锋表彰 private VanguardVo vgd;//先锋模范 public Long getUserId() { return userId; } public void setUserId(Long userId) { this.userId = userId; } public VanguardVo getHonor() { return honor; } public void setHonor(VanguardVo honor) { this.honor = honor; } public VanguardVo getRecognition() { return recognition; } public void setRecognition(VanguardVo recognition) { this.recognition = recognition; } public VanguardVo getVgd() { return vgd; } public void setVgd(VanguardVo vgd) { this.vgd = vgd; } }
[ "qiuxiyu90@163.com" ]
qiuxiyu90@163.com
26f7e7a40cb6cdb1cece7fcfc600e1029229cf82
b2bf0f9e5f019421c624e01684eb62f07784d0ce
/src/main/java/org/entando/kubernetes/model/bundle/EntandoComponentBundleFluent.java
fa3139a9a63920b97a3c359a58f4e5b779bb4c5e
[]
no_license
Kerruba/entando-component-bundle-k8s-model
f6e0e76f2c527502179dbb2c0cc06be6d8741071
1145538f811364b7b9bee29de00bdda87218d285
refs/heads/master
2022-11-18T00:57:14.194095
2020-07-13T12:38:50
2020-07-13T12:38:50
null
0
0
null
null
null
null
UTF-8
Java
false
false
2,758
java
/* * * Copyright 2015-Present Entando Inc. (http://www.entando.com) All rights reserved. * * This library is free software; you can redistribute it and/or modify it under * the terms of the GNU Lesser General Public License as published by the Free * Software Foundation; either version 2.1 of the License, or (at your option) * any later version. * * This library is distributed in the hope that it will be useful, but WITHOUT * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS * FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more * details. * */ package org.entando.kubernetes.model.bundle; import io.fabric8.kubernetes.api.builder.Nested; import io.fabric8.kubernetes.api.model.ObjectMeta; import io.fabric8.kubernetes.api.model.ObjectMetaBuilder; import org.entando.kubernetes.model.EntandoBaseFluent; public class EntandoComponentBundleFluent<A extends EntandoComponentBundleFluent<A>> extends EntandoBaseFluent<A> { protected EntandoComponentBundleSpecBuilder spec; protected EntandoComponentBundleFluent() { this(new ObjectMetaBuilder(), new EntandoComponentBundleSpecBuilder()); } protected EntandoComponentBundleFluent(EntandoComponentBundleSpec spec, ObjectMeta objectMeta) { this(new ObjectMetaBuilder(objectMeta), new EntandoComponentBundleSpecBuilder(spec)); } private EntandoComponentBundleFluent(ObjectMetaBuilder metadata, EntandoComponentBundleSpecBuilder spec) { super(metadata); this.spec = spec; } public SpecNestedImpl<A> editSpec() { return new SpecNestedImpl<>(thisAsA(), this.spec.build()); } public SpecNestedImpl<A> withNewSpec() { return new SpecNestedImpl<>(thisAsA()); } public A withSpec(EntandoComponentBundleSpec spec) { this.spec = new EntandoComponentBundleSpecBuilder(spec); return thisAsA(); } @SuppressWarnings("unchecked") protected A thisAsA() { return (A) this; } public static class SpecNestedImpl<N extends EntandoComponentBundleFluent> extends EntandoComponentBundleSpecFluent<SpecNestedImpl<N>> implements Nested<N> { private final N parentBuilder; SpecNestedImpl(N parentBuilder, EntandoComponentBundleSpec spec) { super(spec); this.parentBuilder = parentBuilder; } public SpecNestedImpl(N parentBuilder) { super(); this.parentBuilder = parentBuilder; } @Override @SuppressWarnings("unchecked") public N and() { return (N) parentBuilder.withSpec(this.build()); } public N endSpec() { return this.and(); } } }
[ "luca.cherubin@gmail.com" ]
luca.cherubin@gmail.com
9ee8d65265ad904ad01952873f07bdbce80668ad
de397a2b1641e96d701a919e57a9857629cd9784
/NewbeeDao/src/test/java/mybatis/plus/generator/GeneratorCodeUtil.java
1c5fb03b6fa3a3e4168250c806bf4590fe69a4a1
[]
no_license
zth390872451/NewbeeProject
4d9cb55fa0bf69c8f8feb7ebf5122ec7153b803b
00c743acb62b9f02b7f659a0711adabff1f142b1
refs/heads/master
2020-04-07T16:19:07.126576
2018-11-27T07:51:01
2018-11-27T07:51:01
158,524,262
0
0
null
null
null
null
UTF-8
Java
false
false
5,310
java
package mybatis.plus.generator; import com.baomidou.mybatisplus.generator.AutoGenerator; import com.baomidou.mybatisplus.generator.InjectionConfig; import com.baomidou.mybatisplus.generator.config.*; import com.baomidou.mybatisplus.generator.config.po.TableInfo; import com.baomidou.mybatisplus.generator.config.rules.DbType; import com.baomidou.mybatisplus.generator.config.rules.NamingStrategy; import java.util.ArrayList; import java.util.List; /** * 生成代码工具类 * * @author xie.m * @date 2018/8/7 */ public class GeneratorCodeUtil { private GeneratorCodeUtil() { super(); } /** * 接口是否加I前缀 */ private static final boolean SERVICE_NAME_START_WITH_I = true; /** * 是否将mapper.xml文件生成到resources目录下 * 当设置为true,生成到resources目录下,设置为false,默认生成到mapper/xml目录下 */ private static final boolean IS_CHANGE_MAPPER_DIR = true; /** * 基础生成目录 */ private static String baseOutputDir = null; /** * 默认生成目录 */ private static String outputDir = null; /** * mapper文件生成目录 */ private static String mapperOutputDir = null; /** * 数据库连接 */ private static final String DB_URL = "jdbc:mysql://10.234.7.109:3306/hrms"; /** * 数据库名 */ private static final String DB_NAME = "hrms"; /** * 数据库密码 */ private static final String DB_PD = "123456"; /** * 数据库驱动 */ private static final String DRIVER_NAME = "com.mysql.jdbc.Driver"; /** * 生成代码 * * @param packageName * 包路径 * @param tableNames * 表集合,可变参数,可以添加多个表名 */ public static void generateByTables(String packageName, String... tableNames) { generateByTables(null, packageName, tableNames); } /** * 生成代码 * * @param author * 生成代码的作者 * @param packageName * 包路径 * @param tableNames * 表集合,可变参数,可以添加多个表名 */ public static void generateByTables(String author, String packageName, String... tableNames) { generateByTables(author, packageName, DB_URL, DB_NAME, DB_PD, tableNames); } /** * 生成代码 * * @param author * 生成代码的作者 * @param packageName * 包路径 * @param dbUrl * 数据库路径 * @param dbName * 数据库名 * @param dbPassword * 数据库密码 * @param tableNames * 表集合,可变参数,可以添加多个表名 */ public static void generateByTables(String author, String packageName, String dbUrl, String dbName, String dbPassword, String... tableNames) { GlobalConfig config = new GlobalConfig(); DataSourceConfig dataSourceConfig = new DataSourceConfig(); dataSourceConfig.setDbType(DbType.MYSQL).setUrl(dbUrl).setUsername(dbName).setPassword(dbPassword) .setDriverName(DRIVER_NAME); StrategyConfig strategyConfig = new StrategyConfig(); strategyConfig.setCapitalMode(true).setEntityLombokModel(false).setDbColumnUnderline(true) .setNaming(NamingStrategy.underline_to_camel).setEntityBooleanColumnRemoveIsPrefix(true) .setRestControllerStyle(true).setControllerMappingHyphenStyle(true).setSkipView(true) .setInclude(tableNames);// 修改替换成你需要的表名,多个表名传数组 config.setActiveRecord(false).setAuthor(author).setOutputDir(outputDir).setFileOverride(true).setOpen(false) .setEnableCache(false); if (!SERVICE_NAME_START_WITH_I) { config.setServiceName("%sService"); } PackageConfig packageConfig = new PackageConfig().setParent(packageName).setController("controller") .setEntity("entity"); AutoGenerator autoGenerator = new AutoGenerator().setGlobalConfig(config).setDataSource(dataSourceConfig) .setStrategy(strategyConfig).setPackageInfo(packageConfig); if (IS_CHANGE_MAPPER_DIR) { InjectionConfig injectionConfig = getMapperDir(); TemplateConfig templateConfig = getTemplateConfig(); autoGenerator.setCfg(injectionConfig); autoGenerator.setTemplate(templateConfig); } autoGenerator.execute(); } static { String rootDir = System.getProperty("user.dir"); if (null != rootDir && !rootDir.equals("")) { baseOutputDir = rootDir.replace("\\", "/") + "/src/main/"; outputDir = baseOutputDir + "/java"; mapperOutputDir = baseOutputDir + "/resources/mapper/"; } } private static TemplateConfig getTemplateConfig() { TemplateConfig templateConfig = new TemplateConfig(); templateConfig.setXml(null); return templateConfig; } /** * 获取mapper.xml文件的生成目录 * * @return */ private static InjectionConfig getMapperDir() { InjectionConfig injectionConfig = new InjectionConfig() { @Override public void initMap() { return; } }; List<FileOutConfig> fileOutConfigList = new ArrayList<>(); FileOutConfig fileOutConfig = new FileOutConfig("/templates/mapper.xml.vm") { @Override public String outputFile(TableInfo tableInfo) { return mapperOutputDir + tableInfo.getEntityName() + "Mapper.xml"; } }; fileOutConfigList.add(fileOutConfig); injectionConfig.setFileOutConfigList(fileOutConfigList); return injectionConfig; } }
[ "zth390872451@gmail.com" ]
zth390872451@gmail.com
6815b574e35163881f781d1db9c31a9c9c592b8c
7c4ab477d971333116bc510dade23383fef81f7f
/ch.digitalmeat.generation/src/ch/digitalmeat/generation/level/room/Randomizer.java
4c6ed4320d2cc8e337214b786beedc8ddc818688
[]
no_license
tomvangreen/generation
757d77efb62735e39407032c37b70b3102731c33
87eb2de84b90b9998f1dbec57ccc0878b75ec352
refs/heads/master
2020-12-30T10:37:05.662844
2014-03-26T13:54:44
2014-03-26T13:54:44
null
0
0
null
null
null
null
UTF-8
Java
false
false
1,875
java
package ch.digitalmeat.generation.level.room; import static ch.digitalmeat.generation.level.data.Direction8.East; import static ch.digitalmeat.generation.level.data.Direction8.North; import static ch.digitalmeat.generation.level.data.Direction8.South; import static ch.digitalmeat.generation.level.data.Direction8.West; import static ch.digitalmeat.generation.level.room.RoomCellFactory.DOOR; import static ch.digitalmeat.generation.level.room.RoomCellFactory.EMPTY; import static ch.digitalmeat.generation.level.room.RoomCellFactory.WALL; import ch.digitalmeat.generation.data.List2D; import ch.digitalmeat.generation.level.Processor; import ch.digitalmeat.generation.level.data.Cell; import ch.digitalmeat.generation.level.data.Grid; public class Randomizer extends Processor { @Override protected boolean processImplementation(Grid level) { List2D<Cell> cells = level.cells(); int length = cells.length(); for (int index = 0; index < length; index++) { Cell cell = cells.get(index); randomize(cell); } return true; } private void randomize(Cell cell) { if (r.nextInt(4) == 0) { cell.put(RoomCellFactory.USED, false); } else { cell.put(RoomCellFactory.USED, true); cell.put(RoomCellFactory.CONNECTED, r.nextBoolean()); cell.put(North.name, randomWall()); cell.put(East.name, randomWall()); cell.put(South.name, randomWall()); cell.put(West.name, randomWall()); // cell.put(North.name, DOOR); // cell.put(East.name, DOOR); // cell.put(South.name, DOOR); // cell.put(West.name, DOOR); } } private int randomWall() { switch (r.nextInt(3)) { default: case 0: return EMPTY; case 1: return WALL; case 2: return DOOR; } } }
[ "atombrot@gmail.com" ]
atombrot@gmail.com
d0dbd18b640ea9bef42f60f0e496f952530cc79c
c360af2999d2950e89c8466560e5d901e534bc2d
/AndroidMovieApp/app/src/main/java/movies/com/androidmovieapp/view/MovieDetailView.java
b083a88163ee8316b94dea741dc9b91f351e9c5d
[]
no_license
BenishBaby/MovieDBApp
46c5db77c2631ef7ffaf05d6473e896325a191a0
7b5fbd5bcf29980bcdba1829fce9fea22f25391f
refs/heads/master
2020-03-18T14:40:45.471329
2018-05-28T19:55:26
2018-05-28T19:55:26
134,860,745
0
0
null
null
null
null
UTF-8
Java
false
false
522
java
package movies.com.androidmovieapp.view; import movies.com.androidmovieapp.Model.CollectionDetails; import movies.com.androidmovieapp.Model.MovieDetails; import movies.com.androidmovieapp.Model.NowPlayingMoviesResults; public interface MovieDetailView { void showProgress(); void hideProgress(); void setMovieFetchError(); void setMoviewDetails(MovieDetails moviewDetails); void setMoviewCollectionList(CollectionDetails collectionDetails); void naviageToMovieDetailPage(String movieId); }
[ "bineeshtbaby@gmail.com" ]
bineeshtbaby@gmail.com
b91da0cc6348db2f7c008e5627d711d080f7517a
edc22cffa19b01aef5b6e31b218083d7ce6a3fa2
/app/src/main/java/code/common/ProgressBarAnimation.java
1335d2f5430fb31ec50ccf8d2b40adeff33b175d
[]
no_license
Rjestures/Zozima
4884b532e7b065efac685da8f7786da6bdf2b6dc
9cba962e98dd990434e15355615faadb7b6d4486
refs/heads/master
2022-07-19T18:42:55.961899
2020-05-18T07:43:43
2020-05-18T07:43:43
261,849,744
0
0
null
null
null
null
UTF-8
Java
false
false
794
java
package code.common; import android.view.animation.Animation; import android.view.animation.Transformation; import android.widget.ProgressBar; /** * Created by mohammadfaiz on 09/09/17. */ public class ProgressBarAnimation extends Animation { private ProgressBar progressBar; private float from; private float to; public ProgressBarAnimation(ProgressBar progressBar, float from, float to) { super(); this.progressBar = progressBar; this.from = from; this.to = to; } @Override protected void applyTransformation(float interpolatedTime, Transformation t) { super.applyTransformation(interpolatedTime, t); float value = from + (to - from) * interpolatedTime; progressBar.setProgress((int) value); } }
[ "rjesture@gmail.com" ]
rjesture@gmail.com
c2d9d3690620556224eb1811fc30f83bd41f9ff1
ce42321cfdce9451b8249605c317ca412fcdbb56
/src/me/maxwin/view/XListViewFooter.java
fd51fd04c07239453296c1e36ee47ea530e9b181
[]
no_license
droison/Qdaily
8656d10562d2e91f520cd2ed8ea8580b7778bbab
ae26718ddbe5fcb80b5d7582f9747e86e066c4d6
refs/heads/master
2016-09-06T17:23:25.261972
2014-09-11T15:38:50
2014-09-11T15:38:50
null
0
0
null
null
null
null
UTF-8
Java
false
false
2,914
java
/** * @file XFooterView.java * @create Mar 31, 2012 9:33:43 PM * @author Maxwin * @description XListView's footer */ package me.maxwin.view; import com.qdaily.ui.R; import android.content.Context; import android.util.AttributeSet; import android.view.LayoutInflater; import android.view.View; import android.widget.LinearLayout; import android.widget.TextView; public class XListViewFooter extends LinearLayout { public final static int STATE_NORMAL = 0; public final static int STATE_READY = 1; public final static int STATE_LOADING = 2; private Context mContext; private View mContentView; private View mProgressBar; private TextView mHintView; public XListViewFooter(Context context) { super(context); initView(context); } public XListViewFooter(Context context, AttributeSet attrs) { super(context, attrs); initView(context); } public void setState(int state) { mHintView.setVisibility(View.INVISIBLE); mProgressBar.setVisibility(View.INVISIBLE); mHintView.setVisibility(View.INVISIBLE); if (state == STATE_READY) { mHintView.setVisibility(View.VISIBLE); mHintView.setText(R.string.xlistview_footer_hint_ready); } else if (state == STATE_LOADING) { mProgressBar.setVisibility(View.VISIBLE); } else { mHintView.setVisibility(View.VISIBLE); mHintView.setText(R.string.xlistview_footer_hint_normal); } } public void setBottomMargin(int height) { if (height < 0) return; LayoutParams lp = (LayoutParams) mContentView.getLayoutParams(); lp.bottomMargin = height; mContentView.setLayoutParams(lp); } public int getBottomMargin() { LayoutParams lp = (LayoutParams) mContentView.getLayoutParams(); return lp.bottomMargin; } /** * normal status */ public void normal() { mHintView.setVisibility(View.VISIBLE); mProgressBar.setVisibility(View.GONE); } /** * loading status */ public void loading() { mHintView.setVisibility(View.GONE); mProgressBar.setVisibility(View.VISIBLE); } /** * hide footer when disable pull load more */ public void hide() { LayoutParams lp = (LayoutParams) mContentView.getLayoutParams(); lp.height = 0; mContentView.setLayoutParams(lp); } /** * show footer */ public void show() { LayoutParams lp = (LayoutParams) mContentView.getLayoutParams(); lp.height = LayoutParams.WRAP_CONTENT; mContentView.setLayoutParams(lp); } private void initView(Context context) { mContext = context; LinearLayout moreView = (LinearLayout) LayoutInflater.from(mContext).inflate(R.layout.xlistview_footer, null); addView(moreView); moreView.setLayoutParams(new LayoutParams(LayoutParams.FILL_PARENT, LayoutParams.WRAP_CONTENT)); mContentView = moreView.findViewById(R.id.xlistview_footer_content); mProgressBar = moreView.findViewById(R.id.xlistview_footer_progressbar); mHintView = (TextView) moreView.findViewById(R.id.xlistview_footer_hint_textview); } }
[ "chaisong.cn@gmail.com" ]
chaisong.cn@gmail.com
04a1dd88567cf6199ffa69dfa6036087b7b82e2c
9c166d94fa45ac08bd6c3f8f8f38e9c31d9cfc08
/version_2/PizzaStore.java
2d872c5706c9a1d697f077baed686e8c572dfacd
[]
no_license
JavierDuranFlores/Proyectos-Tapachula-Pizza
72fb4a4f63397ebc5b88faf7881338d484e79cdd
a062ca7ac607c879b97205b37fc5b676f239e125
refs/heads/main
2023-04-04T09:44:16.107188
2021-04-17T23:32:02
2021-04-17T23:32:02
359,003,659
0
0
null
null
null
null
UTF-8
Java
false
false
535
java
/* La siguiente secuencia de código fuente: [PizzaStore.java] -> [NYPizzaStore.java] -> [Pizza.java] -> [CheesePizza.java] -> [main] */ ///PizzaStore.java public abstract class PizzaStore { abstract Pizza createPizza(String item); public Pizza orderPizza(String type) { Pizza pizza = createPizza(type); System.out.println("--- Making a " + pizza.getName() + " ---"); pizza.prepare(); pizza.bake(); pizza.cut(); pizza.box(); return pizza; } }
[ "duranfloresj7@gmail.com" ]
duranfloresj7@gmail.com
68a7e1dec760df2f623c4a8509a9fe35e5fbb65b
139960e2d7d55e71c15e6a63acb6609e142a2ace
/mobile_app1/module1105/src/main/java/module1105packageJava0/Foo159.java
5df6319bbf5ed05649642ac5a13e985b8866b9a6
[ "Apache-2.0" ]
permissive
uber-common/android-build-eval
448bfe141b6911ad8a99268378c75217d431766f
7723bfd0b9b1056892cef1fef02314b435b086f2
refs/heads/master
2023-02-18T22:25:15.121902
2023-02-06T19:35:34
2023-02-06T19:35:34
294,831,672
83
7
Apache-2.0
2021-09-24T08:55:30
2020-09-11T23:27:37
Java
UTF-8
Java
false
false
416
java
package module1105packageJava0; import java.lang.Integer; public class Foo159 { Integer int0; public void foo0() { new module1105packageJava0.Foo158().foo6(); } public void foo1() { foo0(); } public void foo2() { foo1(); } public void foo3() { foo2(); } public void foo4() { foo3(); } public void foo5() { foo4(); } public void foo6() { foo5(); } }
[ "oliviern@uber.com" ]
oliviern@uber.com
3519f63d651edeb6a7f056234d17f0bb1de0873f
fc47ee8153d0096b32f56d564018f3f73b3696c8
/app/src/main/java/com/johnriggs/digitalturbine/vertical/ads/view/AdsView.java
c31fd48d195e7a0214715906a0eb330d4f71b024
[]
no_license
johnriggs/DigitalTurbine
bb5b53fea08a49b9bd33de5e8fd548dfea0545c1
7985896cbdec6d524db3cbe223c93d0777fb9ee9
refs/heads/master
2021-01-01T19:26:33.547508
2017-07-31T15:03:24
2017-07-31T15:03:24
98,586,043
0
0
null
null
null
null
UTF-8
Java
false
false
292
java
package com.johnriggs.digitalturbine.vertical.ads.view; import com.johnriggs.digitalturbine.horizontal.base.view.BaseView; /** * Created by johnriggs on 7/25/17. */ public interface AdsView extends BaseView{ void setupAdsRecyclerView(); void launchToDetailsView(String appId); }
[ "johnrriggs22@gmail.com" ]
johnrriggs22@gmail.com
33ff7f5288274829d16361c2476a6376dfe1e6e6
a4910b28ec8c0ad2127d4e278ca1a76ab9e30724
/Demo/src/shape/Circle.java
e5ed314b24ce0135581a09aaaa4d0bb529e98aad
[]
no_license
JohnnyLChang/JavaDemo
f2008a35d210270363310e54fd6b86b3910634f4
fc7adbc1fc9fa4d2ef6e23a8ae17391d431a6beb
refs/heads/master
2021-01-23T09:25:42.934509
2017-11-14T16:13:20
2017-11-14T16:13:20
102,579,774
2
0
null
null
null
null
UTF-8
Java
false
false
899
java
package shape; public class Circle extends ShapeBuilder implements IShape { private double radius; public static class Builder extends ShapeBuilderBase<Builder, Circle> { private double radius; public Builder setRadius(double radius) { this.radius = radius; return this; } @Override public Circle build() { return new Circle(this.radius); } } public Circle(double radius) { this.radius = radius; } @SuppressWarnings("finally") @Override public double getArea() { double volume = 0; try { volume = (Math.pow(this.radius, 2) * Math.PI); } catch (Exception ex) { } finally { return volume; } } @Override public double getVolume() { return 0; } @Override public void printSummary() { System.out.printf("Summary: %s Area %f, Volume %f\n", this.getClass().getSimpleName(), this.getArea(), this.getVolume()); } }
[ "riversnow@gmail.com" ]
riversnow@gmail.com
8382da8f03743fcc1783cbe676ea25369d8810e5
4b954dbad1d42681157eee475d6cd1fa57628e1d
/module4/bai_7_spring_data_jpa/bai_tap/blog_manager/src/main/java/com/blog/controller/BlogController.java
6a358f2d8b8cc95c7f1ae6a95e30ea73077c3021
[]
no_license
hongson2410/C1020G1-PhamHongSon
c5466a068154f7cfcfb6a2c0c2f47bd90ff9f7ab
ae10660a5de6d9c3018a64f238dd34897f6ad2c2
refs/heads/main
2023-04-11T10:55:26.730907
2021-04-18T10:20:00
2021-04-18T10:20:00
307,275,086
0
0
null
null
null
null
UTF-8
Java
false
false
3,201
java
package com.blog.controller; import com.blog.model.Blog; import com.blog.model.Category; import com.blog.service.impl.BlogServiceImpl; import com.blog.service.impl.CategoryServiceImpl; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.data.domain.Pageable; import org.springframework.data.web.PageableDefault; import org.springframework.stereotype.Controller; import org.springframework.ui.Model; import org.springframework.web.bind.annotation.*; import org.springframework.web.servlet.mvc.support.RedirectAttributes; import java.util.Date; @Controller public class BlogController { @Autowired BlogServiceImpl blogService; @Autowired CategoryServiceImpl categoryService; @ModelAttribute("categories") public Iterable<Category> categories(Pageable pageable) { return categoryService.findAllCategory(pageable); } @GetMapping("/") public String showHome(@PageableDefault(size = 5) Pageable pageable, Model model) { model.addAttribute("blogList", blogService.findAll(pageable)); return "home"; } @GetMapping("search_name") public String searchByName(@PageableDefault(size = 5) Pageable pageable, Model model, @RequestParam(name = "nameBlog") String blogName) { model.addAttribute("blogList", blogService.findByBlogNameContaining(pageable, blogName)); return "search"; } @GetMapping("search_category") public String searchByCategory(@PageableDefault(size = 5) Pageable pageable, Model model, @RequestParam(name = "id") Integer id) { model.addAttribute("blogList", blogService.findByCategory(pageable, id)); return "search"; } @GetMapping("create") public String showFormCreate(Model model) { model.addAttribute("blog", new Blog()); return "create"; } @PostMapping("create") public String createBlog(@ModelAttribute Blog blog, RedirectAttributes redirectAttributes) { blog.setDateUpdate(new Date()); blogService.save(blog); redirectAttributes.addFlashAttribute("message", "New blog created successfully"); return "redirect:/"; } @GetMapping("edit/{id}") public String showFormEdit(@PathVariable Integer id, Model model) { model.addAttribute("blog", blogService.findById(id)); return "edit"; } @PostMapping("edit") public String editBlog(@ModelAttribute Blog blog, RedirectAttributes redirectAttributes) { blog.setDateUpdate(new Date()); blogService.save(blog); redirectAttributes.addFlashAttribute("message", "This blog edit successfully"); return "redirect:/"; } @PostMapping("delete") public String deleteBlog(@ModelAttribute(name = "id") Integer id, RedirectAttributes redirectAttributes) { blogService.deleteById(id); redirectAttributes.addFlashAttribute("message", "This blog delete successfully"); return "redirect:/"; } @GetMapping("view/{id}") public String showBlog(@PathVariable Integer id, Model model) { model.addAttribute("blog", blogService.findById(id)); return "view"; } }
[ "phamhongson2410@gmail.com" ]
phamhongson2410@gmail.com
831cb70b0614250f83fcb6e96cc6bc93f22a379b
cf0f34937b476ecde5ebcca7e2119bcbb27cfbf2
/src/com/huateng/struts/query/action/T50905Action.java
6cb24bc8550bc69e29a67b4ac480e4516ef043da
[]
no_license
Deron84/xxxTest
b5f38cc2dfe3fe28b01634b58b1236b7ec5b4854
302b807f394e31ac7350c5c006cb8dc334fc967f
refs/heads/master
2022-02-01T03:32:54.689996
2019-07-23T11:04:09
2019-07-23T11:04:09
198,212,201
0
0
null
null
null
null
UTF-8
Java
false
false
3,995
java
package com.huateng.struts.query.action; import java.util.Calendar; import java.util.Date; import java.util.GregorianCalendar; import java.util.List; import com.huateng.common.StringUtil; import com.huateng.struts.query.BaseExcelQueryAction; import com.huateng.struts.query.ExcelName; import com.huateng.struts.query.QueryExcelUtil; import com.huateng.system.util.InformationUtil; /** * project JSBConsole date 2013-4-22 * * @author 高浩 */ public class T50905Action extends BaseExcelQueryAction { @Override protected void deal() { year = mon.substring(0, 4); String yearStart = year +"0101"; String monStart = mon + "01"; int m = Integer.valueOf(mon.substring(4, 6)); int y = Integer.valueOf(year); String monEnd = getMonEnd(m,y,mon); c = sheet.getRow(1).getCell(1); if(c == null){ sheet.getRow(1).createCell(1); } if(sheet.getRow(1).getCell(4) == null){ sheet.getRow(1).createCell(4); } String wheresql = " where CONN_TYPE = 'J' and DATE_SETTLMT_8 >= '"+ monStart +"' and DATE_SETTLMT_8 <= '"+ monEnd +"' "; if(!StringUtil.isNull(mon)){ c.setCellValue(mon); } String sql = "select (case MCHT_FLAG1 when '0' then '收款商户' " + "when '1' then '老板通商户' " + "when '2' then '分期商户' " + "when '3' then '财务转账商户' " + "when '4' then '项目形式商户' " + "when '5' then '积分业务' " + "when '6' then '其他业务' " + "when '7' then '固话POS商户' end) mchtTp," + "thNum,allNum,round(thNum*100/allNum,2) per " + "from (select MCHT_FLAG1," + "sum(case when STLM_FLAG in('0','7','A','D','9','8') then 0 else 1 end) thNum," + "count(1) allNum " + "from (select * from BTH_GC_TXN_SUCC " + "union all " + "select * from BTH_GC_TXN_SUCC_HIS) a " + "left outer join TBL_MCHT_BASE_INF b on(a.CARD_ACCP_ID=b.MCHT_NO) "; sql += wheresql; sql += " group by MCHT_FLAG1 order by MCHT_FLAG1)"; int rowNum =3, cellNum = 0,columnNum = 4; fillData(sql, rowNum, cellNum, columnNum); } // /*对账平结果标志*/ // #define STLM_FLG_OK "0" /*-- 对账结果平*/ // #define STLM_FLG_SUSPICIOUS_OK "A" /*-- CUPS可疑交易对平;*/ // // /*对账不平结果标志 */ // #define STLM_CUP_FLG_POSP "1" /*-- POSP有,CUPS没有*/ // #define STLM_CUP_FLG_CUPS "2" /*-- POSP无,CUPS有*/ // #define STLM_CUP_FLG_DISTRUST "3" /*-- POSP与CUPS金额不一致;*/ // #define STLM_HOST_FLG_POSP "4" /*-- POSP有,HOST没有;*/ // #define STLM_HOST_FLG_HOST "5" /*-- POSP无, HOST有;*/ // #define STLM_HOST_FLG_DISTRUST "6" /*-- POSP与HOST金额不一致;*/ // #define STLM_UPD_FLG_POSP "R" /*-- POSP有,UPD没有;*/ // #define STLM_UPD_FLG_UPD "S" /*-- POSP无,UPD有;*/ // #define STLM_UPD_FLG_DISTRUST "T" /*-- POSP与UPD金额不一致;*/ // #define STLM_CUP_FLG_SUSPICIOUS "7" /*-- CUPS可疑交易;*/ // #define STLM_OFF_FLG_AMT 'Z' /*脱机交易中标志两者金额不同*/ // #define STLM_OFF_FLG_HEART 'W' /*脱机交易中标志是本地端有的*/ // #define STLM_OFF_FLG_CUPS 'X' /*脱机交易中标志是银联端有的*/ // #define STLM_FLG_NOCHK "8" /*-- 导入未核对交易;*/ // #define STLM_FLG_RVSL "9" /* 银联冲正及原交易交易标志;*/ // #define STLM_FLG_DEL "D" /* 清理数据标志 */ private String year; private String mon; private String brhId; public String getMon() { return mon; } public void setMon(String mon) { this.mon = mon; } public String getBrhId() { return brhId; } public void setBrhId(String brhId) { this.brhId = brhId; } @Override protected String getFileKey() { return ExcelName.EN_55; } @Override public String getMsg() { return msg; } @Override public boolean isSuccess() { return success; } }
[ "weijx@inspur.com" ]
weijx@inspur.com
8116d8a0a0f1f05d3a5724c72e7b008228c35547
7f2587ef405359f475da20cdc2336adcc3f8d72b
/taiyiyun/src/main/java/com/taiyiyun/passport/service/IArticleViewService.java
3054d3334ed5c797f86a04ca06ae391215ae7382
[]
no_license
zhan199516/taiyiyun
dba90433b4fce055e9b597ef8f1178a7c0b68494
2ca9d672d9d43436b72f24ff655100dae6e626b3
refs/heads/master
2022-12-20T00:15:48.821278
2020-10-01T06:46:11
2020-10-01T06:46:11
300,165,216
0
0
null
null
null
null
UTF-8
Java
false
false
286
java
package com.taiyiyun.passport.service; import java.util.HashMap; /** * Created by okdos on 2017/7/1. */ public interface IArticleViewService { HashMap<String, Object> readArticle(String articleId, String viewId); String findFirstImageUrl(String content); }
[ "zhanshuaiqiang@hotmail.com" ]
zhanshuaiqiang@hotmail.com
4231776e83ddccb8f60f6b16cef261999087dabe
ee44b8cfc9d9e0bcf1509ef5f7b607074c3f6972
/EvaluacionExp12015/src/entregados/exp155562455/Supermercado.java
d83a9a834a33b79e5d8aa73e75bc4e94e1658501
[]
no_license
fborquez/thdsw
96e7ee7f76620a47e4269a25adb7150159b0985b
7e618a91f543d5145e1299f45933316245eaf972
refs/heads/master
2021-01-10T12:12:51.587432
2015-11-11T01:09:25
2015-11-11T01:09:25
45,679,530
0
1
null
null
null
null
UTF-8
Java
false
false
642
java
/** * Auto Generated Java Class. */ import java.io.*; import java.util.*; import java.text.NumberFormat; public class Supermercado { //Variables public String nombre; public int numCarritos = 5; //Instancio Clase Carrito private Carrito[] carritos = new Carrito[numCarritos]; public Supermercado(String nombre) { /* YOUR CONSTRUCTOR CODE HERE*/ for (int i = 0; i < this.carritos.length; i++) { this.carritos[i] = new Carrito(); } this.nombre = nombre; } public String getNombre() { return this.nombre; } /* ADD YOUR CODE HERE */ }
[ "fborquez@SACLAD001129.aonnet.aon.net" ]
fborquez@SACLAD001129.aonnet.aon.net
6936d7a48396d92306a6941d4214e1f419a446d5
381926f2ba76c36900be8d4c94170b5cf7d5999b
/src/main/java/pe/com/intercorp/service/CustomerService.java
ca5ee158d89be8a0fda8f6aa38527a044d5dc140
[]
no_license
miguelgrasso/customer-service
3b2adfb89b351814139964d89160a4ab93fedb13
07c5848d0cb118eec5f9f7b5b9cb299f23e3ff5c
refs/heads/master
2022-06-10T10:42:10.966385
2020-03-24T02:58:02
2020-03-24T02:58:02
249,508,551
0
0
null
2022-05-20T21:30:50
2020-03-23T18:12:25
Java
UTF-8
Java
false
false
3,075
java
package pe.com.intercorp.service; import java.math.BigDecimal; import java.util.List; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.http.HttpStatus; import org.springframework.http.ResponseEntity; import org.springframework.stereotype.Service; import lombok.extern.slf4j.Slf4j; import pe.com.intercorp.bean.Customer; import pe.com.intercorp.bean.KpiCustomer; import pe.com.intercorp.bean.ResponseCustMsg; import pe.com.intercorp.bean.ResponseDataMsg; import pe.com.intercorp.repository.CustomerRepository; import pe.com.intercorp.util.Constantes; import pe.com.intercorp.util.UtilCalculos; /** * EmpleadoService * @author mgrasso **/ @Slf4j //Autogenerar LOG4J. @Service public class CustomerService{ @Autowired private CustomerRepository customerRepository; @Autowired private UtilCalculos utilCalculos; /** * creacliente * @param customer * @return ResponseEntity<ResponseEntity> **/ public ResponseEntity<String> creacliente( Customer customer ){ log.info( "-----> Customer 'creacliente': {}", customer ); String vMensajeReturn = Constantes.MENSAJE_OK; //Agregando el NUEVO customer: this.customerRepository.agregarCustomer( customer ); //Objeto Return: ResponseEntity<String> objRetorno = new ResponseEntity<String>( vMensajeReturn, HttpStatus.OK ); return objRetorno; } /** * kpiclientes * @return ResponseEntity<ResponseDataMsg> **/ public ResponseEntity<ResponseDataMsg> kpiclientes(){ log.info( "-----> Customer 'kpiclientes'" ); List<Customer> listaClientes = this.listclientes().getBody().getListCustomers(); BigDecimal vPromedio = this.utilCalculos.calcularPromedio( listaClientes ); Double vDesviacionEstandar = this.utilCalculos.calcularDesviacionEstandar(); KpiCustomer objKpiCustomer = new KpiCustomer(); objKpiCustomer.setPromedio( vPromedio + "" ); objKpiCustomer.setDesviacionEstandar( vDesviacionEstandar + "" ); ResponseDataMsg objResponseMsg = new ResponseDataMsg(); objResponseMsg.setKpiCustomer( objKpiCustomer ); //Objeto Return: ResponseEntity<ResponseDataMsg> objRetorno = new ResponseEntity<ResponseDataMsg>( objResponseMsg, HttpStatus.OK ); return objRetorno; } /** * listclientes * @return ResponseEntity<ResponseCustMsg> **/ public ResponseEntity<ResponseCustMsg> listclientes(){ log.info( "-----> Customer 'listclientes'" ); //Obteniendo la lista del REPOSITORY: List<Customer> listaCustomers = this.customerRepository.listaCustomer(); ResponseCustMsg objResponseMsg = new ResponseCustMsg(); objResponseMsg.listCustomers( listaCustomers ); //Objeto Return: ResponseEntity<ResponseCustMsg> objRetorno = new ResponseEntity<ResponseCustMsg>( objResponseMsg, HttpStatus.OK ); return objRetorno; } }
[ "mgrassoaguinaga@gmail.com" ]
mgrassoaguinaga@gmail.com
6abaff0a880bc9322c4281d3e10b3cdb6885d57f
f2d85e3f5d6dcac0a7b18cbfef6d6b7c62ab570a
/rdma-based-storm/examples/storm-redis-examples/src/main/java/org/apache/storm/redis/trident/WordCountStoreMapper.java
58df150c4b146c7e2ca96fc5ab910e16d0e5e72b
[ "Apache-2.0", "MIT", "BSD-3-Clause", "BSD-2-Clause", "GPL-1.0-or-later" ]
permissive
dke-knu/i2am
82bb3cf07845819960f1537a18155541a1eb79eb
0548696b08ef0104b0c4e6dec79c25300639df04
refs/heads/master
2023-07-20T01:30:07.029252
2023-07-07T02:00:59
2023-07-07T02:00:59
71,136,202
8
14
Apache-2.0
2023-07-07T02:00:31
2016-10-17T12:29:48
Java
UTF-8
Java
false
false
1,498
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.apache.storm.redis.trident; import org.apache.storm.tuple.ITuple; import org.apache.storm.redis.common.mapper.RedisDataTypeDescription; import org.apache.storm.redis.common.mapper.RedisStoreMapper; public class WordCountStoreMapper implements RedisStoreMapper { @Override public RedisDataTypeDescription getDataTypeDescription() { return new RedisDataTypeDescription(RedisDataTypeDescription.RedisDataType.HASH, "test"); } @Override public String getKeyFromTuple(ITuple tuple) { return "test_" + tuple.getString(0); } @Override public String getValueFromTuple(ITuple tuple) { return tuple.getInteger(1).toString(); } }
[ "wnghd9999@naver.com" ]
wnghd9999@naver.com
2ddc904dd70e046ab5c8c82f9221bc020e71b1bd
138e198af877de7ae0adccc5207d70c282952ee1
/SearchHandlerThread/app/src/main/java/com/example/asus1/searchhandlerthread/DownLoadThread.java
006cd9e1172158bb4bab39433d1adb8b6ead5af2
[]
no_license
brice-liu/PracticeEveryDay
f8967f5881f2ae1a589910911544d84e78b2e255
9cab30c08da76585c4fc2c54feb035bd90f4dd91
refs/heads/master
2021-10-14T09:44:00.483488
2019-02-04T08:07:04
2019-02-04T08:07:04
null
0
0
null
null
null
null
UTF-8
Java
false
false
2,412
java
package com.example.asus1.searchhandlerthread; import android.os.Bundle; import android.os.Handler; import android.os.HandlerThread; import android.os.Message; import android.os.SystemClock; import android.text.format.DateUtils; import java.util.Arrays; import java.util.List; public class DownLoadThread extends HandlerThread implements Handler.Callback { private final String TAG = this.getClass().getSimpleName(); private final String KEY_URL = "url"; public static final int TYPE_START = 1; public static final int TYPE_FINISHED = 2; private Handler mWorkHandler; private Handler mUIHandler; private List<String> mDownLoadUrlList; public DownLoadThread(String name) { super(name); } @Override protected void onLooperPrepared() { super.onLooperPrepared(); mWorkHandler = new Handler(getLooper(),this); if (mUIHandler == null) { throw new IllegalArgumentException("Not set UIHandler!"); } for(String url:mDownLoadUrlList){ Message message = mWorkHandler.obtainMessage(); Bundle bundle = new Bundle(); bundle.putString(KEY_URL,url); message.setData(bundle); mWorkHandler.sendMessage(message); } } public void setDownloadUrls(String... urls) { mDownLoadUrlList = Arrays.asList(urls); } public Handler getUIHandler() { return mUIHandler; } //注入主线程 Handler public DownLoadThread setUIHandler(final Handler UIHandler) { mUIHandler = UIHandler; return this; } @Override public boolean handleMessage(Message msg) { if(msg == null || msg.getData() == null){ return false; } String url = (String)msg.getData().get(KEY_URL); //开始下载 Message startMessage = mUIHandler.obtainMessage(TYPE_START, "\n 开始下载 @"+System.currentTimeMillis()+"\n"+url); mUIHandler.sendMessage(startMessage); SystemClock.sleep(2000); Message finishMessage = mUIHandler.obtainMessage(TYPE_FINISHED, "\n 下载完成 @"+System.currentTimeMillis()+"\n"+url); mUIHandler.sendMessage(finishMessage); return true; } @Override public boolean quitSafely() { mUIHandler = null; return super.quitSafely(); } }
[ "273104241@qq.com" ]
273104241@qq.com
aa9315f43c704d8ff70b47639f1cb376467a31d8
df134b422960de6fb179f36ca97ab574b0f1d69f
/net/minecraft/server/v1_16_R2/LootEntryAlternatives.java
2114862c03e1e3fef27aab6f32bcc0f722241cd3
[]
no_license
TheShermanTanker/NMS-1.16.3
bbbdb9417009be4987872717e761fb064468bbb2
d3e64b4493d3e45970ec5ec66e1b9714a71856cc
refs/heads/master
2022-12-29T15:32:24.411347
2020-10-08T11:56:16
2020-10-08T11:56:16
302,324,687
0
1
null
null
null
null
UTF-8
Java
false
false
2,732
java
/* */ package net.minecraft.server.v1_16_R2; /* */ /* */ import com.google.common.collect.Lists; /* */ import java.util.List; /* */ import java.util.function.Consumer; /* */ import org.bukkit.craftbukkit.libs.org.apache.commons.lang3.ArrayUtils; /* */ /* */ public class LootEntryAlternatives /* */ extends LootEntryChildrenAbstract /* */ { /* */ LootEntryAlternatives(LootEntryAbstract[] var0, LootItemCondition[] var1) { /* 12 */ super(var0, var1); /* */ } /* */ /* */ /* */ public LootEntryType a() { /* 17 */ return LootEntries.f; /* */ } /* */ /* */ /* */ protected LootEntryChildren a(LootEntryChildren[] var0) { /* 22 */ switch (var0.length) { /* */ case 0: /* 24 */ return a; /* */ case 1: /* 26 */ return var0[0]; /* */ case 2: /* 28 */ return var0[0].b(var0[1]); /* */ } /* 30 */ return (var1, var2) -> { /* */ for (LootEntryChildren var6 : var0) { /* */ if (var6.expand(var1, var2)) { /* */ return true; /* */ } /* */ } /* */ return false; /* */ }; /* */ } /* */ /* */ /* */ /* */ public void a(LootCollector var0) { /* 43 */ super.a(var0); /* */ /* 45 */ for (int var1 = 0; var1 < this.c.length - 1; var1++) { /* 46 */ if (ArrayUtils.isEmpty((Object[])(this.c[var1]).d)) /* 47 */ var0.a("Unreachable entry!"); /* */ } /* */ } /* */ /* */ public static class a /* */ extends LootEntryAbstract.a<a> { /* 53 */ private final List<LootEntryAbstract> a = Lists.newArrayList(); /* */ /* */ public a(LootEntryAbstract.a<?>... var0) { /* 56 */ for (LootEntryAbstract.a<?> var4 : var0) { /* 57 */ this.a.add(var4.b()); /* */ } /* */ } /* */ /* */ /* */ protected a d() { /* 63 */ return this; /* */ } /* */ /* */ /* */ public a a(LootEntryAbstract.a<?> var0) { /* 68 */ this.a.add(var0.b()); /* 69 */ return this; /* */ } /* */ /* */ /* */ public LootEntryAbstract b() { /* 74 */ return new LootEntryAlternatives(this.a.<LootEntryAbstract>toArray(new LootEntryAbstract[0]), f()); /* */ } /* */ } /* */ /* */ public static a a(LootEntryAbstract.a<?>... var0) { /* 79 */ return new a(var0); /* */ } /* */ } /* Location: C:\Users\Josep\Downloads\Decompile Minecraft\tuinity-1.16.3.jar!\net\minecraft\server\v1_16_R2\LootEntryAlternatives.class * Java compiler version: 8 (52.0) * JD-Core Version: 1.1.3 */
[ "tanksherman27@gmail.com" ]
tanksherman27@gmail.com
549eb4d9aa557cf1216836d76607e1df7a4a7d3b
602f6f274fe6d1d0827a324ada0438bc0210bc39
/spring-framework/src/main/java/org/springframework/web/portlet/handler/PortletModeParameterHandlerMapping.java
476e04b1fea6a2ff3fde0e0271d3df749f5e57f0
[ "Apache-2.0" ]
permissive
1091643978/spring
c5db27b126261adf256415a0c56c4e7fbea3546e
c832371e96dffe8af4e3dafe9455a409bfefbb1b
refs/heads/master
2020-08-27T04:26:22.672721
2019-10-31T05:31:59
2019-10-31T05:31:59
217,243,879
0
0
Apache-2.0
2019-10-24T07:58:34
2019-10-24T07:58:31
null
UTF-8
Java
false
false
8,182
java
/* * Copyright 2002-2012 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 * * 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.springframework.web.portlet.handler; import java.util.HashSet; import java.util.Map; import java.util.Set; import javax.portlet.PortletMode; import javax.portlet.PortletRequest; import org.springframework.beans.BeansException; import org.springframework.util.Assert; /** * Implementation of the {@link org.springframework.web.portlet.HandlerMapping} * interface to map from the current PortletMode and a request parameter to * request handler beans. The mapping consists of two levels: first the * PortletMode and then the parameter value. In order to be mapped, * both elements must match the mapping definition. * * <p>This is a combination of the methods used in {@link PortletModeHandlerMapping PortletModeHandlerMapping} * and {@link ParameterHandlerMapping ParameterHandlerMapping}. Unlike * those two classes, this mapping cannot be initialized with properties since it * requires a two-level map. * * <p>The default name of the parameter is "action", but can be changed using * {@link #setParameterName setParameterName()}. * * <p>By default, the same parameter value may not be used in two different portlet * modes. This is so that if the portal itself changes the portlet mode, the request * will no longer be valid in the mapping. This behavior can be changed with * {@link #setAllowDuplicateParameters setAllowDupParameters()}. * * <p>The bean configuration for this mapping will look somthing like this: * * <pre class="code"> * &lt;bean id="portletModeParameterHandlerMapping" class="org.springframework.web.portlet.handler.PortletModeParameterHandlerMapping"&gt; * &lt;property name="portletModeParameterMap"&gt; * &lt;map&gt; * &lt;entry key="view"&gt; &lt;!-- portlet mode: view --&gt; * &lt;map&gt; * &lt;entry key="add"&gt;&lt;ref bean="addItemHandler"/&gt;&lt;/entry&gt; * &lt;entry key="edit"&gt;&lt;ref bean="editItemHandler"/&gt;&lt;/entry&gt; * &lt;entry key="delete"&gt;&lt;ref bean="deleteItemHandler"/&gt;&lt;/entry&gt; * &lt;/map&gt; * &lt;/entry&gt; * &lt;entry key="edit"&gt; &lt;!-- portlet mode: edit --&gt; * &lt;map&gt; * &lt;entry key="prefs"&gt;&lt;ref bean="preferencesHandler"/&gt;&lt;/entry&gt; * &lt;entry key="resetPrefs"&gt;&lt;ref bean="resetPreferencesHandler"/&gt;&lt;/entry&gt; * &lt;/map&gt; * &lt;/entry&gt; * &lt;/map&gt; * &lt;/property&gt; * &lt;/bean&gt;</pre> * * <p>This mapping can be chained ahead of a {@link PortletModeHandlerMapping PortletModeHandlerMapping}, * which can then provide defaults for each mode and an overall default as well. * * <p>Thanks to Rainer Schmitz and Yujin Kim for suggesting this mapping strategy! * * @author John A. Lewis * @author Juergen Hoeller * @since 2.0 * @see ParameterMappingInterceptor */ public class PortletModeParameterHandlerMapping extends AbstractMapBasedHandlerMapping<PortletModeParameterLookupKey> { /** * Default request parameter name to use for mapping to handlers: "action". */ public final static String DEFAULT_PARAMETER_NAME = "action"; private String parameterName = DEFAULT_PARAMETER_NAME; private Map<String, Map<String, ?>> portletModeParameterMap; private boolean allowDuplicateParameters = false; private final Set<String> parametersUsed = new HashSet<String>(); /** * Set the name of the parameter used for mapping to handlers. * <p>Default is "action". */ public void setParameterName(String parameterName) { Assert.hasText(parameterName, "'parameterName' must not be empty"); this.parameterName = parameterName; } /** * Set a Map with portlet mode names as keys and another Map as values. * The sub-map has parameter names as keys and handler bean or bean names as values. * <p>Convenient for population with bean references. * @param portletModeParameterMap two-level map of portlet modes and parameters to handler beans */ public void setPortletModeParameterMap(Map<String, Map<String, ?>> portletModeParameterMap) { this.portletModeParameterMap = portletModeParameterMap; } /** * Set whether to allow duplicate parameter values across different portlet modes. * Default is "false". * <p>Doing this is dangerous because the portlet mode can be changed by the * portal itself and the only way to see that is a rerender of the portlet. * If the same parameter value is legal in multiple modes, then a change in * mode could result in a matched mapping that is not intended and the user * could end up in a strange place in the application. */ public void setAllowDuplicateParameters(boolean allowDuplicateParameters) { this.allowDuplicateParameters = allowDuplicateParameters; } /** * Calls the {@code registerHandlers} method in addition * to the superclass's initialization. * @see #registerHandlers */ @Override public void initApplicationContext() throws BeansException { super.initApplicationContext(); registerHandlersByModeAndParameter(this.portletModeParameterMap); } /** * Register all handlers specified in the Portlet mode map for the corresponding modes. * @param portletModeParameterMap Map with mode names as keys and parameter Maps as values */ protected void registerHandlersByModeAndParameter(Map<String, Map<String, ?>> portletModeParameterMap) { Assert.notNull(portletModeParameterMap, "'portletModeParameterMap' must not be null"); for (Map.Entry<String, Map<String, ?>> entry : portletModeParameterMap.entrySet()) { PortletMode mode = new PortletMode(entry.getKey()); registerHandler(mode, entry.getValue()); } } /** * Register all handlers specified in the given parameter map. * @param parameterMap Map with parameter names as keys and handler beans or bean names as values */ protected void registerHandler(PortletMode mode, Map<String, ?> parameterMap) { for (Map.Entry<String, ?> entry : parameterMap.entrySet()) { registerHandler(mode, entry.getKey(), entry.getValue()); } } /** * Register the given handler instance for the given PortletMode and parameter value, * under an appropriate lookup key. * @param mode the PortletMode for which this mapping is valid * @param parameter the parameter value to which this handler is mapped * @param handler the handler instance bean * @throws BeansException if the handler couldn't be registered * @throws IllegalStateException if there is a conflicting handler registered * @see #registerHandler(Object, Object) */ protected void registerHandler(PortletMode mode, String parameter, Object handler) throws BeansException, IllegalStateException { // Check for duplicate parameter values across all portlet modes. if (!this.allowDuplicateParameters && this.parametersUsed.contains(parameter)) { throw new IllegalStateException( "Duplicate entries for parameter [" + parameter + "] in different Portlet modes"); } this.parametersUsed.add(parameter); registerHandler(new PortletModeParameterLookupKey(mode, parameter), handler); } /** * Returns a lookup key that combines the current PortletMode and the current * value of the specified parameter. * @see PortletRequest#getPortletMode() * @see #setParameterName */ @Override protected PortletModeParameterLookupKey getLookupKey(PortletRequest request) throws Exception { PortletMode mode = request.getPortletMode(); String parameter = request.getParameter(this.parameterName); return new PortletModeParameterLookupKey(mode, parameter); } }
[ "784990655@qq.com" ]
784990655@qq.com
f17728ee087e2b021297e3eeb2e9842e07581996
ff930400f85103b54432d5440de27127c093f47e
/competition/cig/spencerschumann/Scene.java
dd89f7ea814c260fb88cb16ddeddf24d8779fbb5
[]
no_license
dkelmer/neuromario
a37aadb7b304057f54e01613a45d6f2ca20632fb
b81ac9d6e38f7f383ab2e7c4f13e64d45e55071c
refs/heads/master
2020-12-31T04:56:15.085256
2016-05-15T05:09:55
2016-05-15T05:09:55
56,628,853
3
1
null
null
null
null
UTF-8
Java
false
false
7,644
java
package competition.cig.spencerschumann; import ch.idsia.mario.environments.Environment; import java.util.ArrayList; /** * * @author Spencer Schumann */ public class Scene { public ArrayList<Edge> floors = new ArrayList<Edge>(); public ArrayList<Edge> walls = new ArrayList<Edge>(); public ArrayList<Edge> ceilings = new ArrayList<Edge>(); public ArrayList<BumpableEdge> bumpables = new ArrayList<BumpableEdge>(); public ArrayList<Edge> enemyEmitters = new ArrayList<Edge>(); public long constructTime; // The extreme top left corner of the scene, in world coordinates public float originX; public float originY; @Override public Scene clone() { // TODO: I should really be calling s.clone() here; see Object.clone(). Scene s = new Scene(); s.update(this); //s.pos = pos.clone(); return s; } public void update(Scene scene) { // TODO: no deep copy of edges; will this cause problems? clearEdges(); add(scene); originX = scene.originX; originY = scene.originY; //marioHeight = scene.marioHeight; // TODO: copy the other mario attributes } public void clearEdges() { floors.clear(); walls.clear(); ceilings.clear(); bumpables.clear(); enemyEmitters.clear(); } private Scene() { } //private SanitizedScene(Environment observation, PosTracker pos) { // this.pos = pos; // setMarioState(observation); //} public Scene(float originX, float originY) { this.originX = originX; this.originY = originY; } public Scene(Environment observation, byte[][] scene) { long startTime = System.nanoTime(); float [] marioPos = observation.getMarioFloatPos(); originX = (float) Math.floor(marioPos[0] / 16.0f) * 16.0f - observation.HalfObsWidth * 16.0f; originY = (float) Math.floor(marioPos[1] / 16.0f) * 16.0f - observation.HalfObsHeight * 16.0f; boolean[][] visited = new boolean[scene.length][scene[0].length]; int x, y; for (y = 0; y < scene.length; y++) { for (x = 0; x < scene[y].length; x++) { byte tile = scene[y][x]; if (tile == Tiles.COIN) { // TODO } else if (!visited[y][x]) { if (Tiles.isWall(tile)) { Scene block = new Scene(originX, originY); block.expandWall(scene, visited, x, y); add(block); } else if (tile == Tiles.LEDGE) { Scene ledge = new Scene(originX, originY); ledge.expandLedge(scene, visited, x, y); add(ledge); } } } } // TODO: update bumpables and EnemyEmitters, if not already done constructTime = System.nanoTime() - startTime; } // Expand vectorized block from an initial starting point, and mark // all tiles that are part of this block as visited private void expandWall(byte[][] scene, boolean[][] visited, int x, int y) { if (visited[y][x]) { return; } visited[y][x] = true; // left side if (x > 0) { if (Tiles.isWall(scene[y][x - 1])) { expandWall(scene, visited, x - 1, y); } else { walls.add(new Edge(originX + x * 16.0f, originY + y * 16.0f, originX + x * 16.0f, originY + (y + 1) * 16.0f)); } } // right side if (x < scene[y].length - 1) { if (Tiles.isWall(scene[y][x + 1])) { expandWall(scene, visited, x + 1, y); } else { walls.add(new Edge(originX + (x + 1) * 16.0f, originY + y * 16.0f, originX + (x + 1) * 16.0f, originY + (y + 1) * 16.0f)); } } // top side if (y > 0) { if (Tiles.isWall(scene[y - 1][x])) { expandWall(scene, visited, x, y - 1); } else { floors.add(new Edge(originX + x * 16.0f, originY + y * 16.0f, originX + (x + 1) * 16.0f, originY + y * 16.0f)); } } // bottom side if (y < scene.length - 1) { if (Tiles.isWall(scene[y + 1][x])) { expandWall(scene, visited, x, y + 1); } else { ceilings.add(new Edge(originX + x * 16.0f, originY + (y + 1) * 16.0f, originX + (x + 1) * 16.0f, originY + (y + 1) * 16.0f)); } } coalesce(); } // Expand ledge private void expandLedge(byte[][] scene, boolean[][] visited, int x, int y) { if (visited[y][x]) { return; } visited[y][x] = true; int startx = x; int endx = x; // Find left side of ledge while (startx > 0 && scene[y][startx - 1] == Tiles.LEDGE) { startx--; visited[y][startx] = true; } // Find right side of ledge while (endx < scene[y].length - 1 && scene[y][endx + 1] == Tiles.LEDGE) { endx++; visited[y][endx] = true; } floors.add(new Edge(originX + startx * 16.0f, originY + y * 16.0f, originX + (endx + 1) * 16.0f, originY + y * 16.0f)); } // Coalesce adjacent edges of the same type into one private void coalesce() { // TODO // Note: should I have a contiguous ceiling, or break it up for // each special? coalesce(walls); coalesce(ceilings); coalesce(floors); coalesce(enemyEmitters); // NOTE: bumpables shouldn't be coalesced. } private void coalesce(ArrayList<Edge> edges) { // Super stupid way for now. // TODO: optimize. Without coalesce, everything runs in about // 60 microseconds max. With coalesce, times get up to around 6 // milliseconds. That's a large chunk of the allotted 40 ms to // be wasting on this. boolean foundOne = true; while (foundOne) { foundOne = false; for (Edge a : edges) { for (Edge b : edges) { if (a == b) { continue; } foundOne = true; if (a.x1 == b.x1 && a.y1 == b.y1) { // Overlapping? Something is wrong... throw new RuntimeException("Overlapping edges!"); } else if (a.x1 == b.x2 && a.y1 == b.y2) { a.x1 = b.x1; a.y1 = b.y1; } else if (a.x2 == b.x1 && a.y2 == b.y1) { a.x2 = b.x2; a.y2 = b.y2; } else { foundOne = false; } if (foundOne) { edges.remove(b); break; } } if (foundOne) { break; } } } } // Add the edges in the subscene to this scene private void add(Scene subscene) { floors.addAll(subscene.floors); walls.addAll(subscene.walls); ceilings.addAll(subscene.ceilings); bumpables.addAll(subscene.bumpables); enemyEmitters.addAll(subscene.enemyEmitters); } }
[ "drk289@nyu.edu" ]
drk289@nyu.edu
b8d9d8f90c674aae980ca8e06363ffcacf553954
c1ac1f9a1760d23b88305e6a8d8e6e7f009e0baf
/src/br/com/netfood_2/entity/Pedido.java
4254529a026fba742094e2606c2a73bed81dcd15
[]
no_license
Elisiandro/netfoodBD
5eba8f9ed7d46fe68d6b08aa95dfad55bf4897ac
bff8e4ac3886af5d1f4406677b727c31c93c824a
refs/heads/master
2016-08-12T23:58:39.860666
2015-11-13T15:16:37
2015-11-13T15:16:37
46,076,560
0
0
null
null
null
null
UTF-8
Java
false
false
3,287
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 br.com.netfood_2.entity; import java.io.Serializable; import java.util.ArrayList; import java.util.Date; import java.util.List; import javax.persistence.CascadeType; import javax.persistence.Entity; import javax.persistence.GeneratedValue; import javax.persistence.GenerationType; import javax.persistence.Id; import javax.persistence.JoinColumn; import javax.persistence.OneToMany; import javax.persistence.OneToOne; import javax.persistence.Temporal; import javax.persistence.TemporalType; /** * * @author Elisiandro */ @Entity public class Pedido implements Serializable { private static final long serialVersionUID = 1L; @Id @GeneratedValue(strategy = GenerationType.AUTO) private Long id; @OneToOne(cascade = CascadeType.MERGE) private Garcom garcom; @OneToOne(cascade = CascadeType.MERGE) private Mesa mesa; @Temporal(TemporalType.DATE) private Date dataPedido; private boolean aberto; private double valorCosumo; private int comissao; private double valorPago; @OneToMany(cascade = CascadeType.ALL) @JoinColumn(name="PEDIDO_ID") private List<ItemPedido> listaItens = new ArrayList<>(); // //Construtor // public Pedido() { } public Pedido(Garcom garcom, Mesa mesa, boolean aberto, double valorCosumo, int comissao, double valorPago) { this.garcom = garcom; this.mesa = mesa; this.aberto = aberto; this.valorCosumo = valorCosumo; this.comissao = comissao; this.valorPago = valorPago; } // //Get e Set // public Long getId() { return id; } public void setId(Long id) { this.id = id; } public Garcom getGarcom() { return garcom; } public void setGarcom(Garcom garcom) { this.garcom = garcom; } public Mesa getMesa() { return mesa; } public void setMesa(Mesa mesa) { this.mesa = mesa; } public boolean isAberto() { return aberto; } public void setAberto(boolean aberto) { this.aberto = aberto; } public double getValorCosumo() { return valorCosumo; } public void setValorCosumo(double valorCosumo) { this.valorCosumo = valorCosumo; } public int getComissao() { return comissao; } public void setComissao(int comissao) { this.comissao = comissao; } public double getValorPago() { return valorPago; } public void setValorPago(double valorPago) { this.valorPago = valorPago; } public List<ItemPedido> getListaItens() { return listaItens; } public void setListaItens(List<ItemPedido> listaItens) { this.listaItens = listaItens; } public Date getDataPedido() { return dataPedido; } public void setDataPedido(Date dataPedido) { this.dataPedido = dataPedido; } }
[ "New@Matrix" ]
New@Matrix
2bfc4e2e2a1d50fd85c020367f1c9d7c1a6a2cc3
d25714d5fa26cae8ce94a5eab2605ce430b564ea
/src/main/java/fr/dawan/agentask/bean/Reponse.java
2fd4132078b95d368d2b0186e845257b2e1dbce2
[]
no_license
aliamzil/agentask
28b41630080a6a2e8cf62a2bc2966619065c438f
17e0723c23e9a540a49ed442e9366f542d36abfe
refs/heads/master
2022-12-21T01:39:48.079509
2019-10-31T15:24:46
2019-10-31T15:24:46
215,818,448
1
0
null
2022-12-16T00:59:37
2019-10-17T14:52:38
Java
UTF-8
Java
false
false
448
java
package fr.dawan.agentask.bean; import java.util.ArrayList; import java.util.HashMap; import java.util.List; public class Reponse { private int idReponse; private Sondage sondage; private List<Integer> listrep=new ArrayList<Integer>(); public Reponse(int idReponse, Sondage sondage, List<Integer> listrep) { super(); this.idReponse = idReponse; this.sondage = sondage; this.listrep = listrep; } public Reponse() { super(); } }
[ "thekom.7835@gmail.com" ]
thekom.7835@gmail.com
98cbe7bd05afab7d6e887a1da14e559b1e9eb41b
7bf02fd615ff7b0efc5438372c8d225a4fb79174
/src/com/advance/dayone/IfConditionExample.java
689cdf3fde67c3a4bc6a0e337f221f4913c106d7
[]
no_license
sharathkp-mvrc/AdvanceJavaTraining
6135f2e595fcc4acca590af803c7dbf9d27532de
d4f4221b5ab3f1ccc51e146866ee0213ca716f3c
refs/heads/master
2023-07-19T18:25:30.887724
2021-08-30T05:10:29
2021-08-30T05:10:29
399,326,800
0
0
null
null
null
null
UTF-8
Java
false
false
416
java
package com.advance.dayone; import java.util.Scanner; public class IfConditionExample { public static void main(String[] args) { Scanner scanner=new Scanner(System.in); System.out.println("Enter value for temp"); int temp=scanner.nextInt(); if(temp==100) System.out.println("TEmp is 100"); else System.out.println("Temp is not 100"); } }
[ "sharathk@maveric-systems.com" ]
sharathk@maveric-systems.com
5535f5f32413c28f79cdbf99009dd97fe63e7e1a
86a6b195d09e00bdc3de14e92098e31be793ea8a
/HelloWorld/src/com/board/impl/BoardServiceImpl.java
8bf47dcf35a759aec68a4bfe6411cf4e423fbff7
[]
no_license
jongwookim2019/Hello
076dc80ab32f60678d8db35211f27a3556380b5e
32e0218bf135fef0184d22e8944d960d3b8a63cb
refs/heads/master
2020-07-23T09:14:07.199919
2019-10-23T02:53:35
2019-10-23T02:53:35
207,510,100
0
0
null
null
null
null
UTF-8
Java
false
false
1,416
java
package com.board.impl; import com.board.model.Board; import com.board.model.BoardService; public class BoardServiceImpl implements BoardService { @Override public void writeBoard(Board board, Board[] boards) { for (int i = 0; i < boards.length; i++) { if (boards[i] == null) { boards[i] = board; break; } } } @Override public Board getBoard(int boardNo, Board[] boards) { Board board = null; for (int i = 0; i < boards.length; i++) { if (boards[i] != null && boards[i].getBoardNo() == boardNo) { board = boards[i]; } } return board; } @Override public Board[] getBoardList(Board[] boards) { Board[] boardAry = new Board[boards.length]; for (int i = 0; i < boards.length; i++) { boardAry[i] = boards[i]; } return boardAry; } @Override public void delBoard(int boardNo, Board[] boards) { Board board = null; for (int i = 0; i < boards.length; i++) { if (boards[i] != null && boards[i].getBoardNo() == boardNo) { boards[i] = null; } } } @Override public void updateBoard(Board board, Board[] boards) { for (int i = 0; i < boards.length; i++) { if (boards[i] != null && boards[i].getBoardNo() == board.getBoardNo()) { boards[i].setTitle(board.getTitle()); boards[i].setContents(board.getContents()); boards[i].setWriter(board.getWriter()); } } } }
[ "user@YD03-02" ]
user@YD03-02
bf28c3e9fdb50079aedf379051b0499bf9dfa57f
b335ae753da57f458f8b5bbca7f06821ef153220
/src/StringManipulation/Sorting.java
0ce382820e991e9b8b69559c4b4989138c6b20be
[]
no_license
PKavyaSri/ListOfJavaPrgrms-Kavya
e6ded5e6a2297e0ec0bfaa2445a472ebf1ceca82
04ac35ece691941492558263f9c891a0346a9e87
refs/heads/master
2020-07-24T16:29:31.947351
2019-09-17T15:57:49
2019-09-17T15:57:49
null
0
0
null
null
null
null
UTF-8
Java
false
false
527
java
package StringManipulation; import java.util.Arrays; public class Sorting { public static void main(String[] args) { // TODO Auto-generated method stub int a[] = {1,10,6,2,8,5}; int n=a.length; /*Arrays.sort(a); for(int i=0;i<a.length;i++) { System.out.println(a[i]); }*/ int temp= 0; for(int i=0;i<n;i++) { for(int j=i+1;j<n;j++) { if(a[i]>a[j]) { temp =a[i]; a[i]=a[j]; a[j]=temp; } } System.out.println(a[i]); } } }
[ "user@10.0.0.190" ]
user@10.0.0.190
a091a4ac1f4e883b188177b63ef2f33d6852dec0
e1bc85ac82be3c828d98238cc6a61bffc3f83aa6
/src/main/java/com/example/spring5recipeapp/domain/Ingredient.java
6be2d26fe13613963ecfcba3c6c7e57170f13eb1
[]
no_license
AntonyBaasan/recipe-app
9e5fcc3f2a7e98ac646c15aa1957c5a399e80dd4
7ff425e2fa1146fbbda014f9dd0d94219ec4a20d
refs/heads/master
2021-01-24T03:57:29.235303
2018-02-28T22:39:41
2018-02-28T22:39:41
122,911,365
0
0
null
null
null
null
UTF-8
Java
false
false
990
java
package com.example.spring5recipeapp.domain; import javax.persistence.*; import java.math.BigDecimal; @Entity public class Ingredient { @Id @GeneratedValue(strategy = GenerationType.IDENTITY) private long id; private String description; private BigDecimal amount; @ManyToOne private Recipe recipe; @OneToOne(fetch = FetchType.EAGER) private UnitOfMeasure unitOfMeasure; public long getId() { return id; } public void setId(long id) { this.id = id; } public String getDescription() { return description; } public void setDescription(String description) { this.description = description; } public BigDecimal getAmount() { return amount; } public void setAmount(BigDecimal amount) { this.amount = amount; } public Recipe getRecipe() { return recipe; } public void setRecipe(Recipe recipe) { this.recipe = recipe; } }
[ "antony.baasan@gmail.com" ]
antony.baasan@gmail.com
baf6b465011372e49de65f3f8b3285b97754c6ec
8bbb79066adb67aa9089a2efc2be66bcbfd79d75
/src/main/java/org/study/cinema/exceptions/DataNotFound.java
cf96fe3f729f14682be2866bf39ffdc2a849c76a
[]
no_license
AnnaMakarchuk/cinema_spring
b42a2c44bc52d0af3a7f0d7cd61ff31d96e0b354
284e282ac34bbbfc261c8ac6a6efd8e51a115e2f
refs/heads/master
2022-02-11T09:35:09.681682
2019-09-17T09:33:55
2019-09-17T09:33:55
201,637,272
2
0
null
2022-01-21T23:28:57
2019-08-10T13:58:21
Java
UTF-8
Java
false
false
166
java
package org.study.cinema.exceptions; public class DataNotFound extends RuntimeException { public DataNotFound(String message) { super(message); } }
[ "Anna_Makarchuk@epam.com" ]
Anna_Makarchuk@epam.com
ea4c3484d22293e48283154035e1be10ec5f9a22
1145274b99f60bbdb836202fbf92d74d3fb1db4f
/gradle-demo-todo/src/main/java/com/futurecode/gradle_demo_todo/TodoItem.java
459b8f61e90f19a68b29f93303463764f66bd920
[]
no_license
yromeMfOtuO/SpringBootDemo
da906b894500040e44e9f67b190b7d4ee5f9f44d
f629397494f255c31c84ded35fdfca171a267a70
refs/heads/master
2021-03-16T05:55:27.599827
2018-12-02T16:24:43
2018-12-02T16:24:43
115,523,993
0
0
null
null
null
null
UTF-8
Java
false
false
978
java
package com.futurecode.gradle_demo_todo; /** * @author :lvweihao@outlook.com * @description: * @date :create in 23:19 18.5.3 * @modify by : */ public class TodoItem { /** * 待办事项名称 */ private String todoName; /** * 是否完成的标志 */ private Boolean hasDone; public TodoItem(String todoName, Boolean hasDone) { this.todoName = todoName; this.hasDone = hasDone; } public TodoItem() { } public String getTodoName() { return todoName; } public void setTodoName(String todoName) { this.todoName = todoName; } public Boolean getHasDone() { return hasDone; } public void setHasDone(Boolean hasDone) { this.hasDone = hasDone; } @Override public String toString() { return "TodoItem{" + "todoName='" + todoName + '\'' + ", hasDone=" + hasDone + '}'; } }
[ "lvweihao@outlook.com" ]
lvweihao@outlook.com
d63a3636c14e00dde27c5948ac8fe16c6b84a360
466922848a19234b05a61c7fce5745bd1b20da6c
/GOSUIC/src/gosuic/dao/user/UserDao.java
1a4b56be6fbe43abad14e53eb17f3f8f383a23ec
[]
no_license
Taewan93/GOSUIC_final
55b6b9c679467962148a0be5f20ed22ea149ac2a
eae44d204a8dbff793b5c11ed654ff4e34755e80
refs/heads/master
2021-01-24T03:29:55.848031
2018-02-26T08:19:10
2018-02-26T08:19:10
122,891,517
0
0
null
null
null
null
UHC
Java
false
false
1,704
java
package gosuic.dao.user; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.dao.EmptyResultDataAccessException; import org.springframework.jdbc.core.JdbcTemplate; import org.springframework.stereotype.Repository; import gosuic.vo.UserVo; @Repository public class UserDao { @Autowired JdbcTemplate jdbcTemplate; public JdbcTemplate getJdbcTemplate() { return jdbcTemplate; } //회원가입 public boolean insertUser(UserVo user) { int n = getJdbcTemplate().update("insert into userinfo values(?,?,?,?,?,?)" , new Object[] {user.getUserEmail(),user.getUserID(),user.getPassword1(),user.getUserName(),user.getUserBirthday(),user.getUserGender()}); return (n>0) ? true : false; } //로그인 public boolean login(UserVo vo) { System.out.println("록인dao들어옴"); System.out.println("다오의 " + vo.getUserEmail()); try { String str= getJdbcTemplate().queryForObject("select useremail from userinfo where useremail=? and userpassword=?", new Object[] {vo.getUserEmail(),vo.getPassword1()}, String.class); System.out.println("str을 찍어보자" +str); }catch(EmptyResultDataAccessException e) { System.out.println("결과없음"); return false; } return true; } // 아이디중복 체크 public int checkId(String userEmail) { try { System.out.println("아이디 중복체크 다오 : " + userEmail ); String check = getJdbcTemplate().queryForObject("select userID from userinfo where useremail=?", new Object[] {userEmail},String.class); System.out.println( "======== "+check); }catch(EmptyResultDataAccessException e) { e.printStackTrace(); return 0; } return 1; } }
[ "godev17@naver.com" ]
godev17@naver.com
1ac149a037f08eabeae2e7771da1cc2e6eadc988
73aafbd640003cf67e85567cc7d9fa43f04b755b
/.svn/pristine/1a/1ac149a037f08eabeae2e7771da1cc2e6eadc988.svn-base
04a9093a84ebe5a9ea4db45691e3578156ed0427
[]
no_license
wm0562/web
fa8d3fcf05b74448e01eacb0af88bf3e6fb41732
efcc94795d9204c9b8e67d7582184dca92f749e0
refs/heads/master
2022-07-28T03:13:13.841594
2019-10-25T02:38:18
2019-10-25T02:38:18
217,434,780
0
0
null
2022-07-01T21:28:10
2019-10-25T02:29:42
Java
UTF-8
Java
false
false
531
package com.vortex.cloud.ums.dataaccess.dao; import java.util.List; import com.vortex.cloud.ums.dto.rest.PramSettingRestDto; import com.vortex.cloud.ums.model.PramSetting; import com.vortex.cloud.vfs.data.hibernate.repository.HibernateRepository; public interface IParamSettingDao extends HibernateRepository<PramSetting, String> { /** * 获取对应类型下的值 * @param paramTypeCode * @return */ public List<PramSettingRestDto> findListByParamTypeCode(String paramTypeCode, String tenantId); }
[ "1455448378@qq.com" ]
1455448378@qq.com
210ce432db3989508bc780ef78af931a8b180f42
73fbb958958e2cc62a3935cd06bc96e7024b7d9d
/app/src/main/java/com/example/hp/thesiswork/PredictionActivity.java
c2f34dfcbb716a3c8fdc9c926b9d24882cfb9706
[]
no_license
BayMakarov/MyMovieApp
b22ab096df6723b2bde5e5e9c987629a58986463
6b3f6103934a03261270ceead8caba5adb1185b7
refs/heads/master
2021-05-09T03:18:13.117261
2018-02-06T13:35:33
2018-02-06T13:35:33
119,237,803
0
0
null
null
null
null
UTF-8
Java
false
false
8,713
java
package com.example.hp.thesiswork; import android.content.Intent; import android.os.Bundle; import android.support.v7.app.AppCompatActivity; import android.support.v7.widget.Toolbar; import android.util.Log; import android.view.View; import android.widget.ArrayAdapter; import android.widget.EditText; import android.widget.Spinner; import android.widget.TextView; import java.io.BufferedReader; import java.io.InputStream; import java.io.InputStreamReader; import java.nio.charset.Charset; import java.util.ArrayList; import android.support.v7.app.AppCompatActivity; import android.os.Bundle; import android.content.Intent; import android.view.View; import android.widget.ArrayAdapter; import android.widget.EditText; import android.widget.Spinner; import android.widget.TextView; import java.util.ArrayList; import java.util.Arrays; import java.util.List; import android.support.v7.widget.Toolbar; import android.view.Window; import java.io.FileOutputStream; import java.io.IOException; import java.io.InputStream; import java.io.OutputStream; import java.util.ArrayList; import java.util.HashMap; import java.util.Vector; import android.content.ContentValues; import android.content.Context; import android.database.Cursor; import android.database.DatabaseErrorHandler; import android.database.sqlite.SQLiteDatabase; import android.database.sqlite.SQLiteOpenHelper; import static java.lang.Double.NaN; public class PredictionActivity extends AppCompatActivity { //Creating Initial objects TextView Actor1; TextView Actor2; TextView Director; TextView runTime; Spinner spinnerGenre; //Creating Arraylist for spinners ArrayList<String> listGenre = new ArrayList<String>() {{ add("Action"); add("Adventure"); add("Animation"); add("Biography"); add("Comedy"); add("Crime"); add("Documentary"); add("Drama"); add("Family"); add("Fantasy"); add("Film-Noir"); add("History"); add("Horror"); add("Music"); add("Mystery"); add("Romance"); add("Sci-Fi"); add("Sport"); add("Thriller"); add("War"); add("Western"); }}; @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_prediction2); readMovieData(); Actor1 = (EditText) findViewById(R.id.txtName); Actor2 = (EditText) findViewById(R.id.txtName2); Director = (EditText) findViewById(R.id.txtNameDirector); runTime = (EditText) findViewById(R.id.txtNameruntime); spinnerGenre = (Spinner) findViewById(R.id.spinnerGenre); ArrayAdapter<String> dataAdapter3 = new ArrayAdapter<String>(this, android.R.layout.simple_spinner_item, listGenre); dataAdapter3.setDropDownViewResource(android.R.layout.simple_spinner_dropdown_item); spinnerGenre.setAdapter(dataAdapter3); } //this is Arraylist to hold datas of movie_metadata.csv private List<Movies> MovieList = new ArrayList<Movies>(); //This method is used to read datas from movie_metadata.csv and write to Arraylist private void readMovieData() { InputStream is = getResources().openRawResource(R.raw.movie_metadata); BufferedReader reader = new BufferedReader( new InputStreamReader(is, Charset.forName("UTF-8")) ); String line = ""; try { reader.readLine(); while ((line = reader.readLine()) != null) { String[] tokens = line.split(","); Movies movies = new Movies(); movies.setDirectorName(tokens[0]); if (tokens[1].length() > 0) { movies.setDuration(Integer.parseInt(tokens[1])); } movies.setActor2(tokens[2]); movies.setGenre(tokens[3]); movies.setActor1(tokens[4]); movies.setMovieTitle(tokens[5]); movies.setActor3(tokens[6]); movies.setImdbLink(tokens[7]); movies.setLanguage(tokens[8]); movies.setCountry(tokens[9]); if (tokens[10].length() > 0) { movies.setYear(Integer.parseInt(tokens[10])); } movies.setGrade(Double.parseDouble(tokens[11])); MovieList.add(movies); } } catch (IOException e) { Log.wtf("My Activity", "Error handling on file on line " + line, e); e.printStackTrace(); } } //This is button to make grade prediction protected void Prediction1(View e) { TextView IMDB = (TextView) findViewById(R.id.imdbGrade); //if (Actor1.getText().toString().isEmpty() || Actor2.getText().toString().isEmpty() || // Director.getText().toString().isEmpty()) { // Log.d("noluyore", Actor1.getText().toString() +" "+ Actor2.getText().toString()+ " " + // Director.getText().toString() + " " + runTime.getText().toString()); // IMDB.setText("You gave wrong inputs");} //else{ double s = predictorForActor1(); double f = predictorForActor2(); double x = predictorForDirector(); double r = predictionForGenre(); if (runTime.getText().toString().matches("")) { double result = ((s*1.1) + (f*1.1) + (x*1.3) + (r*0.5)) / 4; result = Math.floor(result * 10) / 10; IMDB.setText(Double.toString(result)); } else { double v = predictorForRunTime(); double result = ((s*1.4) + (f*1.4) + (x*1.6) + (v*0.5) + (r*0.5)) / 5; result = Math.floor(result * 10) / 10; IMDB.setText(Double.toString(result)); } } /*These are some methods; They ared used to read data according to user input **They calculates and average grade for each input */ private double predictionForGenre() { double a = 0; double b = 0; for (int i = 0; i < MovieList.size(); i++) { String[] parts = MovieList.get(i).getGenre().split("\\|"); List<String> itemList = Arrays.asList(parts); //Log.d("neoldu", itemList.toString() + " " +spinnerGenre.getSelectedItem().toString() // + " " + a + " " + b ); if ((itemList.contains(spinnerGenre.getSelectedItem().toString()))) { a = a + MovieList.get(i).getGrade(); b++; } } return a / b; } private double predictorForRunTime() { double a = 0; double b = 0; double[] runtimes = new double[MovieList.size()]; double[] grades = new double[MovieList.size()]; for (int i = 0; i < MovieList.size(); i++) { runtimes[i] = MovieList.get(i).getDuration(); grades[i] = MovieList.get(i).getGrade(); } LinearRegression lin = new LinearRegression(runtimes, grades); double s = Double.parseDouble(runTime.getText().toString()); return lin.predict(s); } private double predictorForDirector() { double a = 0; double b = 0; for (int i = 0; i < MovieList.size(); i++) { if (Director.getText().toString().equalsIgnoreCase(MovieList.get(i).getDirectorName())) { a = a + MovieList.get(i).getGrade(); b++; } } return a / b; } private double predictorForActor2() { double a = 0; double b = 0; for (int i = 0; i < MovieList.size(); i++) { if (Actor2.getText().toString().equalsIgnoreCase(MovieList.get(i).getActor1()) || Actor2.getText().toString().equalsIgnoreCase(MovieList.get(i).getActor2()) || Actor2.getText().toString().equalsIgnoreCase(MovieList.get(i).getActor3())) { a = a + MovieList.get(i).getGrade(); b++; } } return a / b; } private double predictorForActor1() { double a = 0; double b = 0; for (int i = 0; i < MovieList.size(); i++) { if (Actor1.getText().toString().equalsIgnoreCase(MovieList.get(i).getActor1()) || Actor1.getText().toString().equalsIgnoreCase(MovieList.get(i).getActor2()) || Actor1.getText().toString().equalsIgnoreCase(MovieList.get(i).getActor3())) { a = a + MovieList.get(i).getGrade(); b++; } } return a / b; } }
[ "ozanorfa@gmail.com" ]
ozanorfa@gmail.com
4dcf122cbd01a69b4c9ec1569d8b92ee2271d912
ba2eef5e3c914673103afb944dd125a9e846b2f6
/AL-Game/data/scripts/system/handlers/quest/rider_quests/_24013PoisonIntheWaters.java
49085adce6eae3751508b0274b2b8eed6ce61055
[]
no_license
makifgokce/Aion-Server-4.6
519d1d113f483b3e6532d86659932a266d4da2f8
0a6716a7aac1f8fe88780aeed68a676b9524ff15
refs/heads/master
2022-10-07T11:32:43.716259
2020-06-10T20:14:47
2020-06-10T20:14:47
null
0
0
null
null
null
null
UTF-8
Java
false
false
4,467
java
/** * This file is part of Aion-Lightning <aion-lightning.org>. * * Aion-Lightning is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * Aion-Lightning is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with Aion-Lightning. * If not, see <http://www.gnu.org/licenses/>. */ package quest.rider_quests; import com.aionemu.gameserver.model.DialogAction; import com.aionemu.gameserver.model.gameobjects.Item; import com.aionemu.gameserver.model.gameobjects.player.Player; import com.aionemu.gameserver.questEngine.handlers.HandlerResult; import com.aionemu.gameserver.questEngine.handlers.QuestHandler; import com.aionemu.gameserver.questEngine.model.QuestEnv; import com.aionemu.gameserver.questEngine.model.QuestState; import com.aionemu.gameserver.questEngine.model.QuestStatus; import com.aionemu.gameserver.world.zone.ZoneName; /** * @author pralinka */ public class _24013PoisonIntheWaters extends QuestHandler { private final static int questId = 24013; private final static int[] mobs = { 210455, 210456, 214039, 210458, 214032 }; public _24013PoisonIntheWaters() { super(questId); } @Override public void register() { qe.registerOnEnterZoneMissionEnd(questId); qe.registerOnLevelUp(questId); qe.registerQuestNpc(203631).addOnTalkEvent(questId); qe.registerQuestNpc(203621).addOnTalkEvent(questId); for (int mob : mobs) { qe.registerQuestNpc(mob).addOnKillEvent(questId); } qe.registerQuestItem(182215359, questId); } @Override public boolean onDialogEvent(QuestEnv env) { final Player player = env.getPlayer(); final QuestState qs = player.getQuestStateList().getQuestState(questId); if (qs == null) { return false; } final int var = qs.getQuestVarById(0); int targetId = env.getTargetId(); if (qs.getStatus() == QuestStatus.START) { switch (targetId) { case 203631: { // Nokir switch (env.getDialog()) { case QUEST_SELECT: { if (var == 0) { return sendQuestDialog(env, 1011); } } case SELECT_ACTION_1012: { playQuestMovie(env, 63); return sendQuestDialog(env, 1012); } case SETPRO1: { return defaultCloseDialog(env, 0, 1); // 1 } default: break; } break; } case 203621: { // Shania switch (env.getDialog()) { case QUEST_SELECT: { if (var == 1) { return sendQuestDialog(env, 1352); } } case SETPRO2: { giveQuestItem(env, 182215359, 1); return defaultCloseDialog(env, 1, 2); // 2 } default: break; } break; } } } else if (qs.getStatus() == QuestStatus.REWARD) { if (targetId == 203631) { // Nokir if (env.getDialog() == DialogAction.QUEST_SELECT) { return sendQuestDialog(env, 2375); } else { return sendQuestEndDialog(env); } } } return false; } @Override public boolean onKillEvent(QuestEnv env) { Player player = env.getPlayer(); QuestState qs = player.getQuestStateList().getQuestState(questId); if (qs == null) { return false; } int var = qs.getQuestVarById(0); if (var >= 3 && var < 7) { qs.setQuestVarById(0, var + 1); updateQuestStatus(env); return true; } else if (var == 7) { qs.setStatus(QuestStatus.REWARD); updateQuestStatus(env); return true; } return false; } @Override public HandlerResult onItemUseEvent(QuestEnv env, Item item) { Player player = env.getPlayer(); if (player.isInsideZone(ZoneName.get("DF1A_ITEMUSEAREA_Q2016"))) { return HandlerResult.fromBoolean(useQuestItem(env, item, 2, 3, false)); // 3 } return HandlerResult.FAILED; } @Override public boolean onZoneMissionEndEvent(QuestEnv env) { return defaultOnZoneMissionEndEvent(env); } @Override public boolean onLvlUpEvent(QuestEnv env) { return defaultOnLvlUpEvent(env, 24010, true); } }
[ "Falke_34@080676fd-0f56-412f-822c-f8f0d7cea3b7" ]
Falke_34@080676fd-0f56-412f-822c-f8f0d7cea3b7
1d9a2e3fe0df4aa2c6706a4ce1c2105da5d3174d
4e1c86f91f38bc039b2d6fd605327824dd08c26d
/cz.mzk.recordmanager.server/src/test/java/cz/mzk/recordmanager/server/oai/dao/DedupRecordDAOTest.java
d231b2ed8d8005ea098f8a7b198d9ffc747818da
[]
no_license
paulusova/RecordManager2
78df7dfe35ca119162212664fe392fcc84559610
827edbdd34565c739461770070a42426ff0dd5a8
refs/heads/master
2021-01-21T02:21:45.085793
2015-11-04T08:51:42
2015-11-04T08:51:42
45,531,874
0
0
null
2015-11-04T10:32:14
2015-11-04T10:32:14
null
UTF-8
Java
false
false
470
java
package cz.mzk.recordmanager.server.oai.dao; import org.springframework.beans.factory.annotation.Autowired; import org.testng.annotations.Test; import cz.mzk.recordmanager.server.AbstractTest; import cz.mzk.recordmanager.server.model.DedupRecord; public class DedupRecordDAOTest extends AbstractTest { @Autowired private DedupRecordDAO dedupRecordDao; @Test public void test() { DedupRecord record = new DedupRecord(); dedupRecordDao.persist(record); } }
[ "xrosecky@gmail.com" ]
xrosecky@gmail.com
7dafdee7e94a885cc838aaac7e6420a08cb036e5
4e12db43e165811d327dd10bfc09cc1a229118ce
/src/com/example/nutandroid/activity/SimpleTestActivity.java
cca3fd93cc95a61ead7e9feafc4180efe253906d
[]
no_license
minioreo/NutAndroid
9ec1764aad8431be3dac44af1a214ca2aed51e92
6ac18dc5cf6eb982721d3e70f425ab548fe1a6cf
refs/heads/master
2016-09-05T12:23:40.344447
2013-04-09T06:14:16
2013-04-09T06:14:16
null
0
0
null
null
null
null
UTF-8
Java
false
false
432
java
package com.example.nutandroid.activity; import roboguice.activity.RoboActivity; import roboguice.inject.InjectView; import android.os.Bundle; import android.widget.AnalogClock; import com.example.nutandroid.R; public class SimpleTestActivity extends RoboActivity { @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_simple_test); } }
[ "hunter_kingdom@163.com" ]
hunter_kingdom@163.com
8e3a707b8f0dc2d4898c73678e2e3ea80c7ee4ec
f45c917240d04cc8211eb2ffe6060b60076de3de
/android/app/src/main/java/com/stateunion/p2p/etongdai/Splash.java
211614810b70304be88da21fa938a47be359900f
[]
no_license
xingyinruoxi/rn
9d85fd662d5f03e939c2717339135bef3cbfe91e
08b18142320e6ea570e3dd19da16423b07ca0950
refs/heads/master
2023-01-08T20:55:45.053664
2019-05-29T02:44:59
2019-05-29T02:44:59
157,500,241
0
1
null
2023-01-03T15:39:07
2018-11-14T06:14:05
Makefile
UTF-8
Java
false
false
2,745
java
package com.stateunion.p2p.etongdai; import android.app.Activity; import android.app.Dialog; import com.stateunion.p2p.etongdai.utils.LogUtils; import java.lang.ref.WeakReference; import me.weyye.hipermission.HiPermission; import me.weyye.hipermission.PermissionCallback; /** * the boot page */ public class Splash { private static Dialog mSplashDialog; private static WeakReference<Activity> mActivity; /** * the splash is show * @param activity * @param fullScreen */ public static void show(final Activity activity,final boolean fullScreen) { LogUtils.e("activity:",activity," | fullScreen"); mActivity = new WeakReference<Activity>(activity); activity.runOnUiThread(new Runnable() { @Override public void run() { if (!activity.isFinishing()) { mSplashDialog = new Dialog(activity,fullScreen? R.style.SplashScreen_Fullscreen: R.style.SplashScreen_SplashTheme); mSplashDialog.setContentView(R.layout.view_splash); mSplashDialog.setCancelable(false); if (!mSplashDialog.isShowing()) { mSplashDialog.show(); } } } }); } /** * this splash is show and default the fullscreen * @param activity */ public static void show(final Activity activity) { HiPermission.create(activity).checkSinglePermission(android.Manifest.permission.SYSTEM_ALERT_WINDOW, new PermissionCallback() { @Override public void onClose() { LogUtils.e("onClose"); } @Override public void onFinish() { LogUtils.e("onFinish"); } @Override public void onDeny(String permission, int position) { LogUtils.e("onDeny~permission:",permission," | position:",position); hide(activity); } @Override public void onGuarantee(String permission, int position) { LogUtils.e("onGuarantee~permission:",permission," | position:",position); show(activity,true); } }); } /** * this splash is hide * @param activity */ public static void hide(Activity activity) { LogUtils.e("activity:",activity); activity = mActivity.get(); activity.runOnUiThread(new Runnable() { @Override public void run() { if (mSplashDialog != null && mSplashDialog.isShowing()) { mSplashDialog.dismiss(); } } }); } }
[ "zhoulin@orafl.com" ]
zhoulin@orafl.com
550e8ed79f1507d41046763808edef27c731932b
96d71f73821cfbf3653f148d8a261eceedeac882
/external/decompiled/blackberry/WhatsApp OS6 V2.8.1914/decompiled/WhatsApp-28/com/rim/resources/WhatsAppRIMResourcesPopulator45.java
6f5a0c82a69ded4bff29ddf47ecdcb78b256613f
[]
no_license
JaapSuter/Niets
9a9ec53f448df9b866a8c15162a5690b6bcca818
3cc42f8c2cefd9c3193711cbf15b5304566e08cb
refs/heads/master
2020-04-09T19:09:40.667155
2012-09-28T18:11:33
2012-09-28T18:11:33
5,751,595
2
1
null
null
null
null
UTF-8
Java
false
false
233,231
java
// ####################################################### // Decompiled by : coddec // Module : WhatsApp-40.cod // Module version : 2.8.1914 // Class ID : 21 // ######################################################## package com.rim.resources; abstract final class WhatsAppRIMResourcesPopulator45 extends Object { // @@@@@@@@@@@@@ Static routines static final populate( java.util.Hashtable ); // address: 0 { enter_narrow arrayinit [-74, 66, -40, 118, -2, -24, -97, 125, -20, 99, -69, -127, -21, -66, -9, -35, -17, -106, -118, -91, -30, 117, -71, 92, 46, -27, -70, 46, 99, -29, -29, -9, -95, -11, -41, 57, -118, 10, 39, 19, 60, 62, -97, -97, -6, 121, 56, 64, -70, 122, 122, -80, 76, 70, 17, 117, 66, 40, 54, 114, 0, -82, 15, 92, 69, -87, -86, -49, -118, 27, 40, 21, 125, 78, 36, 18, -111, 83, 123, -104, 127, -62, -3, 99, -74, 101, 47, 51, 45, 115, -103, 82, -22, 60, -83, -11, -105, -42, -82, -3, -59, -5, -34, -13, -98, 63, -36, -52, 81, 82, -93, -61, -49, 1, -54, -83, -39, -37, 114, -92, 35, -121, 127, -25, -15, -86, -6, -6, 59, -77, 34, 8, 16, -39, 76, -110, 116, 38, -58, -41, -106, -57, 101, 42, -99, -26, -30, -101, 55, 59, -64, 61, 48, 126, -49, -33, -98, -85, -84, 90, 65, -84, -63, -80, -33, -110, -50, -75, -68, 113, -46, 15, 78, 86, 90, -25, 76, 41, 72, 100, -102, -24, -56, -75, -78, 115, -53, 22, 124, -33, 33, -100, -43, -106, -127, -35, 3, -108, -53, 85, -86, -91, 124, -28, -60, 88, 42, 21, 65, -7, 40, 47, 24, -11, -99, -22, 61, 78, -91, -12, -49, 95, -2, -75, 115, 63, -64, -27, 111, 109, -106, -90, 97, 82, 115, 42, -8, -98, 55, 13, -49, -34, 57, -95, 126, 31, -3, -9, 25, -16, -2, -17, -118, 101, -107, 52, -51, -117, -49, 45, -106, -66, 56, -6, -44, -45, -49, -34, 120, -29, -115, -65, 5, -106, 54, -64, -114, 46, -32, 29, 114, -92, -51, -71, -63, 72, 121, -128, -78, -56, 108, -8, -66, 81, 81, 94, 102, -61, -42, 13, -53, -6, 0, 41, -115, -7, 126, 9, 109, 56, 113, -80, 125, -32, 6, 51, 14, 80, 71, -52, 54, -93, -47, 26, -14, 39, -103, -127, 104, -65, -5, -12, 67, 95, 62, -17, -72, -21, -33, -12, -78, 5, 23, -11, -60, -53, -92, -38, 91, 104, 117, -63, 28, 40, -66, 15, -72, 99, 102, 64, -98, -1, 41, 5, -56, 89, -25, 43, 104, -72, -50, -75, 16, 120, 125, 50, -76, 103, -127, 31, -124, -27, 74, -22, -104, -91, 75, 123, 66, -120, -65, 39, -105, -51, 46, 12, 63, -73, 37, -110, -55, -92, 97, 24, 73, -33, -9, 1, -86, -114, -29, 84, 67, 96, 115, 44, 63, 53, 53, 24, -126, -72, 3, 125, 125, 125, -69, -9, -83, 107, 56, -90, 83, 79, -3, -70, -87, 89, 109, 29, -59, -117, 75, 55, 88, 99, -98, 107, -128, 83, -12, -104, 8, 33, -38, 127, 121, 100, -124, 103, 78, 107, -27, -20, -107, 77, 44, 107, 79, 17, -117, -5, 16, 15, 32, -90, -64, 12, -64, -80, 125, -92, -14, 17, 74, 34, 2, -127, 54, 77, 48, -61, 20, 73, 16, 8, 60, 45, 8, 20, -44, 20, 76, -108, -76, -1, -36, -128, -65, -25, -111, 29, -63, -70, 39, 123, -3, 7, -128, -47, -58, -33, -78, -65, 103, -31, 80, -6, 4, 79, 60, -15, -60, 103, -13, -7, -4, -43, 103, -100, 113, 70, 103, 88, -114, 71, 101, -66, 101, 89, -52, -64, 19, 51, -48, -117, -108, 50, 50, 32, 90, -33, 8, 80, -124, -37, 71, -37, -124, -96, 17, 119, -33, 125, -9, -3, -31, 117, -7, 38, 71, 73, -61, -49, 109, -8, -84, 87, 45, 94, -67, 60, -101, -18, 52, 58, -70, -104, -127, 103, 95, -110, 54, 62, -58, -42, 59, -41, -34, -17, 20, 11, 71, 36, -1, 95, -5, -22, 87, -33, 113, -43, 85, 87, 95, 119, -61, -115, 63, 58, -1, -84, -77, -49, -14, 79, 123, -11, -85, 115, -15, 92, 78, -6, -62, -94, 20, -64, -34, -79, 60, 119, -36, 122, 83, 121, 96, 87, -33, -28, -42, -57, -41, -3, -59, 127, -2, -24, 95, 22, 2, 77, -128, 7, -56, 89, -49, -114, 95, 95, -17, 31, -32, -6, -21, 89, -90, 34, 59, -12, 40, -76, -123, -39, 19, -115, -59, 55, 92, -70, -102, 121, 72, 125, 41, 93, 5, 110, 61, -8, 78, 105, -17, -57, 40, -8, -33, 99, 107, 30, 86, -26, -70, 56, 12, -86, -43, 24, -14, 125, -73, -57, -74, 45, 18, 73, 3, -4, 96, 25, -121, 65, -1, 12, -9, 17, -39, 33, 73, -46, -96, 95, 92, 113, 17, -121, -84, -73, 63, -60, -116, 110, -5, 37, 71, 66, -14, 64, -3, -128, 57, -6, -78, -94, 110, 122, 63, 117, -125, 110, 72, -25, -22, -29, 105, 14, 66, -85, -105, 44, 120, -27, -48, -56, 40, 69, 119, -2, -128, -4, -73, -97, -38, 50, 1, 92, 120, -55, -110, -26, 111, 103, 124, -3, 71, 41, -97, -13, -109, -126, 101, -74, 0, 91, 78, -101, -87, -12, 11, 63, 82, 52, 116, 118, 12, 3, 35, -111, -28, -79, -55, 26, 85, 63, 0, -32, -63, 124, -107, -73, 118, -73, 81, -82, 120, 4, 120, -11, 31, 39, 8, -22, -64, -123, 31, -63, 121, -32, -23, -48, 20, -44, 116, 104, -118, 66, 89, -21, -37, -53, 110, 112, -13, -41, -98, -17, -65, -101, -125, 84, 5, -66, 0, 92, -15, 69, -8, 42, -80, -2, 80, -64, -50, 91, 54, 112, -34, -94, -10, -31, 59, -49, 59, -9, -23, -42, -18, -18, 19, 49, 83, 54, -24, 0, -76, -113, 63, -74, 19, 119, -30, 9, 122, 55, -35, -63, 45, 119, 112, -3, -38, 62, 62, 63, 2, 69, -26, 41, 33, 124, -115, 50, 52, -16, 107, -124, -66, -38, -78, -52, -65, -80, 99, -31, -97, 109, 35, 13, 99, -80, 92, -82, -4, 77, 111, -17, -82, -33, 105, 45, 12, 45, 64, 10, 52, 16, 126, 20, 17, -11, 34, 16, 74, 11, 64, -93, 4, 8, 109, 8, 80, -77, -26, -69, -117, -66, 87, 2, 41, 65, 71, -1, 10, 13, 34, -30, -8, -76, -106, -5, 82, 45, -112, 82, 48, -115, 53, 11, -55, -26, -51, -37, 126, -73, 114, -27, -118, -49, -39, -74, -11, -107, -80, -49, -77, 48, -120, 34, -83, 106, 71, 85, 43, -1, 80, 13, 95, -16, 69, -47, -94, -108, -48, 28, 126, -87, 106, -75, -70, -31, -31, -121, 31, -34, 103, -1, -44, -47, -47, -15, -86, -41, -68, -26, 53, -25, -66, -22, 85, -81, 122, 93, 111, 111, -17, -28, -38, -75, 107, -65, 49, 50, 50, -14, 91, -114, -80, -62, -70, -3, 63, 66, 39, -121, -105, -123, -19, -125, -97, -91, 82, -87, -27, 51, -114, 14, 117, -25, -100, -103, 8, -77, -115, 32, 109, -93, 69, -37, -72, -82, -117, -25, 121, 63, 114, 28, -25, 2, 126, -65, -46, 0, -123, 66, 17, -53, 50, -119, -59, -90, 39, 13, -87, 57, 14, -51, 77, -51, -92, -110, 73, 16, 98, -26, 119, -123, -21, 107, 17, 52, 27, -62, -45, -52, 0, -60, -96, 103, -6, -63, 17, -76, 99, 24, 6, 33, 91, 77, 120, -83, -62, -3, 83, -72, -82, 19, -99, -117, -103, -74, 20, 47, 68, -14, -45, -13, 112, -104, -44, -122, 52, -126, 112, -33, -24, 120, 115, -55, -13, 60, 66, 104, 51, 26, 95, 80, 74, 69, 121, -37, -97, -126, 32, -120, -94, 49, -43, -105, -93, 124, 29, 40, -78, 97, -40, 126, -117, 126, -81, -17, -5, -52, -95, 40, 111, -47, -17, 11, -13, 58, -113, 114, 120, -9, 32, -100, 123, -17, 115, -123, 107, -121, 11, -43, -113, -97, -48, -35, 65, 71, 83, 18, -85, -18, -12, 27, 104, 65, -43, 13, -40, 61, 82, 96, -21, -48, 40, 15, 15, -87, 59, -2, 27, -98, 5, 78, 1, -36, 99, -37, 19, -19, 91, 55, -82, -1, -90, -109, -20, -68, -15, -2, -33, -84, -5, -69, 15, 126, -32, -113, -113, 29, -101, -52, 15, -81, -3, -113, 31, -59, 0, 9, 4, -115, -19, -4, 3, -12, -63, 56, -110, 64, 109, 16, 4, -119, -48, -71, 31, 32, -70, -41, 43, -107, 74, 9, 120, -124, 23, -108, 3, 38, 0, -105, -93, -89, -57, -108, -17, -106, -79, 50, -87, 82, 127, -118, -14, -128, -119, -14, 115, 8, 43, 70, 34, 107, 33, -91, -96, 90, 85, 104, 63, 64, -7, 53, 98, -23, 34, -79, -123, 125, -40, 105, -113, 92, 115, 51, 45, -83, 77, 52, -27, -78, -60, 19, 9, -124, 105, -31, 75, -119, -89, 64, -94, 105, -108, -98, -107, 58, -127, 34, 97, 72, 76, 65, 116, 108, -89, -20, 80, 28, 30, 31, 5, 113, -1, -36, -27, -1, -1, -68, 40, 110, -75, -60, -13, 55, 127, -104, -42, -79, -69, -55, -103, 85, -70, 98, 96, 27, -96, -27, -12, -10, 18, 48, 37, 36, 108, -112, -90, -51, -18, -36, 121, -12, 45, -3, 24, -79, -98, -45, -94, -5, 43, 110, -66, 0, -51, 38, 45, 25, 125, -74, -115, 35, 17, 109, -10, -24, -21, 117, -81, 60, -91, 37, -68, 62, -25, 55, -73, -74, -45, -37, -69, 59, 15, -69, 57, 92, -70, -10, -119, -54, -109, 31, 41, 88, -1, -25, 117, 47, -53, -34, 38, 125, 65, 121, -92, 68, -128, -120, -32, 87, -108, -117, -46, -32, 7, 26, 93, 47, -9, 53, -110, -64, 87, 40, -91, 81, 72, 84, -32, -125, 6, -83, 102, -56, -28, -23, -24, -77, -109, -59, -128, -2, 124, -80, 45, 4, 115, -66, 114, -21, -82, -32, 103, -4, 47, -112, 105, 74, 8, 124, 106, 21, 7, 68, 84, -7, -41, 39, -118, 48, 17, 66, -121, 22, -52, -38, -34, 66, 72, -125, 0, 48, -45, 57, -68, 64, -95, 61, 31, 33, 5, 53, 63, 32, -48, 96, 72, 19, 25, -11, -93, 13, -112, -110, -63, 114, -111, -38, -60, 116, -124, 88, -63, 52, 116, -20, 22, 3, -20, 102, 83, -40, 49, -61, -86, 76, 57, 35, -52, -88, -31, -35, -15, 126, 84, 63, -57, 10, -128, -89, -42, 63, -55, -116, 34, -120, -39, -97, -98, -48, -54, 8, 2, 2, -49, 7, -88, -49, -26, 95, 99, 102, 25, -120, -66, 115, 29, 103, -70, -114, -10, -125, 104, -33, -39, -57, 83, 40, -44, 28, -7, -48, -121, -117, 56, -41, 90, -124, 127, 22, 64, 16, 69, -15, 117, -15, -107, -94, -26, 6, 32, -120, -58, 44, -27, -116, -93, -106, 97, 76, -41, 25, -5, 62, 75, -48, 2, 16, -47, 120, 69, -29, 8, -65, -28, -16, 75, -68, -4, -40, -29, 94, 47, -123, 120, -105, -46, 122, -89, 31, 4, -49, -108, 106, -43, -25, 67, -112, 105, 2, 96, -1, -29, 127, -111, 49, 43, -94, 43, 7, 3, -94, 46, 104, 109, 109, 89, -48, -36, -6, -15, -18, -114, -10, -49, -89, 19, -119, -8, -98, -79, -47, -15, -15, 66, -31, 79, -53, -75, 90, -27, 80, -32, -35, 122, -98, -6, -22, 64, -90, 92, -34, -42, 30, 95, -77, 104, -15, -103, -57, -74, 119, -2, -27, -54, -114, -82, 102, -91, -75, 23, 40, -75, -91, -30, -70, 27, 10, 78, 109, -128, 119, 51, 120, -128, -15, 49, 81, 55, -103, -119, -59, -19, 87, 31, -77, 124, 77, 42, -98, 56, -87, -91, 57, -9, -106, 16, -90, 60, 59, -16, -4, 74, -17, -13, -49, 95, -79, 118, -61, 83, 55, 29, -127, -70, 47, 124, 110, -4, -105, -91, -30, -23, 95, 44, 94, -66, -96, 99, 120, -17, 36, 97, -76, -40, 82, 46, 103, -51, -122, 62, -30, 39, 118, 54, -67, 63, -12, 1, 105, 78, -89, 99, -124, 80, 66, -41, -86, -10, -36, -126, 45, -93, -7, -111, -3, 68, -97, -51, 45, -22, 104, -66, 124, -47, -78, 5, 56, 85, -121, 103, -97, -34, 49, 94, 40, 85, 126, 11, -44, -22, -64, 110, -86, 86, -42, -105, 47, 93, -35, 18, 51, 98, 38, 67, 123, 39, -58, -83, -104, 124, -26, 48, 85, 35, 86, -40, 22, -3, 116, 8, -27, 54, -115, 79, 78, 33, 16, -79, -70, -61, -16, -62, -104, 101, 17, -74, 65, 79, 11, -95, -97, 92, 8, -69, -106, 15, 4, -69, -122, -33, 25, -106, 101, 47, 13, -33, -55, -36, 106, 90, 102, 123, -79, 84, -38, -22, 121, -34, 15, 1, -73, 17, -44, 5, -84, 68, 44, -79, 80, 79, 59, 32, -89, 14, 53, -33, -89, -99, -2, -54, -13, 86, -97, 116, -14, -5, -124, -124, -87, -55, -87, 61, 64, 0, 8, -61, 52, -102, 91, 59, -38, 9, 51, -11, -22, -123, -35, -35, -23, -16, -34, 46, 71, -9, -19, -117, -33, -1, -79, 87, -66, -6, 53, -97, 89, 126, -20, -54, -107, 65, -32, 50, 50, -68, -9, 81, -64, -83, -61, -125, -122, 29, 70, -66, 11, -37, 40, -96, 105, 1, -28, 124, -95, -45, 120, 80, 74, -75, 59, -69, 62, 27, -77, -28, -78, -82, 102, -69, -89, -77, 57, -42, -71, 116, 113, 15, -69, -85, 14, -23, -95, -22, -35, -10, -44, -122, -117, 91, 51, -79, 116, 107, -68, 25, -53, -108, 104, -19, 86, -14, 86, -41, -122, 57, -38, -111, 118, 79, 101, -45, 69, 18, 117, -62, -126, -42, 88, -53, -86, -91, 45, -81, -117, -57, 4, 27, -121, 125, 54, -11, -106, 110, 41, -74, -98, 114, 13, 80, -83, 3, -88, 102, 83, 105, -57, -119, 113, 93, -66, -80, -93, 37, 93, 74, 25, 43, 50, 19, 83, 83, 12, 14, -113, -36, 95, 49, -101, -14, -52, 67, -115, 16, 110, 103, -50, 120, -1, 113, -85, -113, -17, 26, 30, -24, -29, -39, -25, 54, -1, 8, -16, -22, -37, -104, -128, 37, 12, 51, -64, -80, -39, -75, 123, -49, -82, 66, 77, 62, -73, 47, 15, -5, 57, -106, -84, -101, -35, -45, 106, -35, 122, -36, -54, -107, -19, 72, -109, -37, -17, -6, -51, -19, -49, -17, 45, -1, 41, -32, -50, -20, 23, -90, 42, -36, -89, 8, -26, -33, 0, -119, 16, -12, -66, -2, -8, -109, 79, 95, 124, -33, -125, 15, 71, -128, -16, 75, 0, 103, 77, 32, 25, 2, -89, -17, -21, 104, -17, -70, 52, 17, 79, -59, -61, -2, -108, -106, 66, -120, -47, -111, 97, 6, -5, 122, 63, -90, 3, 111, 52, -107, 109, -7, 68, 38, -99, -95, -77, 43, 75, 8, -126, 81, 46, 21, -23, -21, -37, 67, -87, 84, -90, 107, -31, 2, -46, -39, -20, 52, -68, 23, -101, -18, 51, 13, 15, -113, 48, -78, 119, -120, -86, 83, 101, -55, -30, 99, -104, 24, 25, -95, 86, 42, 55, 62, 3, 28, 2, 40, 30, -27, -7, 77, 111, 126, -13, 71, 114, -71, -36, -102, 61, -69, -5, -118, -61, 35, 35, 31, 3, 106, 64, 12, -56, -123, -114, -21, -25, 120, -114, 75, -95, 84, -4, 87, -64, -99, 11, -100, 5, 108, 32, 29, 94, -57, -21, -102, -102, -101, 50, 59, 119, 108, -13, 6, -5, 7, 62, -70, 117, -53, -106, -83, -31, -67, -18, -51, -111, 15, 25, 15, 41, 69, -37, -74, -15, -107, -102, -77, 25, 27, -126, -85, -5, 28, -91, -35, -116, 74, -83, 47, -113, 85, -34, 62, 82, 24, -70, -70, -46, -111, 126, 91, -83, -22, -112, -6, -65, -20, -99, 9, -108, 93, 85, -103, -17, -1, -5, -52, 119, -84, -86, 123, 107, 76, -91, -122, 84, 6, 72, 2, 9, -120, 76, 2, -62, 3, -124, -106, 32, -115, -46, 77, -117, -19, 83, 81, -124, 110, -106, 3, 42, 79, 109, 31, 13, -118, 96, 35, -24, 19, -63, 118, -96, 91, -102, 65, -122, -41, -52, 66, 24, 66, -62, 96, 66, 18, 32, 9, 25, -88, 76, 85, -107, -102, -85, 110, -35, -70, -13, 116, -26, -67, -33, -31, -28, 84, 123, -42, 93, -107, -94, 50, -95, -10, 122, -1, -75, -66, 117, -50, 29, -49, -66, -5, -18, -77, -9, 62, -5, 124, -65, -17, -117, -124, 32, 74, 2, 20, -17, -38, -106, 19, 5, 4, 107, -61, 0, 24, 106, 66, 49, 55, -8, -77, -92, -121, 0, -62, -64, -84, -3, -13, 14, 73, -111, 81, 46, 20, -95, -107, 53, 48, -41, 87, -113, 66, 87, 13, -108, 10, 37, 24, 37, 13, 102, 89, -49, 27, 57, -29, -42, 56, -119, -3, 6, 64, -39, 57, -66, -115, 67, 80, 49, 93, -74, -6, 119, -18, 67, 98, 112, 12, -15, -122, 24, -10, -19, 77, 35, 49, 60, -114, -6, -71, -11, -120, -60, 35, -88, 20, -54, 52, 42, 7, 54, 14, -68, -47, -9, -97, 106, -78, -12, 123, 7, 14, -20, -57, 17, -110, 32, -15, -19, -55, 109, 99, 63, -84, 105, -83, -3, -120, 86, -47, -12, 64, 36, -80, 32, -65, 47, 123, 11, -119, -16, 87, -100, 119, -63, 105, -89, 57, 89, 106, 55, -30, 48, -12, -52, -67, 55, 61, -24, 64, -76, -101, -53, -27, -54, 99, 45, 45, 13, 75, -62, -95, 16, 42, 26, -125, -24, 6, -20, -110, -63, -104, 23, -64, 11, -52, -3, 127, -87, 109, -125, -128, -62, 48, 13, 55, -88, -100, -23, 60, 6, 101, -80, 25, 5, -31, -127, 64, 48, 8, -98, -29, 65, 8, -112, 73, 39, -79, -87, -89, -41, -74, 9, 121, -54, 57, 73, 79, 113, 32, -85, -10, 96, 77, 24, 98, 86, -2, 36, 53, -83, 7, 1, 60, 53, -13, 116, -52, -70, 30, -76, -12, 99, 106, 20, 97, -23, 58, -120, 11, -15, 82, 112, 68, 3, 15, 19, 90, 121, -1, -38, -121, 36, 114, -112, 5, 2, 57, 36, -71, 62, -88, -5, 19, 53, 81, 68, 35, 10, 68, 73, 5, -88, 6, -58, 81, 16, 65, 71, 49, 99, 32, 63, -103, 65, 40, -54, 35, 24, 38, -32, 56, 10, 70, 45, 8, 33, 30, -103, -100, -119, 82, -63, 64, 46, -85, 33, -101, -45, -111, 46, -24, -56, -28, 77, 36, -77, -122, -77, 111, -90, 74, -86, -11, 115, -61, 96, 119, -20, 25, -87, -24, -121, 9, -74, -122, -25, 119, 53, -33, -38, -40, 60, -65, 43, -109, 26, -64, 100, -86, -12, 124, 40, 40, -51, 105, -99, -37, -11, -34, -68, 14, -108, -102, -31, 35, 48, -114, -117, 13, -15, -48, -30, -7, -117, -106, 125, -121, -25, 101, -108, -117, -103, 4, 0, -61, -55, 62, -53, -100, 50, 112, -110, -56, -41, 45, 88, -80, -12, -17, 29, 95, 64, 112, 28, 87, -121, 35, 39, -2, 83, -105, 94, 120, 74, -52, -119, 22, -96, -87, 46, -60, 48, 23, -5, 69, 36, 89, 105, 22, 69, 25, -111, 104, -8, 92, 0, 27, 102, 88, -125, 18, 62, 121, -23, -7, -25, 47, 94, -78, -12, 122, -45, 50, 48, 60, 60, -74, 14, -128, 49, 77, -58, 90, 94, -106, -27, 14, 48, -128, -29, 73, -51, -111, 7, 103, 93, -109, -70, 66, -83, -97, 67, -88, -26, 28, 61, 61, -14, 17, 0, -38, 20, 60, -21, -68, -121, 3, 32, 11, 114, -24, 124, -128, -17, -42, -87, -31, -127, -75, 71, 79, 30, -48, -54, 3, -112, 101, -111, 119, -70, -8, -8, -123, -107, 82, -39, 30, 24, 78, -36, 8, -128, -100, -72, -96, -7, -30, 72, 109, -68, -34, 50, 116, -108, 43, -22, 26, 0, -26, 97, 28, 103, 106, -100, 9, 45, -21, 106, -2, 92, -76, -74, -82, -55, 98, 4, -109, -39, -30, -35, -34, 58, 87, 8, 64, 52, 16, 14, -43, -37, -122, -123, 114, 73, -35, -18, 62, 127, -120, -30, 25, -5, 90, -48, 33, 91, -54, -71, 44, 44, -45, -108, -10, 67, -80, -31, 43, -75, 124, 10, 122, -87, 24, 33, 64, -13, 108, 51, -73, -81, -70, -23, -14, -50, 64, 40, -12, -73, -90, -86, -94, 92, 40, -72, -96, 99, 32, 28, -67, 65, -110, 36, -116, 15, -10, 89, -44, -78, -78, 31, 80, -112, -60, 125, -86, -86, 118, -29, -3, -43, -29, 0, 65, 47, 8, -126, 112, -95, -37, 47, 30, 125, 93, 11, 32, 60, 67, -64, 74, -43, 9, 106, -3, 45, 0, 47, 56, -103, -6, 46, 112, 30, 39, 60, -8, 118, 61, -90, -111, -109, 89, -10, -105, 78, 80, 77, -117, 49, -74, -90, -75, -75, -11, 2, -25, 113, 6, -114, 6, 6, 6, -36, -28, 79, 56, 124, -43, 57, -11, -72, 110, -59, -118, 21, -123, -101, 110, -70, 105, 37, 124, -102, 1, -92, -35, 3, -32, 95, -32, -40, 117, 117, -84, -114, 81, -38, -54, 49, 68, -64, 40, -79, 109, 90, -95, 12, 9, -25, 61, 9, 28, -100, 86, 62, -4, -16, -61, -73, 45, 91, -74, 108, -35, 19, 79, 60, 113, -62, 101, -105, 93, -106, -59, 127, 35, -51, -28, 119, -107, -38, -111, 55, -14, -117, -43, 66, 46, -105, 107, 40, -87, 89, -40, -52, -126, 101, -37, -48, 43, 22, 18, 19, 69, -93, -25, -11, -119, 55, 1, -4, 15, 0, 49, 56, 102, 20, -84, 90, -57, 106, -68, -64, 88, 65, 111, 94, 42, 120, -33, 103, 123, 62, 37, -86, -105, -3, 56, 111, 107, 52, -105, -40, 92, -40, 51, -87, 20, -73, -117, 17, -98, 31, -115, -26, 53, 33, 36, 126, -59, 58, -42, 108, 117, 124, -41, 97, 14, 26, -24, 31, -23, 65, 58, -101, 66, 69, 55, -52, 98, -86, -110, -10, 65, -87, 51, 5, -83, 36, 7, -14, 91, 114, -38, -11, 118, -57, 111, -25, 50, -25, -1, -4, -100, 3, -117, 95, -27, 4, -50, -17, 116, -26, -45, -82, 95, -95, 32, 8, -45, 5, 16, 61, 96, 22, 90, -53, -78, 92, -104, -36, -87, 31, 56, 1, -12, -33, 116, -32, -39, 95, 58, -63, 103, 95, -11, -5, 78, 84, -107, -63, -14, 61, 95, -107, 8, 97, -26, -14, 79, 20, -19, -35, 91, 70, -40, -25, -33, 29, 51, -119, 106, 67, -93, -116, 105, -25, -75, -53, -33, 62, -89, 43, -16, -111, -18, 9, 99, -20, -66, 119, 43, 55, -27, 12, 38, -7, 63, 51, 109, 61, 121, -56, -56, -90, 49, -21, 55, 61, -87, -94, 121, -27, -15, -63, 27, -113, 107, -110, 90, 94, -35, -89, 110, 92, 53, -96, -1, -108, 39, -112, 3, 2, 81, 76, -54, -24, 120, -103, -18, 62, -40, -14, 43, -118, 44, -41, 68, 34, 72, -91, 39, 17, -115, -42, -72, 7, -37, 127, -97, -110, -7, 50, 124, 90, 110, -3, -102, -90, 33, -29, 16, -28, -16, 95, 91, 28, -56, 31, -96, -44, 93, -5, 12, -121, -62, -18, -3, -88, 68, 34, -127, -127, -63, -95, -60, -66, -127, -63, -53, -107, 64, 32, -45, -39, -34, 89, -54, -26, -13, 97, 69, 18, 92, -128, 86, -111, 37, -73, 12, -59, 98, -55, 5, 105, 41, -104, -123, -61, 84, -57, -62, -91, -49, 28, -77, -20, -8, -123, 123, -74, 111, -101, 36, -124, -77, 80, -91, 80, -76, -18, -118, -128, 34, -55, 34, 79, 16, 12, 70, -50, 125, 63, -128, -74, 117, -63, -46, 95, -97, 125, -47, -118, 47, -66, -11, -6, -85, 125, 95, 125, 96, -32, 117, 84, -119, 23, -92, -27, -44, 50, 81, 46, -107, 27, 113, 4, -28, -127, -84, -100, 3, -75, 114, 0, 24, 47, -16, 69, 37, 20, 120, 38, 44, -41, -84, -28, 85, 94, 52, 68, 51, 84, 34, -107, -59, 54, 103, -99, 37, 4, -27, 37, -126, -60, 47, -31, 56, -82, -106, 19, -7, 14, -30, -35, -81, -92, 2, 93, -20, 6, 43, -74, -20, 44, 53, -20, 126, -85, 98, -68, -54, 49, 110, -89, 68, -60, 109, 115, -108, 57, 111, -119, 33, -95, -32, -99, -9, -42, 123, -80, -82, 115, 76, 25, 117, -68, -75, -7, -47, -11, -10, -91, 119, 125, -106, 109, -70, -17, 13, -68, -97, 60, -112, 117, -35, 45, -33, -65, -71, -98, 23, -124, 37, 2, 47, -76, 113, 60, -89, 56, 101, -47, 5, -127, 55, -77, -39, -84, -29, 75, 22, -3, 88, 52, 26, 61, 95, -106, 101, -59, 5, 105, 5, 17, 95, -2, -46, 85, -128, 35, 67, 51, -32, -44, -103, 11, -50, -22, -70, -82, 57, 0, -10, -22, 124, -66, -16, -78, 101, 89, 19, -74, 109, -117, -114, -55, -116, 50, -51, -78, -52, 97, 103, 127, -25, 13, -33, -65, 49, -123, 89, 74, -64, 81, 80, -113, 26, -39, -50, 90, 79, -4, 116, -23, -124, -123, -80, 117, 19, 67, 27, -34, 69, 127, 101, -21, 59, 71, 117, 0, -104, 30, 22, 20, -85, 64, 70, -59, -21, -40, 3, -98, 41, 94, 103, 31, -14, -74, 17, 111, 63, -20, 123, 93, 4, 64, -34, -66, 119, -73, 85, 127, 76, -19, -45, 45, -89, -44, 47, -113, 52, -121, -69, -20, -9, -82, 74, -96, -128, -89, -128, -83, 83, 16, -41, -17, -127, 119, 7, -103, -78, 101, -82, 45, 24, -22, -113, 54, -36, -13, -26, -22, -86, 50, -78, -93, 62, 24, -122, 113, 93, 56, -84, 8, -107, -78, -58, -84, 17, -36, -118, -4, 65, 28, 115, 15, 40, 62, 64, 109, -37, -109, -7, -7, 50, 102, -1, -62, 50, -83, -65, -54, -91, 83, 95, 72, 78, -90, 46, 105, 105, -102, -108, -94, -47, 48, 66, -47, 8, 20, 81, -128, 101, 82, -108, 74, 25, 20, 10, 42, -14, -123, 50, 38, 51, -109, 70, 42, -103, -3, 125, 54, -105, -65, -17, -83, -18, -28, -54, -93, 9, -50, 86, -125, 59, -45, 65, -125, 126, 8, -61, -33, -50, 124, 22, -10, -38, 84, -64, -37, 87, 54, 102, 54, -77, -13, 42, -105, 62, 115, -61, -68, -81, -99, 121, 113, -61, -123, 115, -96, -43, 67, 51, 53, 24, -106, 14, 19, 38, -110, 44, 101, -4, 50, -1, -17, -101, -97, -98, 124, -31, 97, -101, -39, 49, 111, 65, 44, -29, 77, 62, -4, 30, 14, 116, -70, 114, 86, -63, 79, 82, 85, 70, 27, -9, 28, -16, -75, -7, -80, -41, -18, 35, -3, -125, -55, -80, 99, -29, -118, 34, 61, -41, -46, 84, -73, -96, -93, -67, -79, -93, -39, -15, -92, -81, -85, -77, -107, -70, -38, 16, 111, -104, 20, 106, 69, 71, 42, 61, -22, 70, 83, 55, 45, -26, -20, -25, 29, 85, -10, 76, 76, 22, 95, -23, -37, -105, 120, -87, 92, -47, -57, -89, 22, -4, 124, -50, -23, -66, 27, 60, 51, -41, -1, 12, -32, -41, -12, -112, -114, 119, -98, 122, -37, -32, 63, 61, 107, -89, 1, -4, -28, -28, 118, -78, -12, -100, 99, 112, -26, -94, -10, -55, -29, 27, 98, -95, 122, 81, -92, -96, -84, -128, 112, -108, -128, 112, 1, -16, -126, -77, 101, -70, -69, 85, 85, 27, -78, 76, 96, -24, 12, 18, -49, -95, 92, -95, 80, -53, 64, 95, 2, -85, -65, -7, 59, -74, 9, 64, -99, 87, -17, -26, 76, 0, -104, 111, -53, -3, -3, -73, 94, 76, -34, -14, -115, 83, 47, 89, -74, -92, -11, 1, 7, 14, 57, -45, 29, 112, 0, 55, 106, 91, 106, 60, -125, -28, 100, 69, 3, 48, 15, -128, -28, -121, -64, -86, -2, 55, -23, -35, -2, 74, -64, 49, 11, -64, 38, -114, 67, 119, 75, 76, -86, -97, -37, 32, 53, 54, 68, -123, -9, -2, -110, -80, 36, -68, 55, -112, -128, 19, 56, -9, 51, 22, 1, 84, -54, -112, -43, 45, 58, 90, -42, -24, 80, -82, 100, -9, 109, -35, 87, -23, -99, -52, 91, 121, 0, -90, -49, 65, -42, -14, -74, -58, -116, 48, -61, -12, -112, -99, -65, 93, -55, -98, 73, -66, -1, -62, -33, -81, -70, -10, -64, -85, -91, -95, -91, 45, -54, 35, -83, 13, 56, -82, 45, 70, -38, 104, 69, 11, -113, 83, -111, -89, 38, -113, -34, 113, -77, 66, 13, -106, 50, 24, 122, 119, 12, -22, 91, -5, 38, 10, -69, -68, -29, -52, -9, -78, 32, 21, -67, -6, 55, 60, 51, -3, -114, -35, 51, 0, 11, -68, 103, -110, -65, -1, 127, -29, -119, 124, 16, -64, -77, -83, -117, -92, -79, -6, -71, -62, 21, 114, -120, 59, -119, -25, 33, 114, 62, -9, 74, 83, 103, 105, 93, -91, 73, 70, -63, -108, 32, -41, 36, 72, 36, -114, 41, 80, 121, 127, 118, 95, -45, 80, -23, -42, 92, -110, 62, 49, -72, 83, 127, -35, 59, -58, 2, 0, -70, -49, -86, 50, -51, 85, 65, 52, -77, 108, -1, 59, 55, -21, -18, 111, -111, 100, 34, 38, -122, 109, -127, 49, 72, 96, 76, 38, 28, 9, 50, -122, -48, 111, 127, -106, 127, -123, 82, -10, -10, -4, -59, -30, -94, -29, 79, -47, -1, -106, 72, -42, 113, -87, 100, 42, 24, 8, 113, 40, 20, 41, 12, -67, -124, 64, 48, -32, -35, -104, 54, 0, -58, -69, -50, -108, 64, 25, 0, 49, 57, -101, -97, 40, -25, -28, -83, -101, -33, -96, -49, 12, -12, 24, -69, -67, 38, -47, -24, -53, 62, 101, -51, 4, -62, 31, 108, -3, -5, -38, -122, -37, 55, 126, 115, 36, -29, 108, 33, 7, 57, -14, -37, 115, 34, -127, 83, 22, -119, -30, -87, 53, -60, -98, 3, 16, -64, 11, 76, 97, 2, -107, 113, -45, -36, -75, 73, 53, 94, -37, -82, 26, 123, 0, -100, 12, 96, -119, -41, 39, 86, -68, 31, -93, 30, 116, -3, -49, -100, 89, -109, -1, 87, 43, 93, 2, 112, -62, 119, -60, -58, -37, 99, -124, -69, 58, 72, 56, -16, 83, 47, -6, 28, 36, 109, 48, -104, -114, -23, -116, -71, 39, 96, -122, 81, -20, -92, -22, 3, -85, 104, -23, 57, 0, 109, 0, -8, 110, 53, 111, 56, -10, 31, 4, -72, -65, 83, 14, 45, -86, -27, -91, -50, 0, -57, 55, -15, 4, -68, -59, -112, -47, 41, -19, 75, -24, -22, -26, 49, 67, -19, -13, 126, -117, 56, 13, -48, 67, 103, -66, -8, -86, 30, 11, 102, -122, 89, -4, -16, -111, 103, -78, -49, 36, -1, -66, 31, 126, 57, -128, -45, -78, 120, -3, -93, -55, -11, -1, 43, -71, -90, -7, -72, 99, -22, 23, 4, -105, -38, 88, -9, -50, 64, 18, 64, 61, -128, 44, -128, 74, 21, 0, 60, 35, -80, 57, 67, -65, -61, 123, 101, 18, 125, -27, 83, 124, 22, -16, -9, 63, -2, -79, -41, -77, -87, -33, 64, 95, -39, -72, -57, 34, -52, 90, 83, -88, -104, 31, -99, -65, 96, -66, 36, 75, 18, 114, -71, 44, -6, -6, -121, -77, -101, -69, 71, 126, -6, -56, 11, -37, 119, 3, -88, -13, 103, 97, -101, -66, -1, -87, 110, 75, 51, 59, 116, -5, -54, 46, 85, -107, -69, -70, -20, 97, -33, 28, 34, -104, -42, 108, 101, -35, 104, 105, 44, 38, -13, -49, -49, -115, -120, -13, 27, 67, 82, 107, -128, -25, -93, -118, -56, -69, 37, 33, 28, -96, -103, 54, 44, -101, 21, 84, -37, 90, -97, 81, -83, 95, 109, 75, 105, -81, -5, -2, 123, 123, 22, 0, -52, 76, -48, 47, 63, -61, 88, 44, -5, -52, 63, 14, -56, 35, -59, -110, 50, -78, 107, -41, 91, -118, 32, -20, 60, 54, 94, -69, 120, 81, 67, -3, -46, -50, -70, -122, 5, 97, 89, -118, 18, 16, 2, 30, 32, 12, 16, 5, -114, 48, 66, -75, -73, -5, -10, -3, -21, 35, -35, 59, -97, -15, 29, 107, 26, 64, -52, 119, -66, -6, 96, -34, -22, -15, -55, 103, 1, -97, 5, -85, -21, -41, -77, -128, 13, 72, 111, 14, 38, -123, -117, -66, -9, -48, -8, -46, -114, -70, 55, 126, -3, -7, 99, -49, 19, 77, 77, -48, 74, 37, 34, -14, 60, -89, 68, -61, 48, 120, 121, 119, -65, -86, -36, -11, -39, -37, -42, -84, -4, -31, 23, 78, -114, 93, 124, 122, -8, 36, -109, -95, -75, -29, -78, 123, 126, 82, 117, -114, 30, 113, 93, -9, -51, 111, 102, 14, 16, -99, -21, 46, 7, 10, -5, -60, -8, -8, -72, 88, 40, 20, -112, -53, -25, -81, -69, -6, -102, 107, 6, -31, -23, 31, -82, -67, -10, -34, -97, -1, -20, -50, 13, -119, 68, -30, 76, -114, -29, -121, 5, -127, 127, -39, -127, 112, 109, 124, -128, -78, 76, -13, -84, -82, -82, 121, 75, 68, 73, 114, -57, 81, 119, 49, -59, 48, -35, -120, 80, 83, 17, 110, -35, 76, 5, -106, -23, -18, -77, -3, 81, -83, -89, 28, -89, -36, 72, 83, -116, 49, 56, -117, 95, 110, 64, -120, -87, 108, -75, -102, -90, 45, 113, -78, 35, -99, 5, 96, 23, -2, 116, 98, 127, 14, -2, -111, -1, -5, -9, 19, -20, -58, 11, -93, -56, -25, 13, -46, -44, 18, -126, 40, -14, 16, 121, 19, 63, -7, 116, 7, 103, -103, -122, 59, 15, -8, -34, 83, 9, 19, -64, 91, -5, 45, 113, -13, -9, -50, 36, -19, -111, -38, -16, 114, 38, 73, 103, -107, 51, -23, 51, 7, -69, -69, -99, 27, -84, 124, -115, 77, 25, -94, -75, 35, -18, -51, 71, -54, 56, 11, -106, 49, 74, 25, 118, -91, 83, -39, 45, 1, -123, -33, -96, -105, -44, -51, -33, 127, -99, -114, -69, -57, 61, 63, 68, 4, 73, 38, 4, 0, 33, 46, -108, -31, 58, 4, -34, -16, -20, 36, -3, 83, 95, -65, 3, -80, 42, -106, -91, 62, 118, -33, -3, 91, -68, -79, -24, 12, 0, 105, 111, 63, -21, -51, 49, 43, -66, 121, -66, 57, 13, 4, -58, 14, 5, -100, -83, -18, -13, -3, 125, -67, -17, -79, -24, 91, 112, 102, 85, -48, -102, -31, -33, 122, 102, -7, -53, -23, 7, 55, -3, 54, 3, 4, 52, -21, -116, -29, -77, 24, 7, 68, -49, -86, -57, -75, -22, 107, 78, -1, 56, 87, 61, -81, -32, 1, -112, 42, 39, 57, -4, -24, -79, -67, -87, 68, 70, 91, 125, -59, -71, -13, -50, -81, -73, 120, -92, 13, -118, -79, -116, -66, -43, -5, -97, -75, 25, -100, 69, 40, 28, 77, 11, -46, 122, 16, -19, -44, 24, -90, -86, 106, -63, -55, -110, -104, 4, -80, -83, 10, -74, -30, -32, -55, 87, -105, -90, 111, -21, -81, 115, -77, 26, -102, -99, 37, 56, -53, -86, -10, -87, 103, -2, 44, -41, 21, -17, 58, 40, 9, 32, -76, 39, -113, 94, -57, 86, -58, 100, -76, 47, -88, -63, 73, 29, 17, 28, -33, 20, -62, -100, 120, 0, -79, -112, 12, -39, 101, 82, 93, 124, 124, -65, -93, 3, 17, 108, 80, -114, -125, -63, -120, -91, -103, -100, -103, 81, -111, 77, 20, 89, 98, 32, -115, 61, 61, 9, -70, 101, 44, 71, 123, -4, 25, 103, 61, -45, 61, -77, 125, -65, 13, -121, 9, -107, -29, -79, -57, 30, -69, -1, -84, -77, -50, 90, -75, 97, -61, -122, -53, -99, -101, 112, 43, -100, 104, -96, -53, -100, 108, -76, -115, 77, 77, 77, 36, 22, -117, -71, -127, 20, -68, 108, -29, 110, -1, 62, 5, 7, -108, 74, 37, 119, -95, -36, -71, 89, -89, -11, -11, -11, 13, 56, 55, 43, -42, 59, -29, -40, 19, -78, 44, -65, -16, -28, -109, 79, 50, 124, 64, 58, -3, -73, 43, -17, 95, -3, 55, 103, -84, 26, -33, -74, -3, -14, 80, 67, -3, -118, -70, -74, -114, 101, -114, 53, 70, -38, 58, -120, -40, 48, 7, -104, -126, 106, -59, -120, 31, -97, 4, 50, 73, 96, 116, 4, -107, -63, 94, 109, -94, 103, -9, 64, -70, 111, -49, 122, 53, -101, 125, -126, 23, -59, 23, -50, -72, 127, 21, 59, 74, -128, 97, -41, 119, -65, -5, -99, 85, -97, -70, -20, 111, -44, 117, -21, -42, 95, -71, -69, -73, 63, -73, -24, -8, 19, 72, -84, 125, -98, 92, 54, 44, -7, -75, 23, -98, -41, 71, -6, -9, 21, 55, -83, 121, -31, -41, -39, 84, -14, 24, 0, 93, -66, -75, -90, 81, 31, -120, 14, 111, 95, -9, 95, 15, 86, -11, 83, -43, -13, 74, -26, -5, -116, -123, -65, 36, 17, 18, 67, 70, -121, 3, -49, -98, -120, -69, 58, 39, 112, 4, 100, -108, 49, 104, -24, -42, -55, -95, -88, 2, 81, 17, -128, -96, -47, -119, 63, 31, 81, -25, -36, 83, -90, 110, 22, 18, 66, -16, -25, -68, -17, -107, -107, -62, 83, 85, -80, 28, -47, 119, 77, 21, -12, -51, -11, 101, -17, 117, -8, -6, 52, 29, -128, 81, 21, 68, -61, -14, -103, 93, 53, -106, 86, -49, -15, -56, -5, -11, -25, 78, -92, -33, 115, -73, -18, 77, -64, 96, -40, -124, -125, -44, 109, -125, -39, 29, 0, 118, 124, -85, -114, -5, -105, 32, -63, 5, 10, -63, -39, 10, -113, 83, 101, -54, -26, -117, 28, -119, -13, 96, 16, 24, 5, 15, 14, 28, 121, 111, -97, -72, -5, 6, 47, -29, -75, -55, 36, -90, -76, 57, 83, 66, -97, -51, 65, -30, 5, 24, 0, -88, 13, -40, -5, -41, -80, -36, -83, 69, 1, -109, -78, -110, -63, -40, -80, 110, 99, -117, 70, -39, -38, 10, -61, -86, -37, -77, 70, -1, -95, -6, 127, 126, 27, -40, -4, 99, -32, -73, -73, 1, 127, 13, -32, -39, -17, 30, 6, 76, 63, 9, -68, -7, -85, 53, 56, 55, -105, -19, -71, -21, -100, -113, -12, -100, -35, -39, 126, 12, 2, -63, 22, -24, 38, -59, -24, -16, 54, -21, -83, 77, -7, -43, -81, -82, -59, 29, 43, 25, 94, 57, 120, -89, 23, -117, 50, 38, 10, 28, 7, -62, 24, -3, -123, -90, -22, -65, -46, 84, -125, -49, -25, -14, 28, 92, -66, -43, -26, 56, -114, -25, 24, 99, 4, -108, -127, 122, 115, 33, 71, 28, 37, 96, -124, -126, 114, 100, 127, -50, 100, 10, -62, 56, -54, 81, 27, 4, -124, -38, -52, -33, 36, 40, 15, 48, -54, 17, -114, 80, -50, 101, 26, 121, 103, -97, -70, -12, -83, -13, -3, -18, -35, 72, -9, 91, -90, 46, -47, 9, 33, 108, 79, 111, -17, 107, -124, -30, 85, -58, -39, 54, -95, 2, 5, -88, -53, -98, 16, 87, 54, 7, 16, 27, 71, 87, 5, 7, -106, 93, -11, -12, -45, 79, -65, 103, 65, -33, -7, -15, 65, 56, 116, -80, 84, 42, -11, 14, -128, 5, -47, 104, -12, -26, 112, 56, 124, -67, 40, -118, -127, -87, 64, 27, -2, 76, -76, 126, -104, -106, 49, -26, 66, -98, -122, 97, -12, 59, -10, 13, 74, -23, 51, 83, 115, 81, 103, 94, 97, 106, -102, 102, 121, 80, -87, 103, 31, -120, 84, -58, -104, 65, 8, -111, 44, -37, -122, 89, 46, 77, 69, 54, 119, 97, -39, -118, -90, 2, -34, 99, -65, 3, 71, 69, 85, 93, -125, 35, 127, 31, -56, 113, -100, -21, -44, -22, 124, -42, -5, 14, -35, 125, -99, 25, 6, -120, -90, 77, -67, 111, -86, -98, -10, 2, 40, 96, 102, -103, 21, -75, -78, -58, 113, 122, -24, -68, -14, -54, 47, -117, -106, 109, -67, 111, -74, -17, -11, 27, -34, -62, 108, 117, -1, 3, 15, 97, 54, -70, -8, 19, -105, -50, -108, -35, -63, -123, -103, 120, 65, -46, -99, 58, 89, 63, -101, 118, -72, 27, -48, 29, -69, -10, -68, 97, -13, -59, -2, -28, -24, 13, -83, 113, -15, -28, -6, 72, 16, -78, 32, 64, 53, 45, 36, 11, 37, -20, 78, 59, -9, 71, 76, -84, -22, 7, -42, 3, 8, 77, 93, -81, -11, 76, -86, 25, 102, -110, -17, -10, -10, -113, 110, 0, 32, -3, -18, -95, -121, 123, 0, -104, -2, -75, 40, 111, 31, -45, -84, -53, 114, 31, 68, 118, 18, -61, 48, 94, 86, 85, -11, 61, -89, 6, -24, -70, 62, 106, 89, -42, 53, 85, -9, 7, -65, 2, -32, 30, 124, -128, -102, 124, -19, 91, -93, -115, -97, 120, 102, -79, 77, -28, -37, -111, 13, 95, -62, -121, -125, 65, 41, 40, -70, 25, -92, 76, -99, -63, 118, 51, -50, 26, -32, 72, -111, 6, 26, -57, 56, 46, 60, 1, 41, 28, 69, 77, 60, -122, -38, 88, 13, 106, 107, 34, -18, -67, 10, 65, -110, 64, -35, -79, -118, -71, -111, -61, 109, -101, 122, -29, 21, -123, 101, 88, -18, -102, -111, 106, 83, 16, 70, 33, 112, 28, 2, -110, 0, -125, 0, 21, -51, 64, 118, 50, 55, 57, 57, 56, 122, 31, -43, 43, -73, 14, -36, -4, -39, 60, 102, -48, 116, 60, 94, 38, -47, 15, 109, -9, 83, -56, 74, 0, 11, 120, -48, -84, -20, 24, 113, -52, -125, 110, -53, 124, 51, 54, -57, -1, 1, -23, -123, 95, -124, 20, 110, 64, -108, 7, 2, 34, -121, -80, 68, 16, -111, 56, 103, -97, -72, -114, -34, -126, 123, 62, -5, -114, -11, 23, 46, 83, 43, 31, -93, 5, 2, -101, 19, -29, -29, -65, -105, 68, -18, 14, 28, 97, -35, -69, -41, 124, 44, 28, 46, -97, -107, -55, -22, 79, 118, 53, -119, 13, 1, 89, 0, -13, 50, -4, 82, 70, -36, 72, -15, -90, 101, -125, 82, -128, 48, 11, -108, 113, 94, 38, 90, 3, 60, 8, 40, 1, -88, -59, 92, 16, 114, -78, 72, -111, -56, -39, 47, 101, 43, -20, -25, -113, 12, 88, 47, -4, -119, 28, 19, 121, 95, -96, 76, -55, -21, 99, -84, 104, 80, 58, 41, 94, 31, 69, 77, 88, 70, 50, -103, 71, -79, 40, 34, 90, 102, 24, 31, -33, 5, -53, 6, 64, 41, -4, -46, -51, 36, 50, -39, 113, -108, 77, 32, 91, 54, 96, 81, 6, 70, 92, 78, 22, 5, -43, 6, 81, 53, -25, -77, 123, -111, -53, -27, -95, -22, 58, 114, -7, 34, -118, 5, 27, 19, -86, 5, -58, 17, 16, 14, -32, -68, -7, 5, -47, 25, 8, 71, -63, 50, 118, 35, 124, 98, -116, -70, -26, -105, -1, -75, -60, -48, 4, -44, -18, 20, 86, -9, 60, -29, -98, -121, 35, -7, 52, 94, 36, -81, -71, -25, -76, 105, 24, -80, 121, 14, -19, -15, 70, -4, -26, -1, -4, -50, 13, -100, -89, 107, 127, -52, 64, -21, 60, -25, -66, -106, 54, 42, -96, 54, 117, 63, -13, -30, -29, -81, 97, -28, -83, 49, -68, -76, -25, 41, -16, 28, -121, 124, 41, 15, 99, 41, -113, 69, 11, 23, -52, 88, -114, 35, 36, 19, 64, 2, 64, -60, -90, 20, 101, -61, -128, 97, 51, -108, 52, -51, -51, 112, 87, -35, 73, -48, -1, 10, -36, -63, -96, -71, -27, -80, -31, 83, -7, 40, 101, -29, 103, -101, 123, -10, -82, 93, 48, -89, 117, 103, 36, 24, 60, 71, 116, 28, -82, 99, -111, -24, -62, -40, 49, -47, 38, 2, 68, 9, 67, 47, -128, -68, 69, -23, 14, -54, 88, -42, -78, -83, 65, -58, 64, 44, 106, -25, 29, -32, -87, -41, 55, -65, -103, -23, -38, -123, -64, -79, -74, -122, -122, -70, 120, 36, 122, -114, 3, -94, -98, -17, 56, 65, 94, -94, 72, 98, -83, 105, -37, 24, 74, 36, -74, 58, -16, -20, 63, -18, 30, 25, -34, 122, 36, 50, -105, 121, 89, 101, 109, 15, -54, -46, -6, 82, -109, -49, 1, 120, 17, 0, -73, -68, -75, 45, -70, -80, -79, -15, -20, -120, -94, 92, 18, 13, 40, 109, 95, 56, -19, -116, -7, 32, -60, -12, -83, -31, 26, 54, 101, 3, -126, 40, 46, -14, 82, -122, 43, -78, 36, 47, 112, 3, 113, 114, -60, -42, 29, -16, 118, 104, 112, -24, -18, -2, -55, -119, 123, -34, 26, -20, -17, 3, -96, -69, -32, -28, -111, -53, 62, 43, 100, 11, 86, 75, -87, -124, -17, -76, 52, -123, 27, 43, 69, 13, -5, -6, 39, -10, -58, 91, -8, -113, 115, -68, 48, 10, -64, -10, -96, 88, 62, 42, -117, 13, 29, -115, 117, 87, 55, -49, -119, 33, -109, 42, 98, -33, 120, -26, 46, 7, -98, -19, -81, -126, 103, 93, 56, -74, -85, -82, -10, 26, 74, -124, 56, -43, 12, -20, -36, -34, -17, 64, -112, -119, 27, -9, 100, 11, 15, 123, 107, 45, 98, 62, 103, -50, -105, -126, -95, 83, -93, -15, 26, -20, -21, 25, -57, 68, -66, 124, 71, 87, 87, 112, -37, -111, -56, 62, 11, 32, -32, -24, -17, -54, 21, 13, -59, 82, 113, 29, 3, -101, 4, -32, 84, -79, 120, -78, 11, -108, 107, -38, 38, 74, -87, 48, -61, 119, -72, -32, -87, 40, -16, 55, -123, 35, -31, -27, -7, 108, 46, 87, -86, -108, 31, 1, -96, 58, -64, 45, -11, -67, 71, 42, -107, 43, 95, -116, -57, -30, 75, 38, 38, -109, -81, 11, -126, 48, 113, 56, -39, 56, 21, -103, -113, 6, -60, -54, -113, 42, 101, 21, 59, -69, -69, 7, -53, -27, -30, 27, -34, 57, 45, -88, -23, -98, 19, 70, -122, 22, -94, -112, 43, 84, -30, -15, -6, -26, -79, -47, -47, -39, 28, -117, -97, 55, 39, 112, 98, 67, 67, -12, -122, 108, 38, -125, -79, 29, 35, 69, 93, -41, -41, 1, -80, -90, -78, -35, 70, 20, -5, -26, 66, 46, -113, -111, -31, 97, -27, 96, -22, 62, 98, -91, 91, -26, -50, 105, -8, -31, -121, -106, 117, -95, 37, 38, -127, 42, -11, 72, -85, 34, -34, -39, -10, -44, -29, 28, 23, -56, 116, -60, -8, 27, 78, 57, 46, -114, -90, -42, 86, 84, 114, -93, 72, -90, -14, 25, 63, 68, 90, 45, -119, -86, -127, -106, -6, -64, -113, 79, 56, -15, 56, -91, -83, 94, -126, 18, 109, 64, 111, -49, 0, 118, 13, -115, -65, 82, -120, 30, -13, 53, 0, 101, -25, -77, 116, -22, 119, 73, -76, -14, -43, 15, 29, -33, -2, -59, 101, 75, -70, 16, -24, 56, 29, 125, -29, -109, -56, -28, -118, -113, 2, 53, -6, -20, 6, 50, 26, 59, -9, -44, 69, -49, -75, -76, -76, -58, 26, -22, 99, 45, -47, 112, 8, -113, 61, -15, -12, -90, -66, -92, -7, 61, 0, 22, 99, 76, 57, -25, -92, -50, -25, -101, -102, -25, 52, -55, -78, 52, -105, 23, 68, 12, 14, 13, -65, 115, -128, 58, 34, 109, 49, -15, 27, -57, 45, -18, -4, -78, 40, 42, 118, 123, 91, -13, 98, -117, 73, 120, -27, -75, 117, 47, 118, -9, 103, 62, 3, 64, 119, -53, -18, 3, 110, 59, -22, -123, -122, 57, 115, -102, 30, -18, -22, -100, -41, -39, 54, -73, -71, -103, 99, 20, -67, -61, -87, -69, 15, -31, -6, -115, -117, -124, -62, -117, 69, 73, 126, -80, 109, -34, -4, 101, -95, 80, 24, -123, 76, 6, -13, -70, -26, -109, 98, -71, -116, -47, -111, -127, -83, -44, 54, -9, -60, -21, 27, 126, -39, -40, 50, -9, 83, -15, 88, 3, -38, 59, 59, -63, 11, 2, 116, 93, 115, 51, 77, -107, 29, 3, 33, -48, 53, 13, -71, 74, 22, 14, 116, 11, -25, 126, 43, 50, -23, 20, 106, 106, 107, -48, -44, -46, -118, -84, -77, -81, 22, -46, 79, -26, 115, -103, -97, 30, 42, 64, -21, -121, -70, 63, 118, -31, -123, 23, -43, -43, -42, 94, 94, 87, 95, -1, 87, -87, -55, -92, 61, -48, 63, -16, -11, -73, 54, -66, -7, 102, 83, 115, 115, -8, -124, 15, -99, -8, -77, -102, -38, -38, -29, 9, 88, -57, -40, 120, -30, 89, -25, -7, -43, 0, -84, 3, 124, 31, 127, -46, -55, 39, -49, 107, -101, 59, -9, -89, 97, -121, 56, -116, -59, -29, 103, -116, 12, 15, -95, 123, -5, -114, -17, 111, -39, -14, -50, -53, -17, 83, 86, -2, -44, -45, 79, 59, 86, -106, -107, 79, -37, -74, 13, -75, 88, 124, -33, 76, -106, 94, -10, 87, -61, 113, -102, -34, 29, -46, 113, 69, 118, 40, 119, 73, 33, -111, -69, -71, -74, 53, 54, 79, 8, -56, 8, -43, 6, 33, -54, 18, -126, -95, 16, -64, 17, 80, -117, 66, -43, 52, 119, -34, 32, -120, 2, 8, 33, -82, -13, 51, -31, 9, -100, 115, 25, 90, 89, -123, 101, 88, -114, 25, -96, -90, -19, -66] astore_1 aload_0 ldc literal_1289:"__e7-48.png@253952" aload_1 invokevirtual java.lang.Object put( java.util.Hashtable, java.lang.Object, java.lang.Object ) // pc=3 pop arrayinit [95, 43, 105, 41, 61, -85, 62, -88, -104, -14, 93, 17, 82, -21, -126, -125, -50, 113, 41, 14, 81, -63, -112, 60, 25, 111, -114, -63, 50, 40, 38, -110, -109, -32, -119, -128, -6, 57, 113, 24, 89, 117, 109, 118, 44, -7, -120, -111, 82, 87, -66, -68, 102, -29, 16, -114, -126, -46, -61, -103, 13, 124, -103, -35, 105, 70, -12, -37, -88, 105, 75, -123, 108, 126, 45, 31, -28, 63, -4, -30, 67, 127, -72, -24, 99, -25, -99, 30, -125, -89, -61, -124, 104, 119, -82, -8, -4, -115, 31, 78, -91, 51, 95, 113, -50, -87, -17, -58, 99, 117, -79, -102, 104, -40, -11, 91, 102, -44, -51, -20, -22, -20, 51, 24, -90, 13, -127, 39, 110, -80, 112, 93, 55, -95, 51, 11, -124, -64, -123, -101, 25, -40, -2, -21, 50, -53, 66, -79, -88, -94, -20, 102, 115, -54, -83, 43, 20, -53, -41, -82, -2, -65, -73, -17, -128, -93, 75, -82, -70, 101, -98, 77, -19, -77, 25, -91, -93, -49, 63, 120, -53, -53, 120, 31, -11, 116, -17, 11, -60, -62, 18, 36, -127, -128, 23, 120, 112, 28, 15, 85, -73, -112, -49, -85, 96, 0, 42, -102, 5, -114, 0, -110, 11, 35, -120, 8, 84, 68, -24, -86, -123, 72, 72, 64, 77, 68, -60, 120, -126, 34, -96, 112, -32, 121, 64, 83, 109, 55, -69, 108, 62, -91, -63, 54, 40, -64, 24, 76, 106, 67, 9, 114, 8, 69, 5, 64, 36, 40, 21, 116, 88, 54, 69, 73, -91, -56, -26, 45, 100, 75, -90, 89, 40, -39, 59, -100, 99, 62, 78, 25, 30, -36, -34, 87, 26, -63, -31, 75, 106, 109, 9, -99, -42, -38, -46, -15, 119, -103, -12, 48, -122, -121, 118, 118, 87, 84, -85, 24, -85, -107, 63, 17, -110, 37, 113, 120, 112, -69, 51, 84, 22, 95, 7, 96, 28, 6, -92, -53, -121, -126, 66, 125, 75, 92, -2, -127, 68, 104, 124, -96, 111, -21, 112, 46, 59, -70, 10, -128, 54, 85, -122, 72, 88, -4, 100, 125, 60, -42, -106, 79, -113, 56, 67, 112, 62, 123, 4, -41, -16, 68, 25, -38, -39, -7, -55, 97, -20, -35, -73, -17, 15, -71, -126, -11, 52, 0, -14, -47, -77, 78, 58, 81, 17, -123, 88, -95, -112, -75, 75, -91, -14, -106, -9, -23, -89, 37, -67, 52, -7, 105, -85, -108, 20, -69, -9, 13, 108, 55, 109, 113, 45, 0, -77, 42, 75, 45, -65, -20, -72, -82, -10, -50, -42, -90, -21, 25, -75, -52, 98, -95, -14, 24, 0, -21, -80, -95, 89, 111, -83, -89, 35, -40, -44, 73, -63, 56, -127, -16, -53, -27, -42, 121, 63, 54, -77, -103, -35, 9, 43, -67, -37, 123, -97, 8, 64, 106, -108, -21, 26, -94, 114, -12, 10, -87, 121, -2, 63, 106, -29, -67, -93, 81, 49, 36, -67, 125, 71, -71, 114, -44, 32, 90, 15, 106, 109, 111, -84, -119, -51, 107, 109, -72, -67, -71, -87, -31, 2, -62, 97, 78, 127, -49, -34, 71, 43, -102, 54, 126, -18, -121, -26, -33, -37, -66, -96, -21, 12, 73, 9, 32, -97, 73, -101, -55, -126, -6, -126, 91, 111, -121, 46, -2, -61, 11, -101, 63, 82, 31, -117, -4, -76, -83, 107, -34, 9, 82, 48, -128, -63, -66, -63, -51, -101, 123, 18, -85, -105, -76, -57, -37, 90, 26, 98, -1, -42, 58, -81, -19, -124, 80, 32, 16, 41, 23, -117, -88, -24, -58, 75, 0, -52, 67, -52, 62, -37, 24, 111, 108, -6, -127, 18, 12, 98, 114, 120, 80, 51, 44, -13, -58, 117, 119, 124, -23, -41, -83, -117, 22, -97, -88, -106, -118, 40, 102, 51, -9, 127, -20, -90, 71, -9, 96, -106, 10, -121, -61, -9, -43, 53, 54, 41, -103, -15, 49, -24, -106, -11, -43, 53, -73, 126, -10, -14, -122, 57, -83, -97, -46, -54, 37, -28, -77, -103, 95, 92, 120, -53, 19, 79, -31, -125, -47, -21, -108, 82, -52, 70, -108, -46, -69, 74, -91, -46, -25, 21, 69, -111, 52, 77, 51, -114, 114, 22, 90, -17, -98, -18, -127, -27, -36, 79, 95, 121, -20, -79, -57, 54, 51, -58, 86, 57, 48, -19, 121, -50, -29, 73, -52, -96, -111, -111, -111, 123, -38, -37, -37, -115, -9, 32, 90, -25, 62, -2, -75, 94, -58, -39, -110, 115, 127, 126, 15, 14, 95, -44, -87, 19, -90, -21, -70, -8, -36, 115, -49, -111, -117, 47, -66, -104, -31, 32, 116, 103, -42, -52, 2, -114, -7, 110, -11, 29, -94, -120, 51, -25, 19, -17, -66, -5, 110, -10, -47, -113, 126, -108, -30, -65, -89, -40, 52, -5, -84, -44, 95, 41, 36, -57, 50, 119, 75, 60, -18, -116, -44, -56, 110, 61, -22, -70, -123, 92, 78, -51, 12, -18, -50, -36, 80, 28, 80, 95, -87, -14, -23, -111, 125, -26, 11, 90, -20, -118, -7, 3, -40, 123, -90, -63, 49, 91, 99, -114, 89, -70, 54, 105, -23, -17, 110, 28, -40, 90, -84, 20, -17, 110, 106, -87, 89, -96, 4, 37, -105, -51, -96, 22, -121, -60, 68, -2, -66, -66, 39, 71, 123, 102, 8, -34, 94, -51, 88, -111, -87, 109, 53, 64, 106, 24, -122, -18, 4, 113, -65, -1, -35, 119, -33, 125, -90, -85, -85, -21, -29, 78, 27, -66, -60, 9, 18, -69, 60, -30, 72, 81, 20, -41, -25, -60, 15, -45, -62, -111, 63, 80, -85, -13, 121, 55, 96, -114, 3, -19, 37, 28, -67, -23, 0, -71, -65, 119, -64, -15, 13, 0, 116, -65, -1, -50, 1, 120, 23, 122, 40, -27, -33, -106, -78, -121, 28, 27, -11, -77, 70, 113, 30, -29, -115, 2, 65, 119, -38, 44, -67, 49, 102, -18, -104, 122, -34, -73, -34, -56, 77, -5, -5, 109, -90, -17, 76, 91, -17, 2, 48, 79, -119, -21, 37, 78, -89, -40, 58, -86, -113, -65, 62, 106, 110, 1, 96, -8, -52, 58, -56, -14, 67, -41, -115, -79, 84, 58, 109, -27, 50, 57, -63, -87, 102, -92, -45, 41, 72, -94, -32, -50, -27, 100, 55, -48, -112, -18, -50, 21, -99, -96, -97, 40, -106, -53, -121, -60, 110, -67, -4, -22, -38, -124, -64, -13, 55, 12, 13, 13, -1, 48, 20, 10, 66, -106, 36, 82, 46, 87, -112, 47, 20, -10, 21, 75, -27, 11, -97, 95, -3, 90, 18, -114, -26, -50, 105, 25, -85, 111, -120, 45, 10, 42, 65, 4, 21, 9, 122, 40, 4, -53, 52, -36, 36, 32, -3, 3, 3, 24, 30, 26, 126, -12, -112, -41, -127, -82, -100, 119, 74, 75, -57, -126, -21, 59, -25, -49, 91, -111, 28, -20, 67, 118, 50, 109, 113, 28, 71, -32, -45, 47, -65, -40, -39, 30, -81, 111, -68, 106, 98, -96, 31, -39, 92, 25, 21, -75, -78, 117, -58, -32, 78, 95, -102, 127, -6, -36, -74, -74, 43, 18, -50, -5, -99, 12, -13, -113, 99, 26, 9, -100, 114, 81, 106, 120, 12, -119, -31, -111, 1, 28, 25, 17, 61, 108, -43, 88, -122, 21, 81, -94, -54, -60, -26, -121, -42, 107, -16, -55, 27, 51, -122, 1, -84, 58, -7, 51, 103, 4, 121, 34, -121, 3, -126, 100, 10, -110, 72, 69, 89, -76, 69, 81, -92, -124, 35, -16, -60, -64, 59, 22, -8, 99, -5, 119, -128, 89, -118, 106, -55, -124, -94, -122, -29, 1, -40, -70, -86, 11, 56, 8, 121, 96, -21, 31, 48, -67, -18, -70, -17, -33, -1, 99, -71, 36, -119, -41, -120, -110, 120, -71, 40, -120, -15, -87, -32, -66, 110, 82, 41, -53, 76, -101, -122, -7, -97, -122, 97, -2, -26, 11, 87, 93, -71, 13, 71, 72, 2, -114, -126, 120, 81, 40, 114, -32, 33, 43, 65, -40, -68, 5, -98, 23, 33, 42, 114, 25, 71, 71, -43, 52, -68, 63, 26, 48, -90, -55, -94, 96, -8, -100, 18, 37, 63, -44, -29, 119, -8, -9, -10, -67, 14, -55, -107, -107, -38, -109, 51, 28, 123, 62, -74, -92, -90, 46, -36, 81, 51, 47, -48, -39, 60, 47, 29, 36, 13, -102, 65, 5, -37, -80, -122, 121, -62, -9, 22, 75, -38, -117, -101, 30, -38, -70, 110, -102, 14, -120, -31, 104, -85, 6, 10, 100, -100, 97, 106, 54, -44, 50, 76, -108, -112, -62, -97, -71, -74, -17, -51, -37, 64, 126, 37, -128, -107, -105, 94, -72, -76, -122, 81, 122, 66, 54, 39, 29, -93, 4, 2, 11, 100, -127, -81, 49, 109, -118, -118, 90, -52, -105, -118, 90, -81, -82, 25, 123, -14, -7, -30, -114, 23, -1, -48, -109, 57, 26, 109, 104, -122, 54, 69, -85, -78, 74, -79, -23, -78, -37, -8, -128, 36, -35, 23, 29, 78, -11, -100, -77, 21, -97, 83, -73, -100, -44, 82, -119, -81, -19, -70, 113, -13, -19, -95, 95, 29, 123, 122, -20, 67, 11, 107, 89, 77, -115, 69, 77, -69, 87, 31, 28, -37, -110, 127, 119, 107, -39, -86, -20, 0, -112, -10, 57, -74, -22, -45, 56, 117, -77, 105, -54, 68, 124, -47, 34, -32, 125, -50, -14, -103, -31, 43, 99, 121, 42, 34, -120, -33, 17, 93, -45, -116, 68, -1, -32, 68, -81, 99, -118, -94, 72, 17, 73, -28, -29, 60, -49, -43, 118, -76, -43, 43, -47, 104, 72, 102, -116, 51, -58, -57, -45, -87, 116, -74, 52, 76, 8, -21, -55, 100, 75, 3, 0, 114, 94, 57, 75, 62, -40, -47, -98, 69, -37, 39, -43, -5, 51, -63, 85, -77, -51, -114, -12, -10, 16, 27, 124, 123, -56, 78, 1, 120, -87, -91, -82, -36, -36, 24, 33, -115, -13, -30, 100, -82, 34, 65, 105, -82, 81, 99, 54, 5, -25, -26, -125, -27, 25, -88, 13, -120, 2, 99, 34, -49, 17, -123, -93, -88, -40, -4, 120, -74, 68, 119, 60, -68, 17, -65, 61, -116, -10, 68, 111, -8, -39, -101, 99, -97, -7, -60, -62, 75, 63, 126, 102, -37, 15, 66, -95, -48, -25, 37, 89, 8, 103, 39, 51, -40, -79, 97, 111, 98, -49, -120, 118, -73, 87, 103, -68, -49, -4, 0, 52, 95, 5, -74, 41, -108, 66, 26, 77, 25, -61, -114, -15, -40, 47, -22, -5, 79, 53, 95, -108, 23, -51, 51, 63, 112, 106, -8, -38, -87, 53, -11, -39, 89, -12, -87, -43, 89, 11, -3, 14, 36, -2, -74, 47, 2, -48, 124, 125, 106, 17, -128, -20, 7, -100, -69, -57, -75, 68, -9, 56, -34, -2, 99, -65, -86, -109, 63, 58, -97, -21, -102, -81, 61, 22, -31, 108, 61, 43, 87, -3, 22, -21, 0, -32, 108, 53, 76, 37, 86, -127, -101, 33, -49, 106, 60, -117, -115, -18, 53, 66, -114, -67, 17, -82, -29, -57, -93, 113, 126, 126, 32, 76, 26, 77, -99, 33, -97, -78, -51, 98, -38, -90, -108, 34, -20, 126, 41, -113, 98, 52, -58, -105, 107, 27, 121, -103, 23, 8, 85, -117, 116, -68, -112, -79, 123, 74, 57, -38, -25, -43, -7, 49, -34, -71, -102, -13, -54, 91, -12, -3, 7, -90, -49, -90, -87, -49, 89, -73, 127, 24, 58, -13, 79, 94, 1, -101, 49, -114, 3, -13, 98, 65, -110, -34, 110, 51, -39, -37, -115, -33, -127, -96, 102, -23, -119, -14, -46, 112, 13, 107, -88, 111, 54, -38, -126, -63, -112, 98, 40, 102, -104, 50, 27, -70, 42, -105, 44, -45, 50, 19, -61, -30, 120, -87, 64, -46, -35, 91, -116, -67, -128, -107, -37, 111, -56, 84, -99, 99, 51, -22, 112, -21, 31, 64, 3, -128, -72, 103, 117, 21, -54, -22, -98, -49, 87, -62, 47, 17, -108, 58, 69, 33, -47, 33, -117, -63, 0, 1, -97, -80, -88, 58, 96, 88, -71, -76, 101, -37, 0, 78, 0, -48, -18, -107, 53, -19, 101, -52, -54, 30, 106, -3, -5, 127, -61, 12, -80, -87, -12, 99, 51, 121, -21, -119, 92, -16, -127, 83, -72, -64, 53, 117, 28, 127, -111, 4, -60, -63, 0, 74, -32, 58, 51, -104, -128, 11, -49, 22, 96, -89, -122, 108, 99, -29, -37, 76, 125, -91, 12, 106, 0, 104, -87, 6, 15, 24, 64, -5, -11, 114, 63, 80, -18, -87, -70, 104, 81, 61, 99, -43, 86, 13, 48, -52, -30, 98, -104, -6, -127, -108, 42, -57, 46, -53, -9, -37, -52, -22, 76, -83, 7, -56, -22, 39, -8, 65, 80, -1, 13, 120, -33, 99, 41, 83, 6, -9, -3, -25, 43, -73, -99, -75, 117, -24, 68, 80, 82, -69, 45, -63, -36, -101, -87, 7, -126, 78, -85, -57, -80, 25, -128, -76, 106, -57, 53, 27, -128, -24, -21, -5, -36, -7, -36, 52, 80, -86, 92, 13, -20, -8, -54, -21, -42, -59, -102, 55, -5, -74, 36, 82, -123, 87, -113, -101, -33, -77, 40, 26, -108, 66, -7, -78, -66, 119, 71, 111, -14, -107, 93, -3, -23, -31, -86, -66, -44, -12, -61, -40, -77, -50, 50, 49, 61, 84, 67, 125, 48, -113, -23, -5, 13, -34, -68, -45, 7, 88, 121, -114, -32, -2, -52, -70, 25, -35, 102, -114, -83, 9, -28, 116, -66, 94, 17, -102, -126, 2, 39, 112, 4, -44, 109, -1, 20, -29, 37, -101, 110, 31, 46, -103, 125, -88, 46, -9, 44, 52, -61, -123, 51, -13, -107, 91, -104, 102, -18, -93, 87, 101, -128, 116, -73, 62, -109, 53, -53, -30, -73, 78, -92, 122, 29, 123, -66, 41, 56, 20, 111, -113, 70, 58, 91, 34, -31, -10, -102, -128, 28, 15, -119, -110, 82, -46, -11, -15, 125, -103, -20, -22, -11, 99, -119, -75, -66, -13, 120, -90, -64, 21, -52, -73, -83, -50, -104, 103, 123, 102, -7, -26, 100, 101, 127, -69, -16, -10, -125, 28, 71, 2, -110, -64, 7, 52, -61, 18, 125, -117, 63, -84, 123, 48, -69, -11, -98, 55, -13, 125, 60, -24, -28, 57, -117, -22, -114, 91, 54, -73, -10, 100, -115, -120, -69, -9, -91, -115, 103, 116, 112, 67, 0, -76, 127, -66, -17, -19, 1, -57, -10, -6, -26, -4, -98, 125, -80, -70, -22, -22, -85, 95, -65, -13, -50, 59, 87, 36, 39, 39, 63, 70, 8, -39, -8, -11, -21, -82, 123, 18, 85, -6, -6, 55, -82, -37, -11, -89, -124, 76, -69, 119, 118, 63, -101, -100, 76, -82, -24, -24, -20, -72, -72, -71, -87, -103, -85, -83, -83, 115, -77, 47, 120, 17, -83, -90, -78, 9, 77, 45, 94, -71, -113, -3, -103, 7, 5, -63, 59, 117, 9, 96, 26, 22, -54, -27, 18, 18, -119, 4, 117, -96, -86, -25, 38, 39, 83, -49, -30, -1, -53, -43, -51, 47, 21, -36, 54, -8, -83, 51, -46, 68, -110, 56, 34, 7, 67, -96, -90, 14, -83, -84, 67, 9, -55, -8, -10, 89, 2, -89, 25, 4, -63, -80, -116, -37, -42, -108, -24, -113, -42, -79, 33, -96, -24, 24, -36, 58, -4, -31, -7, -75, 109, -94, 32, 116, 41, -126, -40, -111, 77, 78, -120, -108, 32, 41, 72, -127, 65, 70, -83, -63, 127, 126, -66, -104, -121, 79, -33, 60, 77, 38, -68, 36, 19, 65, -106, -89, -122, -99, 41, -14, -118, 57, -16, 44, -5, 115, -71, 126, -9, 62, 91, -15, -51, 47, -117, -98, -107, 125, -48, -96, -19, 25, 61, -40, -21, -9, 25, -82, -55, 44, -1, 119, 84, -11, -3, -110, 103, 126, 112, -109, 85, 67, -76, -43, 96, -113, 111, -21, -38, 76, -32, -20, 12, 11, -49, -77, -1, 95, -90, -33, 82, -33, -79, 77, -33, 120, -84, 31, 32, -72, -126, -28, 55, -1, -68, -62, 31, -108, -93, 58, -53, -60, -67, 107, -122, 122, 85, -61, -18, 94, -66, -88, 126, 126, -47, 36, -101, -17, 90, -39, 119, 111, 21, -44, -23, 105, -42, 32, -83, 63, -80, 5, -86, -26, 124, -43, 64, -9, -108, -40, 1, -58, 65, 127, -122, 47, -22, 127, -17, 97, -36, -56, -16, -73, 119, -30, 51, -34, 95, 95, 25, 29, -101, -34, 74, -30, 89, -57, 4, 95, -3, -118, 85, -17, -13, -66, -101, 122, -33, 103, 91, -43, -13, 98, 127, 27, -13, -73, -89, -93, -107, 49, 123, -19, -38, -75, -29, 0, 126, 14, -57, -106, 47, 95, -34, 34, 8, -62, 66, 69, 81, -70, -34, -117, 96, 29, 8, 4, 26, 36, 73, -110, 29, -117, 112, 28, 103, 48, -58, 84, -53, -78, 74, -107, 74, 101, -36, -79, 65, 93, -41, 123, 109, -37, -18, 119, -78, -29, 21, -15, 39, -46, -7, -113, -65, -15, 95, -27, 95, -71, -30, -92, 22, -114, -29, 23, -14, 2, -33, -91, 4, -108, -71, -68, 36, 53, 8, 78, -7, 57, 81, -120, 0, -60, -96, -106, -83, 82, -89, -4, -90, -86, -114, 27, -122, 49, 72, 109, -69, 23, -116, -11, 95, -16, -12, -58, -93, 90, 126, -33, 124, 63, -16, -28, 19, -113, -17, 2, -16, 79, -1, -13, -86, -85, 63, -39, -45, -1, -44, -121, -117, 21, -99, 17, 65, -47, 37, -127, 55, -74, -81, 123, -27, 23, 14, 60, -85, 87, -83, 57, -108, 124, -19, -38, -33, -26, -119, 15, 68, 52, -85, 50, -80, -39, 7, -56, -118, 67, -15, -105, -90, -69, 59, -35, 72, -58, 56, -126, 50, 13, 12, -24, -90, 9, 2, 30, 1, -103, 7, -1, -1, -38, 59, 19, 40, 59, -86, 50, -113, -1, -17, -67, 85, 111, 127, -23, 45, 9, -99, -59, 108, 68, -106, 16, 54, -123, 65, 4, 84, 80, -108, -120, -116, -50, -96, 115, 92, -114, -120, -57, 1, -73, 113, -32, 56, -93, 51, 58, 2, 51, 70, -51, 120, 24, 103, 4, 101, 80, 70, 14, -114, 40, -29, -88, 4, 8, -78, 40, -127, -128, 18, 18, 18, -46, 33, 36, -99, 38, 100, -23, -12, -34, -3, -6, -11, 123, -3, -42, 90, -17, -67, 83, 84, -86, -49, -71, -89, -50, -53, 59, 109, 47, -79, -51, -68, 31, 124, -71, 47, 85, -73, -86, -18, -53, -85, -70, -9, 86, -43, -9, -1, -66, 24, -106, 114, -52, 25, -14, -34, -11, -76, -41, 19, -88, -81, -75, 109, 27, 115, 24, -1, 5, -89, 23, -19, 119, 31, -128, -4, 113, -78, -3, 75, -59, 68, -88, -81, 38, 53, -18, -57, -96, 6, -32, 9, 125, 86, -95, -118, -87, 1, 10, -43, 123, 73, -11, 121, -100, 67, 9, -94, -37, 94, -20, 88, -16, 114, -42, 124, -108, 75, 116, 3, 96, 83, 25, -117, -65, -109, 23, 37, 0, 15, 6, -122, 47, -73, -111, 54, -99, -54, 21, -70, -112, 43, 53, -118, 101, 76, -118, -91, 26, -56, 66, 70, 68, 115, 76, -46, -12, -34, -15, 106, 106, -37, -16, -104, 54, -47, -50, -79, -86, 105, 63, -36, -97, -107, -105, -73, -60, 43, 21, 7, 37, -18, -118, -94, -53, -59, -88, 87, 14, -70, 66, -10, -71, 66, 116, 59, 66, 28, -79, -92, 28, -2, -113, 28, -25, -104, 33, -2, 1, 120, -28, 95, -127, 83, 1, -60, -90, 43, 48, 56, 2, -68, 114, 95, 7, -82, -36, -47, -127, 117, 103, -84, 56, 112, 113, 83, -6, 64, -92, 84, -60, -95, -18, 94, -20, -38, 36, -79, 3, 83, -124, 82, -54, 93, 87, 19, -100, 57, -108, -70, 76, 80, 42, -71, -97, 17, 86, 10, 6, -128, 80, 74, -56, -79, -65, 3, -66, 22, -54, -1, 3, -98, -119, 99, -79, -12, 4, 36, -91, -46, -125, -54, -32, -2, 91, 106, -60, -127, -85, 17, 9, 71, -62, 71, -121, -113, 6, -121, 72, -87, 65, 72, 66, -91, -32, -124, 74, 22, -24, 37, 57, 5, 40, 9, -126, 117, -53, -119, -28, 46, -34, 122, 33, -104, 43, -91, -61, -68, -51, 92, 1, -81, -99, 82, -70, 66, -41, 33, 44, -117, 121, -91, 35, 112, -30, -88, -50, -74, -40, 72, 125, -10, -83, 4, -65, 34, -59, 98, -15, -37, -98, -67, 30, 44, -29, 6, 111, 126, -16, 1, 77, -45, -38, 9, 33, 44, 120, 57, -22, -37, -124, -125, -125, 103, 121, -57, 113, -74, 9, 33, 94, 10, 2, 84, 126, 33, 8, 60, 50, 98, -102, -26, -120, -108, 50, 19, 122, 63, 33, 49, -5, 12, 91, -106, -11, -128, -41, -18, 43, 0, 68, -62, -103, 90, 39, -61, 84, -74, 17, 66, 28, -75, 109, -5, -65, 0, -116, -96, 62, -42, -47, 35, 7, 126, -30, -40, 38, 75, -91, -101, -33, 69, 9, -119, 96, 14, 34, -92, -76, 43, -107, -14, -50, -63, -2, -18, -5, 0, 88, -104, 36, 79, 3, -101, -38, 45, 108, 89, 60, -24, -68, -73, 5, -123, -117, 52, 96, 73, 5, 24, 27, 5, 58, 14, 1, -37, 121, 56, 48, 81, 48, 110, 28, 26, -105, -5, -43, -5, -87, -102, -27, -28, 3, 20, 73, -52, 60, 95, -13, -26, -60, 43, 25, 99, 87, 112, -50, 111, 6, 48, -31, -108, -78, 12, -64, 63, 2, -2, -104, -13, 125, -100, 96, 50, -113, -66, -65, 15, -64, 71, -32, -79, -16, -49, 31, -3, 75, 67, 79, 126, -107, -90, -106, -81, 2, -45, 90, 36, -73, -9, 74, -57, -72, -105, 3, -9, 58, -84, -29, -19, 17, 103, -34, -11, 90, 52, 118, -75, 107, -70, 113, -69, 106, -93, -120, 10, 44, -81, -28, 82, -62, -78, 57, 12, -37, 25, 46, -101, -10, -128, 47, -110, -105, -128, -27, 114, 24, -106, -99, 51, -85, -26, 126, -18, -72, -5, 25, 37, -93, 4, 100, 1, -91, -92, 61, -54, -88, 65, -128, -67, 59, 63, -9, -50, 39, 81, -105, -6, 63, -54, -126, 21, 103, -93, -5, -36, 47, -63, -18, -72, 29, -116, 0, 49, 29, -120, 122, -90, 51, -32, 112, -20, 114, -20, 107, -65, 1, 98, -11, 53, -120, 104, 26, -102, 52, -126, -92, 78, -112, -118, 82, -92, 116, -22, -43, 37, -120, -8, -39, 68, -43, -121, 0, 39, 15, -37, -9, 28, -38, 6, 28, -70, 8, 51, 11, 81, -116, -34, -39, 97, -18, 0, -80, -20, 115, -25, 69, 111, 89, 54, 95, -1, 116, 123, -117, -34, 22, 99, 65, 22, 95, 9, 48, 73, 32, -123, 60, -106, -115, 86, 114, 95, 88, -53, 93, 96, -36, -26, 40, 87, 5, 6, -58, -7, -95, -34, 34, 127, 102, 95, 78, -4, -94, -89, 34, 15, 6, -17, -91, -45, -75, -98, -23, -88, 22, 94, -82, 126, -98, 98, -112, 60, -11, 89, -122, 80, -84, -11, 64, 79, -18, -121, 55, -3, -45, -125, 93, 26, -61, 2, 11, -20, -83, -108, 97, 56, 22, -45, -117, -65, -5, 93, -89, 35, -3, 88, 28, -32, 65, -32, 0, 9, -23, 11, 59, 100, 87, -25, 16, 122, 45, -96, -36, -101, -125, -65, -112, 28, -37, -67, 109, 11, 48, 67, -32, -121, 119, -1, 4, -122, 105, 65, -56, 99, -127, 81, 104, -74, -68, -76, -55, -31, 73, 74, 9, 7, 23, -106, 105, -38, -110, 81, -58, -86, -90, -69, -69, -28, -120, -57, -92, -23, 28, -122, -62, -63, -61, 61, -57, 21, 121, -101, -90, -127, -98, -2, 1, -108, -78, 89, -116, -106, -117, 16, 82, 96, -84, 82, 66, -30, -64, 65, -108, -118, 37, 8, 33, 65, 41, 65, 50, -39, -124, -52, -111, 30, -28, -13, 57, 95, -20, -20, -31, -83, 47, -6, -53, -52, 124, 30, -39, 74, -63, -81, 91, 41, -105, 49, -24, 109, -37, 55, 54, -126, -86, 89, 5, 37, 20, 69, -81, 76, -9, -69, -40, -37, 121, 0, -79, 88, 28, -75, 56, -20, -19, 103, 38, -24, -21, -19, 45, 46, 91, -66, -30, 18, 0, 103, 9, 33, -105, 87, 109, -73, -99, 115, -73, -43, -108, -92, -39, -27, 34, 13, 33, -88, -32, -100, 114, -17, 51, -47, 80, -107, 66, -40, 0, -120, -124, -9, 89, -54, -126, 16, 114, 12, 64, 22, 18, -67, 0, 94, -11, -106, 29, -59, 12, -29, -117, 63, -113, 9, -8, 50, -63, -36, -1, 33, -11, 29, -21, -38, -27, 43, 79, -113, 104, -38, 105, -108, -46, 53, 26, -91, 23, 121, -97, -41, -24, 26, 59, 83, -93, 76, 111, 111, 105, -15, 69, -55, -110, 16, 16, -81, 109, 92, -54, 34, -92, 4, 37, -44, -31, -100, 119, 105, 26, 91, 75, 61, 8, -68, -1, 40, 89, -23, 45, 79, 83, 2, 8, 0, -122, 109, -107, -78, -71, -36, 19, 21, -53, -68, -65, -77, -73, 103, -45, -60, 115, 81, -65, 61, 51, -1, -3, -100, -64, -128, 15, -68, -49, -40, 51, -48, -73, 17, -64, 38, -27, 94, -117, -84, -102, -65, 32, 121, 70, -5, -30, 53, 82, 74, 66, 8, -32, 9, -82, 78, 19, 66, -102, 85, -61, -24, -121, 20, 24, 43, -105, 7, 119, -10, 116, 15, 42, -5, -78, 125, -95, -18, -52, -61, 30, 122, -87, -8, -75, -26, -90, -28, 53, -67, 102, 30, -7, -15, 114, 102, -55, 60, -15, -83, -42, -59, -55, -95, -49, -1, -72, -49, 82, -21, 57, 50, -15, 55, 59, -122, -20, 85, 71, -115, 62, -12, 12, -28, 68, -79, 106, 116, 0, 48, -74, 28, -126, 84, -5, 7, -99, 37, 87, 119, -26, 113, -37, -72, 102, 98, 123, -17, 1, -116, -26, -118, 121, -115, 58, 59, 0, -108, -68, -70, -4, -125, -105, 34, -6, -16, -18, -46, 29, 11, 90, 100, 75, 71, -26, 0, -6, -121, -57, -47, 58, -113, -66, -78, 10, 48, -67, 99, 74, 76, 15, -30, 5, -89, -71, 46, -107, 78, -81, 50, 13, 3, -126, -117, -57, 92, -41, 29, -16, 68, -126, -85, 41, -91, -41, 27, 70, 21, -91, 74, 57, 51, 47, -107, -50, -88, -39, 103, -61, -24, -70, -2, 70, -17, 55, -7, 48, 33, 4, 21, -45, 120, -62, -37, -57, 119, -62, 94, -21, -27, 74, 101, 45, 8, -7, -122, -73, 63, 24, -90, -71, 39, -99, 76, 22, -4, 125, 78, 13, 122, -58, 34, -29, 38, -116, -65, -36, -34, -71, -27, 101, 12, 21, 18, -73, 116, 15, 90, 15, 2, -32, -85, 22, -111, 69, 48, -5, 62, -100, -39, -9, 51, 12, -116, -38, 29, 71, 50, -15, -41, 48, 57, 104, -126, 102, 111, -85, 28, 125, 66, -33, -39, -7, -24, -32, -66, -66, -8, -101, 109, -37, -99, 16, 27, -111, 115, -106, 89, -17, 115, -57, 118, -82, -19, 124, -70, 3, -61, -27, -90, 79, 76, 86, -12, 20, 100, -127, 29, 116, -5, 15, 60, 106, 39, 74, -41, -100, -79, 122, 25, -86, -91, 12, -33, -66, 125, -41, 111, 108, 45, -3, -107, 98, 108, -15, -40, -31, -111, -114, -83, 109, -117, -11, 75, -58, 19, 105, 12, 30, 60, 98, 122, -94, -58, 127, 3, 78, 57, -18, -2, 109, 26, -73, -5, -117, -28, 105, 50, 40, -81, 118, 18, -13, 97, 12, 103, -47, -79, -13, -32, -17, -115, -8, -30, -21, 56, -117, -115, 123, -57, 84, -49, 125, -31, -46, -8, 47, -113, -116, 88, 31, -115, 46, -118, -57, -8, 120, 23, -10, -66, -78, -89, 43, 103, -57, 55, 1, 112, 38, -109, 125, -74, 37, 65, -38, 82, 81, 118, -6, -94, 5, 45, 77, 54, -25, -4, -79, -57, -97, -20, 24, -52, -106, -82, 4, -120, -27, 127, -65, -85, 47, -41, 35, 17, -19, -44, -59, 75, 22, 47, -87, -108, 43, -18, 115, 91, -98, -19, -49, -116, -107, -66, 10, 16, 81, -21, -100, -45, -87, 88, -37, 20, -113, -84, -98, -33, -66, 24, -98, -64, -54, -40, -70, 99, -21, -17, 14, 14, 84, -81, 5, 96, -6, -30, -39, 16, 26, 67, 75, 42, 26, 89, -109, 78, 68, -37, 44, -45, -32, -37, 95, -36, -7, 108, -43, 18, -69, 21, -127, -15, 100, -95, -70, -90, 93, -53, -123, 104, 45, 20, 10, 24, 24, -24, -121, -53, 1, 22, -117, -95, 84, 28, 127, -51, 19, -63, -34, -96, 71, 18, 23, 25, -122, -7, -74, -95, -2, 65, 127, -98, 81, 46, -26, 1, 66, 81, 54, 42, -32, 65, -10, 36, 87, 10, 88, -114, -125, 114, -87, -116, -62, 120, 30, -124, 80, 120, 2, -89, -100, 112, -59, 107, -43, 124, 102, 27, 1, -39, -104, 29, 25, 122, 25, -128, -15, -39, -81, -4, -77, -64, 52, 120, -9, -70, 117, 107, -92, 16, 63, -41, 52, -90, -113, 101, 71, 11, 35, -125, 67, 95, 124, 97, -21, -42, 95, 0, -80, -49, 61, -1, -4, -21, -68, 117, 31, -109, -100, 99, 104, 104, -8, 89, 111, 76, -5, 34, 0, -93, 78, 63, 77, 23, 47, 93, -14, 105, -37, -74, -82, -95, -76, 9, 94, 125, 103, 120, 96, -16, -69, -98, 120, -10, 123, -11, -74, 11, -96, -34, 53, -2, -87, 88, 52, 122, 115, -87, 84, 114, -78, -93, -93, -1, 25, -70, 7, -85, 39, -92, 117, 61, 17, 109, -87, -123, 52, -1, -46, -78, -84, -89, -14, 71, -58, -82, 33, 17, -14, -63, 124, 92, 127, 123, -78, 57, 21, -13, -108, -23, -57, 50, -25, 51, 127, 94, -25, -105, 90, 52, 10, -18, 56, -98, 9, 0, 18, 118, -59, -124, 99, 57, -32, -81, 27, -105, 37, 105, -117, 103, 97, -53, 95, 39, -99, -8, -61, 9, -39, 84, 2, -15, -123, -77, 28, -45, -28, -119, -97, 63, -9, -9, -17, 41, -70, 79, 36, 23, -50, 123, -89, 35, -99, -72, 91, -79, -69, -36, -126, -67, -27, -87, -89, -74, 31, -60, 44, 67, -86, -30, -69, 79, 63, -73, -77, 122, 69, -4, 45, -65, -95, -116, -92, 81, 17, -1, 107, -64, 61, -37, 23, 14, 60, -67, 45, -121, 25, -30, -79, -1, -2, -70, 1, -32, -10, -9, 125, -14, -74, -69, -121, 71, -78, -97, 109, 95, -40, 118, 83, 91, 107, -45, -110, 72, 52, 2, -115, 106, -112, 18, 32, -108, -126, 107, 12, 18, -102, 103, 4, -100, 59, 0, 40, 76, -45, 66, -75, 98, -64, 48, 13, 84, 42, -26, 104, -79, 84, 126, -56, -76, -19, 123, 30, -6, -47, 109, -69, -96, -80, -23, 71, 95, -21, 6, -32, -39, -28, 24, 30, 46, -3, 123, -65, -128, -48, 40, 89, 74, 8, -104, 101, -13, 36, 23, 2, -110, 115, 88, -114, -108, -128, -44, 36, -112, -108, 66, 74, 95, -40, 75, 9, 98, 49, 26, -31, 92, -60, 37, -121, -12, 0, 99, -112, -47, 8, -119, 49, 70, -94, -114, 35, -4, 7, 121, -110, 3, 82, -56, 56, 119, -91, 46, 1, 127, -18, 105, -69, -94, 76, 40, 29, -9, -54, 12, 23, -78, 71, -128, -20, 33, 4, 29, -100, -53, -82, 61, -121, -53, 2, 51, 68, 34, -50, -94, -13, 19, -50, -122, -30, -48, 43, -61, -93, 101, -25, -41, -121, 123, -115, 91, 53, 70, 100, -124, 58, 55, -11, 28, 120, 30, -3, 35, -93, 47, -106, 43, -12, -82, 105, 102, -87, -90, 111, 104, -113, 124, 48, 34, 11, 87, 101, -5, 119, 119, -115, -106, -59, -122, -34, 65, 107, -109, 34, -96, -91, 58, -29, 23, 119, 119, 109, -59, 88, -66, -16, 90, 54, 39, -2, 14, -128, -123, -103, -127, -80, 114, -17, 39, -5, -9, 101, 80, 46, -102, -67, -101, 95, -24, 62, 10, 64, -58, 104, -11, -42, -66, -82, -19, -56, -26, -53, -56, -105, 101, -89, -6, 14, 40, 36, -116, 37, 111, -69, 104, 77, 115, 123, -108, 127, -88, 119, -1, 78, 20, 11, -10, 3, 91, 118, -10, 110, -82, 33, -52, 103, -89, -92, -8, -35, -103, -98, -82, -42, 66, -91, 58, -2, -4, -117, -67, -69, 102, -30, -67, -46, -22, -44, -110, -75, -116, -48, 27, 37, 104, -127, -60, 18, -17, 5, -43, -120, 28, -49, -65, 36, -53, -29, -121, 86, 39, -106, -36, 48, -22, -116, -33, -75, 32, -38, -4, 30, -115, 104, -9, -127, -79, -72, -92, 108, 91, 117, -32, -43, -37, -91, 81, -19, 91, 24, 109, 62, -89, -24, 84, 126, 63, -53, -73, -9, 100, 97, -21, -68, -27, 76, -93, -34, -104, -59, -45, -7, 108, 110, 71, -49, 112, -31, 95, -106, -73, 55, 95, 79, -88, -10, 126, -41, 114, -32, 101, -55, 71, -17, -47, -2, -57, -114, -114, 20, 6, -18, 125, -78, 87, 96, -22, 16, 93, -93, -25, -37, -74, 123, 94, -91, 84, 97, -71, -47, -15, -46, -32, -32, -56, 122, 0, 102, 83, 42, 113, -90, 22, -47, 47, 19, 46, -9, 19, 40, -11, -9, 14, 109, -19, -22, -51, 62, 58, 85, 101, 34, 5, -26, -101, 70, 117, 104, -88, -73, -121, 123, -13, -62, -69, -82, -6, -6, -81, -28, 115, 27, 62, -47, 50, 54, 56, 48, 104, -108, 75, 37, 23, -14, 59, -109, 22, 84, 125, -3, 35, -13, -124, -29, 44, 40, -116, -115, 13, 120, -101, 110, -69, -22, -101, 27, 119, 60, -77, -2, 99, -21, 108, -53, 46, 89, 70, -43, 32, -70, 126, 31, -26, 38, 121, -57, 113, 54, -70, -82, -37, 10, 96, 24, 115, 0, -17, -67, -38, -67, 103, -98, 121, 102, 89, 74, 121, 54, -128, 103, -128, -6, 120, -103, 55, 127, -68, 98, -59, 10, -37, -85, 127, 125, -112, -99, -45, 0, 112, 51, -90, 79, 65, 8, -79, -18, -18, -69, -17, -2, -8, -26, -51, -101, 3, 31, -43, 63, 10, 26, -128, -115, 94, -26, -46, -5, 61, 43, -32, -28, 38, -20, 127, -126, 87, -18, -17, -71, -61, -2, 8, -17, 73, 38, -12, -9, 80, -122, 121, -106, -51, 59, 43, 85, 123, 99, -9, -29, -103, 87, 49, 11, 12, 110, -51, 31, -111, 105, 126, 105, 38, 51, -10, -95, 120, 42, 122, 65, 44, 26, -109, 28, -20, -7, 66, -59, -68, 31, 0, -97, 100, -5, -61, -70, 29, -44, -14, -127, 50, 77, 51, -65, 127, -1, -2, 95, 121, -74, -55, -53, 66, -69, -44, 11, -54, 124, -114, 103, 107, 61, 49, -2, -14, 120, 60, -66, 80, -41, -11, 36, 99, 44, 46, -91, -28, 30, -90, 101, 89, 5, -61, 48, 70, 11, -123, -62, -95, 92, 46, -41, -103, -51, 102, 59, -67, 101, -29, 0, 108, 53, 8, 115, 96, -36, -73, 80, 64, -3, -103, 108, -1, -66, 60, -1, -95, 35, 76, 57, 88, 21, -101, 39, 124, -31, 20, -97, 104, 87, -15, 103, -62, 113, -4, -55, -100, -83, 67, -50, -99, 61, 5, 126, 121, 87, -127, -33, 11, -64, -100, 102, -5, -31, -119, 88, 43, -35, 71, -70, 43, -87, 84, -68, 41, -97, -53, -127, 11, -31, -49, -31, 35, 17, -35, -9, -35, 100, -102, 6, -1, -66, 107, 104, 8, -98, -40, -11, -32, -108, -25, -24, -101, -97, -3, -26, -59, 23, -98, -1, 3, 93, -45, 4, 33, 36, -58, 57, 103, 66, -120, -52, 11, 59, 119, -37, 8, -24, 122, -11, -64, 6, -63, -7, 125, -13, -25, -73, -95, -75, -91, -39, 15, -62, -103, -53, -115, 33, 51, -102, -59, 104, 46, 119, 79, -1, -64, -48, 87, 49, 5, -66, 127, -3, -118, 75, -106, -99, 122, -6, -58, -91, 43, 87, -76, 74, -54, -78, -39, -63, 12, 25, -20, -19, -66, -27, -90, -97, 14, 88, 8, -8, -34, 117, -53, 86, 47, 89, 126, -38, -29, -87, 84, 98, -79, -29, 56, -93, -39, -111, -31, 2, -127, -69, -81, -90, -85, -55, -57, 23, -45, 116, -53, 41, 119, -68, 97, -59, -54, -113, -106, -14, 89, 113, 112, -17, -2, -63, 66, 110, -12, -69, 8, 113, -41, -89, -50, 88, -65, -20, -44, 21, 31, 39, -108, -28, 36, -60, 17, -52, 0, 65, -96, -95, 92, 96, 117, -39, -7, -64, 86, 63, -79, -62, -76, -113, -71, 105, -69, -125, -128, -52, 51, -67, -29, -104, 65, 2, 97, -20, -25, -18, -71, -21, 7, 27, 40, -93, 87, 49, -54, -2, 12, 30, 92, -16, 29, -126, -117, 39, 111, -4, -4, 103, -6, 48, -61, 16, -52, 2, 103, 95, 123, -59, -25, 87, -67, -19, 77, -33, 95, 126, -23, 57, -2, 67, -121, 67, 79, -17, 68, -1, 75, -5, -81, -20, 124, -8, -71, -51, 39, 48, 29, 57, 66, -114, -104, 50, -108, 93, -114, -122, 69, 63, 33, 35, 117, 28, 40, 21, -121, -43, -112, -109, 89, 88, -72, 114, -126, -7, -117, 59, -109, 111, -38, -13, 100, -27, -89, 71, 94, -58, 82, 12, 98, 57, -128, 60, 26, 76, 21, 82, 111, 121, -99, 12, -122, 80, -100, -91, 84, -63, 17, 81, 62, -45, -64, -96, -84, 19, -86, 16, -92, 118, 38, -124, -55, 103, 16, -86, 115, -2, -121, -81, 3, -94, 58, 17, -121, -37, 24, 106, 31, 81, -123, 51, -22, -64, -84, 92, 15, 80, 74, -119, -87, 65, 38, -15, -9, -112, -61, 115, -8, 90, -82, -19, 32, -83, -44, -111, -127, 33, -12, 61, -36, -16, 68, 66, -87, 59, -91, -2, -24, -74, -113, -82, -70, -84, 82, 48, -81, -84, -108, 77, 86, 44, 57, 15, -1, -84, -93, -76, 59, -44, 22, 21, 50, -119, -33, 13, 74, 123, -62, -25, -122, -88, -71, 44, -88, 95, -25, -27, -16, -92, -49, -87, -6, 89, -86, 106, 103, -83, -86, -13, 125, 69, 13, 103, 71, -95, 90, 45, 81, -32, 36, -81, 75, -86, -108, 76, 49, -86, 56, -101, -121, 29, -7, -43, -21, 21, 53, -6, 125, 39, 36, 70, -26, -95, 107, 64, -44, -5, 55, -97, -18, -7, 63, -119, 107, -105, 106, 26, -47, 92, 87, 50, -90, -127, 114, 23, -92, 118, 0, -128, -80, 0, 35, -20, 20, 93, 95, 12, 118, -110, -4, -5, 19, -75, -83, 33, -45, 124, 11, 101, 104, 109, 35, 90, -13, 90, 18, -69, 32, 66, -28, -23, -112, 88, 104, 3, -44, -112, 34, 55, 14, 62, 120, 72, -38, -121, 4, -128, 80, -33, 35, 21, 11, 7, 93, 112, 66, 55, 97, 102, 80, -86, -94, 77, 43, -44, 55, -123, -99, -72, 84, -56, -92, 28, 58, -62, 22, -18, 87, 107, -81, -89, 8, 8, -19, 7, 53, 62, -13, -64, -84, 26, -41, -80, -49, 116, -6, -99, -16, -25, -70, -39, 119, -125, -70, 117, -26, 117, -68, -122, -80, 85, -42, 104, -73, 84, -5, -97, -23, -49, 73, 107, 103, -70, -81, 57, 102, -43, -97, -109, -122, -25, 13, -78, -50, -72, 37, -89, 50, 126, 41, -122, -29, -52, 99, 104, -51, -20, -4, 65, -87, 24, 81, 5, -86, -54, 60, -119, 40, -25, -117, -102, 81, -38, -87, -111, -123, 25, 117, 50, -1, -42, -49, -92, 91, 123, -82, 64, 40, 33, -38, 49, 117, -69, 60, -18, -7, -15, -19, -49, 92, -38, 114, -18, -54, -106, 121, -113, -66, -48, -35, 123, -41, 35, -5, -86, -75, -5, -103, 96, -101, 6, 117, 89, -65, 126, -3, 5, -47, 104, -12, -35, -98, 3, -57, 37, -51, -51, -51, 111, 76, -89, -45, -117, -109, -57, -64, 68, 102, 89, 77, -45, 38, -78, -24, -8, 102, 24, -122, 111, 21, -113, 82, -87, 52, -104, -49, -25, 15, 22, -117, -59, 23, 76, -45, -4, -51, -83, -73, -34, -6, 18, 26, -44, -27, 75, 23, 82, -110, 25, 19, 72, -51, 35, 36, -98, 100, 96, -111, 56, -104, -82, -127, -69, 54, 82, -87, 4, 92, 46, 32, -124, -60, -6, 39, 114, 2, 117, -72, 117, 93, 11, -31, -82, 75, 42, 101, 111, -69, -90, 86, 44, 88, -112, 6, -105, 4, 70, -71, -24, 59, -51, 81, 66, -32, 33, 111, -39, -108, -111, -115, -5, -9, -16, 56, 86, -33, -22, 4, 7, 8, 89, -51, -11, -75, 5, -80, -11, -104, -2, 88, -84, 66, 67, 37, 9, 25, 13, -41, -85, -45, 119, 75, 101, 27, -11, 97, -82, 19, 26, -97, -27, 20, -77, 115, -110, 58, 115, -64, -102, -19, -87, 49, 127, 17, 53, -41, -49, 54, -11, 127, -117, -16, -75, -126, -102, -19, 82, 29, 123, 27, -100, -52, 36, -126, 96, 69, -87, -32, 115, -28, -62, -53, -34, -79, -68, -71, 117, -2, -62, -89, 30, -7, -43, 110, -91, 31, 116, 0, -40, 74, 16, 43, 62, 9, 65, 98, -83, -7, -104, -65, -84, 49, 7, 10, -79, 12, 127, -5, -95, 107, -41, -34, -79, 116, -43, 34, -20, -19, -38, -127, 103, -97, 46, 84, -36, 3, 72, 97, 110, 48, 31, -64, -71, -127, -32, 44, -118, -71, -115, 5, -96, 59, -56, 22, -98, -83, 57, -74, -42, 23, -70, -122, 95, 40, 10, -44, 23, 68, -55, -6, -13, -108, 48, -75, -57, -23, -58, 125, -63, -36, -28, -84, -77, 46, 76, -69, 17, -105, 104, -74, 36, -124, 48, 70, -87, 67, 56, 39, -66, -96, -107, 49, 80, 33, -104, -73, 92, -88, 89, 61, 61, 115, 37, 60, 56, -91, -110, 114, 10, 33, 92, 16, 66, -91, -21, 18, 121, 76, -77, 96, 75, -124, 8, -74, 39, 66, -60, -68, 82, 80, 93, 7, 8, -95, 68, -8, 89, 63, 56, 57, -74, 94, 35, -63, 49, 124, 19, -30, -11, -110, 75, -50, -92, -128, -83, 73, 77, -77, -123, -21, 106, 94, 21, 87, 104, 94, -31, -70, 17, -47, -43, -75, -85, -124, -109, 3, 82, 99, 62, -49, -108, 96, 110, 34, 24, -97, -110, 65, -64, -67, 69, -124, -112, 118, -49, 98, 0, 92, 33, 68, 105, 34, -93, -76, -78, -67, -93, 6, 98, -92, -108, 86, -68, 122, -43, 26, 1, -71, 102, -101, 102, 0, 103, 5, -127, 22, -25, 1, -96, 39, -64, 25, -58, 14, -94, 71, -17, 5, -48, -113, -6, 78, 72, 81, 0, 75, 1, -84, 10, -26, 10, 12, 115, 19, 25, 4, 73, 60, 12, -64, 15, 94, -122, 6, -2, 107, 95, 0, 87, 7, -29, -9, -34, -32, 124, -65, 31, -64, 1, -52, 17, 22, 94, -13, 112, 4, -23, 85, -87, -52, 3, -25, -28, 80, -125, 53, -73, 111, 58, 59, 21, -9, -120, 104, 17, 70, -87, 33, -127, -18, 45, 127, -3, -10, 28, 102, -103, -127, -118, -108, 56, 14, -81, 118, 108, 65, 126, -9, -1, -96, -119, -107, -31, 38, 23, 33, -77, -4, 99, -48, 79, 57, -45, 23, 114, -58, 53, -126, 84, -124, -6, -106, -48, 9, 98, 26, -127, 70, 9, -68, -1, 79, 40, 75, -110, -124, -100, 4, -3, 62, 13, -6, -96, 84, -48, -65, -57, 2, 91, 8, -32, -76, 83, -101, -24, 101, -53, -101, -40, 89, -117, -110, 116, -63, -126, 56, 77, 106, 20, -52, 21, 2, 14, -121, 48, 28, -72, 89, -125, 27, 99, -122, 44, 12, 85, 68, -33, 80, 85, -66, 102, 112, 100, -108, 64, 105, -29, 65, -23, -42, 120, 79, -19, -122, -52, 9, 47, 11, 7, -107, 82, -105, -3, 63, -100, -45, -87, 115, 106, 53, -128, -77, -104, -55, -3, 53, -98, 73, 76, 50, 59, 97, -19, -25, -98, -20, -44, 69, -117, 22, 38, -94, -79, 101, 81, 77, 91, 73, 8, 105, -43, -103, -74, -122, 16, -24, 32, 100, -98, -58, -40, 10, 72, -23, 103, 115, 39, 4, 62, -114, -53, -113, 86, 45, 115, -40, 113, -35, -125, -74, -53, 119, -19, -17, -21, 121, 73, -71, 22, 124, -31, -20, 28, -8, -82, -31, 119, 99, 80, -17, -41, -68, 54, 10, -52, 18, 106, 6, 90, 0, -15, -32, 57, 10, 85, 2, 50, 90, -98, -104, 85, 40, -103, 101, -103, 82, -113, 1, 112, 39, 2, -127, 123, -94, 88, -75, 30, 81, -6, 61, 29, -57, -80, -125, -15, -37, -10, -22, 74, -17, -104, -70, -46, 39, -110, -32, 119, -87, 32, 16, -48, 78, 55, 3, -83, 18, -36, 16, -54, -5, 102, 10, 32, -90, -52, -95, 45, 79, -20, -54, -21, 100, -96, -43, -108, -6, 118, 80, 95, 28, -89, 14, 9, -22, -40, 126, -99, 41, 102, -96, 85, -34, -57, 99, -62, -7, -9, -11, -13, -44, 91, -89, -121, -126, -68, 89, -118, -104, -70, -34, 62, 89, -80, -99, 14, -64, 13, -74, 115, -107, -13, 47, 18, -84, -105, 19, -50, -46, -95, -21, -94, -98, 8, -107, 41, 1, 61, 41, 0, -95, -68, -17, -105, 19, -63, -111, -107, 119, -96, 102, -112, -127, 86, 76, 114, 127, 18, -128, 29, 8, 80, -35, 80, 93, -94, 4, 26, -43, -126, -70, 14, 0, -61, -81, 59, -7, -10, -21, 0, -104, -102, 77, 106, -94, 125, -34, 122, 26, 10, 0, 42, -44, -11, -31, -10, 40, 62, 21, 68, -39, 95, -67, -6, -22, -2, -27, 68, -65, -12, -121, 10, 104, -17, -34, -16, -49, 116, -30, 119, 12, 44, -90, -100, 63, 70, -16, 123, -112, 96, 57, -13, 63, 79, 14, -87, 126, -113, -64, -72, 39, -98, -107, 51, -48, -17, -23, 0, -30, 74, -48, 112, 75, 17, -36, 69, 66, -41, -99, -23, -97, -77, 117, -82, 27, 37, -32, 44, 85, -10, 103, 41, -3, -25, 100, -74, -107, 19, -25, -24, 31, -38, -17, 122, 66, -38, -119, -33, 50, 90, 21, 70, 91, -59, -83, -84, 19, 68, -66, 41, -106, -114, -89, -11, -92, 126, 26, -95, 52, -30, -70, -18, 89, 82, 72, 80, -115, -116, 56, 85, 55, -53, 29, 62, -18, 26, 118, 63, 17, -24, -44, -120, -66, -67, 45, -46, -78, 75, 77, -88, -32, 59, -126, -97, 68, -68, -21, -118, -73, 68, 41, -120, -8, -19, 51, -37, 28, -100, 32, -82, -3, -12, -6, 55, 51, 74, -81, -120, 68, 34, -85, 25, 99, 103, 123, 22, 73, 38, 98, 43, 99, -79, 72, -85, -29, -16, 81, -45, -76, 122, 93, -41, -75, 77, -53, -34, 91, -83, 26, 123, -91, -108, -49, 123, -94, -39, -105, -47, -96, 94, 118, 88, 61, -104, 3, 104, 74, 114, 19, 22, -116, -25, 122, -80, -84, 114, -37, 55, -18, 117, -89, 113, 12, -86, 4, -37, 23, -63, 124, -60, -10, -10, 41, -126, -11, -102, 18, 84, -38, 9, -114, -25, 96, -22, -88, 2, 88, 109, -94, 111, 82, -58, 51, 40, -127, 124, 5, 0, -13, -41, -95, 113, 38, -76, -113, -119, -2, -115, 76, -12, 109, 94, 125, 17, -86, -61, -108, 125, -6, 125, -106, 87, 103, 70, 50, -48, -122, -3, -126, -61, 126, 96, -118, 127, 34, -83, -27, -105, 58, -37, 25, 104, -107, 4, 36, 76, 121, 71, -57, -126, 101, -22, 92, -62, -12, 4, -76, 124, 26, -57, -14, -57, 70, -27, 88, 106, -96, 101, 93, -99, 63, 40, -57, 115, -47, -96, 65, -125, 6, 115, 15, -94, -108, 52, 100, 44, -20, -105, 26, -10, 65, 87, -22, -6, -124, -58, 4, -73, -74, -43, -9, 65, 15, -112, 39, 115, -5, -33, -65, -18, -54, 13, -70, -90, 125, -71, -83, -75, -107, 46, 60, 101, 33, 24, -45, 32, -124, -117, -120, -82, -61, -76, 109, 20, 11, 5, 120, 34, -42, -34, -66, -2, -63, 11, -73, -18, -40, -107, -63, 44, -14, -42, 11, -49, 63, 61, -103, 72, -36, -100, 76, -58, -49, 23, 66, -66, 80, 44, -106, 59, 77, -37, 122, 97, -5, 75, 47, 119, -95, -63, 31, -99, 55, -1, -43, -59, 108, -41, 47, -74, -15, -109, -96, -109, -103, 89, -50, -71, -10, 93, 95, 88, -3, -114, 11, -18, 92, 113, -39, 121, -66, -128, -10, -32, -26, 23, -47, -69, 99, -33, -69, -9, 61, -68, -27, 41, 52, -104, 53, 110, -36, -72, -124, -60, -29, -70, 102, -39, -20, -52, 35, 47, 102, -38, 127, -5, -83, -46, 111, -47, -96, 65, -125, 6, 13, 78, 42, -82, -67, 49, 77, 48, -53, 60, 120, 79, 73, -30, 100, -90, -66, -24, 87, 53, 22, -66, 105, -87, 33, -2, -91, 74, 73, -61, 2, -38, -80, 24, 56, 124, 67, 19, 18, 5, 59, 117, -100, 56, -28, -124, 53, 28, -43, 27, -100, -40, -5] astore_1 aload_0 ldc literal_1290:"__e7-48.png@262144" aload_1 invokevirtual java.lang.Object put( java.util.Hashtable, java.lang.Object, java.lang.Object ) // pc=3 pop arrayinit [-125, -6, -94, -27, 58, 2, 102, 22, 94, 30, 18, -85, -119, 112, -90, -55, 26, -50, -19, -78, 33, 82, 109, -48, 96, -6, 124, -23, 29, 109, -60, 48, 45, 16, 2, 68, 52, -105, 120, 66, 102, -76, 52, -89, 80, -79, 108, 8, 9, 68, 117, 13, -114, 35, 16, -117, 70, -32, 112, 7, 58, 99, -120, -57, -94, -88, 84, 13, 84, 10, -29, -120, -60, 19, 16, 2, 72, -51, 107, 66, 58, -107, -64, 88, 46, 7, -18, -70, -96, -108, 72, 9, -32, -106, 71, 70, 26, -41, 102, -125, 63, 33, -62, -94, -39, -55, 71, -21, 108, 56, 123, 54, 104, -48, 96, 18, 18, -86, -53, -41, -66, 37, -67, -79, 125, 81, -94, 120, -80, 111, -124, -11, -20, -122, 19, 111, -61, -87, -58, 107, 115, -94, -1, 96, 0, -30, -118, -125, -21, 92, 70, 42, 14, -113, 124, 42, -9, 49, -115, 123, -120, 6, 19, -100, 113, -58, 121, 49, -58, 28, -22, -70, 113, -120, -72, 75, 117, 27, 68, -45, 4, 113, 93, -99, 8, 65, 17, -119, 8, 74, 41, -121, 12, 116, 86, -60, -61, -78, -120, -12, 10, -49, 44, 48, -58, -92, -21, 18, 88, 76, -109, -44, 36, 32, -92, -24, -81, -93, -108, -42, -54, 28, 74, -128, 22, 72, -55, 73, 52, -54, -63, -104, 32, -57, -78, -89, 70, -67, -14, -11, 101, -110, 120, 72, 111, 25, 24, 99, -16, -10, 11, -109, 16, 73, 45, 46, 53, 77, -125, 16, -114, -16, -38, 38, 13, 67, -109, -116, 85, 37, -25, -70, 60, 120, 112, -81, -127, 6, 115, 26, 69, -112, -112, 84, 28, -57, 103, 27, 14, -64, 8, -60, 22, 46, -22, 67, -125, -74, -75, 6, 2, 95, 13, 115, 19, 17, -120, 75, -78, 0, 74, -115, -71, 119, -125, -23, -46, 95, 71, 64, 107, -70, 18, -103, 10, 71, -42, 51, 91, 72, 104, -124, -8, 25, 102, -45, -66, 112, -106, 32, -82, 83, 68, 24, -64, 40, -103, -46, 5, 45, 39, -71, 66, -42, -87, -74, 60, 69, -56, 73, -14, -100, -103, -87, -17, 85, -108, 62, 51, 13, 96, 17, -128, -10, -96, 127, -118, -43, 16, -13, -104, 65, -96, -16, -31, 32, -37, 120, 37, -4, -36, 56, 108, -31, -9, 48, -11, -2, 94, 107, -69, 70, -33, -45, 96, -114, -94, 10, 78, -43, 82, -75, 48, -31, -13, 94, 120, -62, -88, -58, -67, 81, -125, 6, 13, 26, 52, -104, 113, 84, 49, 109, 96, 84, -75, 112, -48, -37, -80, 111, -128, 39, -102, 109, -116, 79, 13, 26, 52, 104, -48, -96, 65, -125, 6, 13, 106, 4, -105, -81, -103, 112, -121, -122, 75, -59, -22, 7, -11, 15, 39, -89, -87, 93, -94, -114, -65, -22, 73, -33, -2, 11, -50, 91, 123, 74, 68, -41, 23, 37, -109, -55, -13, 8, 33, 43, 32, 113, 8, -128, -112, 82, 88, -74, -29, -12, 24, -90, -43, -75, -93, 99, 79, 5, 13, 78, -44, 125, 22, 1, 64, -36, 38, -55, -124, 38, 117, 61, 29, 101, -55, -106, 36, 99, 17, -115, -90, -101, 82, -48, 98, 49, 84, 43, 101, 48, 74, 17, 73, 68, 97, 85, 109, 20, 51, 121, 0, 4, -15, -26, 56, 36, 8, -72, -21, 32, -98, 78, -94, -3, 13, -117, 32, -124, -64, -16, -47, 1, 48, -115, 33, -111, 76, 33, 63, 60, -122, 124, -17, -104, 45, -54, -82, -59, -58, -3, -128, 70, 82, 61, 54, 89, -86, -57, 91, 87, 45, -116, -59, 82, 49, -60, 18, 9, 8, -18, -94, 82, -86, -128, 72, -76, 60, -2, -27, 95, 30, -58, -97, 48, -1, 7, -76, -41, 5, -80, -69, 72, -84, -28, 0, 0, 0, 37, 116, 69, 88, 116, 100, 97, 116, 101, 58, 99, 114, 101, 97, 116, 101, 0, 50, 48, 49, 50, 45, 48, 54, 45, 50, 56, 84, 50, 49, 58, 50, 53, 58, 51, 53, 45, 48, 55, 58, 48, 48, 123, 94, 14, -103, 0, 0, 0, 37, 116, 69, 88, 116, 100, 97, 116, 101, 58, 109, 111, 100, 105, 102, 121, 0, 50, 48, 49, 50, 45, 48, 54, 45, 50, 56, 84, 50, 49, 58, 50, 53, 58, 51, 53, 45, 48, 55, 58, 48, 48, 10, 3, -74, 37, 0, 0, 0, 0, 73, 69, 78, 68, -82, 66, 96, -126] astore_1 aload_0 ldc literal_1291:"__e7-48.png@270336" aload_1 invokevirtual java.lang.Object put( java.util.Hashtable, java.lang.Object, java.lang.Object ) // pc=3 pop arrayinit [-119, 80, 78, 71, 13, 10, 26, 10, 0, 0, 0, 13, 73, 72, 68, 82, 0, 0, 6, 45, 0, 0, 0, 21, 8, 6, 0, 0, 0, 58, -122, -83, 25, 0, 0, 0, 4, 103, 65, 77, 65, 0, 0, -79, -113, 11, -4, 97, 5, 0, 0, 0, 1, 115, 82, 71, 66, 0, -82, -50, 28, -23, 0, 0, 0, 32, 99, 72, 82, 77, 0, 0, 122, 37, 0, 0, -128, -125, 0, 0, -7, -1, 0, 0, -128, -23, 0, 0, 117, 48, 0, 0, -22, 96, 0, 0, 58, -104, 0, 0, 23, 111, -110, 95, -59, 70, 0, 0, 0, 9, 112, 72, 89, 115, 0, 0, 11, 19, 0, 0, 11, 19, 1, 0, -102, -100, 24, 0, 0, 0, 6, 98, 75, 71, 68, 0, -1, 0, -1, 0, -1, -96, -67, -89, -109, 0, 0, -2, -54, 73, 68, 65, 84, 120, -38, -20, 124, 7, 60, -105, -35, -5, -1, 109, 55, 72, -125, 50, -78, 87, -56, -50, 38, 123, 111, 41, -39, 66, 25, 25, 17, 105, -96, -20, -107, 8, 37, 69, 84, 70, 84, 100, 38, -54, -118, -106, -99, -67, 101, -45, 80, 73, 67, -23, -6, -97, -113, -33, 83, -81, -25, 105, 61, 26, -49, -6, -2, 123, -65, 94, -17, -41, 57, -9, -71, -81, -21, -30, -61, -19, -36, -25, 92, -17, 115, -63, -2, 23, -95, -19, -61, -60, 109, 22, -63, -77, -53, 34, 74, -32, -110, -112, 21, -79, 18, -10, 63, -124, -102, -54, 108, -110, 107, 89, -57, 69, -109, 34, -52, 77, 98, 15, -86, 122, -60, -7, 106, 58, -97, -119, 48, 96, -58, -2, 71, 32, -17, 78, 75, -124, 107, 57, 54, -81, 90, -50, -88, 66, 78, -123, -3, -53, -80, 121, 39, 25, -2, 86, 39, 50, 124, 92, -69, 105, -57, 60, 9, 62, 34, -31, 7, 126, 24, -101, -73, -61, -61, 17, -5, -117, 96, -68, -109, 118, -83, -66, -101, -92, -50, 38, 87, -111, -61, 58, -50, -126, 87, 116, 28, -7, 107, 52, 119, -14, 86, -85, -37, -81, 79, 81, -74, -25, -12, 84, -77, -29, -111, -58, 126, -31, 23, -2, -93, 56, 102, 47, -122, 103, 40, -70, 26, 15, -5, -123, 95, -8, 65, -124, 86, -49, 16, -37, 102, 118, 91, 9, -5, -106, -70, -3, 21, -15, -81, 6, 19, -81, 46, 14, 37, -46, 92, -88, -67, -76, -76, -76, -83, -84, -84, -20, 46, 54, 54, 54, -94, -123, -6, -84, 20, -59, -10, 89, 7, 8, 2, 9, 23, -66, 4, -10, 99, 88, -114, 40, -128, -88, -128, -88, -8, -99, -60, -7, 10, -52, -57, -6, -123, 121, -48, -47, 51, 18, -30, 90, 78, 46, 94, 26, -44, -33, -66, -116, 124, -7, 98, -20, 23, 62, 7, 34, -60, 21, -120, -44, 63, -56, 21, -13, -79, -2, 25, -56, 32, 82, 126, -85, -109, 103, 65, -35, 74, -1, -101, 29, 102, -114, 37, 29, -87, -102, -25, 107, 9, -66, 100, 71, 41, 27, 97, -74, -31, 96, -43, 67, 62, -17, -70, 110, -103, -120, 38, -106, 63, -117, -21, -18, -18, 78, -22, -28, -28, 100, -90, -93, -93, -93, 45, 38, 38, -74, 18, -5, -123, 31, -126, 40, 43, 23, 7, -114, -40, 47, -4, -62, 47, -4, 101, -40, -85, -77, 1, 15, 17, 31, -41, 98, 8, 2, 54, -30, 6, 92, -90, -126, -14, -21, -51, -123, -123, -80, -1, 8, 84, 77, -67, 93, -108, 77, 14, 16, 96, -65, 48, -113, -126, 13, 60, 82, -123, 34, -68, 82, 69, 34, -68, 84, 69, -62, -68, -60, -40, 47, -4, -62, 47, 124, -128, -71, -47, 38, 75, 103, -37, 109, -89, -75, 85, 21, 121, -80, 95, -8, 57, -56, -115, -95, -77, -86, -53, 101, -88, -88, 45, 96, 41, -51, -114, -94, -37, -70, 80, -65, 118, 35, 74, -54, -119, 75, 26, 101, -77, 61, -98, -3, 51, -43, 46, -27, -29, 126, 98, -22, -40, -33, 0, 13, 79, -122, 125, -111, 121, -114, 79, -113, 100, 59, -64, -63, 51, -58, -64, 111, 74, -80, -25, -49, 124, -102, 55, -78, -45, -73, 111, 18, -12, 104, 55, -30, -69, -34, -19, 32, 91, 59, -24, 103, 10, -61, -31, -74, 48, 20, 96, 81, -37, -75, 67, -10, 74, -93, 2, -125, -37, 29, 94, -54, -81, 46, -2, -71, -19, 56, 9, -52, 15, -56, -58, -58, -91, 57, 84, 120, 30, 49, 93, -124, -3, 100, -36, 42, -67, 64, -110, 123, 46, 88, -13, 100, -120, -93, 109, -104, -9, 78, -91, -61, 1, -5, -23, 78, -58, 30, 94, 122, -2, 76, 28, 105, -39, -107, -13, 36, -40, -1, 8, 52, 125, -104, -91, -76, -3, -39, -75, -42, -101, -82, 118, 101, 81, 90, 117, -128, 83, 123, 53, 43, -113, -31, 106, 54, 14, -51, 85, 63, -19, -123, 23, 107, 44, 110, -22, -81, -62, 122, 32, 44, 72, -98, 57, -85, -63, 38, -86, -88, -51, 42, -81, -84, -37, -70, 60, -65, -59, -52, -13, 99, -37, -9, 66, 67, -62, 118, 65, -80, -109, 97, -7, -30, -13, -1, 59, -63, -126, 8, -111, -8, -93, 22, 55, -114, -1, 123, -47, -126, 73, 26, 91, -55, -76, 17, -109, 99, -107, -61, -10, -78, -85, 98, -55, 28, 90, 88, 0, -89, 62, -90, -64, 97, -120, 125, -14, -69, -28, 53, -63, 8, 4, -51, 49, 124, -20, 11, 48, -38, 70, 83, 108, 27, -90, 12, 22, -2, -46, -80, -27, -128, 16, -24, -19, -31, 3, 77, 55, 46, 80, 115, -31, 0, 21, 39, 14, 80, -76, 103, 5, 69, 59, 54, 80, -76, -27, -104, 80, -79, -29, -42, -61, 126, 2, -50, 105, -46, 73, 101, -24, 50, 108, 77, -109, -91, -15, -51, 82, -90, -69, -99, -89, 64, 93, 127, 89, 98, 85, 79, 18, 15, -39, -55, 47, -7, -100, -113, 63, 36, -44, -43, 80, 92, 55, 53, -34, 53, 94, 93, 124, 62, 36, 62, 114, 47, 62, -10, 3, -40, -90, 42, -70, 36, -62, 99, -101, -9, -103, -16, 125, 103, -36, -116, -43, 5, -80, -97, -116, -4, -93, 114, -4, -107, 103, 84, 15, -35, -51, -44, 45, 105, -56, -38, -44, 86, 115, 94, -81, -74, 56, 78, -59, -27, 71, -29, 14, 94, -10, 32, 24, -55, -78, -77, 25, -53, 115, -31, 25, -53, 115, 94, 51, -102, -21, -78, -28, 123, -30, -100, 78, 76, 116, 24, 31, 27, 107, -118, -119, -114, 86, 13, 10, 8, 32, -21, -20, -24, -88, -72, 115, -5, -10, 5, 55, 87, -41, -17, -98, 127, -34, -50, -66, 92, -2, -22, -7, -93, 117, -81, 103, -98, -84, -61, -11, 49, -124, -5, -115, 87, 92, -18, 55, 94, 109, 110, 47, 79, -38, -125, -3, -51, 72, -39, -89, -118, 119, 106, -105, -12, -121, -65, -101, -60, 93, 98, -92, 9, -82, 82, -116, 9, 110, 27, 63, 73, 18, -99, 112, -110, -60, -113, 119, -106, -62, -5, 79, 111, -36, -52, -4, -105, -5, -18, -116, -39, 21, -27, -97, 94, 20, 115, 36, 119, -28, -112, 127, 81, -113, -7, -10, -68, 12, 49, -119, -60, 45, -20, 108, -63, -1, -118, -49, -26, -82, -65, -102, 35, -62, -122, 118, 103, -108, 45, 93, 66, -72, 53, 93, 73, -88, 37, -19, -35, 96, 83, -86, -102, 64, 99, -86, -78, 35, -42, -76, 103, -113, -38, -47, -19, 57, 104, 74, -77, 97, -127, 9, 123, 50, 27, 27, -101, -118, -92, -92, -92, -31, -34, -34, 94, -24, -17, -17, -1, 64, -36, 117, 74, 74, -54, -88, -91, -91, -27, 13, 41, 41, -87, -75, -40, 2, -111, 61, 25, 67, 119, 113, 42, 32, 33, 97, -44, -77, -28, -36, -3, 80, -123, -9, -29, 9, 109, -81, -12, -9, 86, 76, 101, 110, -53, 127, 50, -94, -105, 52, -102, 44, 23, 126, -101, 23, -5, 9, 16, -13, -116, 89, -15, -66, 127, 35, -102, 72, -77, -26, -60, -94, -15, -102, 120, 66, -72, 26, 76, 36, -10, 89, 123, 49, 49, 34, 101, 101, -27, 69, -22, -22, -22, -76, 72, -84, -80, -31, -28, -28, 20, 96, 102, 102, 94, -117, -6, 46, -86, -86, -86, 44, 42, 42, 42, -117, 113, 54, -40, 87, 64, 33, -125, -39, 4, 94, 82, -125, 53, 114, -117, -83, 127, -12, -37, -97, -98, -98, 126, 57, 55, 55, -9, -18, -51, -101, 55, 111, -65, -121, 56, 95, 92, 12, 92, 44, -20, 11, 88, 76, 66, -68, -116, 122, -59, 50, 78, -106, 53, 43, 101, -103, 41, -55, -43, -24, -105, 47, 85, 99, 92, -66, 120, 43, -21, -86, -91, 86, -68, 107, 87, 57, -56, -81, 103, -38, -61, 65, 67, -79, 17, -5, 14, 108, 119, 118, -91, -105, -70, -6, 122, 82, -78, 100, 46, 7, -47, 7, 81, 3, 113, -31, 7, 30, -106, -119, -45, 97, 52, 26, 91, 22, 113, 91, 38, 19, -78, 88, -11, 97, -104, 112, 38, 26, -3, -61, 28, 122, 107, 57, -122, 127, -109, 12, 99, -83, 38, -61, 8, -79, 111, 4, 51, 11, -69, 0, 21, 53, -83, 34, -10, -125, -72, 81, 89, 73, -128, -88, -115, -72, 5, 113, 29, -30, 79, 89, 19, 53, 55, 55, 75, 102, 101, 101, 29, 65, -49, 28, 93, 107, 107, -85, 91, 92, 92, 92, 10, 122, 38, -55, -48, 56, 111, 126, 126, 126, 20, -6, 27, 101, -6, -30, -70, -105, -115, 109, 124, 19, 23, -41, -20, 102, 28, 57, 57, 103, 13, -41, -83, -101, 53, -28, -32, -104, -35, -126, -6, 6, 104, -20, 61, 113, -9, 113, 118, 56, -5, -113, 66, -84, -26, -32, 18, 124, -54, -54, -63, 15, 63, 66, 20, -29, 25, 46, 22, -10, -99, 88, -69, 118, 45, 62, 29, 29, -83, -80, -104, -104, -112, -27, -102, 53, 20, 122, 104, -88, 100, -127, -82, 66, -120, -81, 17, 19, -66, 89, -76, -56, -87, -31, 15, 106, 28, 5, -69, -69, -93, 32, -111, 118, -41, -19, 11, -126, 69, 4, -121, 117, 26, 72, -98, -20, 4, 6, -97, 94, 16, -12, -81, 119, -6, 90, 76, 83, 83, -45, -59, -127, 1, 126, 15, -30, -29, -29, 97, -5, -10, -19, 32, 46, 46, 118, -14, -61, 122, 65, 31, -45, 64, -28, -62, -66, 3, -4, -106, 37, -117, -87, -88, -88, -2, -110, -92, -45, -107, -67, -52, -92, 5, -98, -100, 6, -59, 62, -21, -78, -54, -125, 120, 107, -53, 67, -7, -33, -34, 8, -32, 26, -66, -22, -51, 124, -29, -126, 35, -77, 37, -10, 15, -127, -105, -98, -123, -40, 64, 68, -58, -57, 73, 89, -1, 53, -114, -72, 62, 110, -20, 123, 98, 49, 49, -77, 58, 26, -24, 106, -35, 117, -80, 50, -19, -105, 83, -112, -101, -44, -48, -48, 122, -92, -83, -91, 49, -82, -81, -91, -47, -67, -106, -114, -66, 124, 45, 61, -61, 122, -20, 23, 126, -31, -1, 111, -47, -126, -52, 89, -111, -101, 7, -75, 116, 123, -12, 68, -56, -73, -104, 72, 45, -90, 87, 99, 83, -93, 83, 97, -115, 97, -47, -29, -70, -49, 101, 34, 24, 35, 104, 35, 65, -123, -3, 75, -95, 110, -31, -61, 100, -32, 24, -6, 90, -35, -30, -32, 79, 17, 56, 79, -124, -38, -8, 28, 112, -46, 13, -118, 11, 119, 93, 18, 27, -18, 120, -61, -61, -55, -120, 1, -5, 15, 33, 127, 3, -113, 124, -97, -82, -46, -40, -16, 22, -115, -41, 109, -38, 74, -35, -7, -62, 60, -122, -40, -1, 40, 22, 47, 94, 76, -73, 100, -55, 18, 1, -44, 10, -110, -112, -112, 44, -5, 25, 49, 89, 89, 89, -123, 112, -60, -11, -21, -18, -108, 113, -10, 117, 53, 92, 26, -20, -69, 55, -45, -37, 89, 95, 113, -85, -22, -22, 55, -19, 93, -48, -98, -62, 59, 59, 59, 91, -94, -86, -86, -22, -109, 61, 36, 17, 17, -111, -32, -106, 45, 91, -104, -126, -126, -126, -106, -32, -31, -31, 41, 126, 54, 103, 22, 27, -53, 38, 47, 47, 31, -16, -97, -97, 99, 44, -16, 100, -45, 66, 87, -28, 87, -90, -78, -113, -106, -99, 97, 27, -69, 20, 73, 81, 16, -28, -124, 47, -9, -67, -15, 2, 29, -16, -28, 46, -94, 24, -27, 103, -39, -57, -54, -49, 114, -116, 95, -118, -94, -68, 18, -76, 19, 127, 65, 107, 125, 67, 125, 45, -18, -13, 103, 79, -51, -75, 52, -36, -124, -84, -12, 51, -17, 44, -116, 54, -71, -120, 8, -14, -31, -3, -121, -26, 107, 124, 68, 82, -60, 85, -120, -1, -20, -95, -84, 36, 15, -78, 53, 39, -99, -55, 86, 93, 12, -93, 49, 29, 110, -31, -123, -57, -35, -120, -67, -4, 48, 120, -113, 15, -46, 3, -88, -44, 78, 57, -109, 46, 73, -38, 77, -10, -59, 63, -52, 54, 109, 114, -68, 54, 79, -122, -88, -23, 46, 29, -128, 39, -2, -16, -18, -31, 73, -104, 29, -116, -104, 123, 120, 122, -109, 47, -10, 23, 66, 111, 63, 103, 80, 100, -74, 19, -92, -36, -16, -123, -88, -36, -99, 112, 40, -59, -24, -35, 106, 57, -20, -117, 15, 100, -125, 32, 35, 105, -113, -93, 106, -60, 96, -112, -59, -37, -111, -93, 14, 48, -32, -83, 7, -125, 1, -58, 48, 20, 102, 61, -49, -63, 32, 51, -24, -9, 84, -121, 110, 59, 97, 104, 55, -31, 122, -46, -96, -60, -4, -59, -109, -103, 28, 110, -21, -35, 28, 34, -43, -32, 76, -98, 115, -53, -57, -9, -24, -55, 104, -24, 121, -41, 112, 10, -112, 17, 47, 93, -6, -51, -107, 21, 55, 46, 19, 22, 102, 70, 73, -57, -8, -37, -19, -114, 14, 114, -105, 61, -105, 16, -74, 62, -9, 98, -108, 126, 78, 102, -40, -82, -116, 115, 1, 54, -23, -55, 33, -46, 23, 83, -29, 72, 127, -8, -92, -2, -79, 21, 4, -101, 2, -106, 45, 17, -76, 94, -68, 114, -63, -101, -35, 74, -65, -128, -63, -114, -45, 35, -125, 93, -25, -117, 6, 58, -114, -81, -6, -31, 10, 25, 47, 110, 46, -45, -61, 60, -90, 91, -94, -71, 31, -53, -18, -93, 127, -52, 111, 76, 53, -95, -32, -75, -42, 83, -54, -127, 46, -104, 87, 111, 45, 62, -10, -109, 16, -88, -57, -27, -67, 79, -107, -11, -46, -47, 76, -39, 11, 105, -75, 2, 112, -79, -114, 15, -50, -34, -30, -122, -112, -117, -21, -73, 124, 73, -76, 112, 82, -26, 102, -114, 49, 95, 15, 59, 53, -104, 108, 82, 11, 24, -94, 11, -118, -103, -122, -14, -118, -104, -122, 50, 114, 25, -14, 79, -89, -80, 74, -51, 127, -1, 54, 75, 9, 62, -120, 21, -97, -110, -32, 125, 44, 118, 101, -116, -113, 91, 7, 123, -62, 109, -128, 1, -53, 102, 12, 56, -73, 96, 32, 108, 68, -118, -72, 28, -40, -11, 73, 58, -23, -12, -16, -74, 51, -86, 98, 78, 12, -118, -8, 7, -8, -11, 72, -86, 69, -116, 73, -122, -124, 44, -79, 94, -66, 29, 88, -127, -32, 118, -52, 8, -5, 8, -106, -37, -41, -20, 117, 12, 85, 5, -9, 19, -70, -32, 20, -87, 8, 118, 17, 50, -80, 45, 88, 2, 76, 125, -123, 64, 127, 31, 15, 104, 33, 1, 67, -39, -111, 29, -28, 119, -80, -128, -4, 118, 118, 80, 117, 88, 111, -123, 125, 39, 46, -38, 114, -47, 22, -17, 21, 14, 104, 63, -83, 9, 125, -57, 100, 97, -24, -124, 18, -116, -58, -54, 65, -101, 53, 11, -36, -46, -94, -126, -77, -94, -53, -37, 62, -10, 73, 62, -30, -50, 84, 93, 116, -58, -27, 126, -57, -83, -55, -39, -103, 73, -104, 123, 59, 13, 79, 31, 13, 65, 114, -84, 15, 43, -10, -99, 112, 51, 86, 37, 63, 21, -68, 59, 127, -80, -19, 22, 60, 30, -21, -127, -20, -60, -56, 118, 35, 57, -127, -97, 34, -34, 21, -58, 72, 109, -72, -109, -82, -103, -39, -102, -69, -23, 109, -17, 21, 3, -72, 127, 93, 31, -122, 43, 55, -63, 72, -91, 49, 116, 20, 24, -126, -77, -114, -40, 119, 85, -83, 12, 95, -80, 90, -44, -97, 102, -66, 115, -24, -14, -82, -86, -119, -85, -98, 48, 90, -80, -5, -55, 68, -15, -66, -87, -119, 18, -17, 123, -29, 121, -50, -66, 99, -71, 59, -1, -12, 25, 15, 15, 11, -109, -87, -81, -85, 11, -50, -53, -51, -107, 31, 30, 26, -86, 4, -124, -89, 83, 83, -29, -93, -61, -61, 13, 48, 55, 7, 51, -45, -45, 112, 62, 61, 93, -74, -76, -76, -44, 44, 51, 35, 67, 10, 91, 32, -98, 63, 30, -43, 126, -48, 91, -109, 61, -34, 89, 53, 50, -38, 90, -4, 122, -98, 109, -27, 67, -125, 77, 69, -107, 125, -75, 57, 48, -38, 81, 13, 61, 119, 46, 65, 109, -106, -97, 40, -10, 55, 33, -34, 89, -30, -61, -49, 35, -58, -114, 79, -20, -100, -81, -18, -55, -30, 68, -41, -95, -21, -25, -10, -50, 86, 93, -16, -97, 42, 73, 114, 111, 46, 56, 102, 95, 124, -50, 71, -5, 112, -116, -3, 6, -127, -7, -60, -52, 110, 57, -4, 83, -82, 50, 127, -6, -30, -81, -120, -33, -61, 91, 17, -25, -38, 80, -107, -80, -9, 95, 115, -118, -53, -33, -26, -96, -58, -107, -28, -60, -82, -47, -122, 36, 120, -42, 112, 8, -98, -35, 114, -128, 71, -73, -35, -95, -67, 58, 1, 34, -109, -18, -64, 6, -3, -62, -78, -91, 107, 125, -40, -79, 127, 8, 91, 37, -106, 17, -124, -104, 82, -123, 84, -121, 49, -65, 62, -26, -60, 6, 106, 98, 107, 64, 75, -126, 2, 20, -40, 23, -127, 32, 41, 6, -12, 4, 24, 72, 83, -32, -61, 81, 107, 10, -72, 123, -108, 3, -110, -35, 24, 46, -40, -86, 83, 126, 117, 1, 47, 35, 35, 35, 94, 87, 87, 7, 67, 67, 67, -48, -45, -45, 3, -99, -99, -99, -48, -48, -48, 0, 29, 29, 29, 48, 50, 50, 50, -49, -37, -73, 111, 3, 74, -24, 47, -24, -48, -61, -7, -79, 48, -45, -120, -121, 26, 115, 89, -3, -118, -112, -46, 34, 3, -79, 117, 27, 33, -13, -110, 77, 89, -93, -85, 113, -72, 91, -23, -29, -71, -125, 71, -78, -126, 52, 35, 42, 127, 90, -14, -115, -45, 98, -17, 117, 53, 55, -9, 55, -41, 35, 8, 95, -42, 39, -112, 66, 79, -26, 74, 24, -50, -91, -128, -37, -57, -119, 106, -77, -67, 23, 127, 72, 112, -97, 9, -43, 95, 93, 114, -39, -3, 80, 125, -22, -95, -71, -34, -69, 81, 83, -115, -123, -121, 122, -110, 3, -116, 82, -108, 37, -71, 120, 62, 36, -74, -104, -104, -88, 14, -69, -86, 70, 86, -90, 56, -34, -21, -66, 25, -10, -72, -93, -18, 104, -61, -51, 107, -2, -31, 23, -114, 111, -5, 36, 105, 76, 34, -124, -55, 120, -89, 41, 2, -109, 58, -103, -17, 23, -50, -81, -109, 46, -76, 120, -16, -35, -69, 119, -128, -79, -123, 3, -90, -110, 5, -104, 90, 54, 96, -22, -120, -102, -105, 1, -45, 66, -44, -66, 12, -108, -90, -71, 32, -28, -110, -121, -6, -65, -115, -95, 123, -56, 102, -34, 22, -7, -52, -5, -50, -57, 64, -79, 62, 14, -114, -124, 10, 110, 30, -70, 53, -101, -87, -55, 22, -87, -110, 18, -30, 113, 19, -30, 97, -72, -11, -59, -89, 27, 39, 60, -116, -122, 119, -51, 18, 127, 53, -74, 85, -95, -24, 38, -63, -73, -118, 22, -116, -119, -67, -113, -24, 79, 15, -28, 35, -6, 34, 106, 35, -46, 126, 77, -90, -64, -16, 36, -12, -103, -43, -99, -61, 117, 15, 28, -85, 118, 62, -103, 61, -19, 117, -66, 12, -114, -108, -76, -128, 71, -46, 109, -32, -46, 8, 5, 12, 99, 113, -4, -67, 67, 21, 9, -74, -86, -122, -123, 40, -15, -10, 106, 124, 45, -20, 27, 65, 79, -49, 68, -58, -64, -64, 108, -8, 3, 98, -59, 34, 68, -77, 123, 77, 77, -115, 3, -9, -17, -61, -56, -60, 36, 12, 12, 15, -65, 107, 107, 111, -17, -81, -85, -83, -67, -116, -18, -19, 69, 84, 66, -92, -3, -98, -8, -35, -35, -35, -91, -59, -59, -59, 96, 102, 102, 118, -92, -93, -77, -13, 126, 114, 114, 50, 32, 81, 77, 26, -115, -25, -96, -9, 8, 88, 88, 88, -60, 125, -55, -41, -128, -109, 115, -82, -121, -103, 25, -70, -24, -23, -95, 105, -11, 106, -88, 66, -3, 10, 14, 14, -72, 77, 67, 3, 29, -44, -44, -48, -119, -82, -37, 17, 59, 16, 113, 118, 56, -5, -113, -105, -50, -84, -20, 124, -64, -59, -51, 51, 79, 54, 118, 78, 96, 97, -27, -128, 117, -100, -36, 31, -58, 88, -39, -42, -95, -79, 117, -64, -55, -75, 126, -2, 26, -75, -13, 54, -56, -10, -125, 13, 46, 6, 46, 22, -10, -3, 32, -93, -93, -93, 58, 32, 44, 44, -24, -61, -54, -54, 114, 127, -39, -78, -91, 11, 21, -24, -113, 35, 26, 34, 122, 96, -33, -8, -36, -18, -69, 124, -105, 52, -76, 101, 18, -52, -102, 30, -125, -28, -27, 38, -40, 90, -40, 126, 124, 103, 73, 7, -1, -5, -5, 92, -90, -119, 113, 50, -2, 87, 65, 34, -81, 125, 78, 34, 97, 0, -104, -125, -122, -128, 117, 79, -45, -90, -81, -59, -76, 49, -47, 87, -42, -45, -43, 5, 107, 107, 107, 48, 52, 52, 4, 29, 53, -123, 75, 72, -88, -96, 66, -52, 66, -68, -121, 40, -65, -96, -67, -108, 32, 25, 37, 34, 61, -82, -65, 78, -73, -120, 95, -52, 57, -1, -99, -12, -26, -72, 7, -4, 38, 53, 81, -110, 46, 61, -9, 101, -36, -5, 64, -52, -82, 101, -38, -63, -13, 116, -126, -120, -63, -91, 63, 108, 88, -7, -24, 22, 45, 104, 3, 91, -72, -121, -99, 52, -41, -117, -49, -73, -22, -80, -16, -109, -58, -29, -110, -48, 113, 70, 28, 58, 79, -119, 64, 71, -110, 52, -12, -99, -41, -124, -102, 8, 110, 40, 116, 103, -124, 24, 3, -54, -21, 41, -106, -108, 127, -21, 41, -35, -115, 28, 60, -30, -58, 98, 114, -83, -90, 18, -118, 15, 28, -52, -115, -57, -99, -74, -103, -114, -101, -95, -66, -87, -72, 124, -85, 12, 7, -81, -8, 55, 87, 94, 49, 50, 101, 25, 25, -24, -126, -89, -77, 29, -56, 42, 40, -126, -110, -70, 58, -88, 33, 26, -24, 104, 1, -11, 90, 58, -96, -90, -93, 87, -57, 126, -31, 23, -2, 98, -12, 117, -76, -119, -73, 54, -42, 45, -66, -110, -107, 73, 112, -77, -72, 64, -22, 110, -7, 53, -114, 127, 73, 2, -116, 8, 113, -67, -123, 48, 125, -123, -83, 52, 91, -76, -67, 44, -121, -101, -82, -103, -88, -62, 22, 75, -103, 37, -13, -54, -10, 70, 58, 38, 58, 85, -42, 90, 94, 43, -111, 49, 89, 71, 37, -111, -123, -60, 84, 82, 16, 95, -93, 107, -84, 108, -65, 117, -105, -18, 37, -21, 67, -90, -35, 14, 97, -42, -125, 102, 123, 55, -33, -38, 100, -83, 30, -87, -94, 38, 41, -11, -45, -41, -57, -69, 34, -110, 118, 28, 60, -11, 66, -59, -44, -21, -89, 36, -16, 118, -39, -88, 26, 91, 26, 108, 52, -16, 112, -36, -70, -36, 84, 95, 50, 68, 95, 107, -29, -94, 79, 126, 110, 46, -102, -8, -69, -84, 69, 8, 16, 9, 17, -15, -1, 69, -126, 5, -63, 29, 25, -111, 59, 77, -78, 98, -81, -46, 85, 21, -38, 111, 43, 72, -115, -26, 8, 45, -20, -64, 100, 77, 85, 5, -41, -115, -30, 43, 97, 85, -41, -118, -2, 19, -89, -49, 9, 9, 9, 23, 19, 19, 19, -81, 88, -76, 104, -47, 114, 68, 90, 68, 105, 52, -58, -14, 35, 49, 25, 25, 25, 9, 126, 107, 53, 74, -117, 115, -12, -70, -38, 106, -89, 112, -126, -59, -3, -98, -58, 121, -74, 54, 85, -33, -65, -110, -105, -79, -94, -95, -90, -36, -86, -65, -69, -66, -29, 126, 111, -45, 88, 87, 91, 77, 84, 117, 101, -47, -105, -10, 91, 66, 20, 20, 20, -66, -10, -10, -10, 121, -27, -27, -27, 52, -17, 7, 103, 103, 103, 101, 50, 51, 51, -93, 15, 30, 60, 120, 63, 32, 32, -96, 63, 52, 52, -76, 104, 124, 124, 92, 23, 0, -120, -34, 127, 60, 116, 88, 33, -106, -105, -105, 55, -127, -116, -116, 76, 14, -5, 15, -61, -35, 8, -33, -16, 90, -46, -70, -73, -99, 21, 38, 112, 61, -45, 12, -98, 119, 108, -121, 7, 13, -90, 80, -101, 45, 48, 23, -27, 78, 104, -14, -83, -15, 66, -100, 8, -74, -42, 100, -15, -67, 125, -44, 108, 6, 79, 91, -83, -26, -7, -72, -59, 12, -22, -78, 5, -34, -123, 58, 19, -104, 125, 117, -33, 43, 33, -70, -56, -59, -50, 122, 44, -29, 108, 34, 92, 43, -52, -122, -10, 123, 53, -112, 119, 41, 13, 116, -43, -107, -72, -1, 67, -94, 5, -119, -109, 2, -105, -52, 54, 17, -122, 52, -44, 23, 69, 100, 66, 92, -127, 72, -116, -69, -121, -8, -15, 122, 120, 17, 98, 48, 1, 62, 126, 15, 9, 49, -31, 125, -44, 79, 67, 92, -113, 33, 124, -58, -50, -101, -120, -112, -96, -103, -104, -120, 96, 24, -11, -13, 62, 111, -121, 112, -58, -107, -108, -68, -12, -24, -46, -12, -106, 60, -14, 71, 13, -105, 86, 76, -76, 95, 99, 121, -10, -80, 75, 28, -90, 122, 52, 96, -86, 91, 13, 30, 118, -117, 67, 115, 1, -45, 120, 109, -58, -118, -98, -90, -53, -28, -125, -41, 35, -105, -98, 74, 118, 37, -5, 36, 17, -33, -78, 121, 21, 94, -99, 39, -35, -35, 71, -41, -92, 0, 38, -93, 0, 30, -60, 33, -58, -61, -20, 104, 36, 76, 36, -24, 7, 97, 127, 1, -8, -115, 72, 56, -3, 83, -74, -63, -103, -14, -125, 16, -106, 101, 13, 73, -107, 7, 96, -85, 47, -49, 8, 9, -1, -25, 55, -17, 53, -21, 105, -55, 123, -99, 53, 111, 14, -123, 88, -63, 80, -80, 21, 12, -121, 109, -121, 94, 39, 57, -24, 119, 87, -121, 1, 79, 109, 28, 81, 95, 3, 122, 119, 110, -124, -82, 109, -126, -48, 101, -63, 3, 67, -2, -26, -48, 99, -93, 116, -95, -102, -107, -126, -8, 19, 85, -44, -123, -117, -114, -51, -108, -59, 95, -57, 79, 110, -46, -19, -72, -119, 12, -122, -128, -113, -31, -29, -5, 112, -17, -114, -22, 118, -67, -5, -4, 65, 92, 39, 116, 70, -34, -18, -45, -30, 87, -47, -60, 22, -120, -37, -41, -45, -87, -29, -125, -73, 7, 7, -18, 84, -87, 63, 17, -31, 105, -100, 123, 49, -24, -12, -51, -21, 65, 51, 117, 85, -31, -48, 112, 51, 2, 112, 109, -11, 53, 127, 40, -68, -76, -65, 39, -29, -84, -17, -98, -101, 101, -39, 11, 74, -38, -82, 98, -64, 103, 87, -36, -66, -62, -101, 85, 106, -79, -127, -38, 30, -14, 20, -5, 83, -85, -21, -100, 18, -42, -12, 108, 14, 92, -11, 88, -46, 106, -119, -38, 66, 98, 84, 95, 118, -106, 111, 42, -13, -126, -47, -98, 24, 120, 56, 122, 17, -6, -37, 18, -113, 96, 63, 0, 53, 95, 122, 6, -107, 61, 76, -91, 10, 110, -20, 32, -29, -56, 10, -78, -121, 104, 65, -39, -121, 22, -44, 2, -24, -33, 73, -39, 49, -36, 100, -108, 94, 78, 75, -61, 67, -10, -51, 47, 101, 81, 3, 114, 125, 5, 123, -118, 116, -99, -3, 12, 53, -26, 65, 60, -11, -70, -127, 76, 103, -19, 29, -103, 34, -67, 118, 10, 101, 120, 38, 112, 62, -10, 79, 97, 1, -65, -77, 108, -80, -9, 36, 51, 104, -18, -92, 40, 20, 80, 93, 34, -2, -79, 104, -79, 117, -25, -1, 125, -35, -72, 115, -12, -110, 1, 6, -21, -64, 123, 15, 43, -12, -74, -55, -64, -48, -28, 22, -24, -97, -48, -123, -22, 38, 17, 56, 123, -127, -86, -28, 119, 62, 36, -65, 113, 17, -114, -65, -11, -119, 16, -25, -29, -48, -54, 96, -117, 24, 84, -79, -109, 27, -74, 44, 126, -19, -25, -82, 12, 53, -47, 65, -16, 56, 53, 19, 94, 94, 44, -128, -119, -108, -13, 112, -55, 123, 23, 28, 119, 52, -122, -42, -40, -93, 48, 113, 54, 21, 30, -96, -79, -42, -104, -61, 112, -14, -128, 54, 104, -69, -110, -127, -96, 3, 118, 110, -61, 54, -20, 15, 47, 39, 19, 27, -122, 116, -25, 35, 58, -32, 126, 92, 15, 92, -93, -43, -63, 45, 86, 13, -36, -114, 33, -58, 40, -127, 75, -108, 60, -40, -123, 111, -124, 109, 126, -94, 96, -20, -75, 1, -74, 30, 16, 5, 83, 47, -55, -107, -40, 55, 32, -61, -112, -103, 60, 111, -57, -70, -96, -69, -34, 34, 83, -61, 105, -22, 48, 85, -76, 25, -70, 79, -56, 64, -61, 81, 37, 40, 115, -28, -127, 108, 117, 58, -88, -14, -110, -125, 92, 79, -11, -10, 79, -110, 46, 57, 49, -73, 94, 60, -23, -121, -73, 111, -98, -63, -21, -103, -57, 0, 72, -76, 24, -24, -82, 127, 116, 120, -41, 38, -14, 0, 121, 42, -59, 40, 101, -22, -56, 88, -51, -75, 17, -127, 74, 107, -107, -80, 5, -64, -53, 90, -37, -77, 42, 47, -7, -2, 88, 95, 51, -68, -100, -98, -128, -23, -121, 67, 80, -102, 125, 102, -56, 76, 89, -28, -121, -60, -69, 12, 127, 126, -110, 27, 103, 21, 67, -101, 47, 106, -68, -23, 43, -46, -123, -111, 114, 45, 24, -85, 82, -126, 9, 28, 111, -86, -61, -29, -122, 45, -16, -76, 101, 7, 68, 56, 26, -97, -1, 90, -100, 23, 126, -5, 121, -97, 94, 76, -9, -97, 42, -68, 124, -28, -15, -123, -13, 68, 24, -62, 88, -114, 53, -34, 96, -58, -74, -12, -47, -36, 93, 48, -110, -17, 6, 29, -119, 102, -48, 113, -38, 28, -122, 11, -10, -62, -8, -107, -35, 48, 89, -76, -25, -35, 68, -79, -105, -19, 120, -2, -82, 101, 95, 21, 10, -101, -102, -82, 1, -62, -53, -103, 25, 120, 49, -13, -4, -51, -53, -105, 51, -16, -6, -11, 75, -104, 125, -13, 26, 94, -67, 64, 99, -49, -97, -49, 33, 17, 99, 106, -18, -51, 27, 24, -24, -17, 31, 60, 117, -14, -28, 87, 55, -5, 111, 94, -65, 88, 53, -47, 115, -21, -30, 120, 71, 41, 76, 13, -36, -127, 103, 35, -11, 48, 51, -47, 14, 51, -109, 29, -16, 108, -84, 13, -38, 74, 79, 66, 91, -39, 41, 64, 122, 6, -76, -105, -97, -122, -37, -23, -98, 94, -40, -33, -128, -28, -35, 50, -8, -72, -10, -60, 78, 65, -26, -13, 65, 6, -41, 106, 114, -126, 97, -88, 33, 13, 38, 59, -78, -31, 110, 97, 36, -36, -69, 22, 9, -113, 122, -81, -62, 104, -21, 101, 36, -90, -100, -125, -94, 68, -73, -39, 120, 87, -15, -99, 24, 66, 28, -86, -72, 56, -18, 36, -7, 69, -31, -30, 90, -84, 43, 95, -15, 17, -37, 39, 23, 15, -24, 64, 89, -76, -19, -69, -68, 16, -85, -17, 18, 2, 66, 66, 66, -84, 66, 67, 66, 87, 98, 63, 1, -121, 44, 60, 20, 58, 75, 79, -67, 121, -35, 112, 0, 38, -61, 81, -14, -58, -108, 29, 90, -12, 88, -96, -33, 110, 45, 60, 58, -50, 0, -109, -41, -52, 32, 53, -89, 22, 120, -52, -81, -9, 99, -85, 28, -2, -111, -45, 102, 118, -14, -28, -110, 89, 110, 107, -31, 97, 50, 27, -116, -89, -119, 64, 91, -86, 40, -12, 95, -26, -128, -122, 124, 75, -72, 114, 122, 59, 92, -119, -37, 10, -29, -83, -47, 0, 15, 2, -31, -19, 77, 65, -12, 124, 115, -126, -113, 9, -115, -37, -41, 98, -94, 10, 10, -45, 107, -25, -46, -96, 40, 50, 22, -46, 118, 121, -62, 73, 61, 99, 68, -93, -7, -10, -54, -31, 104, -72, 118, -20, 36, -28, 29, -117, -121, -115, 27, 55, 58, -2, -23, 51, 51, 16, -66, -58, -95, 69, -6, -19, -31, 123, 104, 62, -82, -111, -127, -124, 27, -54, 16, 127, 93, 11, -114, 85, 26, 65, 79, -59, 53, -40, -97, -39, 9, 125, -71, 105, -48, -70, -33, -78, -18, -89, 84, 5, -102, -17, 72, -109, 112, 9, 124, -89, 21, -101, 3, -69, -3, 77, -96, -15, 52, -7, -69, -103, -86, -75, 112, 47, -119, 124, -82, 44, -126, -8, -61, 115, 113, -36, 93, -110, -31, 122, -78, 113, -25, -45, -63, 64, -128, -103, 99, 0, 79, 79, 0, 12, -97, -125, -39, -106, 112, 104, 79, 86, -65, 113, -27, 0, -5, -54, -126, -3, -84, 120, 119, 35, -59, -114, 61, -83, -80, 4, 24, -15, 1, 120, 118, 20, -15, 20, -52, 14, -90, 67, -25, -11, -128, -15, -45, -34, 74, -126, -40, -17, 64, 44, -124, 49, -69, 39, -54, 2, -1, 86, -118, 36, -20, -9, 96, -63, 22, -83, -40, 64, -112, -125, -46, -89, 10, -40, -62, 96, -14, -22, -43, -85, 57, 76, -17, 18, -80, -8, -10, 2, -101, 127, 47, 112, 4, 34, 6, -9, -61, -70, -48, 126, -32, 12, 27, 0, 95, 31, 7, 56, 122, -60, 115, -66, -113, -58, -26, -17, -79, 7, -10, -31, 108, -25, 125, 112, -66, -13, 49, 80, -84, 79, -42, 26, 100, 75, -27, -120, 8, -16, -103, 23, -68, -114, -93, 32, -10, -107, -94, 34, -15, -57, -66, 1, -42, 102, 102, -46, 54, -37, 119, 44, 92, -120, 39, 81, -51, -73, 62, 124, 17, -119, 90, -3, 80, -14, -8, 25, -108, 61, 125, 9, 5, -61, 47, -32, 120, 89, 51, -20, -114, -53, -125, -83, 94, 5, -128, 17, -22, 84, -3, -34, -91, 28, 15, 35, -88, 19, 90, -98, 87, 47, -68, -78, 8, -5, 70, -84, -95, -94, -95, 101, 100, 100, -47, -7, 86, 63, 84, 53, 71, -118, -124, 8, -25, -106, -106, -106, 30, 36, 80, 3, -102, -42, 97, 10, -119, 22, -29, -59, 69, 48, 126, -83, 4, 30, -93, -79, 71, -113, 30, 1, -86, -74, -125, 65, 52, -34, -35, -43, 53, -45, -38, -46, -46, 88, 82, 92, 28, 23, 29, 29, -67, -32, 67, 36, 117, 45, 45, 121, -87, -103, -103, -96, -95, -93, 19, 88, 93, 91, 123, 43, 60, 42, 10, -42, 113, 115, 115, -44, -73, -74, -98, -49, -56, -54, 2, 29, 125, -3, -120, 47, -7, -22, -93, -86, -118, 14, 36, 80, -108, -82, 91, 7, -107, -111, -111, -48, -43, -44, 4, -67, 93, 93, 80, 123, -27, 10, -28, 110, -38, 4, 119, -42, -84, -127, 123, 76, 76, -48, -124, -40, -58, -56, 8, 56, -5, -113, 66, -16, -80, 114, -16, -127, -108, -76, -30, 60, -7, 5, 68, -127, -121, 103, 3, -120, -118, 109, -100, -65, -106, -108, 82, 0, 94, 62, 97, -32, -27, -35, 0, 18, -110, -14, -13, 99, -30, 18, 50, -64, -125, -82, -111, -19, 7, 63, 92, 12, 92, 44, -20, 7, 64, 77, 77, -75, 25, 85, 63, 77, 72, -120, -117, -32, 62, 111, -64, 66, -75, -11, -9, 123, 56, -60, 111, 94, 127, 4, -73, 76, -66, 118, -17, -102, 6, -99, -70, 7, 96, 92, 59, 1, 59, -21, -58, -63, 109, -98, 99, -32, 90, 63, 14, 86, -11, 15, 64, -3, -18, 3, -40, 112, 124, 16, -104, -112, 104, 65, -21, -36, 42, -14, 85, -31, -37, -25, 64, 98, 112, 80, 16, -124, 4, 7, 67, 105, 113, 1, -72, -87, 51, 78, 39, -22, 99, -31, 72, -84, -8, -90, 68, -69, -114, 32, -7, 89, 93, 65, -118, 6, 69, 30, -122, -117, -36, -46, 7, 45, -12, -115, -9, 15, -59, -123, 31, 5, 81, -37, 70, -32, 51, -66, 9, -100, -38, -91, -64, -93, -99, 11, 71, 99, 18, -63, -59, -51, 43, -26, 35, -47, -126, -104, -119, -110, 36, -121, -125, -118, -124, -14, 75, -15, -81, -18, -25, 18, -65, 121, 84, -94, -81, 49, 89, 29, -6, -45, -76, 96, 32, 75, 7, 6, -77, -28, -96, -17, -126, 18, 12, -27, 108, 69, -21, 35, 49, -88, 56, -60, 3, -7, 30, 104, 93, -23, -53, 6, 103, -115, 41, 92, 62, 123, -62, -107, -116, -48, 100, -15, 114, 124, 79, -11, 29, 44, -113, -104, -123, -56, -14, 9, -120, -15, 84, -80, 31, 0, 11, 5, 21, -87, 50, 39, 127, -52, 22, 65, 73, -40, 34, 43, -33, 25, 17, -30, 5, 87, -13, 82, -32, 114, -58, 73, -120, 10, -13, -127, 45, 27, -27, 122, -73, 110, -112, 2, 21, 46, -127, 24, 102, -118, 53, -92, 11, -98, 3, 40, 40, 82, -108, -59, 69, 97, -121, -127, 14, 72, 109, 16, -128, -115, 98, 34, 32, -62, -69, 30, -28, -123, -123, 96, -43, -54, -107, 64, 71, 77, -91, -116, -3, -62, 47, -4, -75, -126, -123, 84, 87, 107, -13, -21, -54, -30, 43, -102, 109, 53, 119, -122, -69, -21, -18, 64, -29, -51, 27, -82, -40, -33, -124, 100, 127, -57, -49, 86, -123, 110, -80, -105, 34, 23, -34, 33, 85, 40, -67, 115, -29, -120, -118, -19, -58, 105, 125, 61, -2, 17, 19, 49, -122, -57, -70, 122, -4, 23, -74, 122, 25, -54, 126, -88, -122, 83, 102, 38, 102, 53, 88, 127, 79, -60, 97, -29, 19, 5, 87, -107, 47, -82, -127, 85, -108, 36, 88, -73, -70, -24, 100, -19, -118, -73, 7, -49, 84, 55, 112, 63, -29, 12, 123, -50, -20, 2, -9, 36, 103, -16, 56, -29, 2, -34, 25, 123, -25, -81, -115, -10, 110, -22, 80, 86, -111, 16, -61, 126, 18, -52, 60, -94, 115, -52, 61, 99, 115, 126, -38, 122, -37, 66, 75, -42, 105, -121, -95, -95, -85, -83, 33, -85, -107, -119, -106, -19, 31, 14, -25, -100, -13, -111, 74, 77, 58, 20, 113, 42, 118, 119, -52, -79, 80, 35, -73, 24, 95, 53, -109, -125, -82, -78, -12, -69, -19, -92, 73, -112, 120, -15, -35, -89, -75, -125, -9, 104, -88, -123, -20, -43, 58, 25, -28, -95, -18, 21, -28, -95, 42, -125, -3, 0, 46, 9, 51, -57, -121, 114, -45, -113, -97, 85, -106, -121, -77, -127, -121, 38, 111, 87, -108, 49, -3, -23, -102, -89, -94, -108, -8, -58, -75, 43, -35, -83, -9, -22, 81, 94, -21, 124, 119, 85, 81, -63, 31, 18, -97, 69, -31, 58, 103, -117, -94, 12, -29, -2, 101, -94, -59, 42, 84, -83, -64, -122, 90, 1, 68, 9, -60, 117, -24, 90, 1, 85, 94, 44, -1, -2, -75, 8, -75, 20, 34, 23, -94, 82, 81, 126, 70, 78, 107, 99, -43, 76, 111, 71, -51, 76, 111, -5, -35, -103, -98, -10, 59, 51, -19, -51, -43, 51, -27, 37, 89, -103, -99, -51, 55, 103, -6, 59, 107, 103, -6, -69, -22, 103, 6, 122, 26, 102, -18, -43, 85, 12, -26, 92, 74, -7, -102, 96, -94, -119, 42, -41, -77, 42, -47, 65, -104, -78, -78, 50, 71, -36, -95, 48, -36, -127, 21, 84, 69, 1, -88, 26, 3, 80, -107, 45, -54, 39, -68, -122, -73, 111, -33, -90, -2, 102, 31, -127, -24, -119, -124, 24, 124, -20, 63, 12, 125, 73, -116, 58, -15, 16, -43, -109, -111, -70, 109, -80, -39, 64, 27, 86, -46, 72, 66, 127, -75, 17, -64, -72, 21, -68, 24, -76, -121, -54, 20, -74, 103, 123, -52, -80, 5, 31, -6, 113, -40, -124, 81, 23, -99, 98, 122, -46, 88, 108, 9, 53, -123, -90, 48, -37, 107, 54, -49, -6, -85, -90, -120, 22, 80, -100, -64, 50, -19, -72, 25, 91, -5, 37, 127, 89, 73, 49, -94, 80, 63, -81, -6, 115, -119, 113, 16, 30, -32, 3, 57, -103, 41, -48, 84, 115, 19, -68, 61, 93, 11, -59, -123, 5, -16, 63, 59, 79, 10, -14, 127, -74, -54, -5, -104, 5, 29, -31, 89, 87, 1, -103, -13, -98, 98, 110, 5, -63, 106, -15, 103, 92, -8, -83, -2, 38, -47, 98, -103, -93, 60, -89, -53, 118, 9, -90, 33, 7, 57, -50, 28, 11, 97, -70, 118, 23, -91, -11, 114, -82, -86, -68, -36, -74, 82, 108, -22, -24, 62, -7, 71, 46, 97, 107, 105, 86, -125, -106, -122, 50, 40, -56, -53, 0, 63, 47, 55, 40, -55, 43, 60, -113, 59, 30, 87, -111, -101, -99, -45, -115, 99, -38, -71, -44, -53, 106, 42, -86, -83, -84, -52, -12, 32, 37, 33, -126, 108, 85, 97, -125, 0, 15, -96, 10, -96, -50, -49, -85, -93, 17, -28, -95, 67, -107, -53, 80, -94, -114, 26, 70, 43, 25, 96, -88, -102, 3, 30, -76, -85, -64, -45, 126, 11, 120, -38, 103, 14, -109, 109, 10, 48, 84, -59, 6, -93, 55, -24, -111, 13, 21, 12, 86, -112, 65, 94, 56, 121, -32, -25, 98, -35, -75, -89, 77, -24, -120, 98, -123, -73, 119, 20, 1, 38, -62, -32, -19, 64, 8, -52, 14, 69, -62, -101, 71, -57, 97, -4, -104, -74, -57, -25, 124, 14, -25, 57, 73, -124, -25, 57, 122, -8, 93, -40, 17, -31, -107, -79, 77, -19, 15, -117, 62, 89, -116, 70, 109, 63, -11, 102, 77, 111, 58, 35, 17, 91, 18, 9, 122, -115, 63, -2, 27, 29, -67, 125, 28, -111, -79, 5, 110, 72, -80, -80, -127, 19, -41, -36, 96, 79, -94, 22, -112, -118, 99, 97, -40, 23, -48, 101, -82, -108, 53, -24, -73, 13, -34, -77, -37, 86, 6, 58, -74, -14, 64, -73, -115, 20, 12, -6, 111, -125, -31, 8, 103, -72, -17, 101, 12, -99, 38, -126, -48, 110, -64, 9, 29, 70, -68, -1, 103, -21, 107, 9, 29, -122, -78, 49, 95, 44, -23, 50, 99, -108, -105, -15, 18, -17, 51, -11, 87, -79, -78, -94, 48, 113, -23, -110, 104, -128, -66, -125, -51, 48, -111, -34, 15, -77, 55, -98, -62, 120, 114, -25, 52, -45, 74, 122, 70, -20, 43, 40, 78, -73, 35, 44, -51, -114, -34, -112, 20, 102, 123, 56, 60, 96, 31, -77, -65, -101, -59, -18, 115, -47, 86, 80, 127, 43, 18, 58, 26, 79, 66, 79, 75, 18, -12, -75, 39, 67, 119, 75, 2, 116, 52, -99, -128, -26, -102, 72, -88, 40, -14, -122, -116, 51, -18, 55, -53, -118, -66, 58, 97, 97, -54, -26, 68, 7, -68, -110, 23, -75, 123, 38, -84, -100, -117, -116, 95, 11, -73, -82, 48, 64, -19, 85, 38, 104, 40, -96, -122, -85, -23, -85, -95, 42, -103, 56, -87, 35, -103, 68, -10, 79, 69, -117, -20, 93, -57, 111, 23, -72, -61, 72, 79, 44, -68, -104, -66, 8, -61, -67, -23, -109, -67, -51, 81, -33, 53, 73, -81, 17, 39, 101, -109, 118, -91, 15, -77, -116, -29, 28, 23, 113, -96, 1, -34, -19, -108, -64, 103, 70, 1, 2, 22, -108, 32, 102, 67, 13, 66, 54, 84, -64, -86, -72, -14, 4, -45, -58, -27, 11, -98, 56, 5, -43, -55, -106, 75, -103, -112, -25, -21, -6, -48, -128, 75, -68, 24, 4, -91, 110, -127, -45, 121, 94, 112, -20, -54, 30, -16, -16, 19, 2, 75, 67, 26, 80, -73, -90, 0, -67, 29, -85, 65, 123, 27, 37, 104, -39, 81, -126, -90, 27, 5, 40, 108, 91, -15, -102, 79, 97, -23, -50, -9, 113, -34, 11, 13, 62, -63, -76, -21, 79, -99, -93, 6, 27, -51, 53, -16, 116, 82, 15, 38, 30, 25, -63, -125, 103, 118, 48, -14, -64, 24, -18, -113, 111, -127, -114, 97, 117, 40, -67, 45, 8, 103, 51, -104, 62, -108, -77, -93, -54, 11, -100, 88, -79, 24, -57, -33, -117, 22, 56, 68, 25, 73, 112, -44, 28, 114, 126, 52, 119, 57, 27, -32, -10, 45, 0, -12, -110, -122, -26, 6, -128, -106, 70, -60, 123, 0, 21, -27, 0, 37, -123, 0, -73, 42, 1, -22, -18, 34, -42, -63, -69, -94, 50, -24, 9, -37, 11, 59, 118, 81, -67, -28, -33, -10, -57, 10, 34, 75, 27, -86, 85, -122, -37, -40, -22, 119, -57, 108, -66, -26, 113, 98, 19, 18, 44, -112, -128, -127, -38, -35, 113, 58, -80, -5, -104, 6, 18, 51, -44, -64, -29, -124, 58, -22, -85, -43, -72, 29, 83, 95, -80, -86, 124, 94, -121, -111, 48, 67, -121, -31, 96, -107, 43, 127, 127, 119, -88, 20, 12, 29, -106, -128, -95, 120, 25, -72, -29, 43, 6, -73, -93, 29, -95, 45, -61, 11, 46, 59, -86, 66, 4, 59, 45, 20, -38, 43, 67, 123, -74, -21, -29, -113, 99, -108, 101, 4, -10, 60, 29, -71, 3, -81, -90, -17, -61, -53, 39, 3, 0, -16, 12, 90, -101, -85, 43, -61, -76, -40, -9, -27, 91, -80, -62, 61, 36, -88, -36, 11, -111, -124, 124, 107, 54, 8, 82, -92, -75, -7, -45, 74, -80, 64, -5, -31, 71, -125, -11, -16, 124, 106, 16, -98, 63, 25, -126, -89, 15, -6, 32, 43, -15, 112, 53, -10, 3, -56, 10, 21, -92, -68, -109, 34, 95, -34, -111, -83, 14, 67, 37, 106, 48, 82, 38, 7, -61, 37, -62, 48, 86, 46, 13, -29, -43, 26, -16, -76, -39, 16, 37, 16, -83, -95, 53, 39, 16, 82, -67, -3, -34, -40, -86, -56, -13, 127, 41, -42, 67, 119, -89, -47, -119, -28, 83, -16, 48, -13, 28, 60, 76, 61, -29, 53, 63, -33, 36, -101, 46, -21, 78, 50, 29, -21, 60, 97, 0, 13, 65, 42, -48, 16, -94, 10, -75, 126, 114, -48, 30, 111, 8, 3, -87, 102, 72, -56, -40, 3, -109, -91, 126, 48, -110, -29, 90, 58, -102, -21, -118, -9, 73, 102, -28, 68, 60, -51, -67, -90, 123, -110, -9, 7, 6, 106, 102, 95, -67, -126, -105, -81, 94, -64, -117, 71, 79, 97, -90, 121, 12, 102, -22, -122, 97, -90, 103, 18, 94, 60, 121, 6, 47, 95, -52, 32, -15, -30, 5, -68, 65, 54, -109, 19, 19, 79, 11, 11, 10, -40, -67, -68, -68, -56, 63, -1, -81, -96, 94, 45, 27, 109, -81, -84, 122, -48, 83, -123, -124, -118, 22, 120, -3, -72, 15, 102, -89, 16, -97, -34, -121, -73, -49, -57, -32, -7, 120, 27, -36, 74, 113, -125, -102, 75, 62, -48, 88, 120, 24, 106, -77, 125, -111, 112, -111, -16, -89, -94, -77, 14, -61, 42, 81, 71, 118, -15, 19, 122, 28, -117, 115, 13, -123, -120, 90, -44, 89, 22, 119, -85, 115, 44, -17, -38, -60, 75, -39, 108, 42, -55, 86, -96, 68, 79, -24, -83, -52, 64, -96, 120, 116, 31, -2, 42, 120, -117, 125, -6, 89, 93, -92, -25, -57, -62, -52, -40, -87, 47, 71, -102, 118, 117, -108, -57, -64, 72, 99, 42, -116, -34, -53, -128, 59, 87, -94, 96, -113, -119, 42, -124, 90, 42, 65, 71, 85, 18, 60, -24, 46, -126, 7, 93, 5, -48, 92, 17, 15, 5, -89, 92, -34, 37, -72, 75, 25, -51, -65, -56, -19, 69, 63, 59, 87, 100, 7, 90, 112, 23, -122, 108, -101, -70, -72, 79, 27, 114, 14, 26, -64, 73, 52, -17, -97, 116, -108, -99, -69, 113, -54, -125, 25, -5, 70, -92, -91, -91, 29, -51, 56, -105, -7, 73, 50, 61, 79, -77, 4, 47, -21, 96, 14, -63, -126, 79, -36, 26, 108, 95, 114, 51, -59, -81, -17, -11, -83, 125, -24, 29, -60, 15, -39, -12, -14, 112, 65, -52, 5, 10, 117, -4, 32, 71, -44, 9, -86, -59, -92, 96, -36, 127, 57, 12, -28, 24, 66, 96, 74, 55, -84, 80, -120, 76, 37, -95, 55, -4, -37, -53, 72, -99, -28, -55, -71, -45, -20, 105, -34, 54, -122, 50] astore_1 aload_0 ldc literal_1292:"__e7-20.png@0" aload_1 invokevirtual java.lang.Object put( java.util.Hashtable, java.lang.Object, java.lang.Object ) // pc=3 pop arrayinit [-61, -40, 41, 54, -104, -67, -64, 9, 112, -103, 29, 96, 64, 14, 0, 78, 35, 102, 0, -68, 57, 15, -16, -48, 3, -96, 78, 18, -38, 18, 57, -63, -49, -100, -34, -4, 107, 49, -27, -41, -83, 79, 113, 19, -105, 5, 95, 81, 89, -40, -49, 41, 52, -49, 48, 110, -111, -7, -42, 91, 66, 30, -68, -60, 100, -64, -114, 91, 16, -108, -39, -71, -14, -79, 63, 65, 80, -117, 91, -78, -44, 85, 90, 56, 113, 71, 2, -114, 22, -117, -62, -87, 18, 115, 72, -85, -16, -128, -94, -102, 35, -48, -33, -41, 13, -123, -115, 19, 40, -47, 59, 0, 3, -55, -121, -69, -80, 31, -64, -23, -76, 12, -103, -32, -88, -104, 83, 39, -110, -49, -34, -35, -30, 25, -16, 66, 63, -26, 18, 24, -90, 86, -126, -89, -81, 62, 52, 38, 46, 123, 87, 123, 114, -15, -85, -33, -37, -89, -18, 21, 72, 122, 92, 107, 14, 48, -19, 9, -16, -46, 27, 96, -42, 23, -48, 47, 20, -96, -57, 19, 102, -118, 21, -31, -86, -41, -38, 99, -105, -36, -87, -116, -58, -45, -123, 0, -6, 55, -93, -5, 78, 0, 115, 7, 0, 94, 32, -101, -95, 80, 120, -35, -24, 3, -71, -63, 50, 87, -1, -112, -84, -37, -128, -83, 116, -114, -105, 0, 53, 39, -42, 15, -107, -99, 4, 108, -104, -124, -6, 1, 6, 96, -108, 95, 58, -116, 45, 28, 38, 47, 95, -66, -100, 35, 50, -65, 8, -68, -69, -46, -63, -34, 117, 55, 4, 31, -80, 3, -65, -67, -74, -96, 29, -102, 15, 82, -15, -9, -31, -104, -113, 49, -28, 37, -19, -102, -17, 75, -98, 24, 0, -119, -29, 3, 32, 22, -37, 15, 34, -47, 125, 32, 20, -39, 3, 56, 95, 20, -29, -77, -94, 5, 41, 41, 41, 31, 1, 1, 1, 13, -74, 64, -32, -86, 44, 12, -40, -106, -26, -111, 17, -30, 113, 45, 56, 25, 18, -28, 87, -104, 18, 29, -43, -32, -24, -20, 66, -72, 16, 123, 74, 97, -41, -87, -56, -110, 78, -56, 25, 120, 8, -89, 111, 54, 66, 45, 0, 100, -76, 13, -63, 42, 26, 58, 88, 78, 73, 1, 26, -37, 67, -127, -124, -35, 101, 20, -103, 46, -3, -125, -8, -66, -118, -40, -96, 65, -122, 114, -78, 20, -3, -8, -65, 109, 3, 74, 43, -62, -64, -56, 34, -16, 13, 46, 120, -88, 90, -50, -96, -85, -85, -85, 111, 100, 120, 24, -90, 30, 63, -122, -23, 103, -49, -32, -43, -37, 57, 104, -114, 59, 14, -41, -92, -59, -95, 76, 78, 10, -6, 46, 93, -128, -105, 111, -33, -62, -13, -23, 105, 36, 96, -49, -52, -37, 116, 118, 116, 64, 90, 106, 42, 28, 61, 122, 116, -63, 73, -48, -118, -40, -40, -112, -77, -127, -127, -96, -64, -57, -89, 95, 101, 111, 127, 38, 76, 71, -25, -119, 44, 37, -27, -110, -78, -24, 104, -113, -12, -80, 48, 80, 17, 18, -78, -4, -30, 102, -112, -103, 121, -74, -118, -107, 21, 90, -86, -86, -32, 99, 60, 68, -17, -96, 44, 115, 115, -88, -91, -92, -124, 6, 6, 6, 104, -95, -89, 7, 93, 54, -74, 79, 68, -117, 117, 92, 66, 112, -17, 94, -13, 60, 105, -112, 0, -62, -59, -59, 13, -114, -114, 78, -13, -41, 105, 105, -23, -72, -21, 121, -90, -92, -92, -50, -113, -19, -37, -73, 111, -2, 26, -39, 126, -16, 67, 49, 126, 84, -76, -40, -76, 117, -21, -42, -87, 101, -53, -56, -92, 81, 95, -122, -106, -106, -118, -9, -73, -22, -89, -38, -81, 17, -99, 62, 28, -89, -93, -93, 107, 66, 39, 45, 103, 112, -41, 127, -58, 63, 84, -117, -26, -41, 18, -20, -85, 31, -125, -40, -63, 25, -40, -45, 51, 3, -102, 117, 15, -63, -66, 99, 26, -10, -10, -66, -104, -89, 3, -22, 107, -44, 62, 4, -41, -82, -25, -64, 17, 50, 8, 116, -18, -125, -64, -20, 86, -1, 85, -111, -36, -55, 84, -61, 53, -39, -53, 112, 46, 45, -52, 17, 74, -35, -24, -64, 93, -117, 25, 87, 113, -79, -96, -28, 83, -3, 67, 48, -61, -75, 6, -62, -28, 97, -50, 106, 107, 97, -69, -4, 106, 48, 16, -90, -128, -115, -21, 104, -58, 68, -41, -83, 11, 49, -75, -114, -30, -29, -48, -54, 29, 96, 81, -70, 80, -82, 108, -111, 97, 31, 16, 122, -30, -59, -95, 67, 126, -80, 99, -57, -114, 3, -97, 84, -96, 81, 47, 50, 16, 100, 92, 122, -4, -77, -126, -59, 33, 94, -77, -70, -45, -86, -81, -5, 47, -21, -61, -16, 85, 107, 24, 41, -2, 127, -28, -99, 7, 80, -107, -55, 18, -17, -113, 107, -60, -128, 89, 80, -126, 36, 37, 11, -110, -109, -128, -128, 32, 57, -118, -110, -125, 100, 1, 5, 36, -104, -56, 6, 12, -128, 10, 38, 68, 5, 84, 64, 64, -110, 72, -112, 28, 69, 37, -25, 40, 72, 18, 16, 69, 17, 20, -45, -1, 125, -100, 119, -41, -69, -82, -80, -85, -18, -83, 91, -17, -43, -19, -94, 107, -26, -5, -66, -103, 62, 117, 78, 29, -122, -103, -2, 117, -45, -106, -24, 79, -47, 65, 127, -114, 21, -38, 18, 117, 80, 121, 81, 10, 89, -66, 108, 72, 117, 103, 65, 99, -104, 16, 30, -5, 49, 33, -50, 124, 77, -23, -97, -19, -4, 54, -121, -76, 43, 32, 123, 27, -4, 83, -28, -32, 116, 67, 20, -89, -14, 20, 32, 105, -66, 6, -77, -25, -2, 38, 72, -6, 69, -31, 94, 75, 119, 111, -21, 6, -50, -25, 14, 22, 70, 35, 119, 9, 80, 81, 81, 122, 31, -67, 29, -27, 100, 125, 92, 124, 15, 73, 119, -62, 96, 103, -94, -9, 74, 118, 3, -25, 107, 110, 106, -38, -72, 31, -118, -64, 102, 102, -32, 61, -64, -71, -95, 47, 68, -120, 3, -31, 98, -100, -72, 33, -50, -119, -120, 45, -100, 68, -97, 3, 87, 68, 56, 112, -110, -113, 29, 54, -20, -52, 79, -108, 25, -23, -88, 73, -1, -97, -55, 109, 127, -3, 89, 65, 22, -94, -101, -50, 90, -118, -51, 38, -3, 63, 42, 6, 26, 42, -77, 9, 93, 68, -24, -110, 41, -3, 87, 127, 14, -23, 127, 76, 58, -102, 27, -77, 26, -86, 42, -58, 9, 96, 49, -46, 67, 0, -117, -90, -94, -36, -47, -54, -46, 66, -26, -1, -58, 107, -57, 94, 8, 96, 9, -79, 87, -6, 38, -64, 66, -56, 86, -118, -118, -33, 74, 60, 72, -42, 75, -83, 70, -23, -76, 14, -28, -36, 85, 32, -17, -89, 1, 1, 115, 97, -120, 24, 11, 64, -34, 83, 25, 26, -63, -6, 32, -98, -113, 9, -18, -111, -70, 46, -28, 32, -59, 66, 43, -49, 44, -61, 111, 39, -127, -83, 14, -37, 60, -89, 123, 29, -75, 29, 114, 59, 45, 3, 77, 97, 21, -78, 27, -69, -49, 24, 67, -49, 91, 7, 59, -113, 104, 65, -49, 83, 27, -58, -2, 122, -80, 11, -75, -128, 27, -79, -105, 57, 20, -75, 31, -50, -41, -19, -95, -17, -91, -125, 109, 10, 98, -1, 40, 123, 92, -35, -6, -88, -26, -114, -67, 103, -38, -76, 109, 78, 64, -41, -31, 12, 100, -11, 14, -40, -109, -2, 3, 98, 111, -86, -52, -31, 98, -93, 117, -13, -120, -109, -47, 86, 115, 61, -7, -53, 127, 124, -106, 28, 115, 122, 32, 53, -31, 12, 82, 98, 78, -29, -46, 9, 77, -78, -58, 94, -44, 123, 113, -30, -128, -68, -104, -85, -99, -12, 79, -41, 118, -54, -50, -114, -98, 87, 84, 120, -9, -58, -11, -117, 30, 125, -111, -31, 62, 15, -78, 31, -36, -2, -57, -63, 88, -113, -68, 104, 37, -113, -46, 81, -115, -25, -118, -15, 35, -36, 102, 55, 30, -92, -35, 45, -81, 40, 43, -98, 49, -120, 46, 63, 35, -115, 34, 39, 53, 49, -82, -83, -95, 30, -49, -5, -5, -111, 126, 55, -106, -48, -72, -81, -96, 35, -25, -4, 78, -27, -126, -53, -58, 109, 15, -50, -23, 34, 51, 72, -25, -8, -33, -67, -2, -125, -32, 29, -37, 31, 70, -19, 29, -56, -67, 100, -106, -109, 29, -84, -77, -102, -12, 95, 16, 98, 47, -80, -112, -123, -123, -59, 123, -3, -6, -11, 37, 68, 22, 121, 25, 17, 108, -27, 69, -20, 83, 126, 41, -13, 102, -59, -118, 21, -94, -124, 42, 71, -33, -68, 20, 94, 82, -112, 58, 81, 95, -107, 79, 100, 88, -28, -113, -41, 87, -26, -114, -41, 62, -55, 30, 47, -51, 77, 124, -33, 84, 85, 48, -34, 82, 91, 60, -34, 74, 64, -116, 41, -128, -15, -88, 48, 125, 34, -18, -10, 85, -121, -65, 49, -83, -93, -84, -95, -111, -66, 119, -17, -66, -95, -92, -92, 36, 24, 27, 27, -125, -56, -90, -128, -120, -120, -56, 84, -74, 45, 30, 61, 122, -124, -54, -54, 74, -24, 25, -101, 36, -81, -96, -94, -2, -31, 0, -94, -27, 11, -25, 46, 92, 67, 57, 127, -23, -118, -59, -13, 127, -6, -3, -14, -39, 111, -94, -74, -119, 52, -120, 118, -66, -71, 123, 72, 97, -65, 120, 12, -117, -58, -6, -75, -92, -1, -96, 24, 110, -99, -75, 59, 41, 116, 51, 26, 114, -116, 65, -79, -116, 1, -22, 106, 124, 64, -33, 110, 2, 56, 24, 32, -56, 95, 23, 13, 89, 10, 56, -29, 60, -57, -22, -121, -49, -20, -90, -65, -103, 85, -90, -54, 64, 91, 91, 3, 2, -94, -14, 120, 89, -89, -121, 87, -11, 6, 16, -35, 34, 15, 85, 53, 53, 76, 61, 59, 108, -2, -101, -51, 116, 115, -119, -13, -112, -88, -95, -98, 78, 87, 71, 91, -45, -105, -15, -47, 17, 20, -25, 101, -31, -58, -107, -13, -56, 72, -119, -61, -123, -96, -128, 79, 91, -73, -120, 126, 23, 12, -95, -72, 77, -122, -42, -43, -55, -2, -31, -87, 99, 62, 85, 78, 14, 118, -50, -33, -100, 47, 93, 69, -49, -44, -60, 56, -94, -10, -114, 35, -102, -17, 58, 33, -62, 97, -45, -66, 25, 107, -125, -102, -82, -89, -66, 23, -96, 113, 40, -2, -80, -108, -51, 63, 4, 22, 11, 9, -27, -73, -111, 100, 77, 118, 87, -32, -62, -2, 109, -20, -40, 45, -62, -12, -128, -72, 39, 97, 33, -58, 124, -51, 66, -116, 49, -99, -24, -117, 17, 74, -11, -5, 28, 34, 115, -94, -53, 88, 95, 23, -50, 78, -5, 96, 109, 109, -123, -85, -105, -61, 80, 82, 84, -126, -38, -22, 26, 52, 55, 53, -111, -75, -90, -70, 26, 69, -123, 69, -72, 68, -64, 51, 35, 35, 67, -40, 88, 91, 99, -65, -109, 3, -24, 105, -88, -34, -112, -90, -109, -30, -120, -27, -75, -67, -123, 84, -24, 47, -34, -116, -127, -46, 45, -24, 126, -64, -123, -63, 90, 121, -68, -23, -38, -115, 55, 79, 77, -15, -68, 74, 26, -35, 89, -100, -60, 51, 113, -12, 21, -13, 98, 106, 108, 73, -28, -14, -6, 105, -93, -73, 12, 104, 36, 75, -36, 25, 62, -65, -120, 19, -58, 100, -87, 26, 62, 63, -11, 0, -122, 2, -127, -31, 80, 124, 120, 126, 30, 125, -57, -73, 126, 77, -105, 119, -115, -75, -94, 112, -117, 54, -71, 101, 124, 75, 3, 10, 23, 37, 33, -30, -55, 19, -91, 29, 44, 75, -9, 71, 123, -76, -14, 36, 94, -29, -93, -126, 56, 26, 109, 2, -33, -37, -122, 80, 118, 93, 95, -49, -92, 77, 34, 31, 4, -39, -76, 72, -13, 109, 2, -73, -74, 30, -115, 53, 69, 80, -102, 45, 14, 70, 104, 98, -93, 6, -23, -2, 74, 89, -46, 28, 14, 61, 18, 59, -83, -36, -73, 105, -37, 121, 108, -85, -74, 119, -72, -20, 64, -41, 17, 19, 60, 61, 100, -128, 102, 67, 97, -44, -85, -80, -96, 81, -101, 19, 61, 1, -114, -24, 13, 116, 69, 111, -112, 27, 89, -97, 29, -75, 65, -125, 6, 7, -22, 85, 55, 76, -115, 37, -49, -23, 116, -43, 67, 25, 31, -61, -116, 17, 79, -117, 37, 22, 113, -118, 121, -16, 124, -70, 73, 115, -27, -53, 35, -106, 98, 52, 24, 87, -96, 43, -96, 25, 67, 9, 61, 120, 119, 103, 24, 59, 121, 53, -52, 72, 127, 33, -25, 61, 53, 117, -62, -49, 56, -17, 56, -18, -75, 127, 109, -60, -43, 32, -70, -28, -40, -61, 79, -85, 31, -98, 37, 67, -118, -114, -90, 8, 116, -74, 70, -95, -93, 37, -118, 104, 35, -47, -46, 112, 21, -115, -43, -95, -88, 125, 124, 6, -27, 5, 126, -120, 12, -77, 109, -73, -79, 80, -96, -101, -50, -82, -21, -43, -91, -127, -25, -45, 86, 33, -67, 109, 37, -62, 8, 56, -107, 117, -121, 29, 31, 26, -27, -127, 126, 45, 96, 64, 19, 24, 36, -6, 61, 44, 120, -11, -112, 10, 13, 49, 11, 51, 10, -50, -50, -97, -111, 60, -106, 38, -19, 45, 43, 76, 112, 68, 111, -21, 121, 76, -66, -113, -61, 112, -33, 93, 116, -44, -99, 83, -8, -91, -24, 38, 13, -54, -107, -37, -49, -48, -102, 42, 30, 101, 28, 20, -78, -95, -57, 102, -69, 53, 16, -80, 90, 14, 90, -111, -91, -32, -39, 69, 13, 9, 27, 6, 112, 25, -84, 60, 38, 116, 100, -27, 15, 67, 11, -47, 29, -108, -79, 58, 126, 52, 56, 116, 107, 43, 34, 50, 93, -112, 85, 126, 9, 57, -113, -62, -112, 83, 113, 21, 81, 105, 46, -16, 8, -34, 10, 19, -65, 77, 48, -15, 97, -123, -71, 63, 27, -10, 92, 100, -121, -59, -59, -11, -48, -12, 88, 3, 49, 45, -54, -113, 60, 50, -117, -8, 126, -81, 85, 49, -43, 122, 7, 80, -106, 54, 117, 104, 96, -8, -91, 33, -98, -113, -38, 97, -24, -107, 59, -98, -65, 50, -57, -48, -24, 94, -12, -113, -104, -93, -67, 87, 23, 93, 4, -68, 120, 84, 39, -119, -52, 66, -82, 47, 97, -47, -44, -57, 124, -125, 24, -26, -2, -53, -58, -94, 63, 66, -117, 98, -61, -19, -117, -37, -35, -51, -22, -57, -93, -50, -30, 125, 126, 10, 38, -98, 20, 97, -94, 60, 7, -29, -91, 89, 24, 127, -104, -115, 119, -113, 11, -16, -2, 113, 46, -122, 99, 47, 98, 52, 57, 2, -29, 57, -119, 120, 91, -108, -122, -9, -59, 25, -8, -104, 26, -115, 22, 87, -77, -2, 8, 53, -98, -17, 22, 117, 51, 75, -26, 16, 117, 3, 22, 70, -105, 16, 125, 106, -57, 83, 74, 22, -26, 46, 27, 59, 29, -49, 108, -33, -19, 114, 97, -121, -98, -21, 101, 109, 17, -121, -13, -54, -53, 73, 63, 41, -15, -86, -12, -31, 45, 4, 80, -24, 11, -39, -118, -18, 64, 113, -92, -102, -79, -31, -82, 37, 47, -54, 67, 29, 48, -4, 56, 0, -3, -39, 6, -72, 46, 68, -121, -77, -108, -108, -72, -61, -79, 30, 21, -105, 109, 71, -2, 108, -29, -126, -81, -103, 94, -38, -11, 67, -19, 5, -119, -127, -29, -113, 115, -82, 78, 118, 117, -106, 33, 59, -60, 19, -103, -90, 44, 24, -72, -91, -119, -111, 116, 19, 60, -65, -77, 3, 45, -57, -59, 113, 103, 39, -61, -37, 67, 91, -88, -1, -46, -7, 112, -56, 76, -2, 102, 126, -52, 113, 84, -25, 70, -96, -71, -20, 14, 6, 59, -54, -48, 92, -111, -5, -42, -49, -47, 80, -21, -105, 14, 94, -98, 92, -13, -54, 34, 36, -13, 90, -90, -94, -4, 50, -73, -94, 39, 67, -112, 104, 5, -47, -97, 39, -115, 23, -27, 26, 4, 65, 39, 0, 85, -123, 5, 18, -3, -100, 17, -19, 24, -128, -94, -48, -85, 56, 102, 97, -98, -83, -79, -103, 119, 90, -57, -15, -45, -35, -122, -3, -67, 23, -49, 97, 32, -20, 60, 122, 67, 3, -33, -44, 102, 36, -82, -84, 11, 51, 100, -82, 15, 82, -4, 88, 127, 86, -125, 0, 22, 10, 4, -80, -112, 70, -103, -101, 0, 26, 66, -76, 81, 21, 32, -121, -26, 43, -69, -48, -101, 118, 16, -19, -41, 13, -47, 119, -41, 46, -23, 121, -78, -51, -41, 58, 23, -111, 17, 17, 115, -102, 26, 27, 31, 126, 120, 63, 57, -107, 73, -127, -15, 9, 66, 123, 71, 48, 126, -81, 21, -29, -31, -43, -104, -72, 82, -115, -15, 107, 53, 24, 127, -48, -127, -15, -127, -105, 24, 31, 127, 75, 30, 71, 56, -79, 38, 71, 95, -66, -20, -81, -86, -84, -84, 49, 48, 48, -8, 14, 92, -116, 116, -41, 122, 61, 111, -54, -59, -60, 80, 51, 38, 71, -69, 9, 104, -47, -118, -55, 87, 29, -8, 48, -6, -108, 12, 46, -34, 15, -41, -93, -108, -40, -32, 39, 28, -108, -62, -125, -77, -6, 72, 63, -91, -127, -42, -30, 24, 111, -46, 12, 34, -71, 110, 54, -93, 2, -61, -68, -69, 26, 27, 41, 62, 105, -79, 45, -124, 54, 43, 5, -44, 54, -52, -121, 26, -53, 2, 40, -16, -48, 65, 125, -61, 2, 104, -78, 46, -124, 41, -41, 90, 104, 19, -49, -107, 89, -25, 117, -55, -48, -50, 57, 36, -75, 110, -10, -30, 63, -43, -90, 32, 127, -82, -73, 125, -44, -29, 26, -77, 3, 81, -105, 25, -128, -4, -37, -18, -88, 127, 16, -120, -118, 123, 71, -79, 119, -121, 56, -60, 104, -41, -32, -26, 73, 71, -12, 86, 69, -93, -21, -55, 45, 12, 54, 37, 96, -96, 33, 1, 25, 87, 28, -34, -97, 48, 96, 18, 34, -37, -7, 83, 125, -117, -5, -89, 44, -39, 82, -114, -22, -115, -8, 105, 113, 34, -47, 67, 9, 97, 54, -110, -16, -43, -26, 70, -6, -111, -19, -120, -9, -44, -5, 28, 117, 51, 90, -47, -41, -49, 111, -23, 15, 23, 7, 63, 31, -30, -9, -22, -59, -24, -45, 115, 71, -49, 127, -35, 16, -25, -18, 41, 115, -24, 10, -20, -49, 104, -67, -39, 113, -25, 113, 80, -107, 107, -58, -66, 28, -6, -65, -77, 115, -42, 114, -121, -34, 88, -27, 41, 116, 88, -85, 32, 106, -83, 58, 114, 61, 47, -95, -85, 53, 2, 53, -99, 7, -47, -112, -25, -115, -108, -99, -57, -16, 100, -69, 24, 94, 92, 89, -120, -60, -104, 40, -56, 28, 41, -6, 72, -71, 89, -13, -25, 34, 103, 55, 46, 98, 50, -31, 90, 24, -27, -93, 43, 58, 120, -43, -61, 12, 97, 7, 109, 16, -24, 98, 62, -24, -90, 46, 124, 75, -127, 105, -31, 15, 101, -102, 4, 107, 46, -72, -106, -70, 103, 53, -110, -19, -41, -31, -66, 7, 51, -14, -68, 57, 80, 22, -64, -118, 55, 5, -85, -16, -82, 124, 35, 38, 74, -103, 48, -107, 105, -16, -74, -100, 7, 47, -110, 120, 8, 24, -57, -125, 20, 111, -90, -46, -67, 26, 107, 22, -50, 88, -72, -112, -117, -25, -95, -18, -14, 117, 48, -90, 88, 13, 99, 18, 37, -116, 103, 45, -3, -73, 46, -90, -126, -55, -30, 85, -40, 69, -79, 2, 74, 27, 57, -86, -1, 54, -6, -27, -95, 110, -57, -74, -52, -11, 56, -9, 64, 4, -121, 111, 109, -62, -51, 44, 123, -76, -106, 30, -64, -5, 2, 125, -12, 21, 29, 66, 77, -34, 105, -68, 123, -24, -118, 87, -9, -35, 38, 73, -65, 40, 87, 34, 111, 25, -70, 120, -6, -90, 68, 102, -28, -99, 27, 124, -1, 49, -77, -66, -21, 89, -95, -66, 103, -48, 103, -59, 83, -73, -96, 126, 61, 11, 14, 7, 52, -66, 100, -98, -103, -1, -6, -113, 115, 114, -3, 89, -37, -47, -87, 2, -68, 51, -64, 104, -73, 30, 74, -45, 20, 17, 121, 74, 12, -63, -10, 28, 8, -36, 73, -121, -53, -69, -42, -67, -68, -94, -73, 46, 35, 88, 103, 29, -114, 26, -45, -29, -4, 33, 46, -28, -60, -55, 97, -72, 67, 31, 24, 51, 7, -98, -23, -30, -47, 89, -34, 103, 127, -76, -71, -112, -99, -60, -96, 110, -61, 9, 57, 3, -106, 15, -92, 53, -92, 89, 115, 57, 73, 98, 59, -49, -80, 97, -41, 57, 54, -84, 17, -102, 119, -127, 77, 125, -7, 9, 49, 115, -70, 108, 89, 123, -90, 38, 81, 51, -102, -121, 43, 69, -25, -38, -52, -28, -45, -103, -104, -104, -8, 76, 101, -97, -128, 35, -63, -31, 120, 85, 21, -115, -106, -94, 88, -28, 36, -124, -29, -78, -101, 38, 118, 7, -57, -31, -126, -101, 10, -86, 82, -19, -96, 19, -45, 13, -83, -24, 103, -48, -72, -35, 13, -43, -88, 46, 40, -35, 120, 10, -123, -16, 14, 76, -51, 37, 108, 76, 11, 45, 8, -89, 46, -1, 111, -65, -3, 70, 69, -6, 9, -39, -76, 114, -98, -39, -26, -43, -13, -113, -2, 16, 64, 114, 117, 116, -85, 47, 43, 65, 103, 98, 12, 34, -81, 93, 11, -7, -111, 57, -117, 55, 90, 116, 31, -70, 89, 14, 14, 65, 17, 80, 44, -94, -128, -17, -51, 59, -120, 111, -18, -122, 107, -24, 45, -36, 120, -36, 3, -57, -77, -23, 88, -79, -39, 101, -108, 112, -117, 126, 115, 112, -49, -103, 63, 107, 83, -123, -40, -118, -41, -39, -77, 73, 12, -92, -97, 16, 106, 106, 26, 126, 6, 70, -106, 31, 118, -22, 17, 7, -57, 13, 83, -1, 18, 109, -16, -7, 115, -68, 121, 77, -128, -23, -73, 111, -89, -96, 4, -47, -114, -29, 45, 1, 38, 6, 90, -102, 49, -40, -34, 70, -122, 21, -29, -29, -29, -28, 103, 3, -3, -3, 40, 47, 47, 71, 70, 70, 6, -30, -29, -29, 17, 26, 26, -6, -61, 53, 52, 10, 53, 53, -83, -93, -44, -44, -96, -70, 98, 5, 79, -127, -71, -7, -7, -45, 91, -73, 62, 87, -96, -92, -100, -109, -81, -82, -82, 18, -85, -91, 5, -11, 85, -85, -74, -52, 52, 87, -119, -102, -6, -61, 67, 79, 79, 124, 6, -90, -78, 109, -66, -47, 41, 105, 34, 32, 74, 42, 51, 51, -86, -89, 0, 3, 45, 45, -44, -104, -103, -65, -121, 22, -100, -4, 104, 107, 107, 67, 75, 75, 11, 25, 68, -16, -13, 11, -63, -43, -43, -107, 124, -99, -112, -112, 64, 0, 10, 14, -78, 18, 125, -14, 61, 111, 111, 111, -16, -15, 9, -112, -57, 18, -41, -28, -71, -124, -115, -97, -126, 22, -57, -7, -1, 93, 35, -116, 106, -19, 58, 93, 125, 125, -3, 73, -94, -69, 115, -102, 127, -45, -16, 100, 74, -1, -54, 20, 113, 8, -83, 37, -38, -32, -97, 62, 72, 39, 85, -79, 58, 60, -18, -57, -83, -63, 73, 104, 84, 12, 35, -72, -17, 3, 116, -86, 95, 66, -83, 114, 4, 26, 85, 35, -28, -10, 20, 113, 79, -18, -63, 115, 48, 28, -23, 3, -101, 103, 39, -60, 78, -58, -15, -50, 120, -112, -12, -16, -32, 61, 125, -6, -12, -25, 11, 126, -10, 8, 54, -27, -60, 97, 107, 77, 120, 122, 122, 78, 125, 94, -50, 127, 3, 43, -26, -43, -116, 32, -8, -59, 123, 64, 71, 96, -87, -79, -87, -28, 106, 56, -85, -46, 67, 71, 120, -59, -124, -79, 52, 37, -4, -51, 86, 66, 79, -98, -5, -115, -100, -78, 123, 53, -53, -74, -85, -75, 114, 70, -111, 119, -126, -125, -125, 123, -120, 96, -120, 97, 98, 95, -95, 66, -104, -8, -50, 1, -52, -57, -80, -128, 66, 108, -29, -110, -17, 62, -73, -116, 35, -101, 116, 106, -62, 21, -47, -105, 105, -125, -95, 98, 119, 12, 22, 59, -29, 121, -98, 3, 6, -119, 117, -70, 53, 65, 31, 15, 67, -108, 112, -57, -98, 19, -123, 62, 18, -88, -68, 32, -128, -18, 36, 3, 60, -14, 92, -121, 68, -45, -107, 35, -33, 56, -121, -40, 40, 3, 116, -114, -47, 67, -19, 0, 29, -12, -3, -103, 33, 99, -73, 2, -62, -26, 75, 32, -77, 103, 57, 54, -87, 46, -101, 32, 23, 103, -1, 5, -95, 90, 68, -55, 46, 67, 79, -84, -93, 42, -110, -48, 87, -109, -98, 78, -55, -49, -90, -58, 80, 47, -90, -4, 91, -121, -17, -50, 13, 12, 20, -98, -101, -40, -22, -54, 101, -8, -15, 84, 85, 16, 125, -38, -126, 24, -34, 37, -116, 23, -6, -62, 24, -38, 37, -124, 94, 109, 33, 116, 40, 11, 33, 69, -126, 23, 38, -84, 76, 49, 127, 5, 50, 127, 87, 59, 35, 61, 58, 15, 43, -13, -101, 123, -116, -11, 117, 8, -25, -5, 47, 103, 23, -25, 89, -104, -50, 38, 116, -18, 84, 75, 62, -77, -25, -26, -4, -76, -83, 104, 127, 3, -22, 43, -5, 21, 89, -50, 89, 75, 28, 13, -74, 20, 83, 36, 103, 66, -117, 47, 91, -6, 31, -87, 41, -62, -58, 78, -63, -67, -111, -107, 12, 114, -76, -107, 101, 22, -1, 3, 104, 49, 63, -40, -45, 82, -19, -80, -125, -34, 57, 21, 25, 105, 39, 5, 9, -47, 99, -28, -49, -19, 127, 72, -54, -13, -77, -87, -101, -86, 30, 15, -41, 61, 44, 30, 111, 44, 45, 66, 77, 105, 97, -42, -29, -126, 92, -114, -1, -42, -21, -33, 9, 11, 92, 28, -70, 95, 55, -25, 27, 104, 97, 39, 101, 47, 117, 64, 17, -78, -2, 106, -48, 13, -73, -124, -2, 53, 107, 72, -72, 43, -128, -37, 68, 0, 92, -122, -4, 16, -74, -105, -60, 54, 95, 13, 104, -100, -43, -121, 110, -88, 57, 20, -113, -17, -104, -28, -75, 20, 117, -27, 50, 23, -124, -84, -53, -10, -12, -17, 66, -56, 53, -91, -91, -83, -49, -103, 99, -89, -9, 14, 40, -37, 40, -68, -108, -41, -107, -68, 43, -93, 44, -22, -77, 85, 65, -60, 100, -85, -126, -80, -103, -78, -11, -74, 94, -83, -3, -86, -80, 15, -79, -126, 75, -72, 3, 28, 47, -39, -64, -10, -100, 5, 20, 119, -53, 62, 87, 80, -111, -40, 74, -6, 5, -39, -90, 119, -128, 70, -61, -26, 120, 50, 1, 46, -12, -119, 62, -117, -87, -5, -123, 81, -13, 3, 23, 63, 17, 125, -119, 25, 127, 103, 78, 57, 44, 72, -69, -24, -86, -101, 123, -35, -3, 114, 81, -92, 107, 126, -47, 13, -89, -110, -4, 107, -82, -73, -18, -121, 58, 105, -1, 113, -36, 65, 123, 45, -18, -109, 7, 119, -12, 70, 4, -37, 100, 56, -102, -55, -59, 126, 13, -98, -72, 127, -21, 120, 101, -15, 125, 60, 109, -82, 34, -61, -118, -110, 20, 27, -78, -26, -59, 89, 34, -23, -70, 37, 14, 58, -85, -2, 52, 112, -88, -84, 120, 32, 83, -104, 19, 55, 89, -112, 19, -117, -4, -68, 120, 100, 101, -35, -50, 79, 78, -70, 56, -17, 31, -43, 42, 18, -26, -107, -118, -33, -60, -2, 37, 65, 82, 12, -7, 57, 25, 40, 47, -56, 65, -34, -67, -92, 67, -45, 2, -122, -44, 36, -18, -4, -84, -76, -122, -58, -38, 106, 60, -21, 106, 71, 77, -27, 35, -92, -58, -35, 106, -8, 55, -128, -48, -47, 79, 63, -89, 55, -47, -106, -31, -123, -98, -62, -109, -88, -71, -29, -128, 7, 65, -102, -10, 127, 9, 45, -50, -19, -12, -87, 77, 114, 71, -31, 69, 61, -92, -97, -42, 60, -1, 95, 0, 22, 27, -119, -52, -15, 71, -94, -94, -94, 32, -78, 24, 64, 4, 65, 64, 90, 122, 43, -120, 96, -123, 95, -6, 110, 45, 90, -76, -120, -97, -48, -19, 33, -63, -2, -110, -15, 49, -105, -34, -27, 103, -58, -114, 23, 62, -120, 29, -49, -71, 31, 53, 126, 47, -31, -54, -69, -126, -52, 91, -88, 44, -69, -9, -82, -6, 81, -58, 120, -51, -93, -84, -15, -57, 37, 105, -29, -87, 9, 55, -34, 93, 14, 9, 16, 7, 48, 107, 74, 103, -78, 77, 44, -86, 123, 41, 22, 45, 6, 19, 23, 15, -88, -42, -77, 96, -55, -14, 85, -32, 23, 22, -123, -108, -68, 50, 54, -14, -16, 67, 64, 66, 18, -78, -84, -52, 113, -94, -12, -21, -2, 114, -33, 74, -67, -108, 98, 25, 31, -13, -102, -35, -110, 27, 87, -60, 73, -80, 44, 31, 50, 18, -89, 123, -89, -63, 71, -11, 66, -126, -103, 50, -119, -99, 118, 5, 121, 15, -54, -66, 126, -123, -106, -124, 0, 75, -34, -62, -71, -77, 102, -12, -33, -103, -124, 104, -90, -60, -73, -122, 64, 91, 95, 29, 14, 23, 117, 33, 108, -56, -103, -74, 86, 106, -51, 127, 44, -69, 67, 127, -53, 44, -97, 59, -89, -7, 80, -109, -95, -115, -62, 104, 21, 12, -107, 106, 98, -96, -58, 28, 12, 27, 68, -79, -118, 86, 4, -107, 105, 42, 56, -21, 58, -1, -121, 107, 118, -72, 26, -52, -15, 122, -100, -84, 0, 65, 65, 126, 80, -45, 110, -60, 112, -75, 1, -95, -122, -96, -90, -37, 72, -36, -29, -61, -29, -92, -19, 112, 51, -104, 115, 116, 6, 104, -79, -110, -113, -125, -3, -12, -51, 35, 7, 80, -107, -97, -115, -100, -84, 52, -8, 30, -10, 64, 104, -48, 9, 92, 62, 119, 6, -46, 91, -60, -66, 89, -105, -73, 74, 74, -48, 92, 60, 123, -6, 75, -27, -61, 66, -44, 87, -108, 33, 51, -11, 46, -44, 85, 20, 57, -65, -42, 27, 49, -91, 95, 125, -34, -120, 78, 34, -38, 85, -20, 97, 115, -68, 35, 82, -3, -28, 51, -90, -11, 43, 27, -45, 111, -82, -118, -34, 51, 60, -34, -103, -120, -47, -38, 48, -36, -13, -33, 118, -3, -89, -31, -110, -87, -104, 2, -65, -119, -24, 94, -27, -99, -62, 58, -78, -38, 124, -3, -42, -86, -101, 112, 76, -121, 15, 86, -30, -52, 21, 4, -96, -48, 119, 85, -31, 115, -76, 20, 99, -18, -35, 43, -61, 94, 109, 46, -52, 88, 97, 37, -50, -28, -13, -5, -36, -91, 75, 22, 13, 88, -20, 54, -122, -83, -115, 13, 82, -110, -110, 65, 4, -31, -30, -39, -77, 103, 24, 30, 30, -58, -85, -105, -81, -16, 114, -28, 37, 6, 7, 7, -55, -11, 44, -85, -85, -86, -111, 116, 55, 17, 68, 86, 16, 49, -34, 18, -101, -71, 89, 71, 72, -45, 73, -58, -103, 101, 73, 93, 89, 107, -47, -109, -51, -117, -25, 101, -37, -47, -101, 43, -114, -98, 124, 81, -116, 20, 27, -30, 69, -47, 46, 116, 103, -13, 79, -35, 35, -98, 41, 16, 99, 54, 99, 106, 108, 102, -48, -78, -5, 51, 58, -74, -83, 24, 111, 84, 7, -14, 96, 34, 75, 28, -97, 59, 108, -16, -87, -35, 5, 24, 12, 2, 94, 94, -64, 68, -99, -41, -40, -13, -3, -101, -60, -89, -58, 89, -122, 27, 30, -41, 12, 85, -126, -6, 85, 37, 72, -6, 9, -122, 76, -5, 11, 44, 72, -102, -85, -22, -63, -108, 23, -106, -29, -122, -77, -9, -20, 17, -104, -68, 7, 10, -5, -41, 86, -81, -39, 70, -94, 16, -74, -99, 51, 87, -57, -121, 121, 80, -43, -115, 121, 82, 116, -9, -30, -22, 53, 50, -92, 16, 2, 88, 72, -87, 30, 100, 72, 80, 116, -93, 105, -26, 51, -101, -9, 77, 86, 70, 9, 31, 77, 114, -67, 18, 27, 1, 34, 56, 81, 43, -53, -16, 85, -37, -84, 20, -47, 115, -46, -123, 0, 23, -65, -85, 51, -7, -70, -43, 114, 59, -15, -100, 17, 45, -58, -46, -24, 116, 51, -64, 83, 15, 99, -44, 40, 11, -57, 76, 75, 71, 103, 47, 93, -93, -57, -83, -90, 107, -94, -75, -29, 105, -8, -30, 75, 40, -96, -52, -63, 19, -47, 50, -44, -88, 61, 70, -77, 115, 13, 58, -100, -22, 16, 40, -20, -97, -24, 34, 97, -25, -67, -117, 95, 67, 127, -34, -20, -71, 115, -2, -46, 105, 28, -27, 123, -87, 60, -1, 56, -102, -86, 47, -93, -67, -23, 26, -38, -101, -61, -47, -34, 118, 3, 29, -19, -124, 18, 109, 91, 115, 24, -102, -22, -50, -93, -90, -30, 52, -86, -53, 3, 80, -112, -23, -119, 51, -57, 13, 31, 56, 88, 43, 126, -77, -40, 88, 28, -89, -108, -14, -114, 92, -115, 27, 5, -12, -56, -18, 91, -125, -80, -46, 101, 120, 82, 42, -127, -79, -25, 110, -8, 56, 118, 12, 24, 119, 3, 38, 28, -128, 49, 13, 96, 84, 10, -97, 59, 24, -48, -103, 76, 57, -104, 125, -22, 55, -38, -23, -95, -59, -66, -74, -4, 56, 123, 116, 55, 6, -31, 3, 1, 45, -34, -68, 76, 69, 103, -29, -27, 95, -2, -61, -80, -3, 24, -67, -79, -28, 30, -58, 58, 94, 29, -122, -10, -83, -50, -36, -97, -27, 125, -103, 32, 97, 79, 3, 81, 115, 58, -16, 24, -84, 5, -33, 62, -70, -45, -37, -35, -42, -3, -48, 34, 38, -92, -79, 68, 70, -55, 101, 21, 92, 34, 4, 113, 61, -37, 30, 85, -83, 105, 24, 124, -47, -115, -74, -98, 18, 60, 110, -70, -115, -68, -38, 16, -92, 84, 120, -30, 122, -111, 49, 46, -28, 106, 32, 52, 71, 13, -89, -17, -53, -63, 37, -122, 19, 70, 103, 104, -80, -35, 102, 37, -124, 84, -105, -36, -6, 35, -76, 56, 17, -76, 118, -80, -8, -15, 54, -12, 13, 121, -31, -11, 88, 14, -122, 94, 30, -61, -13, -105, -5, 48, 48, -78, -117, 104, 29, -47, 59, 100, -114, 103, 67, 6, -24, -20, -107, 65, 67, -89, 42, 30, 54, 108, 65, 98, 38, 51, 78, -121, 80, -17, -3, -105, -99, 5, -65, -37, 42, 50, -112, -79, 24, 56, 97, -117, 55, -15, 33, 24, 47, -71, -121, -73, -59, 41, 24, -53, -114, -59, -37, -4, -69, 24, 47, 74, -59, 120, 89, 58, -34, 85, -28, -30, 85, -46, 21, 12, 92, -11, -63, 88, -14, 101, -68, 78, -69, -114, -79, -116, 72, -116, -91, 93, -61, -53, -13, -121, -15, 72, 75, 50, -128, -12, 39, -79, 114, 96, 20, 85, -43, -92, -70, -15, -75, 40, -67, 58, -15, -77, 99, -127, -17, 63, -54, 64, -40, -74, -82, -65, -53, -109, 7, -115, 123, -39, -112, -25, -56, -121, -22, 27, 90, -88, 13, -45, 66, -119, -97, 41, 90, -29, -83, -47, -105, 99, -128, 82, 91, 78, -60, 51, 45, 69, -55, 46, 22, 84, -121, -103, -76, 79, 103, -57, -37, 94, 101, -98, -121, -111, -60, 66, 95, 99, 73, -103, 112, -85, 45, -109, -103, -69, 104, -47, 119, 113, 27, 94, 36, -18, -62, -117, -69, -6, 120, -111, 100, -120, -2, 72, 13, 52, -8, -118, 34, 82, 123, 125, -77, -81, 44, -3, -116, -11, 46, 52, 69, 89, 23, 26, -53, 113, -21, 90, -87, 8, 90, -71, -103, 40, -72, -89, 71, 120, -67, 31, -18, -87, 68, -39, -67, -56, -73, 39, 119, 114, 92, 13, -78, 23, -8, 41, 56, -109, 126, -106, 95, -89, 38, -118, 0, -78, -9, -73, -96, 55, 93, 4, -67, -103, -60, 26, 87, -96, -128, -55, 38, 29, -68, 111, 51, 66, -18, 37, 75, -124, -104, 58, 124, 57, -73, -45, -23, 75, -4, 126, -17, 47, -59, 33, -31, 72, 61, 115, 26, -74, -37, 21, -74, 77, 103, -81, 90, 71, 45, -74, -43, -13, 32, 6, -49, -99, 70, -105, -49, 97, -44, 29, 118, -74, 31, -116, 113, -93, 47, 63, 32, -16, -87, -44, 93, 8, 69, 14, -36, 40, 114, -36, 68, 6, 23, 79, 124, -92, 80, 126, 72, 20, 45, -31, -60, -5, -65, -17, -122, -10, 43, 26, -24, -113, -77, -64, 64, -14, -98, 111, -2, -32, -75, 52, 53, -75, 126, -6, -16, 1, -29, 111, -57, -16, 118, -16, 37, -34, 38, 53, -29, -19, -19, 122, -116, 85, -9, -32, 77, 83, 63, 113, -35, -124, -15, 115, 79, -16, 54, -67, 21, 99, 47, 71, -15, 118, -54, -39, 69, 56, -72, -90, -78, 50, -58, -120, -74, -92, -72, -104, -25, -113, -10, -34, 12, -9, 44, -23, -82, 76, 121, -10, -14, 105, 9, -34, 13, 53, 16, 107, 64, 63, -34, -65, 104, 32, -64, 69, 27, -56, -103, 22, -29, -125, -8, -14, 126, 24, -125, -115, 57, -72, 115, 68, 27, 81, -82, -118, 72, 58, 97, -124, -110, 24, -1, -86, -5, 103, 93, 86, 125, 23, -70, 33, -56, -56, -91, -55, -74, -68, -57, 120, -13, 106, 40, 9, 48, 66, -109, 107, 37, -76, 56, -105, 67, -98, 126, 54, -44, -41, 47, -125, 44, 45, -47, 114, -50, -122, -22, -58, 57, 32, 50, 47, -96, -61, 65, 9, -3, 77, -108, -48, -30, -91, -62, 54, 1, -42, 90, -79, -75, -1, 55, 26, 59, -56, -116, -101, -4, 59, 30, 98, -61, 111, -107, 119, 99, 31, 106, 82, 124, 81, 17, 127, 8, 21, -87, 126, 120, 20, 119, 24, 5, 17, 78, -56, -65, 102, 15, 127, 7, 53, 20, -36, 9, 64, 99, -50, 121, 84, 103, 6, 33, -6, -92, 29, -78, -81, -70, -93, -111, 0, 27, -47, 126, -38, 15, -2, -107, 109, 49, -21, -21, -9, -40, -37, 96, 67, -68, -121, -58, -16, 109, -69, 45, -120, 118, -111, -61, 94, 73, 90, 28, 84, -36, -128, 44, 63, 117, -124, -86, -82, 70, -52, 57, 31, -108, -41, -75, 33, 33, 41, -23, 13, 81, 116, -20, 47, -41, 25, -62, 9, -60, -105, -109, -109, 115, -83, -86, -94, 42, -71, -77, -10, -23, -45, -110, -76, -110, -45, 100, 24, -23, 86, 127, 111, -30, 34, 48, 121, 7, 4, 92, 36, 52, 29, 120, -99, -4, 118, 36, -57, -79, 72, -11, -81, -20, 37, -5, -87, -57, 76, 100, 28, 71, 10, -105, 22, 82, -84, 78, -96, -3, -27, 25, -8, -108, -24, 65, 34, -52, 18, -5, 10, -72, -15, 36, -58, 8, 89, 91, 44, 49, 124, 108, 54, -18, 93, -39, 7, -109, -117, -83, -40, -88, -90, -25, 69, -6, 65, -15, -10, -14, -30, 116, -111, -92, 121, 17, 34, -73, 12, -103, -5, -27, -48, 116, -13, 8, -70, -46, 47, -95, -89, 36, 9, -61, 13, 101, 8, 116, 54, 123, -27, -17, -25, -65, -23, 47, -93, -66, 4, 73, -4, 55, 118, -52, 70, -107, -13, 60, -76, 120, 83, -94, -15, -44, 122, 84, -97, -38, -120, -121, -57, 56, -16, -24, 28, 39, 94, 20, -80, -93, -25, -82, 36, 1, -36, -8, 48, -39, -96, 9, -76, 57, -29, 83, -107, 46, -102, 34, -40, -31, 103, 76, 51, 99, -70, -86, 6, 51, -37, -80, -19, 114, 58, -72, 81, 80, -29, -56, -100, -43, -16, -99, 79, 5, -1, 5, 84, -28, -10, -16, -118, -11, 112, 91, 74, 3, -5, 37, -21, -96, -78, -122, -18, -51, -33, 22, 103, -56, -109, 126, -93, 124, -113, 17, -57, 19, -123, 112, -25, -74, 58, -70, 3, -72, -16, -30, -126, 16, 70, 46, -117, -32, -39, 37, 25, 116, -123, 72, 99, -24, 42, 47, -58, 2, -105, -95, -33, 110, -51, 79, 71, -29, -122, 69, -59, -24, 59, 29, -14, 74, -118, 45, -87, -16, -51, 120, 3, -85, -38, -73, 31, 125, 94, -66, -101, 44, -87, 107, 108, -52, -42, -9, 60, -3, 89, -6, -24, 13, 112, 31, 12, -125, -88, -91, -61, -60, 55, -111, -20, 62, 107, -5, -86, 110, -80, -62, -53, 122, 61, 52, 54, 47, -125, 6, -13, 98, -40, -13, -82, -58, 25, 121, 38, 68, -19, -38, -44, 26, 103, -78, -39, 40, -34, -104, 87, -20, -74, 1, 111, -31, 121, -107, 13, -40, 47, 68, 13, 109, -106, 37, 80, -27, 94, 10, 55, 99, 58, -108, 94, 101, 69, -7, 9, -102, -63, -17, 32, -95, -7, -70, 94, -117, 32, 81, -88, -72, 111, 120, 103, 122, -103, 27, -90, 17, -36, -112, -79, 97, -122, -27, 89, 81, 56, 70, 74, -62, -16, 24, 63, -28, 109, -40, -80, 73, -115, 14, 84, 2, -117, 71, 73, 75, 72, 87, -56, -11, 28, -66, 21, 3, -62, -15, -3, -103, -51, -29, 46, -52, -114, 71, -127, -97, -121, 29, -8, -44, -127, 41, -119, -66, 116, 2, 94, -18, 54, -72, 122, 88, 29, -43, -87, -42, -80, -67, -33, 11, -21, 123, -67, -80, 76, -23, -127, 89, -46, 51, 24, 39, 116, 65, 47, -10, 41, -90, -26, 18, 54, -90, -123, 22, 20, 11, 22, -16, 16, -87, -67, 63, 21, -7, -73, 122, -31, 60, 14, 121, -90, 37, 119, -2, 110, -36, 101, -13, 93, 54, -11, 49, 17, 24, 30, 26, -58, 100, 90, 28, -102, 115, -77, 112, 37, 60, -4, 111, 15, 30, 106, 107, -7, -33, 104, -70, 92, -121, -39, -111, 19, 72, 125, -10, 10, 9, -19, -67, 40, -3, 0, 100, 14, 127, 34, -6, 111, 112, 42, -83, 21, -53, -8, 92, 7, -120, -40, -96, 111, -10, -115, -39, 115, 102, -79, 62, -30, -89, 28, 125, 48, 103, 22, -5, 76, -74, -71, -72, 55, 47, -35, -60, -61, -49, -57, -61, 43, -96, -80, -103, 79, 72, -101, 80, 125, 78, 46, -98, 83, 68, 107, -54, -57, 47, -84, -57, -69, 89, 80, -109, 120, 38, 75, -116, -31, 38, -58, -50, -99, 62, -22, 49, -101, -101, -120, 116, -101, -38, -68, -109, 55, -11, -3, -3, -3, -28, -115, -3, -21, -47, 81, 50, -64, 120, 63, 73, -64, -21, -9, -17, -55, -80, -30, -27, -56, 8, -120, -79, 100, 88, 17, 25, 25, 57, 85, -117, 2, 1, 1, 1, 32, 10, 49, -1, 48, -76, -56, -13, -15, 113, -113, 118, 112, -128, 50, 19, -109, -12, -61, -94, -94, -78, -48, -32, -32, -49, 28, -84, -84, 108, 57, -34, -34, -90, 9, -5, -10, 17, -32, 121, -61, -116, -21, -105, -12, -70, 117, 31, 90, -77, -78, -16, 9, -104, 2, 87, -33, 40, -111, 125, -125, -105, -109, -109, 72, -36, -66, 29, 79, 86, -84, 32, -125, 11, 21, 70, -58, 105, -95, 69, 119, 119, 55, -7, -3, 18, 32, -126, 12, 36, 8, 7, 60, -7, 58, 57, 57, 25, -20, -20, 28, 100, 37, -6, -28, 123, 126, 126, 126, -40, -68, -103, -97, 60, -106, -72, 38, -49, -3, 81, 104, 17, -94, -76, -118, 39, -55, 122, -61, -3, -52, 61, 76, -43, 1, -37, 86, 28, 96, -92, -95, -78, -45, -47, -43, -5, -76, 110, 29, -83, -63, -41, -13, -127, -89, 57, 67, -90, -99, -14, -61, -87, 62, 17, 49, -7, 100, 74, 103, -38, 106, 18, 69, 55, 71, -120, -17, 119, 55, -47, -1, 105, 71, -83, 108, -12, -93, -109, 118, 85, 67, 56, -43, 61, -127, -35, -115, -93, 48, -88, 123, -123, -109, 61, -17, 17, 62, -12, 25, 97, -125, -97, 112, -70, 119, 18, -122, -60, 61, -2, -112, 46, -48, 31, 28, -128, -64, -103, 6, 112, 30, -115, -11, -103, -15, -67, -123, -124, -36, 35, -22, -111, -68, 37, -22, -112, -112, -65, 55, -123, -123, -123, -16, -9, -9, 31, 35, -18, 77, -20, -37, 99, 121, -54, 86, 108, -127, -26, 52, -64, -126, -70, 101, 20, 69, -81, 38, -127, -98, -73, -128, 58, -1, -14, 6, -93, -83, -117, -13, -126, -100, -26, 30, -72, 125, 98, -74, -98, -125, -6, -62, 9, 43, 89, 42, -40, -85, -80, 98, -89, 52, -5, 39, 14, 3, -3, -10, -51, -122, -58, -51, 38, -74, -42, -29, -100, 102, 59, 91, -71, -9, 91, 62, 55, -39, 74, 91, 124, 88, -105, -11, -119, -9, 46, -10, 79, -74, 10, 116, 85, -54, -101, -105, 26, 73, 108, 92, -72, 90, -126, 117, -15, 55, -121, -30, -12, 35, 92, -68, -107, 23, 101, 38, -98, -35, 55, -61, 96, -111, 43, 94, 60, -15, -62, -85, 71, -98, -24, 47, 113, 70, 71, -90, 17, -54, -50, 42, 97, -88, -28, 60, 114, -4, -107, -112, -30, -52, -119, -42, -72, -99, 104, 8, 102, -59, 19, 79, 58, -60, 26, 81, 78, 124, -29, -48, 86, -91, 28, 81, 60, -72, 26, -126, -26, 20, 48, 58, -54, 12, -69, 11, -100, -112, -80, 92, 6, 101, -9, 85, -112, 113, 92, 14, 122, 17, -118, 23, -28, 125, -5, 98, -46, -67, 41, -3, -87, -102, -114, -95, -98, 104, -82, -55, 67, 91, 125, 33, 26, -85, 114, -48, -37, -15, 24, -35, -83, 15, -47, 80, -103, 61, 117, -113, -36, -122, -97, 63, -124, 31, -79, 101, -50, -54, -88, 115, 87, -116, 27, -67, 106, -126, 120, 77, -128, -118, -41, 86, -124, 58, -120, -32, -11, 62, 81, -94, 37, -44, 82, 24, -93, 4, -60, 104, 81, 20, 64, 32, 31, -5, 71, 21, 38, -6, 13, -45, 2, 121, 83, -93, 21, -10, -26, -58, -106, -10, -26, 38, -95, 7, -9, 88, 23, 94, -37, -17, -116, 27, -5, -9, 61, 53, -45, -47, 32, 59, 56, 28, -52, 77, -116, 14, -18, -77, -49, -15, 63, -24, -2, -23, -40, -111, -125, -16, 116, 117, -22, -76, 51, 53, -68, 110, 101, -72, 107, -38, 125, -12, -48, 64, -65, 81, 71, 83, 99, 126, 83, 85, -27, 96, -15, -3, -44, 107, -11, 121, 57, 53, 77, -39, -39, -88, -51, -53, 75, -6, 41, 103, -12, 81, 99, -99, -37, -34, 122, -57, 14, 72, -82, -114, -11, 86, -37, -16, -22, -92, -22, -6, -119, 43, -58, -36, 56, -91, 66, -33, 112, 64, 108, -103, -49, 65, 81, 74, 83, 15, 17, -54, -97, -82, 27, 38, -72, -119, 119, -75, 4, 63, 127, -71, -68, -76, -60, 103, 21, 5, -23, 88, 45, 37, 105, -75, 127, 0, 45, -26, 24, 104, 105, 68, 41, 74, -119, 67, 90, -120, -1, -117, -76, -80, 96, -87, -86, -68, -84, 28, -23, 127, 64, 8, 48, 33, -43, 92, 85, -47, -45, 86, 83, -127, -10, -102, 42, 52, 62, 42, 123, 79, -44, -78, -8, -39, -30, -10, -77, 110, 94, 12, 100, 10, 57, 96, -90, 115, -54, 82, -18, 30, -23, 23, -27, -126, -69, 81, 109, -28, 81, -69, -81, -80, 72, 108, -113, -20, 98, 94, 51, -111, 107, -68, -26, -94, 117, -68, 22, -94, 93, 124, -42, 98, -81, -72, 76, 5, 62, 10, -40, 111, -7, -60, -65, 91, 44, 65, -56, 88, -20, -126, -80, -91, 68, -95, -80, -75, -60, -104, -44, -63, -19, 48, -68, 110, 11, -91, -109, 59, -63, 69, 64, 13, 73, 71, -71, -62, -17, -126, -10, -68, -12, -57, 85, 29, -74, 67, 106, -85, -128, -55, 119, 65, 59, 70, -14, 86, 59, -36, -44, 63, -22, 123, -19, -128, 67, -88, 21, 14, -33, 116, -125, -45, -27, 61, 112, -70, -76, 7, 70, -66, 59, 97, 114, 66, 31, 38, 94, 59, 27, 73, -1, 80, -44, 45, -4, -3, -99, 79, -34, -122, -74, 109, 64, -61, 116, -49, 83, -50, -20, 19, 42, -117, 116, -82, -84, 79, -14, 64, 123, -90, 23, -70, -77, 125, -48, -11, -64, 19, -99, 25, 7, -48, -104, -24, -116, -30, -56, -125, -15, -73, 3, 92, 23, -111, -41, 115, 31, 29, -1, -76, 27, -106, -88, -56, 60, -128, 123, -41, 108, 123, 12, -44, -8, -56, -25, -51, 123, -111, -63, -71, 83, -64, -94, 36, -21, -10, 20, -76, 32, -125, -118, -94, 36, 43, -28, 39, -40, -30, -84, -81, -6, -32, 73, 63, 115, 49, -46, 12, 18, 21, -26, -15, 29, -84, -85, 122, -100, -71, -72, -68, 36, 121, -76, -67, -19, 33, 58, -38, 43, 48, -48, -33, -126, 103, -35, 117, -72, 123, 55, -12, -22, 15, 5, 61, 20, 36, -52, -50, -49, -117, -53, -81, -83, -55, 15, -2, -26, -67, 10, 110, -110, -55, 87, -112, -4, -100, -86, -85, -114, -10, -74, 38, -76, 52, -44, -95, -16, 65, -6, 100, -54, -99, -37, -102, 95, -9, -58, -103, -9, -123, 18, -93, -81, 71, -106, 23, -27, 127, 122, 62, -48, -121, -25, 125, -35, 104, 109, -86, 71, -51, -109, 71, -120, -113, 12, 47, -102] astore_1 aload_0 ldc literal_1293:"__e7-20.png@8192" aload_1 invokevirtual java.lang.Object put( java.util.Hashtable, java.lang.Object, java.lang.Object ) // pc=3 pop arrayinit [26, 115, -43, 93, -42, -77, 36, -62, 26, -75, -15, 78, 104, 77, -36, -117, -63, -57, 23, 49, 80, 126, 25, -27, -111, 22, 99, -103, 103, 52, -24, 103, -84, -85, 113, 66, 69, -81, 40, -52, -28, 115, -55, 21, -93, -20, -76, 19, 42, 51, 6, 30, -28, 31, 53, -6, -113, -44, 55, 33, -10, 35, -73, -71, -72, -72, -56, 1, 22, 108, 108, 108, 96, 102, 102, 38, -108, -15, 19, 55, 55, -69, 37, 11, 11, -61, 79, -41, -37, 92, -67, 122, -75, -105, -104, -104, -40, 35, 89, 89, -39, 102, 101, 37, -71, -42, -109, -66, 78, -17, -126, 79, -20, 31, 63, -18, 101, 61, 30, 116, 116, -17, -121, -76, 59, 103, 81, -112, 126, 99, -78, -28, 65, -12, 120, 97, -58, -83, -15, -92, -104, 75, 19, 23, -126, -4, -110, 0, -4, 70, -42, 25, -64, -59, 97, 13, -59, -107, -105, -87, 102, 21, -100, -34, -72, 16, -57, 68, -88, -80, 79, -108, 6, -14, 92, 52, -40, 41, -61, -121, -29, 59, 68, 112, 76, 98, 29, -50, 11, 81, 35, -100, 118, -50, 72, -80, -8, 38, -23, 63, -49, -97, 51, -5, -73, 89, 75, 41, -26, 80, 48, -81, -90, 48, 80, -26, 90, -11, -42, 76, -100, 22, 38, -30, -21, 113, -36, 64, 8, 39, 13, 68, -96, 39, -54, 2, -77, 45, -52, -80, -110, 102, -128, 40, -61, -110, 68, 99, 57, -106, 47, -70, -37, 57, 58, -106, 46, -104, 61, 35, 4, -77, 13, -37, -7, 46, -70, -31, 4, -114, 39, -38, -63, 58, 68, 17, 34, -122, 108, 99, 52, 82, 84, -53, -66, -62, -111, 109, 84, -84, -12, 42, -76, 82, -12, 74, 116, -126, 84, -28, -5, 63, 39, 70, -30, 36, -67, -80, -125, 27, -111, 27, -83, -116, 120, -89, -11, -24, 11, 88, -113, -14, 91, -37, -80, -127, 99, 35, 78, 30, -111, 71, 115, -42, 54, -100, -37, 63, -37, -24, 71, -19, -71, -24, -52, -38, -107, 118, -127, 15, -103, -73, 117, 16, 123, 65, 1, -51, -127, -20, 104, 11, 98, 39, -9, 51, 111, 105, 33, -3, -78, 0, -36, 119, -51, 50, -98, 22, 110, -83, 91, 59, -37, 85, 106, 75, 106, -128, -99, 25, -10, -38, 89, 34, -10, -42, 13, 92, -65, 124, 30, -57, -67, 15, -62, -61, -55, 1, 74, -14, 114, -101, -65, -55, -44, -36, -95, 101, -101, -109, -98, -118, -50, -106, 58, -12, 117, -74, 16, -96, -86, 8, 14, 54, 22, 85, -33, -83, -81, -26, -116, -30, 93, 89, 71, 80, 124, -47, 112, 34, 88, 127, -19, -41, -17, 91, -120, 49, -19, -30, 4, 79, 105, -97, -46, 75, -6, -109, 109, 119, 29, -47, -99, 117, 8, 93, -23, -18, 104, -116, -79, 70, 126, -88, 94, -59, 85, 59, 78, 62, -46, 15, 8, -65, -71, 120, -96, -42, 57, 35, 108, -11, 86, 38, 84, 5, 42, -63, -69, -80, 101, -65, 28, 100, -116, 68, -122, -59, -52, 68, 91, 20, 101, -39, -122, -99, 100, 54, 126, -15, -45, -28, -125, -5, 118, 46, 16, -11, -119, -98, -39, 73, -77, 125, 93, -117, 23, 44, -104, 91, -86, -87, -90, -116, -101, 81, 81, 83, -39, 21, -28, 115, -51, -24, -24, 40, -58, -2, 21, 124, -11, -106, 56, -37, -68, 38, -4, 86, 35, 35, 35, -28, 26, -105, -43, 85, 85, -120, -72, 126, 3, 59, 116, 52, -63, 72, -65, -18, -11, -73, -121, -65, 125, -85, 126, -69, 123, -118, -58, -79, -6, 30, 115, -33, -45, 124, 54, 116, 102, 114, -96, -21, 62, 55, -98, 38, -118, -93, -3, -68, 52, -102, -113, -117, -96, -23, -88, 16, 90, 3, 69, -47, 121, 87, 4, 93, 25, 60, -24, -52, -30, -64, -45, 2, 54, 84, -91, 48, -11, -58, 29, 91, 107, 62, 109, 122, -104, -42, 90, -114, 60, 39, -122, -113, 61, 55, 37, -15, 46, 83, 4, 120, -26, -118, -113, -115, -10, -104, -84, -13, -64, -105, -31, 32, 124, -82, -9, 31, -116, -9, -108, 20, 87, -16, -109, 31, 80, 11, 80, -126, -126, -97, -12, -120, -40, -2, -51, 51, 58, 28, -105, 111, 33, 73, -103, -99, 16, -3, -32, 117, 75, 23, 30, -41, -44, 9, -94, -50, -7, -123, 82, -100, -60, 40, 96, 71, -94, 20, 114, 36, -99, 90, 44, 70, 98, 39, 19, -99, 45, 36, 5, -19, -61, 108, 67, 94, -111, 122, 56, 20, -95, 53, -54, 109, 68, -6, 38, -19, -74, -116, -97, 110, -76, 78, -119, 23, 53, -78, 108, -88, -106, 96, 64, -107, 24, 29, 89, -37, -20, -76, -47, -19, -17, -124, 110, -65, 125, 83, -19, 87, 109, -33, -85, 7, -14, -104, 45, 12, 104, -75, -43, 66, -25, 1, 75, -44, -23, -56, -114, 124, 31, 33, -56, -58, 83, -77, 39, -29, -39, -60, -43, 46, -68, -119, 122, -122, -42, 67, 21, -72, -65, 42, 9, -7, 116, 15, -48, 104, -10, 16, 61, -89, -22, -16, -44, -65, 6, -11, 68, 127, -64, -73, 21, 31, 18, -121, -111, -30, 113, -13, -2, -62, -71, 20, 20, -33, 29, 64, -126, -4, 102, -123, 6, -7, -46, 36, -34, -10, 24, -84, 44, 13, 66, 83, -51, 69, -76, 54, 93, 65, 75, -45, 69, -76, -75, 92, 66, 91, 43, -47, 111, -71, -128, -90, -58, -77, 104, 108, 8, 68, 93, -11, 41, 84, -106, -5, -93, 52, -49, 11, -119, -47, -50, -16, 112, -47, -36, -11, 71, 123, 78, 33, -53, 83, 78, -57, -47, 34, -75, -127, 6, -79, -83, -53, 17, -102, 78, -125, -58, 39, -69, 49, 54, 68, 64, -121, 55, 97, -8, -4, -58, 2, 24, 115, 36, -44, 14, 120, 37, 13, -116, 10, -30, 75, 7, 61, -102, 110, -51, -87, 35, 77, 35, 101, -55, 78, 109, 121, -79, 123, -48, 86, 121, 2, -17, 39, 98, 8, 77, 65, 79, -5, -19, -18, -114, -6, -64, -123, -92, 95, 16, 33, 115, 42, 6, 110, 93, -22, -59, -62, -5, 104, 4, -74, -7, 108, 40, 86, 60, -52, 9, 118, 37, 106, -120, -37, -46, 96, -67, -46, 58, 72, -20, -94, -18, 60, -79, -105, -38, -14, -78, -38, -110, -65, -115, 110, -38, 98, -72, -12, -102, 73, 32, 35, -126, 83, 117, -111, 91, 125, 1, 67, -81, 58, -16, 102, 98, 8, -35, 67, -27, 104, 124, -106, -118, -14, -106, -85, 72, -81, -12, -62, -51, 34, 51, 92, -55, -43, -62, 101, 66, -49, 61, 80, -124, 103, -118, 0, 44, 46, -47, 65, -45, -99, 10, -94, 58, -53, -6, -2, 8, 45, 44, 109, 23, -106, -25, 22, 73, -95, -93, -41, 21, -125, 67, 119, -48, 63, 124, 5, 125, -61, -121, -47, 63, -30, -126, -66, 23, -6, 68, -33, 18, 61, 67, 38, -24, 126, -82, 71, -64, 11, 51, 52, 52, 107, -96, -68, -18, -1, -80, 118, 22, 80, 89, 101, -21, -1, 127, 29, 29, 29, 107, 80, 25, 3, -69, 3, 81, 9, 69, 1, -23, 14, 17, -108, -112, -112, -108, 22, 36, -92, -92, -111, 20, 16, -112, 70, 36, 5, 5, 12, 20, 20, 105, -112, -110, 70, 58, 20, 65, -111, 80, 105, 59, -8, -2, -9, -5, -2, 102, 88, -61, 21, -25, 122, -17, -3, -17, -75, -98, -75, 79, -20, -67, 23, 47, -25, -100, 125, -50, 126, 62, 79, -16, -31, -63, -61, 61, 56, -17, 75, -17, -6, -9, -79, 106, 52, -124, 110, 13, 5, 24, 99, 60, -19, 18, 38, -14, -81, 97, -4, 65, 52, -58, 51, 47, 99, 34, 59, 14, 111, 11, -110, -16, -74, 40, -107, 120, 92, -36, -63, 68, 86, 12, 122, 46, -22, 99, 52, -34, 25, 35, -41, 61, 48, 122, -61, 23, -93, -55, -34, 24, -119, 112, 66, -125, -90, 68, -45, -116, -109, -77, -50, -106, 60, 94, -47, 37, 83, -118, 41, 65, -107, -71, 30, 98, -78, 115, 111, 83, -2, -53, 18, -72, 117, 49, 95, -70, 8, -61, 80, -79, -18, 106, 84, 95, -30, -61, 96, -87, 9, 18, -72, 55, -29, -62, -126, -7, 72, 17, -40, -121, -25, -9, -55, -17, 127, -96, -119, -82, 4, 41, 12, -28, -101, -94, 54, 94, -19, -59, -113, -58, -78, -30, 88, -79, 50, 72, -128, -66, -92, 88, 119, -5, 100, -121, 19, 39, -98, -5, 19, 8, 20, 41, -127, -127, 4, 25, -68, 34, -109, -1, -21, 27, 39, -16, 50, -2, 40, 26, -99, 15, 34, 85, 105, -53, 75, 79, -47, -115, 50, -108, -97, 40, 23, 44, -108, 28, 50, -125, -115, -112, 106, 38, -118, 96, -55, 109, 8, 60, -66, -89, -54, -102, 119, -77, -109, -31, -31, -11, 76, 63, -91, -76, -71, 124, -64, -95, -29, 38, 31, -6, 115, -8, 9, -96, 21, -62, -121, -6, 35, -8, -38, 33, -113, -110, 120, 121, -8, -21, -53, 79, 90, -15, -87, 78, 94, 60, -95, 55, 25, -87, 109, 60, -103, 104, 108, 53, -7, -32, -68, 63, -54, -81, -60, -61, -57, 80, 55, 117, -58, -92, -42, 106, 39, -60, 26, -43, -108, -16, -62, -51, 17, -19, 103, -12, -16, -52, -34, 60, -3, -13, -19, -53, 11, 30, -39, -20, 111, 47, 52, 97, 68, -119, 57, 51, 74, 76, -9, 18, -39, -121, 2, -99, 109, 40, 59, -53, 70, -96, -59, 73, 60, -119, 81, -64, -109, -85, -102, -24, -65, -91, -113, -82, 104, -27, -127, 41, 107, -30, 43, 87, -40, -97, 61, 125, -38, -12, -111, 26, 2, 100, 108, 20, -29, 37, 93, -104, 72, 108, -64, 88, 87, 63, 70, -33, -114, 98, 116, 98, 4, 35, 68, 113, 55, -111, -36, -120, -119, -88, 58, -116, 117, 15, -110, -25, 122, 24, 19, 4, 110, 124, -6, -16, 30, -125, -3, -3, 19, 36, -73, -59, -76, 120, -94, 89, 33, 103, 13, 58, 75, 19, 49, -12, -84, 28, 31, -121, 58, 8, -80, 104, -63, 71, -14, -100, 124, 120, -35, -126, 79, 67, -19, -28, 88, 39, -39, 110, -61, -57, -31, 46, -68, 104, 41, 70, -13, -61, 100, -44, 102, 70, -94, -83, 52, 21, 21, 105, -31, 119, -1, 62, 22, -41, -86, -39, 116, -30, 59, -106, -74, 107, 30, 88, -121, 19, 76, 84, 80, 49, 7, 66, -21, -25, -126, -117, -31, 87, 28, 92, -15, 11, -72, -41, 44, -60, -31, 53, 100, -101, 97, 54, -10, -1, 65, 1, -33, -102, -39, 16, -33, -74, 24, -78, -37, 23, 66, -25, -32, 6, 2, 51, -106, -127, 120, 105, 36, -4, 53, -98, -65, 38, -45, -82, 91, 94, -14, 111, -77, -126, 12, 96, 45, -61, 3, 29, -95, 125, 40, -116, 52, 64, 113, -84, 9, -14, 46, -97, -58, -61, 24, 83, 20, 19, 120, 81, 123, -57, 19, 29, -123, 97, 120, 120, -35, 1, -54, 92, 76, 48, -28, 103, 69, -18, -107, -77, 40, 78, -76, -2, 18, 105, 114, 104, 74, 9, 31, -90, 45, -76, -29, -86, -87, -28, -101, 96, 57, 86, 92, 86, 62, 0, 15, 113, 38, 4, -88, 29, 66, -112, -38, 65, 120, 8, -84, -127, -99, 36, 35, -79, 78, 78, 69, -37, -77, 94, -28, -105, -107, -61, -60, -38, 38, -38, -35, -37, -5, -121, 31, -103, -6, -6, -6, 11, 11, -14, 11, -118, -65, 125, -99, -20, -4, 52, -16, -71, 125, -80, 106, -80, 47, -60, -4, -6, -51, 50, -5, 1, 116, -6, -115, 97, 44, -9, 11, -34, -26, 127, -61, -89, 114, -32, 75, 30, -16, 33, -3, 27, -46, -108, 31, -84, -8, -47, 120, 37, 65, -110, 109, 111, -94, -36, 113, 101, -89, 62, 58, 11, 124, 17, -38, -96, -121, -11, -42, 73, -32, -45, -70, 9, -117, 112, 57, -28, 5, 31, 67, 33, -65, 38, -122, 124, 41, 72, -16, -73, -124, 86, 84, 39, 81, -48, 28, -117, -7, -73, 10, -70, -96, -96, -115, -39, 89, -39, -15, -71, 89, -103, 31, 83, -75, -9, -62, -3, -32, 66, -72, 114, 44, -128, 45, -5, 124, 88, 114, -81, -128, -75, -64, 122, 92, -44, 16, 67, -74, -65, 14, 50, -46, 110, 124, 126, -112, -103, -103, 18, -32, -17, -65, 105, 70, -17, 38, -114, 89, 54, -79, 18, -77, -112, -89, -7, 11, 26, 109, -23, -47, -21, -73, 30, -61, -111, -101, -16, -27, -6, 102, -32, -127, 52, -7, -83, 39, -128, -50, 64, -68, -85, -113, -62, -105, 58, 30, -32, -103, 38, 64, -96, -59, -85, 116, 54, -124, 26, -83, 75, -3, 113, 76, 124, -90, 81, -35, 21, -101, 112, 126, -23, 122, 92, 90, -72, 26, -95, -117, -42, 76, 73, -56, -102, 93, 112, 101, -40, 6, -35, 63, 54, 66, -104, -98, -31, -53, -65, 77, -76, 86, 117, -22, -122, -61, 3, -55, -74, -90, -128, -83, -88, 112, -34, -119, 78, -41, 61, 120, -22, -78, -105, 38, 117, 30, -68, 104, 14, -32, -61, -45, 43, -100, -24, -113, -36, -127, -63, 51, -53, -49, -4, 55, -64, -30, 70, 73, -115, 103, -26, 56, 78, 53, 126, -128, -61, -64, -25, -55, -56, 79, 95, -65, -107, -115, -65, 123, -105, -38, -43, -13, -68, -12, -104, -71, -13, -41, -83, 42, 86, -109, -85, 100, -50, 76, -13, 70, 50, 17, -90, 123, 32, -68, 113, -31, -112, -58, 14, 58, -72, 10, 108, 24, -70, -94, -52, -6, -30, -26, -87, -125, -55, 105, -6, 28, 39, 62, -40, 51, 40, -1, -43, 46, 77, -97, 115, 22, 17, -63, 91, -70, -121, 66, 19, 84, 89, -38, 61, 68, 54, 13, -87, -18, 92, 58, 36, -76, 126, -63, -112, 62, -33, -17, 37, -108, 127, 41, 92, 90, -85, 42, -83, -94, 69, -96, 19, -53, 2, -19, -92, 125, -40, -95, 64, -113, -59, -116, -117, 59, -106, -18, 95, -108, 60, 103, -43, 44, 61, 98, 75, 78, 125, 6, -90, 43, -58, -65, 15, 109, -92, 66, 62, 22, -65, -79, 57, -89, -63, -56, 39, 22, -97, 70, -98, 32, -13, 110, 18, 38, 62, 77, -30, -43, -8, 103, -100, 49, 53, 69, -108, -35, 81, -44, 102, 24, -63, 42, -81, 31, -26, 89, -49, 97, -100, -47, 5, -29, 7, -67, 48, -52, -24, 38, 0, -93, 7, -44, -66, 100, -116, -17, -96, 5, 61, -61, 54, -119, -11, 59, -71, -93, -107, -76, -52, -93, -26, -51, 95, -4, -45, -34, 22, -13, 127, -99, -77, 84, 122, -41, 31, 55, -1, 17, 88, -88, -54, -24, -76, -6, 56, 78, -66, 110, 109, -62, -40, -40, 56, 38, -77, 110, -29, 67, 118, 26, 26, 26, 27, 17, 30, 17, -31, -8, -113, 30, 67, 27, -105, 38, -18, -110, 112, -59, -59, -20, 39, -56, 27, -99, 68, -18, -16, 71, 100, -65, 26, 67, 106, 123, 31, -18, 60, 31, -57, -71, -8, 34, 108, 22, 112, -23, 36, 77, -89, 41, 16, -17, -49, -103, -75, -81, -100, 105, -31, 104, -58, 108, -54, -116, -95, -28, 8, -112, 80, 63, 120, -120, -85, -105, -125, -13, 48, -72, 121, -8, -63, 47, 32, 12, 65, 33, 81, 8, -117, -120, 67, 72, 88, 28, 2, -126, -94, -32, -25, 23, 2, -57, 97, 1, -80, 29, -28, -61, -63, -125, 92, 117, 4, 94, 124, -73, 96, 78, 79, 79, 103, 34, 32, 98, -110, 124, -72, 79, 37, -93, -89, 42, -25, -69, -69, -69, -47, -37, -37, -117, 55, -81, 95, -45, 60, 48, -88, -25, 9, -32, -64, -35, -12, 116, -102, -126, -38, -60, -60, 4, 36, 6, 50, 44, 44, 44, 112, -7, -14, -27, 25, -107, 114, 100, 49, -67, -124, 44, -124, -11, -92, -91, -91, 99, -7, -7, -7, 3, -104, -103, -103, 5, 107, 91, 91, 75, 110, 102, 100, 64, 75, 87, -9, 78, 99, 83, -45, 87, -94, -28, -122, -72, -72, -8, -91, -38, -74, -74, -100, -76, -52, 76, -56, 41, 41, 37, -2, -48, -69, -114, 120, 90, -76, 103, 101, -31, -45, -28, 36, 117, -15, 49, 77, -88, 11, -111, -95, 15, 31, 104, -48, -94, -126, -114, 14, 53, -85, 86, 65, 98, -61, -122, 25, -95, -59, 43, -14, -101, 6, 95, -67, -94, -127, 8, 22, -106, -3, 32, 86, -4, -76, -3, -84, -20, -20, 41, 104, 65, -74, 105, -57, -68, 8, -108, 97, 102, 97, -91, -75, 37, -5, -44, -66, 63, 5, 45, 124, -40, 40, -53, 115, -52, -104, -5, -38, 124, 57, -112, 127, 110, 47, 92, 13, 100, -96, -83, -93, 15, 113, 49, 62, -3, 105, -41, 89, 79, -12, 118, -32, 25, 77, -35, -1, 75, -94, -66, -66, 122, 38, 89, -79, 98, 69, 27, -119, -13, -4, -115, -60, -82, -2, 70, -2, -25, -115, -44, 99, 63, 35, -45, -66, 83, 83, -21, -38, 12, 26, -121, 96, -47, 57, 1, -21, 39, 19, -80, 125, -6, 22, 106, 77, -93, 80, -88, 30, -128, 124, 117, 63, 78, 18, 96, 97, -47, 52, -127, -51, -50, -67, 88, 99, -14, 2, 66, 49, 21, -40, 27, 120, -81, -115, 50, 67, 33, -41, 126, 81, 66, 66, -62, 87, 23, 23, -105, -5, -44, -16, 14, -3, -3, -3, 40, 42, 42, -126, 46, -71, -90, -90, -90, -90, 49, 86, -118, 7, 38, 60, -124, 103, 125, 81, 99, -95, -52, -1, 27, -80, -32, -24, -103, 64, -1, -64, 123, -48, -128, -59, -60, 103, 64, 114, -49, 66, -106, -61, -37, -26, 47, -7, 51, 25, -30, 124, -111, -35, 11, -35, 78, 112, 45, -125, -83, -20, 122, -88, -13, -83, 4, -89, -113, 45, -40, -62, 60, -64, -72, 123, 55, -72, -29, -125, -63, 117, 35, 12, 74, 39, -39, 113, -51, -102, 23, -9, -36, 37, 113, -59, -20, 16, 12, -59, -42, -125, 103, -57, 66, 63, -66, -99, 11, -90, 60, 16, -77, 29, -74, -50, 45, -15, -38, -33, -7, -20, -114, 10, -34, -108, -102, -31, 77, -123, 45, -122, 43, 61, 48, -14, -40, 23, -99, -9, 77, 80, 25, -91, -128, 104, -11, -83, -72, 118, -102, 27, -83, -15, -89, 80, -28, -56, -122, 70, 31, 70, 52, 121, 109, 65, -39, -71, 13, -72, 38, -1, 123, -25, -33, 124, 14, -104, 5, 77, -23, -79, 79, -31, 55, 40, -109, 121, 94, -38, 118, 21, 20, 61, -41, 64, -36, 98, 5, -92, 28, -24, -63, -91, -75, 24, -20, 98, 11, -112, 54, -97, -14, -87, 79, -111, 27, 84, -55, -103, 71, 25, 56, 54, 127, -26, -80, 81, -22, 60, 18, -114, -66, 42, -89, 17, -95, 109, 5, 31, 9, 21, -92, -58, 121, 18, 80, 81, 9, 7, 7, 27, -12, 118, 85, 65, -4, -88, 44, -92, -114, -55, -31, 121, 103, 5, -11, 24, -19, -36, -11, 104, 119, 106, 91, 90, 31, 106, 95, 45, 94, -87, 25, -25, 28, -37, -35, 91, -93, 107, 4, -103, -15, 90, -127, 64, 11, 61, 118, -116, -39, 16, 96, -31, -58, -119, 49, 79, 34, -25, -119, 88, -111, 125, 109, 118, 12, 28, -37, 79, -68, 45, -104, -96, -74, 109, -109, -10, 119, -17, 53, 125, 29, 93, 55, 91, -21, 81, 71, 43, 11, -8, -100, 119, 70, -32, 89, 51, 84, -7, -7, 34, -54, -20, 12, 12, 53, -43, -98, -100, 53, -46, -81, -16, 118, 113, 68, 76, 120, 40, -82, -57, -57, -30, 86, -54, 53, -60, 69, 69, 32, -30, -110, 63, -50, -103, -103, 76, -100, 82, 86, 16, -98, -90, 100, -68, 123, -37, -17, 105, 75, 51, -6, -69, -70, -48, -100, -102, -126, 65, 50, -65, 116, 62, -56, -60, 115, 50, -105, 60, 121, 84, 86, 80, 94, -104, 119, -95, -82, -94, -68, -94, -83, -15, 49, -38, -101, 26, -47, 82, 95, -121, -86, -78, -30, -78, -30, -100, 44, -59, 25, -62, 67, 45, 117, 17, 97, -120, 13, 85, -39, -115, 52, 2, 98, 110, -98, 62, -128, 36, 125, 54, 100, -39, 9, 32, -33, 91, 26, -103, -82, 98, 72, 33, -9, 68, -76, -42, 110, 92, -110, -33, -46, 112, 94, 100, 101, -128, 61, 47, -67, 77, -96, -36, -90, -26, 120, 125, 86, 36, 25, 31, -128, -1, -79, 45, 48, 63, -80, 56, -64, -98, -13, 119, 14, -102, -105, 60, 11, -21, 50, 1, 78, -50, 26, 105, 97, 81, -16, 29, 58, 4, 118, 102, 102, 8, 113, -13, -27, -119, -16, 10, -92, 30, 21, 21, 107, 59, 41, -89, -120, -109, -57, -28, 63, -55, 73, 30, 41, 19, -27, -29, 119, 57, 124, -32, -96, 46, 59, 51, -117, 46, 23, -37, 1, 23, 113, 62, 65, 75, -114, -3, 7, -90, 41, 50, -99, 109, -83, 118, 27, -100, 84, 121, -81, 44, 35, 13, 97, -98, -61, 16, -31, -29, 38, -62, -125, -13, 118, 118, -97, -94, -61, -126, 42, 46, 56, 59, -70, -40, -103, -101, -4, 71, 9, -87, 77, 100, -103, 79, -99, 87, -37, -97, -96, -85, 44, 38, 72, -7, -1, 80, 78, 41, 10, -14, -71, -24, 10, 70, 59, -21, 9, -57, 73, -117, -13, -1, -10, -65, -114, 119, 37, 34, 114, -42, -93, -68, 44, -5, -98, -74, 22, -12, 118, 118, 96, 40, 39, 27, 67, 47, 95, -96, -90, -84, -92, -18, -65, 24, -18, -105, -60, 0, 123, -91, 4, 115, -95, -2, 52, -9, -109, -72, -19, 107, -100, 125, 43, 54, 100, -45, 127, -28, -79, 31, -26, -74, -20, -110, -23, -79, -119, 36, 95, -21, 41, -91, -71, -68, -123, -14, 44, 34, -65, 113, 26, 10, -16, 29, -78, 16, 40, 56, 96, -60, 83, -60, -86, -57, 21, 125, -40, 72, -24, 48, -77, 30, -57, -55, -67, 58, -121, -12, -8, 78, 8, 47, -29, 84, -29, 89, 125, 72, -13, 112, 49, -65, -67, 4, 20, 99, 79, -127, -49, 94, 18, -100, -6, -68, -123, -45, -66, 35, -107, -59, 20, -28, -84, -92, -63, -57, 123, 96, -25, 119, 57, 46, 4, 57, -26, -54, 90, 72, 65, -107, -64, 9, -85, -24, 51, -76, -16, 80, -25, -30, -50, -62, 52, -46, 16, -106, 100, 95, 63, 72, 11, 74, -50, 10, 48, -71, 76, -96, -56, 113, -34, -1, 41, 39, -114, -104, -86, -67, -89, -79, -37, 85, -24, 59, 69, 67, 66, -61, 73, 108, -102, 113, -110, -5, 105, -26, -22, 24, -93, -95, -114, -116, 115, 104, -69, 109, -117, -38, 88, 3, -44, -60, -23, -93, -31, -70, 41, 58, -46, -19, -48, 83, -32, -114, -42, -69, -114, -56, 12, -78, -114, 10, 113, 84, 89, -98, 24, -92, -2, -82, 49, -49, 14, -61, -11, -34, -88, -66, 105, 6, 77, 25, -74, -87, -75, 53, 53, 52, 20, 17, 42, -80, -104, -14, -76, 32, 66, -37, 127, -112, 22, -120, -52, 59, 1, -103, 105, 41, 94, 17, 119, 82, -67, 34, -18, -33, -15, -49, 43, -52, -66, -36, -16, -88, 36, 1, -27, 69, 9, 40, -56, -118, 28, 74, 77, 112, -54, -66, 122, -27, 28, -5, -108, -126, -1, 78, -108, 65, 124, -100, -57, -85, -21, -41, 124, -125, 42, 43, -17, 99, 124, 108, 0, 109, -83, -113, 112, -21, 102, -112, -51, -44, 53, -68, 17, -78, -11, -38, 53, 127, -115, -44, -44, 75, 49, -23, 119, 35, -85, 115, -78, -81, 126, 122, -112, 25, -37, 117, -5, 118, -104, -37, -35, 59, -111, 116, 69, -123, 41, -59, -33, 65, 18, -1, 11, 77, 21, 69, -71, -8, -14, -27, 11, 94, -9, -10, -30, 113, 101, 57, -78, -45, 111, -95, -84, 32, 7, 117, 100, -69, -10, 81, 49, -102, -22, -86, -16, -78, -89, 7, 111, 71, 70, 48, -48, -1, 28, -125, 68, 106, -53, 74, -112, 24, 21, 122, -31, -49, 48, 79, 116, -9, -68, -113, -74, 101, 122, 75, 125, 42, 13, 87, -62, 96, 69, 48, 94, 85, 93, 70, -57, 61, 91, 20, -123, 42, -67, 34, 121, 46, 20, -13, 46, -55, 47, -54, 9, 56, 62, 59, 55, 80, 78, 32, -53, 71, -42, -77, 40, 76, -71, -73, 50, 90, 3, -123, 65, 114, 72, 115, 21, 69, -38, 121, -47, -36, 105, -95, 62, 61, -43, 55, 61, -12, 56, -103, -111, -25, -84, -52, 88, -28, -95, -15, -11, -95, -89, -122, 11, -87, -35, 74, -3, -12, 34, -86, -126, -116, 83, 107, 35, -83, -86, 27, 98, 29, -86, -101, 19, -99, -121, -102, 18, -100, 80, 23, 101, 93, 93, 25, 108, -110, 87, -24, -90, -22, -106, -21, -92, 56, 99, -108, 21, 98, -64, 112, 120, -23, -46, -91, -73, 86, -82, 92, 89, 75, -92, 122, -11, 106, -122, -52, 29, 59, -74, 124, -31, -32, 96, -121, -80, 48, -9, -51, -19, -37, 55, -3, -76, -25, -64, -102, 53, 107, 52, 9, -84, -96, 126, -121, 65, 82, 82, 18, 36, -41, 22, 46, 56, -54, 125, 106, -87, 114, -2, 22, 23, 113, 106, 82, 93, 65, 16, 73, 17, -42, -56, -66, 121, -31, 91, 122, -46, -123, 79, 113, -31, -82, 31, 46, 122, 90, 85, 94, 14, -13, -95, 7, 48, -101, 42, 127, -127, -117, 127, 73, -64, -79, 93, 103, -57, -38, -114, -128, -115, -13, 32, -71, 97, 57, 2, -72, -1, 0, -84, -105, -95, -40, -122, -115, -52, -33, 44, -128, -45, 114, -92, -117, 45, -128, 40, 57, -25, -80, 113, 33, -4, 24, 87, -67, -115, -119, -115, -107, -1, -5, 16, 75, -120, -53, 4, -57, -42, 101, 5, 10, 108, 43, 32, -53, -66, 1, 38, -30, -69, 97, -85, -56, -125, 115, -86, 98, -56, 77, -15, 71, 75, -43, 117, 68, 123, 25, -30, -100, -28, 78, 24, -15, -81, -121, 41, 47, 3, 68, 118, 46, -71, -78, 118, -23, -4, -17, -116, 29, -41, -81, 93, 77, 91, 23, -16, 25, 29, 72, -46, 13, 60, 10, 77, 111, 97, 40, -38, -15, 64, -62, -104, 35, -113, 102, 52, 114, 116, -99, -78, -128, 13, 119, -107, -30, 37, -103, -49, 34, 46, -68, 80, 9, -106, -61, 17, 119, -15, -66, 45, -57, 54, -7, 45, -25, -5, -29, -113, 31, 26, -61, 49, 83, 22, 90, -86, -51, 98, -13, 53, -97, 99, -104, -32, 54, 47, 42, -42, -23, -73, 18, 55, -11, -33, 113, 59, -16, 16, 2, 101, -105, -32, 2, 15, 5, -9, 3, -73, -95, -69, 92, -115, 0, 48, 21, -28, 68, -84, 67, -78, -9, -68, -46, 24, -25, -71, 81, -44, 62, -44, -66, -44, 49, 102, 26, 47, -50, 117, 94, -44, 85, -41, -33, 74, 66, -51, -106, -95, 50, 85, 2, 121, -79, 92, -120, -112, -99, -121, 24, -123, 5, -56, 39, -37, -107, -87, 82, 8, -73, -96, 71, -68, -21, -68, -46, 56, -41, -17, -57, -37, -78, 97, 61, -67, -69, -51, -39, -55, -32, -64, 11, -120, 10, 11, -60, -51, 107, 113, -56, 123, 112, 23, 87, -62, 46, 33, -122, -20, 95, -14, -11, 24, 17, 23, -30, 95, 55, 101, 16, 122, 84, 114, 67, -120, -65, -49, 100, 116, 68, 40, -14, -18, -89, 33, 33, 42, 12, 18, -62, 2, -33, 1, -106, 75, -86, -85, 23, 53, 38, 27, 125, 121, -110, 102, -122, 24, -93, 61, 30, -76, -124, 36, -118, -53, -25, -27, -7, -53, 86, 13, 85, -6, -29, -39, 61, 27, 60, -51, -80, -62, -13, 28, 123, -12, 100, -99, 67, -41, 61, 75, -68, 121, -28, 75, 13, 43, -11, -127, 120, 107, -20, -4, 71, 96, -95, -63, 37, 42, -27, 123, -30, -93, 108, -124, 58, 120, -100, 37, 8, -80, 80, -124, 124, -76, 38, 20, 99, -76, 33, -26, 123, 28, -118, 87, -76, -64, 105, 46, 8, 75, 41, 38, 24, -15, 110, 123, -90, 47, -80, 43, -54, 64, -98, 93, -116, 120, 95, -4, 61, -73, -98, -111, -39, 25, 19, 84, 86, 84, -46, 12, -115, -122, -121, -121, 49, 62, 62, 78, 93, 39, 76, 25, 58, -111, 117, 3, 53, 119, 31, -51, 72, -85, -85, -85, 11, 21, -27, -113, 112, -42, -62, 28, 36, 113, 119, -7, -12, 120, -125, -82, 43, -107, 59, -118, -73, -96, -65, 110, 47, 6, -21, 120, -15, -86, 94, 20, 47, 74, -71, -47, -32, -61, -122, 114, -109, 45, 40, -48, 89, -116, 66, -67, -33, 81, 106, -76, 14, -113, 61, -104, -16, -94, -116, -42, 6, 3, 117, -68, -92, -49, 30, -76, 22, 110, 70, -110, -61, -54, 25, 19, 56, 23, 107, 108, -66, 84, 96, -71, 26, -61, -73, -7, 49, -98, -58, -122, 47, -113, -11, -16, -83, -45, 20, 120, -23, 1, -116, -123, -94, -28, -122, -50, -120, -44, 121, -55, 73, 5, 111, 25, -120, 59, -16, -106, -4, -37, -73, 39, 19, 69, -32, -128, -38, -126, 23, 2, -122, 43, -79, 73, -118, -14, -103, 56, 32, 49, -20, 51, -96, -120, 50, 106, 81, 86, -45, -98, 73, 102, -54, 25, 49, -77, -75, 95, -100, -82, 42, 33, 50, -57, 26, 65, 89, -89, 63, -17, 62, 73, -103, 118, 65, -18, -83, 95, -110, 90, -55, -71, 13, -11, -94, -52, -88, 19, -34, -117, 90, -34, 29, -88, -31, -36, -116, -106, -109, -30, -24, 114, 49, 35, 98, -6, -89, -104, -31, -103, -85, 25, -38, -115, -107, 80, -61, -67, 13, 117, -4, -116, 120, 44, -79, 31, -115, 74, -62, -56, 101, 92, -45, 60, -19, -17, 34, -26, 86, -41, -72, -125, 114, -121, 9, -116, -24, -15, 111, -58, 64, -30, 51, -12, 39, 118, -93, 68, 52, 7, -107, 50, -39, 120, 25, -40, -128, -41, -41, -98, 98, 34, -73, 31, -61, 55, 123, -48, 108, 92, -127, 23, -63, -83, 64, -18, 56, 116, -8, 84, 117, 103, 116, -25, -71, 104, 39, 120, 55, -39, 10, 117, -113, 2, -48, -46, 16, -116, -74, -26, 32, 116, -76, -123, -95, -91, 53, -128, 38, -19, -83, -63, 52, 104, -47, -36, 116, 1, -115, -113, 61, -16, -72, -42, 27, -43, -27, 110, -56, -67, 103, 7, 39, 91, -71, -46, 41, 55, 116, -89, 37, -65, 91, 71, -82, 28, 15, -66, -73, 30, 15, -70, 25, 16, 86, -67, 24, -119, 25, 108, -24, 105, 112, -58, -40, 64, 4, -127, 22, 73, -8, -10, -10, 50, 48, -18, 0, -116, -23, 3, 35, -118, -64, 27, 62, 34, -69, -15, -82, 114, 49, 114, 60, 126, 53, -99, 33, 60, 84, 89, -47, 13, 99, 52, 60, 116, -62, -37, -111, -85, -8, -14, -7, 22, -34, -12, -33, 69, 87, 115, -56, 17, -54, -1, 80, 68, -68, 87, -15, 72, -69, 111, -19, 97, 86, 88, -5, 110, -19, 97, 122, -80, -88, -112, -59, -120, -22, 38, -8, -97, 93, -127, -126, -53, 12, -56, 15, 99, -8, -104, 104, -71, 44, 46, 92, 122, -55, 15, 105, -85, -80, -31, -46, 58, -45, 104, 22, -60, -25, 27, -93, -2, -23, 109, 12, 79, -12, 96, 112, -76, 25, 79, 6, -14, -48, -14, 34, 13, -113, 58, -62, 113, -65, -18, 28, 18, 75, 53, 112, -71, -16, 56, 34, 10, 100, 16, -102, 127, 4, -18, -9, 57, 97, 124, 117, 43, -28, 29, 87, -127, 87, 101, -23, -56, -97, -96, 97, 14, 109, -30, 56, 49, -33, 52, -26, 26, 39, -22, -37, -12, -16, -28, -71, 3, -98, 15, 120, -95, -69, -49, -100, -128, 10, 109, 2, 46, -84, -47, -9, -122, 16, -52, 65, 37, 34, 90, 120, -42, -89, -122, -50, 23, -86, -88, 120, 44, -115, -121, 85, 60, -120, 73, -34, 0, 83, -21, -27, 83, -80, -91, -15, -108, 112, -19, -48, 37, 67, -116, -35, -16, -60, -60, -3, 16, -116, -35, -69, -124, -79, -12, 0, -116, 83, -27, 94, 48, 1, 24, -31, 24, -49, -119, -62, 91, -78, -35, -27, -95, -126, -41, -95, -89, 49, 18, 99, -115, -95, 72, 51, 12, -123, 18, -15, 49, 65, -69, -82, -12, 48, 101, -122, -94, 121, 118, -101, 61, -9, 113, -6, 105, -117, 112, 1, -43, -7, -111, 124, -86, -13, 110, 77, -59, 51, 96, -40, -60, -17, -74, 121, -65, -102, -61, -70, -67, 63, -27, -74, 24, 127, -126, 94, -93, -60, 107, 55, -70, 82, 5, 49, 64, -82, 119, -34, 113, 1, -60, 46, 90, -128, 116, -74, -11, 4, 108, -22, 96, -94, 45, 24, 125, -71, 46, 24, 46, -13, 65, 83, -14, -39, 25, -1, -82, 51, -5, 126, -1, -59, -127, 117, -63, -3, -5, -54, -21, 81, 111, -50, -116, 102, 43, 118, 116, 58, 114, -95, -37, -125, 23, 47, 67, -59, -47, 31, 35, -115, -127, -40, -93, 120, 126, 69, -118, -128, 82, 65, 52, 58, -79, -29, -82, -54, 38, 56, 30, 94, -82, -11, 111, -29, 11, -118, 50, -102, 122, -16, 51, 32, 68, 114, 43, 110, -22, 112, -31, 54, -111, 68, -107, -3, 8, -106, -39, -13, -39, 65, 100, -57, 53, 19, -127, 45, -1, -104, -68, -46, 69, 109, 23, -45, -61, 8, -98, 111, -29, -113, -113, -30, 89, -74, 12, 30, -89, 31, 71, 126, -78, 60, 100, -73, 8, -32, -44, 1, 49, -40, 75, -55, -31, -94, -110, -58, 100, -124, -106, 33, 98, -12, -49, 76, -34, -74, 114, 70, 105, 104, 12, 82, 61, -35, -33, -97, 18, -30, -7, 46, 20, 91, -106, -71, -20, -20, 2, 73, -66, -102, 14, -99, 83, 104, -47, 86, 70, -77, -102, -30, -40, -105, -85, -79, -53, -97, 94, -44, 116, -51, 53, -38, -124, 10, 59, 78, 60, 52, 101, 66, -50, -87, -51, 40, 53, 103, 65, -99, -89, 8, -102, 67, 20, -47, 18, -87, -126, -82, -85, 26, 24, -52, 52, 69, -109, -97, -56, -60, 84, 44, -38, -89, 79, 91, 38, -65, 126, -59, -60, -8, 24, -58, 95, 18, -123, 85, 18, 1, 22, -27, 93, 24, 33, -80, 98, -72, -3, 37, -122, 107, -69, 49, 60, 54, -124, -111, -90, 23, 24, 75, 120, -116, -47, -98, 1, -116, -67, 24, -60, -8, -45, 1, -68, -99, 24, -89, -26, -72, -8, 82, 82, 92, 60, 13, 92, 61, -83, -70, -33, -14, 105, -84, 23, 47, -101, 11, -15, -6, 73, 5, 94, 117, 22, -29, 117, 87, 21, -122, 122, -22, 49, -40, -2, 16, 67, -35, -43, 24, -18, -87, -63, -16, -117, 38, -68, 125, -45, -115, -2, -42, 66, -68, 122, 90, -125, -113, 99, -3, 120, -3, -84, 106, 112, 58, -76, -8, -59, 69, -118, 105, 57, 116, 120, -42, 65, 105, -1, 66, 2, 45, 126, 33, 96, -30, 23, -88, -80, 45, -123, -41, -15, 45, -120, 81, -33, -123, 40, -43, -99, -120, -47, 102, -62, 69, 82, 43, 16, 15, 11, -2, -43, -77, 112, 100, 51, 29, -76, -40, 55, 67, -119, 101, 25, -114, -79, -82, -99, -70, 111, 98, -83, -8, 99, 75, 99, 13, -31, -85, 35, 2, -63, -19, 27, -95, 41, -70, 7, -91, 9, -89, 81, 117, -35, 26, 13, -23, -82, 104, -55, -12, 68, -29, 125, 114, -81, 101, 93, 68, -3, 61, 31, 60, -70, -31, -128, 56, 87, 37, -56, 113, -20, 64, 65, -68, 13, 74, -110, -84, 17, 105, -58, 29, 50, -107, -21, -32, -8, -127, -99, -106, 34, 59, -33, 123, 43, -78, -62, -126, 127, 43, -116, -8, 54, 35, -43, 82, 4, -105, -28, 54, 67, 109, -1, 74, 20, 60, -86, 71, 85, 67, 43, 50, -117, 75, 113, -124, -113, 7, -122, -37, 54, 32, -5, -94, -25, 63, 90, -30, 37, 38, 38, -38, -67, 123, -13, -66, 123, -24, -15, 80, -49, 112, -34, -64, 123, -95, -93, -18, 112, 49, -49, -60, 117, -73, 26, 52, 103, 12, -94, -81, -4, 45, 62, 60, -3, -116, 111, -81, 64, 96, -28, -105, -55, 18, -21, 58, -125, 31, -70, 49, 123, 112, 87, -11, -123, -6, 33, -119, -1, 44, -38, 91, -84, 96, -111, 109, -125, -33, 85, 107, 80, -23, 75, 96, -106, 58, 63, 114, 69, 13, -15, -20, -12, 118, 116, -121, 45, -122, -21, -59, -5, 80, -117, 41, 6, -81, -26, -18, 112, -54, 63, 20, 111, 47, 47, 33, 18, 35, 114, -112, 106, -99, -99, 16, -26, -118, 119, -39, -14, 112, -31, -97, 15, -87, 117, 11, -64, -70, 116, 46, -74, -51, -91, -128, -99, -114, 2, 123, -127, -59, 24, -52, -77, 64, 82, -88, 11, 70, -121, -122, -48, -42, -46, -14, -54, -19, -4, 121, -111, -17, 126, -81, -34, -126, -60, 68, -15, -39, -72, 46, 73, 65, -95, 17, 29, 106, -20, -41, -96, -39, 115, 3, -70, -126, -73, -30, 85, -52, 22, -116, 36, 50, -31, 35, -103, 63, -65, 22, -14, -32, 99, -15, 58, 124, 105, 22, -58, -73, 66, 86, -116, -27, 112, 35, 35, -16, 96, -31, 15, 63, 46, -9, 31, 120, 40, -51, -80, 17, 102, -53, 55, -64, 115, 33, 3, 46, 17, 88, 17, 76, -124, 90, 7, 108, 96, -124, 37, 113, -67, 21, 95, -58, 0, 105, 102, -42, -97, 74, -98, -3, -58, -104, -34, -73, -35, 99, 53, -22, -67, 24, -15, -44, -101, 64, 11, -113, -67, 52, -87, -15, 21, 68, 103, 48, 55, -70, -93, -7, 9, -76, 96, -58, -80, 41, 125, -36, 79, 43, 0, 18, -81, -55, 81, -127, 69, 74, 73, -107, 27, 13, 88, 124, -124, -61, -32, 23, 68, 126, -100, 68, -54, -25, 111, -33, 110, 79, 124, -4, -100, -43, -39, -37, 87, -23, 17, 28, 90, 35, 34, 35, 111, 64, 83, -85, -51, 84, 76, -70, 23, 17, 49, -96, -24, 119, -127, -44, 52, -59, 10, 28, -105, 11, 83, 126, 80, -86, -73, -24, -68, -91, -4, 67, 97, 58, 78, 119, -61, 63, 87, 6, -86, -15, -116, -40, 98, -72, 28, 68, 27, 48, 99, 88, 0, 7, -77, -75, -4, 87, 2, -10, 28, -43, 83, -89, 91, 53, -109, 33, 42, -7, 112, -4, -58, -19, 113, 23, -122, 1, 73, -88, 125, -3, 13, 74, -25, -93, -112, -107, -107, 73, 60, -80, -102, 16, 100, -81, -120, 40, 3, 14, 60, -12, -110, 66, -78, -61, 9, 60, -70, 31, -120, -110, -74, 62, 88, -70, 121, -61, -47, 88, 14, -25, 2, 66, 112, -40, 41, 9, 100, -116, 105, -48, 98, -5, 94, 94, -13, -24, -5, 77, -72, 95, -47, -117, -31, -31, 33, 104, -97, -69, -4, 100, -42, -20, 121, 127, 80, 126, -94, -52, -99, 51, 123, -63, -79, 125, 12, 63, -12, -76, -120, 82, 58, 114, -74, -43, -23, 12, 38, 50, -82, -29, -11, -56, 8, 72, 8, 60, 76, -26, -36, 1, 110, -58, 99, -84, -75, 17, -113, -101, -102, 17, 21, 21, 117, -15, -121, -112, -112, 110, 14, -33, -15, 53, -84, -97, 52, -56, 111, -114, -83, -18, -62, -35, -98, 65, 36, 55, 117, -64, -17, 110, 14, 88, 120, -8, -64, -81, -31, 10, 5, 45, 51, 120, -14, 83, 62, -124, -120, 82, 42, -20, -9, 82, 92, -75, -1, -96, -16, 5, -52, -98, 37, -16, 112, -5, 111, -93, -87, -77, -66, 79, -40, 71, -68, 39, 20, 14, 115, -13, 18, 72, 33, 2, 49, 9, 105, 2, 41, -60, -88, -128, -126, -20, -117, -47, 96, 5, 17, 26, -64, -32, -26, 21, -127, -90, 44, 39, -84, -43, -40, -64, -61, 47, 10, 14, 78, -98, -73, 4, 92, -20, -5, 87, 104, -47, -48, -48, 48, 89, 88, 88, 8, 5, 5, 5, -112, -36, 57, 52, 112, 65, -96, 5, 21, 94, 76, 121, 23, 16, 111, 47, -36, -69, 119, -113, -106, 72, -79, -68, -68, 28, 94, 94, 94, 52, 79, 11, 2, 29, -88, 9, 21, -65, -101, -65, 72, -78, 69, 7, 98, 121, -113, -48, -48, 80, 92, -68, 120, 17, 118, 118, 118, 80, 87, 87, -121, -68, -68, 60, 53, 7, 6, -50, -99, 59, -9, -111, 106, -91, 31, 19, 19, 3, 119, 119, -9, -41, -28, -67, 51, -103, -110, -110, 66, 5, 8, 31, -120, 98, 126, 70, -117, 70, -63, -91, 75, 63, -105, -112, 113, -34, 3, 84, 43, -87, 105, -14, -31, -13, 103, 90, 120, -88, -76, -115, 27, -15, -120, 120, 90, 84, 45, 95, 14, -47, 117, -21, 102, -124, 22, 19, 19, 111, -55, 61, 52, -15, 39, -76, 96, -125, -77, -77, 11, 109, -65, -96, -96, -112, 88, 45, 50, -46, -124, 108, -45, -114, -7, -7, -7, -127, -103, -103, 6, 45, 104, -5, -92, -17, -65, -123, 22, -89, -55, 109, 117, -11, -24, -22, -24, 38, 111, 78, -108, 58, 31, -126, -89, -87, 18, 116, 78, -101, -61, 93, 79, 6, 41, -50, 114, 118, 83, -54, -101, -45, -46, -90, 33, -22, 98, -95, 127, 11, -7, 80, 77, -107, 127, 93, 107, 19, 23, -1, 81, 2, 44, -88, 48, 86, -101, -56, 127, 21, 70, -29, -48, -75, -102, 76, -83, -6, 55, 48, 104, 29, -61, -7, -98, -9, -16, 35, 94, 22, -98, 61, 31, -32, 78, -74, -35, -70, -33, -61, -25, -59, 7, 28, -117, -23, -61, 6, -25, 1, 48, -70, 60, 1, 127, 92, 62, 14, 69, 22, 100, -50, 52, -106, -103, -103, 25, 93, 92, 92, 28, 53, -84, 86, 18, -11, -66, -87, -82, -82, -90, -126, 43, -120, 17, 96, 100, 96, 96, 64, -115, 91, -35, 124, 68, -128, -35, 119, -9, -18, -35, -117, 8, -84, 88, -12, 120, 8, 126, 125, -17, -15, -75, -25, 45, 48, -12, 17, -8, -4, 13, -104, 4, -16, -35, -4, -52, -78, 120, -47, 81, -106, 69, 109, -6, -126, -53, -95, 43, -76, 10, -84, 122, 71, -80, 33, -40, 22, 43, 57, 88, -80, -35, -33, 22, -101, 66, 109, -79, 94, -103, 3, -25, 85, 24, 17, 73, 20, -48, 1, 4, -114, 27, 75, 108, 4, -57, -106, -7, -45, -26, -102, 124, 39, 86, -53, -42, 36, 73, -12, 101, 27, 16, 104, 97, -119, -47, -58, 64, 2, 46, 92, -16, 60, -53, 4, 85, -111, -57, 48, -8, -48, 7, -71, 110, 71, 16, -85, -71, 5, -87, -28, -69, -88, -60, 105, 39, 90, -29, -72, 80, -21, -72, 17, -71, 6, 43, 16, 39, 67, -105, -8, 39, -80, -104, -75, -117, 127, 97, -21, 33, 13, 58, 28, -77, 95, 11, 109, 31, 38, 72, -40, -111, -65, 45, 100, 7, -92, 108, 86, 65, -54, 101, 25, 36, 89, -26, -94, -119, -114, -126, 86, 23, 125, -68, -60, 16, 122, 39, -33, -96, -43, 89, 31, -115, 75, 40, 80, -97, 75, -103, 6, -108, 25, 25, -42, 57, -54, -77, 112, -63, -104, 87, 18, -26, 2, 71, -95, -54, -62, -115, -108, 88, 119, -68, 27, -18, 0, -97, -88, -60, 84, 77, 100, -38, 49, -46, -122, -42, -106, -12, -95, -11, 61, -63, -58, 13, -42, 117, 91, -82, 127, 7, 72, -103, -73, -105, -75, -119, -19, -61, -88, 42, 27, -58, -52, -40, 9, -84, -32, -64, 88, -24, 97, -116, 93, -26, -58, 88, 48, -87, -35, 56, 48, 74, 20, -3, 111, 20, -39, 80, -58, -65, 7, -90, -69, 54, -5, 76, 11, -7, 101, -92, -69, -56, -51, -38, -84, 55, -100, 0, -120, -117, -34, -98, 72, 78, -120, -127, -65, -77, 61, -36, -116, 13, 97, 107, 106, 12, 95, 55, 23, 68, 5, 7, 34, 41, -26, 10, -46, 111, -91, -30, -58, -11, 68, 92, -115, -66, -116, -24, -16, 16, 36, 92, -119, 68, 4, 57, 103, 115, -26, -12, -88, -106, -30, -15, -87, 57, -85, 40, 49, -31, 86, 95, 91, 43, -58, -122, -34, -48, 60, 113, 63, 17, -80, 56, -10, -26, 53, 70, 7, -6, -55, 26, -82, 15, 111, 6, 7, 49, 50, -12, 26, -17, -57, -57, 104, -7, -47, -34, 79, -116, 99, -80, -17, 37, -88, 16, -93, 36, 47, 39, -90, 52, 63, 119, 10, 124, 57, -14, -48, -17, -118, 84, -39, -11, -87, -16, -68, 8, 26, 98, -44, -111, 97, -51, -121, 52, 51, 14, -108, 92, -112, -60, -109, 116, 91, 116, -92, 89, -94, 42, -4, 4, -118, -4, 36, 80, 30, -86, -128, 124, 79, 9, -28, 121, -120, -94, 58, 66, 17, -83, -87, -90, 120, 28, -83, 78, -10, 37, -32, 46, -74, 46, -98, 120, 100, 16, 91, -88, -33, -24, -104, -74, 111, -21, 17, 23, 20, -126, 40, 15, 47, -72, 88, 89, 65, 0, 6, 68, 120, -7, 32, 43, 46, 1, 125, 53, 13, -72, -100, -75, -127, -69, -115, 29, 92, -51, -83, -32, 68, -60, -108, -128, 71, 57, 73, 41, -24, -99, 84, -61, 105, -115, 83, -48, 82, 84, -6, 116, -120, 117, -65, 57, -51, -32, 39, -12, -46, 108, 11, 35, -125, -9, 30, -114, -10, 32, 112, 2, 33, 126, 23, 96, 105, 106, 2, 89, 73, 49, -28, 101, 103, -94, -95, -90, 10, -71, -103, 25, 80, 83, 60, 14, -34, 67, -20, 109, 7, -10, -19, 13, 101, 102, -36, -87, -69, 103, -5, 86, 75, -74, 61, -116, 17, 28, 108, -52, -43, -100, -5, 89, -33, -77, -19, 101, -70, 48, -75, -34, 80, -29, 114, 44, -13, 23, 67, 75, -84, 26, -126, 12, -56, -67, 35, -78, -70, -39, 94, -98, 49, -61, -26, -60, 126, 107, 85, 105, 110, 38, 25, 2, 29, -114, -120, -15, -49, -107, 21, -29, 89, 44, 39, -63, -67, 86, 85, -102, -109, 85, 91, -102, 93, 90, 87, -106, -3, 56, -11, -4, 119, -97, 5, -86, -126, -78, -115, 73, 26, 104, 74, 80, 65, -102, -117, 40, 66, 77, 121, 90, -49, 40, -15, -100, 53, 87, 19, -44, -42, -106, -25, 63, 44, 35, -50, -9, -101, -84, -92, -64, 92, 25, 81, 110, 122, 53, 25, 1, 38, 99, 101, 126, 21, 87, 61, -31, 16, -81, -45, 98, 97, -106, -22, -126, -89, -114, 75, -14, 47, -102, 9, 90, -108, 101, 102, -36, -21, 105, 110, -64, -121, -119, 113, -78, 62, -1, -124, 97, 114, -115, 75, -14, 115, -33, -105, -28, 62, 88, -2, 31, 121, -37, 39, -59, 51, 36, 7, -39, 124, 109, -67, 106, -122, -66, -68, 16, 60, -87, -54, 66, 89, -10, -99, -47, -76, -72, 80, -73, -85, -98, 38, 26, -41, -67, -49, -80, -91, 92, -76, 97, 75, -15, -73, 102, 75, -66, 104, -11, -35, -69, 49, 37, -62, 111, 126, -72, -103, 76, 102, -112, -87, 76, -58, 52, 69, -104, -24, -63, -39, -20, 18, -100, -117, 15, 107, 11, -18, 23, 113, -111, -87, 21, -80, -109, -52, 98, 53, -28, -14, 33, -64, 66, -106, 93, -101, -121, 107, -65, 46, 119, 50, -117, 22, 103, 56, -101, -28, -63, 85, 123, 78, -20, 63, -61, -86, -63, -15, -98, -53, 70, 20, -44, -100, 22, -5, -44, 15, 13, -112, -2, 115, -90, -84, -111, -115, 101, -22, 36, 20, -8, 92, -65, -125, 8, -126, 92, -13, -92, 78, 9, -105, 30, 53, 39, -9, -50, 37, 45, -40, 39, 88, -30, 92, -4, 89, -40, -111, -38, -127, -44, -74, 113, 22, 48, 9, -45, -127, -62, 57, 89, 28, 39, -48, 67, -12, 24, -113, 49, -43, 51, 71, 86, 94, 107, -121, -92, -78, 5, -31, -110, -42, 55, 37, -108, 45, 125, -113, 104, 56, -104, -55, -100, 114, -38, 70, -7, 55, 69, 66, -35, 81, -64, -56, 45, -2, -85, -51, -91, 27, 56, -94, 115, 62, 96, -54, -16, 76, 79, 113, 94, 73, -96, 78, 117, -57, 61, 39, 20, -8, 40, 34, -22, -28, 14, -124, 41, 109, 71, 56, -111, 104, -115, 29, -72, 107, -57, -121, -30, 16, 77, 84, -57, 91, 33, 47, -16, 52, 34, -19, 79, 106, 95, 13, 80, 29, -84, -55, -76, 66, -39, -11, -45] astore_1 aload_0 ldc literal_1294:"__e7-20.png@16384" aload_1 invokevirtual java.lang.Object put( java.util.Hashtable, java.lang.Object, java.lang.Object ) // pc=3 pop arrayinit [-16, 52, 22, 2, -53, -74, 21, -113, -90, 114, -13, 93, 115, -81, -85, 44, 77, 65, 117, -7, 77, 42, -88, -104, -14, -72, 104, 107, -52, 35, 16, -78, 30, 3, 47, 107, -47, -37, 93, -123, 23, 68, 6, -5, -22, 49, 62, -46, -127, 119, 99, -35, 24, 31, -19, -62, -16, -85, 22, 116, -76, 100, -31, 70, -46, -7, 87, -119, -47, 54, 83, -49, -14, -35, 59, 17, 1, -76, -6, 110, 120, -61, -53, -34, -57, 24, 25, -23, 69, 71, -5, 35, 16, 15, 10, -44, -43, -26, -112, -70, -128, -128, -116, 114, 114, -84, 2, -67, -67, -51, -24, -21, 107, 67, -17, -117, 70, 114, -84, 20, -103, -103, 49, 21, -9, -18, 93, -82, -8, 46, 63, -21, -35, 91, -43, -49, 58, -38, -48, -13, -12, 9, 90, -101, -22, -47, -34, -36, 64, 11, 113, -7, -119, -86, -96, 28, 29, 37, 6, 24, -3, 120, 73, -51, 51, -9, -76, 29, 35, 68, 81, -39, -5, -68, 7, 117, 85, 101, 52, -80, 113, 55, -7, -86, -28, -12, 36, -36, -46, 116, 4, 82, 76, -12, 22, 122, -95, -81, -60, 7, -67, 69, -98, 120, -102, -27, -124, -57, 55, 77, 105, 94, 24, -115, -73, -83, -15, 36, -37, 29, -49, 114, -35, 8, -128, 117, 65, 95, -111, 27, 94, 22, -72, -96, -11, -90, 9, -14, 3, -113, 35, -53, -9, -88, -40, -33, -96, -59, -20, 124, 23, -91, -126, 124, -41, -109, 73, -75, 97, -26, 104, -65, -23, -125, -98, -36, 43, -24, 47, 78, 70, 127, 105, 42, 94, 85, 103, 96, -88, -2, 1, 70, 90, 10, 49, -38, -100, 79, 32, 73, 26, 6, 30, -35, 68, 111, 97, 34, 105, -21, -117, -121, 23, 78, 53, 100, -39, 29, -97, 17, -36, -111, 4, -36, -77, -2, 15, 60, -84, -74, -33, -70, 117, 19, -51, -13, 66, 72, -120, 31, 44, 44, -69, 5, 126, 58, -73, -46, -98, 61, 53, 124, 124, 124, -76, -9, 55, 1, 22, -92, -65, 16, 60, -20, 20, -128, 119, -50, 120, 63, 100, 13, 85, -103, 3, 112, 49, 63, -126, -60, 16, 61, 4, 121, 104, 66, 77, 78, -32, -93, -102, 18, -97, 62, -128, 95, -119, -52, -95, -54, 95, -32, 98, 42, 105, -105, -126, 2, -5, -17, -65, -2, 26, -23, -77, -110, -14, 78, -116, 110, 54, 126, -99, -1, 59, -74, 110, 88, -125, -73, -34, 43, 80, -26, -59, -126, -37, 14, 108, -64, 21, 6, 8, 109, -97, -121, 57, -117, -105, -29, -32, -38, -107, 8, 95, 51, 11, 50, -116, -37, 31, -58, 93, 79, -98, -46, -21, 109, 91, -75, 72, 83, 91, 104, 59, 12, 121, 55, 64, -123, 127, 47, -100, 78, 10, -62, -53, 72, 21, 55, -62, 77, 81, 114, -21, 56, 114, 19, -59, -111, -24, -89, -123, -112, -77, 42, 56, -70, 111, 37, -114, -18, -94, -125, 42, -37, 82, -86, -41, -59, 40, -13, -70, 69, -22, -101, 87, -47, -47, -53, 74, -16, -88, -104, -23, 29, 125, 44, -56, -59, 58, 5, -109, 56, 84, -9, -122, 27, -8, 31, -61, -107, 82, 103, -72, -35, 58, 61, -64, 103, 124, 40, -21, -104, -97, 36, 78, 37, -87, 64, 51, 78, 30, 22, 15, -12, -55, -10, 9, -88, 70, 31, -125, -76, -81, 8, -40, -12, -9, 116, -84, 17, 91, -51, 56, 99, 110, 47, 126, 74, 92, -102, -49, 92, -44, -90, -84, 70, -5, -99, -11, 120, 82, -63, -113, 64, -37, -19, -16, -46, -104, 7, -3, 125, 20, -72, -97, -96, 67, 126, 60, 63, -118, 98, 121, 113, -57, -101, 1, 9, 62, 91, -48, 92, -60, -113, 54, -46, -74, 54, -123, 1, -44, -66, -58, 2, -108, -72, 31, -115, -41, 94, -50, -113, 48, -121, 45, 100, -2, -89, -61, -35, 0, 22, -40, 8, -52, -63, 57, -31, 57, -72, 27, -56, -118, 96, -61, -91, 8, -74, -37, -116, -10, 50, 1, -76, -45, -58, 91, 53, 109, -68, 53, -85, 86, -50, -110, 16, 21, -78, 11, -11, -11, 64, 82, 116, 4, 30, 100, -36, 68, 57, 1, 123, 9, 100, 59, 45, 57, 1, -83, -11, -107, -44, -36, 22, -67, -89, 79, -87, -7, 89, -99, 49, -120, -73, 53, 63, -19, -90, -91, 42, 95, 117, 66, 70, 42, -4, -40, 17, 113, 119, 65, 30, 46, 63, -54, 15, 74, -102, -117, 80, -6, -53, 124, 103, 60, -118, 84, 65, -70, -117, 96, 73, 113, -80, -62, -77, -89, -23, 103, -47, -13, -64, 6, -3, 37, -34, 24, 106, -120, -63, -48, -29, 104, 114, 127, -121, -94, -81, -40, 11, -99, 119, -50, -128, 10, 57, -78, -68, -91, -98, 95, 58, -71, 102, 10, 48, -80, -87, 113, 45, 37, -96, 66, -112, -120, 40, -69, 62, 95, -100, -92, -113, -62, 59, -71, 40, 45, 28, 11, 87, -61, 9, 50, -49, -120, 58, -54, 66, 80, 95, 2, -14, 65, -102, 80, -67, -86, 15, -119, -117, 10, 96, -42, 60, -16, 86, 71, -120, -47, 76, 74, -11, -48, 121, 1, 109, 78, 61, 2, 44, -90, 25, -52, 69, -124, -122, 59, 20, 21, 22, -95, -77, -93, 19, 3, 3, 3, -33, 65, 11, 82, 83, -9, -89, -96, 5, 89, -13, -48, -62, -65, 22, 21, 20, -62, -2, -100, 93, -60, 116, 75, -29, 72, -122, -8, -98, -78, -115, 24, -88, 57, -120, -31, -106, 35, 24, 107, -109, 71, 111, -39, 17, 80, -83, -126, 111, -56, -4, -114, -28, 35, -13, -111, 34, 77, -28, 40, 81, 96, 27, -19, -96, -99, 27, 37, 109, -122, -102, -91, -48, 95, 115, 0, -35, -91, 27, -16, 32, 96, 101, -16, -116, -34, 22, 92, 11, -106, -25, 105, -82, 29, 120, 100, -77, 18, 35, -41, -40, -16, -79, 82, 26, -24, 52, 1, -98, -37, 2, -35, 14, 40, -72, -82, 9, -93, 24, 125, 88, 37, -24, 67, -53, -1, 120, -89, -74, -81, -52, -100, -17, 40, -113, -10, -36, -99, -5, 117, 126, 101, 91, 33, 68, 97, -101, -53, 66, -126, 28, 108, 37, -78, -119, -128, -120, -115, 20, -98, -123, 92, 20, -99, -83, -22, -108, -96, -123, -100, 100, -83, -69, -113, -78, 120, -81, -14, -84, 94, -101, 43, 71, -31, -98, 124, 18, 87, -53, -99, 112, 58, 88, -32, -61, -110, -61, -45, 99, 16, -57, 46, -102, -73, 40, 117, -59, 34, -13, -84, -19, -85, 94, -107, -78, 111, 71, 21, 15, 81, 106, -16, 51, -93, 94, -118, 3, -49, 60, -49, -95, -37, -45, 14, 52, -15, -94, 9, 90, -44, 101, 81, 77, -50, 63, -30, -38, -115, -126, -67, 27, 63, -91, -83, 89, 18, 17, -65, 120, 122, -66, -121, -59, 115, 22, 46, 46, -38, 119, 107, -80, 67, -91, -102, -76, -81, 70, -85, 65, 61, -102, 12, -22, -16, -112, -121, 64, -117, 99, -7, 104, -77, -83, 65, 127, 76, 23, 70, 50, 7, 48, -110, -47, -121, 22, -117, 42, 52, 106, 60, -62, -24, -27, 30, 4, -87, 122, 94, -99, 102, 9, -109, -107, 60, -117, 70, -50, 124, -83, 78, -36, 73, 62, -117, -22, 82, 31, 52, -43, -5, 19, 48, 65, 106, 2, 40, -38, 90, -126, 8, -88, 8, 32, 23, 63, 12, 77, -115, -124, -108, 61, -10, 68, 67, -67, 59, 30, -41, -72, -93, -106, 64, -117, -62, 7, 14, -72, 28, -84, 59, -14, -41, 120, 106, 46, 75, -40, 45, 66, 86, 35, -70, 96, 45, -79, 36, 92, 14, -97, 108, 58, -28, 100, 30, 69, 95, -89, 47, -58, 95, 93, 39, -48, -30, 6, -66, -67, 75, 5, -58, 47, 0, -93, -58, -64, -48, 113, 96, 80, -128, 8, 11, 38, 59, 86, -95, 41, 122, 65, 103, -50, -7, 57, 76, -45, -18, -103, -21, -122, 65, -27, 119, -51, -16, -24, -98, 37, 33, -24, -105, -55, 71, -47, 13, -68, 127, -101, -127, -25, -99, 9, 85, -107, -123, 102, -4, 121, 55, -43, 44, 10, -17, 104, -103, -41, -106, 89, -4, 116, 18, 78, -99, 24, -42, 89, 58, 49, 108, 98, 18, -50, 59, 14, 73, 56, -19, -108, 20, 82, -34, -48, 103, -88, 68, -113, 20, 103, 122, -44, -89, -82, -59, -77, -78, -83, 120, 90, -79, 5, -43, 105, 107, -111, -30, -72, -94, 58, 90, 110, -7, -116, 113, 107, 37, 45, -24, -69, -50, 93, -27, 64, -54, 67, 75, 52, 118, -89, -93, 119, -88, -122, 0, -117, 92, -76, -12, -34, 65, -35, -77, 4, 20, -75, -8, -32, 78, -75, 25, -30, -117, 85, 105, -64, 34, 44, 95, 26, -63, -71, 18, 112, -53, -28, -128, 97, -36, 38, -100, 112, 91, 13, -63, 83, -12, 67, 127, 65, 11, 34, -76, 69, -87, -75, -29, 26, -108, -43, -104, -94, -11, -119, 37, 94, 14, 94, -61, -45, 23, -58, 4, 82, 120, -94, 103, -64, -120, 120, 91, 24, -29, -59, 107, 19, 34, -38, 120, -36, -90, -119, -78, 58, 118, -44, -111, 103, -87, -68, -98, 16, -15, 91, -69, -31, -28, -66, 100, 10, 26, 52, 105, 8, -75, -66, -10, -42, -58, -16, 21, 75, -116, 92, -1, 127, -84, -99, 7, 84, 21, 87, -9, -10, 73, 52, 22, 98, 16, 81, -108, -120, 70, -63, -106, -120, 52, -107, 42, 69, -108, 38, -67, 73, -105, -90, -128, 72, -75, 80, 20, 17, -80, -128, -12, 38, 93, 1, 21, 1, 69, -79, -128, 8, 72, -107, -90, 116, -23, 77, 122, -107, 46, -106, 104, -108, -25, 127, -18, -68, 121, 73, 12, -102, -28, 93, -33, 55, 107, -19, 53, -25, -50, -99, 57, 12, 115, -17, 61, 51, 103, -1, -10, -77, -73, 27, 38, 18, -35, 49, -111, 112, 6, -29, 9, -82, 100, -19, 66, -52, 21, -29, 55, -36, 49, -107, 112, 22, -19, -89, -9, -93, -1, -68, 62, -127, 21, -42, 24, -10, 54, -63, -96, -117, 14, 6, -113, 105, -94, 69, 95, -22, -117, 57, -34, -52, 14, -81, 91, 36, -88, -68, 40, -99, -42, -114, 103, -30, 98, 13, 89, -76, -127, 74, -17, 37, -87, -66, 36, 68, 121, -33, -118, -36, -120, -27, -101, -58, 110, -83, -31, 67, -30, 58, 126, -60, -80, -14, -62, 115, -59, -49, 61, 39, -41, 112, -4, -83, 122, 37, -27, -16, 55, -13, 110, 27, 51, 28, -83, 12, 35, -32, -79, -18, 18, -122, 82, 79, -95, -52, -122, 7, -83, -95, 74, 24, 46, 113, 66, -47, -7, 3, -72, -60, -63, -114, 12, 75, 5, -76, -92, -100, -4, -30, 121, 29, -38, -16, 29, -29, 89, -34, 5, -109, -87, -102, -84, 40, -73, -29, 68, -43, 81, 94, -44, 59, -14, -93, -35, 93, 20, 93, -34, 123, -48, 27, 40, -125, 1, 2, 47, -6, 46, -55, -94, 61, 88, 10, 13, -89, -7, 81, 105, -51, -127, -32, 61, 76, -109, 86, -68, 12, 43, -1, -18, -4, -44, -74, 45, 19, 54, -35, -63, 82, -23, 35, -69, -123, 0, 11, 97, 100, -40, 74, -32, -111, -115, 4, 30, 30, -107, 70, -110, -91, 44, 98, 14, -18, -2, 116, 81, -125, -21, -106, -35, -34, 13, 124, 95, 45, -106, -56, -61, -103, 124, 78, 93, 6, 22, 98, 50, -48, -8, 89, 98, 70, 115, -101, -40, -116, -111, -64, -18, -103, -61, 98, -110, -80, -105, 81, -60, 57, 85, 109, 92, 50, 50, -97, -119, 54, -75, -98, -119, -73, 58, -127, 12, 119, 31, 60, -119, -68, -116, 51, -6, 58, 95, -116, -80, -13, 21, -31, 82, 110, 84, -107, 71, -125, 22, 25, 59, 118, -17, -62, -112, -17, 5, -15, -9, -73, 98, 87, 17, 85, 69, 111, -127, 19, 7, 74, 78, -15, -52, 20, -38, 113, -67, 44, 117, 19, 66, 99, -104, 58, -102, -62, 52, -48, 122, 69, 31, 93, -73, 45, -47, 77, 96, 96, -43, 121, -79, 89, -121, 101, 85, 69, 101, 5, 85, -93, -30, -11, 43, 76, -75, 14, -32, -43, -43, 26, 76, 16, 88, 65, -127, -118, -126, 54, 76, -58, 85, 99, -68, -66, 7, 99, 109, -3, -104, -56, 108, -58, 56, 45, 71, 32, 105, 79, 54, -12, -31, -43, -44, 36, 53, 49, 29, 26, 28, -4, -20, 115, -71, 26, 21, -40, -39, -41, 81, -121, -23, -47, 94, 76, -113, 116, 18, 101, 70, 7, -34, 78, 14, -32, -35, 100, 63, 1, -103, 109, 120, 61, 66, -44, 73, 67, 77, -104, 28, 108, -60, 68, 127, 3, 70, 122, -21, 48, -36, 89, -119, -106, -22, 28, 36, -58, 5, 15, 125, 86, 63, 102, -43, -73, -91, -46, 91, -104, 112, 80, 100, 45, -12, -123, -104, 33, -75, 110, 62, 20, 54, 46, -60, 29, 43, 110, 92, -43, -33, 60, -29, 44, -50, -14, -85, -109, -56, -86, 119, -31, -102, 27, 63, 101, 57, 11, -64, -112, -113, -111, -20, -77, 8, 26, 60, -52, -108, -124, 84, -125, -109, 1, -30, -84, 11, -90, 105, 46, 9, 95, 61, -74, 5, -55, -25, 84, -101, -101, -46, -49, -31, -15, 37, 35, -8, 30, 33, -97, 101, -56, 1, 84, 37, 59, -96, -4, -58, 81, 60, -16, -44, 69, -76, -107, 18, 50, 3, 77, 81, 118, -53, 25, -107, -9, -50, -93, 46, -51, 19, -27, 9, 71, -111, 17, 98, -128, -22, -69, 103, 40, -80, 113, -45, 77, -95, -34, 83, -109, -19, -69, 89, -60, 47, -79, 97, -93, -79, -48, -102, 95, -51, 36, -40, 112, -23, 32, 31, -12, 56, -24, 113, 68, -118, 3, -75, -107, 37, 104, -18, -18, 71, -15, -13, 90, 4, 122, 123, -125, 84, -32, 71, 25, -33, 22, -116, -103, -21, -52, -116, 94, -70, -56, -3, -59, -70, 6, -111, 81, 91, -121, -6, -121, -102, 94, 15, 79, -73, 20, -60, 20, -108, 30, -42, -77, 57, -75, -58, 66, 9, -110, 39, 92, 112, -64, 54, 6, 65, 65, 37, -88, 47, -18, -59, 96, 51, -127, 74, 47, 94, 19, -96, -9, 26, -87, -50, -123, 30, -44, -115, 59, 48, -22, -121, -116, -76, 12, 59, -30, 108, -68, 74, -46, 121, 48, 80, -37, 76, -40, -4, 94, -58, 4, -32, -114, -14, 89, 52, 84, -104, -61, -93, -60, 9, -85, 45, 43, -31, 123, -54, 6, -93, -127, 12, 24, -13, 102, 64, 71, -24, 50, -124, -48, -50, -17, -14, 8, -76, -94, -19, 33, 34, -9, -35, 87, 33, 8, -119, -84, -35, 90, 87, 91, 59, 53, 54, 52, 8, -25, 3, 114, 104, -68, 101, -118, -103, 26, 21, 50, -82, -84, -59, -109, 51, 43, 112, -43, 116, 25, 110, 88, 48, -30, -87, -21, 15, -8, -83, -60, 16, -8, -40, -123, -10, -57, 30, 56, -90, -79, 7, 99, -61, 67, 32, -57, -66, 58, 114, -28, 8, -25, 103, 15, 67, -89, 24, -82, -116, 68, 51, -112, -5, -31, 82, -44, -100, 89, -123, 103, 39, 87, -29, 25, 25, 15, 43, -50, -81, 67, -75, -41, 6, 60, -9, 103, 71, 123, 56, 27, 70, -109, 127, -63, -69, 18, 118, -94, -90, -36, -117, 79, -115, -74, -104, -18, 12, 70, -10, 53, -71, -36, -81, 42, -20, 56, 56, 126, 58, 32, 40, 60, 33, -50, 66, 20, 110, -117, -105, -63, 124, -15, 114, -40, -48, -81, -128, -59, -9, -52, -48, 89, -51, 6, -79, -107, -84, 80, -27, -28, -102, -110, -28, -35, -2, -81, 34, 33, -121, 15, 46, -67, -47, -28, -56, -116, -26, -117, 92, -24, -16, -26, -92, -20, -123, 55, 23, -86, -4, -10, -94, 35, 80, 16, 93, -95, 123, -47, -29, -61, -125, -105, -121, -106, 62, -4, 55, -3, 93, -66, -111, -92, 122, -36, -59, 45, -11, 78, 78, 126, 124, 110, 103, -17, -59, -54, -42, -106, -12, -26, -50, -10, -46, -2, -63, -34, -110, -105, 35, 67, 69, 67, 99, 99, 37, 99, 31, 62, -26, -35, -55, -50, 127, 30, 124, -29, 118, -48, -33, 2, 11, -85, 78, -48, 25, -76, -126, -50, -92, 29, -28, -11, -100, 116, 23, 57, 43, -1, -73, 58, 37, -21, 100, 23, -6, 92, 124, -92, 4, 54, 109, -6, -86, 53, 63, -48, 57, 120, 47, 89, 118, 61, 114, 5, 99, -13, -100, -12, 99, 55, -11, -70, 123, 58, 110, -64, -7, -24, 106, -79, 47, 65, 11, -30, 96, -2, 36, -19, -101, 6, -85, -101, -27, 48, 8, 76, -127, -79, -67, 3, 70, 110, -56, 96, -30, -127, 37, -86, 51, -50, -61, 48, -46, 27, 70, 110, 54, 72, -72, 117, 6, -64, 36, 49, -96, -85, -69, 7, 102, -122, -22, -72, 117, 65, 23, -46, -90, -57, 64, -6, -104, -123, 22, -33, -50, 91, -64, -24, -24, -101, 52, -12, 30, -64, 27, 82, -121, -25, -32, 17, 107, 24, 93, 42, -59, -78, -115, 82, 33, -33, 124, -13, -19, -126, 47, -56, -32, 57, -51, -51, -51, 91, 73, 115, 47, 21, -79, 70, -125, 22, 60, -84, -55, 95, 6, -24, -14, -98, 109, -89, -113, -32, -41, 72, 79, -116, 55, -41, 99, 100, 106, -118, -126, 109, -97, 104, -48, 34, -27, 26, -75, 30, 27, 29, 5, 81, 12, -128, 56, 113, -29, 44, 45, 45, -25, -88, 88, -13, 23, 125, -77, -91, 112, -41, -118, 87, -53, -71, -83, 90, -43, -113, 122, 96, -3, -49, 27, -63, -54, -58, 6, -58, 21, -52, -48, -80, -76, 70, 80, -7, 12, -20, 116, 57, -16, 42, 120, 62, -90, 31, -24, 99, 32, -50, 16, 77, -2, -118, -56, 52, 91, 60, 30, -58, -9, -19, 111, -28, 34, -6, -110, 110, -40, -1, -108, 18, 106, 62, -65, -128, 112, -125, -92, -108, 12, 20, 20, 85, -96, 115, -64, 4, 74, -54, -22, -112, -35, -89, 64, -87, 44, -56, -102, 50, 73, 41, -46, 86, -40, 15, 127, -45, 109, -56, 117, 94, 1, 77, 53, 121, -20, 33, 106, -116, 29, 59, 5, 19, -1, 10, 45, 26, 27, 27, 103, -110, -110, -110, -80, 105, -45, 38, -120, -118, -118, -126, -68, -90, -108, 21, 4, 92, -52, 26, 1, 12, 84, 90, 40, -78, -90, 82, 66, 17, 103, 62, -91, -72, -72, 123, -9, -18, -100, -102, 22, 26, 26, 26, 55, 105, -23, -93, -118, -117, -117, 65, 91, 19, -107, 0, 85, 116, -111, -88, 50, 40, 48, -78, 107, -41, 46, -112, 113, 3, 1, 1, 1, -76, -44, 82, 72, 79, 79, -89, 38, 12, -76, 115, -16, 38, -29, 14, 41, 42, 121, -14, 75, -97, -121, -52, -86, 85, 31, 50, 89, 89, -15, -100, -4, -35, 55, 0, -120, -22, 8, 83, 52, -107, 5, 1, 22, 67, 52, -107, -123, -111, 17, -14, 22, 47, 70, -31, -118, 21, 120, -70, 124, 57, -92, 86, -81, -2, 18, -76, -104, -83, -125, 65, 64, 4, 1, 18, 59, 112, -10, -20, 89, -22, 117, 81, 81, 17, 1, 22, -65, 80, 70, -38, -44, 54, 82, 79, 1, -36, -36, 20, -76, -104, 61, -18, -33, 40, 45, -78, -116, 55, -106, -42, 92, -36, 13, 95, 7, 99, 24, -104, -39, -62, -117, -128, -117, -68, 99, 60, 72, -43, 97, 111, 113, -105, 94, 63, -17, -63, -47, -3, -21, -81, -20, -25, 127, 74, 0, -50, -84, 115, 106, -51, -102, 53, 21, 52, -5, 75, 87, 73, -92, 78, 75, -31, -17, -80, 66, -107, -40, 25, 98, 60, -1, 115, -50, -2, -56, -68, 16, -27, -94, 30, -40, -75, -66, 66, 64, 31, -7, -65, -6, 127, -123, 63, 1, 23, -105, -6, -33, 83, -19, -109, 101, -109, 96, 59, 61, 0, 86, -21, 62, -120, 95, 41, -57, -10, -72, 124, -16, 69, -27, 127, 53, 5, -21, 5, 75, -91, 15, -26, 26, -30, 53, 86, 86, 86, -76, -30, -37, 51, 68, 73, 3, 85, 85, 85, 16, 101, 32, 8, -44, 0, 25, -45, -95, -84, -86, 94, -45, 49, -115, -34, -82, 105, 96, -16, 13, -16, -10, 55, -32, -45, 12, 102, -105, 47, -11, 75, -96, -123, -120, -74, -64, 82, -8, 26, 111, -123, -66, -52, 122, 44, 87, 21, -60, 114, -18, -51, 88, -85, 78, 28, -11, 123, -74, 64, 74, 96, 37, 92, 52, 54, -64, 89, 109, 61, 28, -44, -40, 32, -53, -67, -84, -5, -77, 116, 103, -89, 126, 94, 82, -22, 39, 50, -42, 115, 71, 25, 35, -71, -90, -104, -88, -72, -128, -15, -118, -117, 104, 79, -73, 66, 101, -76, 26, 98, -116, 72, -80, -55, 81, 113, 52, -58, -103, 32, -17, 12, 15, 42, 61, -74, -95, -62, -105, 3, -27, -98, 91, -15, -60, -23, 39, -36, -43, 91, -118, 48, -39, -59, -70, -65, 67, -117, 111, 57, -27, 25, -80, -5, 48, 35, 68, 15, 50, 65, -38, 106, 53, 100, 28, -104, 17, -111, -83, -124, 61, -58, -53, -31, -59, 58, 31, -115, 92, 76, -24, 44, 72, -60, -28, -52, 36, -122, -57, -102, 49, 60, -34, -116, -119, -103, 9, 116, -28, 39, -96, -127, -68, 23, 61, -97, -82, 76, 117, -31, 31, -22, 123, -113, -77, 14, 72, -67, 27, 59, 107, -6, 59, 69, -87, -38, 21, 58, -118, -30, -48, -111, 23, -126, -71, 10, 47, -12, -28, 118, -32, -128, -94, -64, 108, -83, 11, 2, 44, 62, 59, -122, -12, -15, -59, 107, 23, -50, -69, -71, -91, 121, 31, 23, 38, 13, -73, 99, -46, -111, 15, 83, 1, -126, -104, -118, 35, -32, 34, -127, 88, 12, 49, 95, 2, 45, -114, 17, 104, -95, -77, 29, -107, 123, 57, -31, -52, -79, 97, -114, -126, 50, -8, -36, -23, -115, -98, 39, -113, -5, 7, 122, -100, 125, 123, 37, 44, 4, -47, -95, 33, 8, -14, -10, 68, 120, -96, 31, -91, -90, 32, 109, 10, 82, -60, 70, -122, -31, 114, 104, 48, 66, 124, -67, -32, -17, 121, 30, 17, 65, -2, -120, 10, 9, -124, -65, -57, 57, -104, 104, 107, 4, -50, -62, -16, -12, -5, 11, -118, 30, -36, 61, 88, 91, -10, -12, 109, 127, 79, 15, -103, -73, -67, -94, 69, 66, 83, 54, 61, 53, 65, 65, -117, -111, -95, 33, 80, -59, -1, 105, 105, -34, 126, -81, -101, -13, 106, 114, -110, 56, 23, 91, 81, -104, -99, 57, 11, 103, 28, -123, 24, 60, -3, 85, -41, 35, -47, 114, 7, -82, 91, -16, 33, -26, 32, 15, 10, 60, -10, 33, -41, 85, 10, 77, -73, -84, -47, -104, 104, -127, 98, 50, 118, -106, 69, -18, 39, -112, -62, 10, -75, -41, 77, -16, 52, 68, 25, -43, -105, -75, -48, 120, -45, 26, 79, -125, 53, -112, -27, 38, 5, 95, 21, -74, 44, 7, 1, 6, 103, 74, 13, -58, -66, 97, -21, 70, 54, -74, -56, -115, -21, -39, -50, 111, -35, -76, -87, 77, 82, 84, -108, -64, 8, 99, -104, -23, 25, -64, -38, -60, 20, 14, 22, 86, 112, -78, -78, -63, 73, -53, 35, 112, 59, 118, 12, -18, 14, -114, -80, -73, -78, -122, 45, 121, -49, -120, -116, 101, 62, -50, 46, 80, -110, -106, 121, -5, -13, -122, -1, -44, 17, 10, -15, -14, -36, -29, -19, 126, -122, -43, -55, -58, -110, 85, 87, 93, -75, 77, 81, 70, 10, -122, -38, -102, -88, 120, 90, -126, -50, 23, 109, -72, 65, 32, -113, -87, -95, 62, 52, 85, -107, -80, 111, -81, 4, -92, -60, 69, 32, 45, 33, 14, 18, -19, 10, 121, -14, 90, 93, -98, -88, -28, 118, 9, -67, 84, -111, -105, -107, -78, -44, 16, 16, 41, -14, -105, 71, -4, 105, 89, -108, 92, -79, -64, 37, -77, 29, -16, -41, -6, 17, 5, -82, -37, 80, -32, -62, -127, -44, -93, -101, -112, -31, -60, -15, -23, -34, -79, -83, 31, 31, 59, -2, -126, -121, -10, 4, -66, -7, 111, 39, -17, -3, -126, 44, -89, 45, -56, 60, -7, 11, -62, -116, 54, 118, -23, -56, 11, 82, 41, 57, 76, -44, 119, -17, 42, 33, 48, -89, -6, -106, 21, -118, -29, -83, -15, -48, 91, 25, -7, -66, 10, 40, 12, 81, 69, 110, -128, 10, 114, 124, -119, 90, -59, 71, -7, 99, -106, -81, -46, -57, -69, -25, -9, 33, -113, 92, -53, -126, 32, 101, 60, 9, 82, -63, -45, 112, 77, -108, 69, 105, 35, -58, 73, 122, 72, 85, 126, -17, -126, 57, -48, 34, -25, 17, 99, 65, -22, -19, -108, -106, -25, 85, 24, -24, -21, 67, 79, 119, 23, -38, 91, 91, -48, -8, -68, 122, -20, 73, 86, -6, -65, 78, -123, -110, 20, 19, 105, -106, -111, 124, 13, 53, 121, -9, 48, -48, 94, 71, -26, 9, -93, 120, 61, 49, -126, -127, -114, 70, -44, -34, 15, -60, -77, 8, 115, -108, 4, -23, -93, -48, 91, 29, 121, -66, 100, 76, 13, 50, 35, -25, 104, -118, -68, -32, -61, -56, 14, -78, -64, 61, 87, 117, -124, 90, -53, -41, 94, 61, 103, -63, -12, -103, 74, -17, -72, -84, 48, -65, -123, 88, -85, -128, -99, 4, 4, -113, 75, -128, -53, -104, 31, -94, -10, -46, -32, -73, 20, 127, -54, 99, 40, -24, -56, 107, 32, -28, -54, 123, 72, -72, -121, 87, -119, 95, -120, 67, 99, -69, -1, 90, 73, -10, 95, 5, 14, -119, -127, -45, -120, 15, 28, -6, -37, -63, 119, 72, 84, 122, -10, -2, 118, 68, -95, 66, 86, 74, -24, -5, 57, 65, -112, -110, -62, 44, 82, 58, -94, -113, 117, -35, -9, -61, 33, -42, -106, 6, 41, 40, 115, 79, 116, -122, 83, -20, 49, 28, -113, -79, -122, 85, -88, 25, -44, -114, 43, 67, -35, 73, 9, -118, -122, 82, -15, 4, 90, -48, -21, -104, -40, -59, -104, -40, -100, -102, -79, 114, 60, -1, -55, -48, -6, -36, 107, 45, 43, -81, 41, 67, -89, 80, 104, -39, -6, 94, 85, -73, -16, -4, 106, -67, 28, -59, 67, -25, 22, 31, -11, 78, -4, 120, 54, 58, 29, -102, -74, -66, 37, -77, -127, -63, -121, 85, -44, -22, 111, -40, 34, -5, -94, 54, -126, 85, -39, -15, -32, -116, 18, 74, 35, -83, 81, 18, 117, 20, 119, -100, 84, 16, -92, -62, -114, 107, 102, 92, 120, -28, -87, -125, 12, 15, 61, 68, 30, -106, 78, -113, -70, -96, -13, 60, -46, 93, 25, 38, 42, -100, -97, 54, -80, 46, -67, -51, -68, 116, -15, -70, -39, -25, -96, 40, 123, -87, -57, 105, -105, 62, -74, -44, 103, 16, 16, -112, -119, -26, -38, 116, 116, -73, 23, 97, -12, 101, 51, 1, 20, -19, 120, -13, -70, -113, -4, 110, 123, -15, 122, -86, 7, 111, -90, -69, 105, 109, 106, -5, -28, 88, 43, -79, 54, -116, 12, -42, 34, -1, 113, 36, 25, 35, -84, 84, -25, -88, -89, 18, 124, -27, -13, -14, 18, -47, -35, 93, -115, -111, -105, -19, -28, -73, 63, -118, -23, -23, 65, -116, -113, -11, 96, 124, -68, -105, 88, 15, 38, -56, 122, 106, 114, -104, 56, 25, 71, -16, -14, 101, 43, 42, 43, 30, 33, 45, 53, -54, 116, 14, -80, -118, -115, -66, 86, 64, -32, 32, 25, 107, -48, -34, -44, -128, -111, -127, 1, 124, -8, -16, -127, -102, -109, -66, -91, 5, 55, -116, -113, 97, 106, 98, 2, -125, 125, -67, -24, 108, 107, 66, 67, 109, 21, 42, -118, -97, 32, 45, 57, -95, -19, -117, -87, -100, 125, 84, -13, 105, 105, -76, 6, -98, 92, -64, 80, 73, 32, 1, 9, -105, -48, -109, 71, -38, -91, -63, 24, -83, -66, 74, -39, 72, 37, -127, 15, 37, 1, 4, 62, -8, -109, -9, -125, -56, -38, 27, -115, 41, -57, -112, 29, -88, 94, 50, 11, 110, 47, 28, -32, 44, 15, 59, 86, -46, -102, -30, -125, -50, -76, 32, -12, 102, -122, 98, -92, -30, 1, -90, 90, -118, 48, -43, -8, 4, -45, 47, 42, -120, 61, 35, 86, -122, 87, -19, -49, 48, -47, -112, -125, -15, -22, 116, 76, 54, -26, 97, -78, -71, 24, 93, -103, -47, -56, 61, -89, -97, -107, 121, 74, -115, -27, -117, -63, -43, 100, -95, -89, -1, -66, -123, -123, 101, 21, 86, -82, 100, 6, 59, 59, 59, 54, 111, 102, 15, 39, -101, -41, -2, -82, 98, 92, 78, -9, -43, -123, 82, 120, 54, -14, -14, -14, -126, -44, -57, -96, -98, -1, -8, -7, -7, -111, 28, 36, 2, -68, -34, -125, 79, -81, 118, 65, 101, -9, -113, -40, 47, -55, -114, 83, 100, -36, 77, -116, -106, 3, -41, -74, -43, 96, 96, -96, -57, -5, -15, -53, 30, 127, 5, 23, -76, -2, -120, -94, -10, -56, 34, -122, -91, -10, -110, -117, -65, 85, 121, -80, 121, -63, -81, -90, -28, 62, 73, 54, 67, -115, -121, 30, 3, 126, -52, 56, -94, 39, 4, 29, 53, 97, -44, -122, 108, -57, 117, 7, 17, -80, -82, 103, -121, -20, 79, 75, -111, -59, -75, 8, 38, -117, -24, 124, 25, -103, -106, -101, -23, 29, 56, 112, -126, -42, -41, -58, 53, 76, -87, 46, -90, 123, -96, -64, -3, 35, 92, 117, 37, 96, 44, -61, -121, -48, -117, -82, 104, -85, 76, 66, 98, -128, 2, -18, 93, 54, -61, -123, -93, 6, -16, 118, 48, -60, -3, -16, 19, -72, 96, -68, 11, 22, -94, 44, 48, -27, 103, -126, -38, 54, 6, 40, 109, 91, -15, 86, 95, -106, 29, 81, -98, -78, 80, -105, 21, 58, 49, -85, 2, 86, 100, -33, -20, 116, -29, -32, -121, -14, -41, -73, 112, 40, 68, 3, 18, -82, -126, -40, 31, 46, 15, -89, 108, 75, -104, -33, -44, -121, 85, -118, 17, 78, 60, 58, 12, 77, -78, -51, -22, -127, 17, 100, -67, 68, -63, 117, -16, -105, 23, 43, 119, 51, -49, -127, -80, 38, 66, 116, 60, -82, -6, -53, -33, 61, -113, 91, -116, -31, 82, 30, 124, -24, -43, 69, 91, -87, 18, -126, -100, 54, -62, 73, 125, 62, -4, -52, -105, 33, -64, -126, 9, 62, -26, -12, -120, 112, 101, -61, -115, 72, 57, -108, -92, 107, 80, -5, 62, -113, -5, 30, -41, 108, -66, 125, 109, 44, 68, -57, -5, -25, -2, -56, -74, -23, 63, -9, -41, 90, -84, -124, -32, -109, 27, -31, 126, 96, 9, 28, -28, -23, -32, -88, 72, 71, -75, 3, 29, -39, -47, 84, -92, 68, -37, -25, -9, -2, -24, -25, -12, 103, -84, -85, 105, -98, -97, -103, -118, 107, 81, -105, -32, 117, -50, 21, -95, -127, -66, -16, -9, 60, -121, -86, 18, 2, 6, -97, -105, -93, -68, 40, 23, -119, -79, -111, 24, -22, -19, -96, 25, 85, -53, -62, -34, -58, -36, -19, -97, -58, -22, -112, 3, 107, 54, 21, -122, -21, -2, -38, -105, -19, -118, -105, 79, -50, -47, -46, 64, 81, -128, -81, -25, -79, 27, -6, -98, 120, 98, -76, 54, 14, 47, -85, -93, -47, 91, -20, -125, -26, 7, -57, 81, 127, -21, 8, 81, 46, 5, -96, -4, -86, 49, 18, -114, -13, 83, -127, -83, 59, -115, 118, -83, 17, 57, 38, 53, -68, -5, -12, 62, 72, 123, -88, 66, 33, 64, 27, -102, 49, 7, -95, -97, 96, 1, 93, 2, 40, 100, 125, 52, -80, -5, -24, 62, -120, 25, 73, 65, -106, -64, 11, -75, 112, 3, 8, 29, -33, 59, 35, -26, 34, -125, 93, -10, 82, -32, -44, -29, 27, -27, -46, -31, -77, -33, -90, -71, 99, -2, -20, 121, 5, 6, 11, 60, 122, -104, -2, -87, -82, -74, -114, -106, -70, -108, -86, 93, 81, 82, 82, 2, -94, 12, 70, 68, 68, 4, 77, -87, 79, -87, 44, -54, -53, -53, 33, 35, 35, 67, 61, -77, 62, -72, 127, -97, 10, -50, -94, 29, -109, -98, -10, -16, 19, -83, -113, 63, 114, -65, 5, -83, -10, -22, 40, 101, 71, -1, 51, 110, -14, 15, -19, 33, 36, 70, 14, 47, 30, -117, 33, -59, -100, 29, -111, 50, 76, 8, 22, 95, -120, -112, -35, 11, 17, 42, -55, -124, 91, -90, 108, -24, -56, 22, -89, -10, 121, 89, 37, 65, -114, -31, -62, -117, 18, 118, -36, -11, 98, 113, -4, -38, -123, -52, -44, 97, 87, 72, -41, 89, -4, -66, -55, 111, 11, -58, 111, 113, -29, 67, -91, 14, 102, 106, -115, -128, 78, 71, -28, -57, -87, -63, -7, -74, 3, 2, 50, 78, -61, -3, -90, -11, -116, 123, -4, 97, -15, 57, -7, -46, -49, -4, -36, 118, 60, 66, 1, 38, -98, -62, 16, 54, 93, -6, -14, 7, 97, -70, 112, -70, -83, -1, -119, 42, 92, -52, 71, -73, 111, -123, 28, 29, 117, -79, 73, 122, 40, 93, -67, 11, -68, 112, 77, -48, -62, -107, 39, 14, -16, -69, 127, 8, -85, 101, -24, 108, -65, -102, -14, -127, 126, -63, -68, -72, -91, -117, -59, 19, 87, 46, 61, 19, -69, -119, -91, 63, -111, 123, 61, 30, -119, 19, 89, -78, -127, 22, -22, -115, -11, 80, 97, -80, 31, -23, 114, -94, -120, -33, -78, 122, 42, 121, -11, -14, -56, -21, 76, 75, 14, 94, 89, -78, -16, -117, -125, -44, -126, 111, -65, 91, -112, -80, 60, -86, -67, 106, 107, 17, 42, -124, 74, 80, -58, 91, -124, 98, -50, 2, -36, -1, -15, 54, 30, -13, -90, -95, 76, -89, 8, -19, 23, 26, -47, 27, -7, 2, -99, 65, -51, -88, 52, 41, 66, -71, 116, 1, 6, -99, 90, -31, 33, -29, 28, -15, 89, 36, 96, -10, 109, -54, -15, 17, -24, 117, 98, 127, 10, 113, -58, -107, -26, 123, 16, 32, -31, -121, -58, -70, 0, 10, 90, -44, -43, -111, 65, -72, -63, 15, 45, 77, 65, -88, -81, -11, 65, 13, 13, 88, 84, 93, 64, 45, -79, -118, -89, 110, 40, -52, 118, 69, 92, -60, 31, 5, -111, 13, 61, 24, 20, -19, 67, 86, -29, 78, -61, 106, -124, 87, 45, 67, 84, 2, 39, -22, -117, 108, 49, -36, 19, -122, 55, 99, -9, -15, -37, 116, 38, 102, -56, 64, -127, -23, 48, 96, -62, 6, 120, 41, 15, 12, -16, 3, -67, -36, 64, 11, 19, 122, -110, 23, 33, -5, -52, 55, 71, 63, 115, -124, 68, -24, -17, 41, 39, -64, -94, 48, -59, 22, 47, -98, -5, 82, -59, -72, 63, 126, 122, 64, 40, 126, 42, -98, 92, 85, 65, -84, -19, 90, 36, -71, 113, 34, 43, 78, -66, -65, -86, -56, -10, 127, -106, -48, 90, 37, 72, -47, -69, -37, -83, -15, -67, 117, 106, 57, -98, -58, -3, -120, -46, -69, 107, 80, -105, -55, -118, -2, 90, 54, 12, 54, 115, -94, 50, -29, 39, 92, -74, 99, 44, 15, 83, 99, -100, -13, -96, -94, -28, -72, -94, -43, -7, -70, 48, 18, -13, -84, -15, -76, 57, 6, -75, -35, -73, 9, -84, -120, 71, -59, -117, 24, 20, 54, 7, -32, 81, -51, 41, 36, 63, 53, 71, 76, -127, 38, 66, 115, -28, 16, -100, 45, 67, 64, -114, 56, 78, -34, -25, -128, 105, -60, 79, 80, 119, 90, 9, 9, 67, -90, -15, -33, -95, -59, 2, 98, 11, 41, -57, -74, 33, -125, -57, -107, -21, -110, -88, 110, 62, -123, -106, -10, 72, 116, -12, 6, 97, 100, -4, 1, 58, 7, 109, -47, 51, -28, -128, -82, -95, -125, 104, -17, -45, 67, 67, -89, 42, -98, -73, 40, 32, -89, 88, 2, -9, 115, 56, -111, 81, -64, 7, 39, -73, 63, -118, -77, 86, 107, -118, 86, 13, 57, 104, 98, -24, -126, 17, 94, 6, 28, -58, 72, -88, 13, 70, 46, 17, -93, -83, -125, -83, -16, 50, -16, 8, 49, 75, -116, -109, 118, -77, -75, 34, 58, -113, -85, 98, -28, -94, 49, 6, -100, -75, -48, 75, -64, 64, -113, -127, 20, -22, 20, 5, 39, -26, 56, -40, 22, 111, -94, -65, -67, -98, -57, -15, -98, -106, -58, 76, -123, -42, -31, 55, 121, -68, -110, 72, -3, 105, 7, -30, -66, -37, -16, -62, -125, -111, 45, 69, -107, -56, -4, 19, -41, 108, 69, 53, -89, 34, -54, 37, 116, -112, -53, 46, -126, 27, -12, 27, -31, -75, 108, -45, -69, -109, 107, 57, -1, 49, 90, -16, -111, -19, 90, -85, -127, 82, 31, -12, -90, 59, -93, -36, 95, 3, -125, -71, 86, 24, -50, -79, 69, -20, 38, 102, -124, 46, 92, -120, 68, 78, 118, 52, 38, -99, 24, -7, 98, 94, -39, -11, 11, -23, -113, 110, -103, -41, 118, 117, 47, 3, -78, -12, -41, -93, -44, -126, 3, -107, 4, 124, 52, -98, 18, 68, -37, 57, 113, -14, -37, 16, 71, -25, 69, 9, 116, 7, 72, -95, 47, 76, 22, 93, -2, 18, 40, 62, -76, 25, 62, 66, -33, 127, -80, -31, 89, -62, -6, 79, -25, -90, -67, -109, 101, -125, -93, -56, -70, 79, 49, 90, 60, 72, -73, 18, -89, -64, -59, 99, 123, 89, -28, 95, 52, 65, 65, -56, 9, -92, -71, 107, -29, -86, -103, -32, 71, 103, -71, -51, -82, -6, 59, -26, -42, 70, -111, 92, -73, 126, -83, 57, 31, -1, -80, -75, -48, 94, -104, -18, -110, -128, -79, -96, 24, 12, 5, 69, 103, -116, -123, -59, 103, 44, 37, 100, 102, 28, 100, -107, 102, -68, 53, 15, 32, -62, -40, 98, 38, -18, -80, 29, -18, 28, 119, 65, 81, 104, 52, -94, -99, -20, -97, -101, -120, 9, -51, 113, 84, -34, 112, 86, 94, -16, 120, -81, 104, 123, -125, -12, 110, -108, -13, 113, 99, -40, -43, -119, 82, -65, -4, -106, 116, -123, 103, -12, -38, 41, -33, -73, -73, 3, -20, -34, -36, 10, -44, 43, 63, 47, 58, 93, 31, 42, -121, -50, -21, -6, -24, 73, -79, -60, -117, 36, 11, -76, 95, 53, 68, -59, 89, -111, 55, 127, 20, 124, 14, 81, -102, 24, 27, 123, 63, 61, -3, 10, -109, 47, 6, 48, 117, -107, 64, -118, -102, 46, -116, 77, -115, 98, -84, -71, 23, 19, 87, 42, 49, 25, 83, -119, -15, -76, 6, -116, 53, 18, 120, 49, 57, -118, -15, -14, 78, 74, 121, -15, -22, -43, 20, -34, 76, 79, -29, 105, 73, -55, 103, -14, -70, -29, 39, -20, 115, -61, 35, 34, 104, 14, 106, -12, -12, 116, -95, -65, -81, 27, 3, 52, -21, 125, 65, -84, 29, 125, 93, -51, -24, 121, -47, -128, -18, -10, 122, 116, -74, 55, -96, -93, -83, 1, -43, -107, -27, -44, 13, -26, -8, 113, -5, -49, 100, -64, 124, -85, -26, 85, 75, -78, 46, -126, 30, -25, -113, 32, -9, 59, 104, 109, 103, -122, 9, -57, 6, -24, 109, 93, 6, -55, -97, 22, 78, 10, -81, 99, 40, 19, 94, -69, -92, 100, -9, -102, -7, 35, 50, -65, 48, 67, -122, 109, 49, -44, -71, -104, 8, -32, 96, -123, -10, 78, 38, -88, 108, 93, 8, -123, 13, -116, -76, -1, 119, -66, -121, 26, -53, -94, -101, 103, 85, 91, 27, -45, -36, -47, 112, -17, 36, -98, 39, -39, -95, -8, -118, 57, -54, -82, 89, 33, -3, -94, 50, 78, 107, -120, 66, 99, 59, 7, 12, -59, -73, -94, 40, -42, 2, 79, 46, 31, 65, 73, -100, 21, 114, -62, -116, 80, 16, 109, -118, -38, 59, 78, 104, 73, 119, -57, -99, -13, 74, 61, -66, -70, -21, 127, -8, -20, 59, -78, -29, -57, -97, -35, -43, -73, -3, -86, -1, -53, 119, -108, 12, -77, -91, 111, 12, 79, -85, 106, 113, 47, 51, 11, 87, 83, 31, 34, 60, 42, 26, -115, 123, 5, 48, 45, 43, -126, 94, 113, 94, -12, 31, -44, -98, -23, -10, 112, -31, -104, 83, 121, -43, -61, 51, 38, 46, 34, 46, -30, -68, -3, -123, -99, -77, -59, -75, 108, 55, 96, -59, -103, 95, -64, -107, 100, 15, -85, -52, 123, 8, -55, -83, -59, -3, -68, 86, -36, 73, -88, 69, -120, 83, 33, 46, -97, -67, 19, -100, -97, -110, 107, 55, 49, 52, -47, 59, 57, 62, 89, -105, -106, -106, 118, -99, 64, -117, -123, 20, 100, -40, 69, -49, -33, -18, 111, -121, 44, -13, -53, -88, -69, 101, -119, -124, 22, 125, -104, 38, 37, 99, -85, -43, 115, -104, -40, -123, -63, -27, -108, 11, 14, -69, -92, -31, 80, -8, 75, -104, -89, 36, 66, -55, -99, 121, -104, 127, 59, 121, -8, -3, -54, 66, -94, -84, -17, -47, 62, 115, 95, 71, 11, 92, 80, 34, -86, -121, 14, 63, -4, 86, -95, -117, 15, 79, 68, -128, 39, -36, 64, -34, 22, -78, -34, -116, -103, -52, 13, -8, 88, 99, 14, 124, -20, -58, -57, -55, 66, -40, -119, 46, -125, -57, 113, 115, -48, -114, 13, 11, 13, -3, 44, 42, 46, -34, -106, -31, -40, 96, -12, 15, 64, 58, 11, 80, -72, 29, 40, 16, 33, -86, 10, 9, -68, 47, -112, -60, -37, 39, -5, -16, -74, 72, 30, -17, -53, -43, 48, -45, 114, 16, 104, -31, -58, -89, 23, 122, -64, 112, 20, -127, 103, -63, 72, -117, -110, 78, -6, -37, 116, 126, -36, -36, -85, 52, 5, 4, 42, -9, 110, -40, -12, -98, -97, 105, 37, -124, -106, -81, -60, -10, 21, 44, 16, 101, -33, -16, 97, 63, 31, 95, -75, 36, 47, -17, -65, 78, 69, -48, -93, -10, 125, 74, -125, 17, 35, -98, -37, 109, 69, -99, -11, 70, 52, 28, -33, -126, 122, -121, 109, 40, 113, 18, 33, 109, 78, -44, -39, -17, 64, -109, -59, 90, -12, -86, -46, -25, -3, 99, 74, -88, 107, -15, 90, -89, 93, 93, -37, -54, -98, 21, 127, 26, 30, -24, -58, -24, 112, 31, -58, 71, 7, 41, 27, 38, -19, 62, -78, -83, -23, 69, 11, -30, -110, -109, 127, 61, -23, 31, 94, 17, -103, -110, -7, -43, -55, 44, -91, -84, -80, -24, 0, -35, -111, 78, -112, -74, 6, 81, 88, -52, 35, -90, 68, -9, -1, -80, -84, -38, 51, -49, -6, 68, -38, 62, 72, -82, -90, 115, 45, 94, -70, 102, -80, 67, -120, 15, 21, 59, -71, 112, -122, 126, -47, -11, -39, -102, 3, 26, -12, -33, 122, -7, -14, -98, -68, -101, -92, 94, 97, 100, -80, 108, -21, -105, -122, 102, -110, 87, -12, -109, 114, -48, 67, -100, 45, 28, -124, 103, -55, 16, -116, 108, 108, -47, -13, 60, 29, -8, -8, 1, 37, -11, -91, -96, 11, 127, 8, -70, -96, 124, 88, 103, 103, -126, 68, 55, 0, 0, 1, -10, -61, -80, 53, -110, -57, -75, -45, 42, -112, -77, 117, 3, -23, 99, 22, 90, 44, -6, -127, 69, 44, 58, -83, 22, 29, 67, -29, -56, -86, -17, -125, -1, -29, 22, 104, -123, 84, -126, 99, -1, 37, -4, -76, 93, 105, 14, -116, 32, 34, 85, -42, 29, 59, 118, -108, -83, 96, 102, -34, -5, -97, -100, -71, -13, 22, -86, 114, -77, 126, -106, 30, -54, 65, 116, -5, -14, 59, -70, 10, -55, 93, 78, 102, 120, -17, -29, -120, 55, 25, 119, 48, 56, 58, -122, -47, -79, 113, 76, 18, 72, -15, 41, -21, 62, 112, -17, 6, -112, 28, -121, 119, -49, 43, 48, 58, 53, -123, -90, -90, 38, 36, 39, 39, -25, 57, 58, 58, -82, -5, 44, 98, 111, 30, -35, -70, 10, -63, 101, -109, -26, -13, 23, 43, -80, -118, -99, 104, 58, 17, 117, 11, 87, -118, 10, -111, 67, -32, -57, -13, -33, 62, -30, -44, -27, 12, 120, 42, -46, 17, 7, 28, 35, 90, -61, 84, -127, 98, 47, -52, 20, 71, -31, 125, -98, 61, -90, -30, 9, 68, 61, 66, 7, 114, 33, -117, -1, 59, 63, -27, -40, -58, -61, -51, -57, 47, 52, 35, -81, -88, 10, 77, 93, 67, -56, -20, 83, -124, -38, 126, 93, 98, 58, -108, -70, 66, -106, -68, 38, 70, -75, -113, 28, 52, -128, -98, -114, 62, -10, -53, -119, -32, -103, -37, 50, -88, 43, -120, -125, 119, -121, -48, -32, -26, 45, 91, 25, 104, 125, -3, 57, 61, 20, 81, 58, 80, 105, -110, 72, 13, -99, 89, 117, -59, 95, -96, 5, -107, 30, -118, -88, -66, -88, 28, -54, 98, 98, 98, 120, -4, -8, 49, -83, 96, -11, 103, 74, 11, -110, 14, 74, -97, 68, -35, 83, 53, 33, -56, -124, -127, 6, 35, 40, 72, 97, 108, 108, 76, 115, 110, -45, 10, 69, 82, -57, 114, 113, 113, 81, -75, 36, 8, -4, -96, 38, 20, 68, -19, 1, -110, 114, 8, -98, -98, -98, 52, -80, -111, -6, 69, -91, 5, 73, 15, 85, 74, 79, -113, -5, -21, -42, -31, 73, 112, 48, 58, 8, 44, -22, 35, -25, 93, -101, -107, -123, 84, 21, 21, 100, -109, -25, -126, 39, -116, -116, -56, 95, -74, 12, 37, -60, -56, -2, -1, 8, 45, -72, -1, 63, 66, -117, 11, 27, -24, 56, 34, -28, -106, 44, 79, 48, -26, -10, 121, -30, 40, -12, 41, -53, 93, 9, -106, 22, 102, 8, 116, 50, 65, -31, 73, 126, -44, -97, -26, -123, -9, 70, -70, 44, 57, -14, 53, -68, -94, 37, -104, 119, -34, 92, -41, -20, 47, 105, 26, 42, -2, 106, -28, -5, -6, 27, 73, 15, 85, -49, -56, -56, -8, -126, -88, 45, 102, 72, -79, 76, 44, 88, -80, 0, 75, -105, 46, -19, -94, -10, -7, 27, -5, 44, -54, 63, 36, -53, 94, -91, -92, 31, -89, 58, -34, 32, -112, 64, 11, -94, -84, -96, -20, -14, -48, 111, 8, -23, 123, 15, 30, -73, 110, -4, 116, 114, 24, -126, -25, 59, -80, 39, 62, 31, -94, -73, 43, -80, 45, 60, -1, -85, -13, 25, 15, -7, 31, -6, -49, 72, -47, -41, 16, 88, -15, -98, 64, 64, 90, 106, 40, -102, -77, -29, 36, 31, 31, -97, -103, -126, -94, 82, 14, -7, -68, 41, 64, -107, -102, 95, 74, -91, -126, -6, 56, -125, -49, -106, 89, -91, -59, 92, -75, -59, 82, 29, 33, -58, -113, 62, 6, -101, 113, -126, -36, 79, -92, 121, -105, 66, -110, 119, 25, -108, 118, 48, 66, -110, 99, 9, -92, 57, 126, -128, -99, 12, 51, -114, -19, -5, 17, 26, 2, -53, -63, -63, -70, -56, -7, -77, -7, -33, 73, -82, -125, -115, 113, 18, -24, 77, -42, -62, 104, -31, 49, 12, -27, 31, 66, 103, -86, 30, -54, 34, -44, 48, 90, 113, 5, -71, -98, -118, -120, -47, 97, -59, 61, -13, -11, 40, 117, -39, -122, 23, -15, -69, 81, 79, -85, -105, -28, -80, 1, -113, -52, -104, 113, 93, 109, -39, -40, 37, -23, 69, -117, -1, 3, 68, -23, 56, 56, -28, -24, 33, 124, -120, 1, -5, -56, -36, -32, 80, -16, 70, 24, -8, -83, -125, -92, -18, 18, 20, -84, -6, 6, -49, -11, 119, -93, 123, -88, 2, -67, -29, 13, -24, 108, 45, -64, -32, 64, 5, -122, -120, 117, -76, -28, -93, 123, -76, 14, 29, 3, -49, 80, 69, -10, -55, 99, -7, 22, 59, -65, -7, -122, 26, 127, 31, -92, -60, -63, -36, -52, 8, 47, -5, -22, -88, 117, -62, -107, -13, -104, 24, 106, -64, 72, -103, 27, 82, 66, 45, 81, 127, -41, 16, 13, -9, 14, 34, 45, -58, 5, -125, 37, -50, -44, 123, 100, -97, -49, -114, 33, 125, 124, 5, 90, 108, -22, 108, -108, -31, -60, -72, 62, 55, 38, -19, -119, -38, -62, 95, 0, 83, -79, -60, 18, -8, 49, 21, 69, -42, 94, 2, -104, -76, -37, -119, -105, -38, -36, 120, 38, -79, 13, -50, 91, -39, -65, -102, -118, 45, -42, -17, -62, -114, -64, 115, 46, -75, 1, 4, 66, -124, 5, -8, 34, -23, 106, 12, -82, -57, 68, -61, -17, -62, 89, 42, 109, 84, -80, -49, 69, 120, -97, 117, -91, 32, 70, 36, -127, 23, -119, -41, -81, 82, -48, 34, -126, -64, 13, 27, 83, -109, -74, 57, -112, 60, 37, 81, -92, -24, 113, 70, 95, 71, 75, 11, 1] astore_1 aload_0 ldc literal_1295:"__e7-20.png@24576" aload_1 invokevirtual java.lang.Object put( java.util.Hashtable, java.lang.Object, java.lang.Object ) // pc=3 pop return } }
[ "git@jaapsuter.com" ]
git@jaapsuter.com
efcb2c088d63a79d5be395a47790784b2dc63853
7bb07f40c5a62e300ae4e83bf789e5aa1f1b70f7
/core/tags/1.5.1/1.3.1/src/com/vividsolutions/jump/workbench/ui/plugin/analysis/SpatialJoinPlugIn.java
d097a22ecd268f313069d1f89d7b924ea69f93a2
[]
no_license
abcijkxyz/jump-pilot
a193ebf9cfb3f082a467c0cfbe0858d4e249d420
3b6989a88e5c8e00cd55c3148f00a7bf747574c7
refs/heads/master
2022-12-18T15:22:44.594948
2020-09-23T10:46:11
2020-09-23T10:46:11
297,995,218
0
0
null
2020-09-23T15:27:25
2020-09-23T14:23:54
null
UTF-8
Java
false
false
7,808
java
/* * The Unified Mapping Platform (JUMP) is an extensible, interactive GUI * for visualizing and manipulating spatial features with geometry and attributes. * * Copyright (C) 2003 Vivid Solutions * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation; either version 2 * of the License, or (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. * * For more information, contact: * * Vivid Solutions * Suite #1A * 2328 Government Street * Victoria BC V8T 5G5 * Canada * * (250)385-6040 * www.vividsolutions.com */ package com.vividsolutions.jump.workbench.ui.plugin.analysis; import java.util.*; import java.awt.event.*; import javax.swing.*; import com.vividsolutions.jump.I18N; import com.vividsolutions.jump.feature.*; import com.vividsolutions.jump.task.*; import com.vividsolutions.jump.workbench.WorkbenchContext; import com.vividsolutions.jump.workbench.model.*; import com.vividsolutions.jump.workbench.plugin.*; import com.vividsolutions.jump.workbench.plugin.util.*; import com.vividsolutions.jump.workbench.ui.*; import com.vividsolutions.jump.workbench.ui.plugin.FeatureInstaller; /** * Queries a layer by a spatial predicate. */ public class SpatialJoinPlugIn extends AbstractPlugIn implements ThreadedPlugIn { private Layer srcLayerA; private Layer srcLayerB; private JTextField paramField; private Collection functionNames; private MultiInputDialog dialog; private String funcNameToRun; private GeometryPredicate functionToRun = null; private boolean exceptionThrown = false; private double[] params = new double[2]; public SpatialJoinPlugIn() { functionNames = GeometryPredicate.getNames(); } private String categoryName = StandardCategoryNames.RESULT; public String getName(){ //-- exchanged plugin with SIGLE plugin //return I18N.get("ui.plugin.analysis.SpatialJoinPlugIn.Spatial-Join"); return I18N.get("org.openjump.sigle.plugin.SpatialJoinPlugIn.Transfer-Attributes"); } public void setCategoryName(String value) { categoryName = value; } public void initialize(PlugInContext context) throws Exception { FeatureInstaller featureInstaller = new FeatureInstaller(context.getWorkbenchContext()); featureInstaller.addMainMenuItem( this, //exe new String[] {MenuNames.TOOLS, MenuNames.TOOLS_EDIT_ATTRIBUTES}, //menu path this.getName() + "...", //name methode .getName recieved by AbstractPlugIn false, //checkbox null, //icon createEnableCheck(context.getWorkbenchContext())); //enable check } public static MultiEnableCheck createEnableCheck(WorkbenchContext workbenchContext) { EnableCheckFactory checkFactory = new EnableCheckFactory(workbenchContext); return new MultiEnableCheck() .add(checkFactory.createWindowWithLayerNamePanelMustBeActiveCheck()) .add(checkFactory.createAtLeastNLayersMustExistCheck(2)); } public boolean execute(PlugInContext context) throws Exception { dialog = new MultiInputDialog(context.getWorkbenchFrame(), getName(), true); setDialogValues(dialog, context); GUIUtil.centreOnWindow(dialog); dialog.setVisible(true); if (! dialog.wasOKPressed()) { return false; } getDialogValues(dialog); return true; } public void run(TaskMonitor monitor, PlugInContext context) throws Exception { monitor.allowCancellationRequests(); // input-proofing if (functionToRun == null) return; if (srcLayerA == null) return; if (srcLayerB == null) return; monitor.report(I18N.get("ui.plugin.analysis.SpatialJoinPlugIn.Executing-join")+ " " + functionToRun.getName() + "..."); FeatureCollection srcAFC = srcLayerA.getFeatureCollectionWrapper(); FeatureCollection srcBFC = srcLayerB.getFeatureCollectionWrapper(); //-- [sstein 28.Mar.2008] reversed order of input (to be able to read from top to down the spatial relations) SpatialJoinExecuter executer = new SpatialJoinExecuter(srcBFC, srcAFC); FeatureCollection resultFC = executer.getResultFC(); executer.execute(monitor, functionToRun, params, resultFC); if (monitor.isCancelRequested()) return; String outputLayerName = I18N.get("ui.plugin.analysis.SpatialJoinPlugIn.Join")+ "-" + funcNameToRun; context.getLayerManager().addCategory(categoryName); context.addLayer(categoryName, outputLayerName, resultFC); if (exceptionThrown) { context.getWorkbenchFrame().warnUser("Errors found while executing query"); } } private final static String LAYER_A = GenericNames.LAYER_A + " (" + GenericNames.TARGET_LAYER + ")"; private final static String LAYER_B = GenericNames.LAYER_B + " (" + GenericNames.SOURCE_LAYER + ")"; private final static String PREDICATE = GenericNames.RELATION; private final static String PARAM = GenericNames.PARAMETER; private void setDialogValues(MultiInputDialog dialog, PlugInContext context) { //dialog.setSideBarImage(new ImageIcon(getClass().getResource("DiffSegments.png"))); //-- [sstein 31March2008] replaced sidebar description by better description use in SIGLE plugin /* dialog.setSideBarDescription( I18N.get("ui.plugin.analysis.SpatialJoinPlugIn.Joins-two-layers-on-a-given-spatial-relationship") + " (" + I18N.get("ui.plugin.analysis.SpatialJoinPlugIn.example") +")"); */ dialog.setSideBarDescription(I18N.get("org.openjump.sigle.plugin.SpatialJoinPlugIn.Transfers-the-attributes-of-Layer-B-to-Layer-A-using-a-spatial-criterion")); //Set initial layer values to the first and second layers in the layer list. //In #initialize we've already checked that the number of layers >= 1. [Jon Aquino] Layer initLayer1 = (srcLayerA == null)? context.getCandidateLayer(0) : srcLayerA; Layer initLayer2 = (srcLayerB == null)? context.getCandidateLayer(1) : srcLayerB; dialog.addLayerComboBox(LAYER_A, initLayer1, context.getLayerManager()); JComboBox functionComboBox = dialog.addComboBox(PREDICATE, funcNameToRun, functionNames, null); functionComboBox.addItemListener(new MethodItemListener()); paramField = dialog.addDoubleField(PARAM, params[0], 10); dialog.addLayerComboBox(LAYER_B, initLayer2, context.getLayerManager()); updateUIForFunction(funcNameToRun); } private void getDialogValues(MultiInputDialog dialog) { srcLayerA = dialog.getLayer(LAYER_A); srcLayerB = dialog.getLayer(LAYER_B); funcNameToRun = dialog.getText(PREDICATE); functionToRun = GeometryPredicate.getPredicate(funcNameToRun); params[0] = dialog.getDouble(PARAM); } private void updateUIForFunction(String funcName) { boolean paramUsed = false; GeometryPredicate func = GeometryPredicate.getPredicate(funcName); if (func != null) { paramUsed = func.getParameterCount() > 0; } paramField.setEnabled(paramUsed); // this has the effect of making the background gray (disabled) paramField.setOpaque(paramUsed); } private class MethodItemListener implements ItemListener { public void itemStateChanged(ItemEvent e) { updateUIForFunction((String) e.getItem()); } } }
[ "edso@d6f7b87f-2e33-0410-8384-f77abc8d64da" ]
edso@d6f7b87f-2e33-0410-8384-f77abc8d64da
db30ad9fd0c7f1226967fb19e3c504b8255ebfd8
6ef8cad10a157f71e282a6cc4e50264c4abd1c88
/Projeto3JDBC/src/main/java/br/edu/unirg/projeto/telaContato/TelaContatoView.java
53e1daff77ca40aae3865019b24cd6a8623a02fe
[]
no_license
rogeriomq/lpcii
d70fc872d1c7886a54db62a557045a4d9af46ab0
36f9150a2fd7874feceee2f490c1aa6af65aab70
refs/heads/master
2021-01-21T13:25:37.877499
2016-05-31T01:09:13
2016-05-31T01:09:13
54,477,809
0
0
null
null
null
null
UTF-8
Java
false
false
486
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 br.edu.unirg.projeto.telaContato; import com.airhacks.afterburner.views.FXMLView; /** * * @author rogerio */ public class TelaContatoView extends FXMLView { public TelaContatoPresenter getRealPresenter() { return (TelaContatoPresenter) super.getPresenter(); } }
[ "rogerio.mq@gmail.com" ]
rogerio.mq@gmail.com
ad1ecf4c0a1dbdfcabec695d7b9b6eae67437129
611e9f82df8069ed4e6c6f7bff9506fa1d171bd0
/src/main/java/me/zoon20x/skyenvoys/files/AsyncFileCache.java
b4b58d603b17f44fc888a34d5fbad83733082440
[]
no_license
Zoon20X/SkyEnvoys
6d65fc3fde62908c71a1cc029c324caf91256026
ae83cc32461ce265dbc834da26dc6634b452ea6b
refs/heads/master
2023-02-21T17:09:35.693203
2021-01-24T23:48:51
2021-01-24T23:48:51
330,643,574
0
0
null
null
null
null
UTF-8
Java
false
false
6,851
java
package me.zoon20x.skyenvoys.files; import me.zoon20x.skyenvoys.Containers.EnvoyContainer; import me.zoon20x.skyenvoys.Containers.settings.*; import me.zoon20x.skyenvoys.SkyEnvoys; import me.zoon20x.skyenvoys.utils.ChestStates; import me.zoon20x.skyenvoys.utils.EnvoyList; import me.zoon20x.skyenvoys.utils.MessagesUtil; import org.bukkit.Effect; import org.bukkit.Material; import org.bukkit.configuration.file.FileConfiguration; import org.bukkit.configuration.file.YamlConfiguration; import org.bukkit.inventory.ItemStack; import org.bukkit.plugin.Plugin; import org.bukkit.scheduler.BukkitRunnable; import java.io.File; import java.util.ArrayList; import java.util.UUID; public class AsyncFileCache { private static File getFile(String id){ return new File(SkyEnvoys.getInstance().getDataFolder(), id + ".yml"); } private static File getEnvoyTypesFile(String id){ return new File(SkyEnvoys.getEnvoyTypesFolder(), "/"+id); } private static FileConfiguration getConfig(File file){ return YamlConfiguration.loadConfiguration(file); } public static void startAsyncCreate() { FileCache.createFile(getFile("lang"),getConfig(getFile("lang")), "lang.yml", "lang.yml", "lang"); FileCache.createFile(getFile("/GUIS/SettingsGUI.yml"), getConfig(getFile("/GUIS/SettingsGUI.yml")), "/GUIS/SettingsGUI.yml", "GUIS/SettingsGUI.yml", "SettingsGUI"); startAsyncCache(); } public static void startAsyncCache() { new BukkitRunnable(){ @Override public void run() { FileCache.addFileToCache("lang", getConfig(getFile("lang"))); FileCache.addFileToCache("settingsGUI", getConfig(getFile("/GUIS/SettingsGUI"))); LoadLangData(); } }.runTaskAsynchronously(SkyEnvoys.getInstance()); LoadEnvoys(); } public static void LoadLangData(){ LangContainer container = new LangContainer(); container.setAdminCreatorCreated(FileCache.getConfig("lang").getString("EnvoysCommand.Admin.Creator.AlreadyCreated.Message")); container.setAdminCreatorNeedName(FileCache.getConfig("lang").getString("EnvoysCommand.Admin.Creator.NoName.Message")); container.setAdminEditorNeedName(FileCache.getConfig("lang").getString("EnvoysCommand.Admin.Editor.NoName.Message")); container.setAdminEditorNoExist(FileCache.getConfig("lang").getString("EnvoysCommand.Admin.Editor.NoExist.Message")); MessagesUtil.setLangData(container); } public static void LoadEnvoys(){ new BukkitRunnable() { @Override public void run() { File dir = SkyEnvoys.getEnvoyTypesFolder(); for(String x : dir.list()){ File settings = getEnvoyTypesFile(x + "/Settings.yml"); File items = getEnvoyTypesFile(x + "/Items.yml"); File locations = getEnvoyTypesFile(x + "/Locations.yml"); FileConfiguration settingsConfig = null; FileConfiguration itemsConfig = null; FileConfiguration locationsConfig = null; if(settings.exists() && items.exists() && locations.exists()){ settingsConfig = getConfig(settings); itemsConfig = getConfig(items); locationsConfig = getConfig(locations); }else{ System.out.println(MessagesUtil.basicColor("&c" + x + " &4could not be loaded, please check you have all the files")); } if(settingsConfig !=null && itemsConfig !=null && locationsConfig !=null){ EnvoyEffects effects = new EnvoyEffects(settingsConfig.getBoolean("Effects.Lightning"), settingsConfig.getBoolean("FallingBlock.Enabled"), settingsConfig.getInt("FallingBlock.DropHeight")); EnvoyMessages messages = new EnvoyMessages(settingsConfig.getString("Message.Summon"), settingsConfig.getString("Message.Finish")); EnvoyEvents events = new EnvoyEvents( settingsConfig.getBoolean("SummonEvent.Message-Enabled"), settingsConfig.getBoolean("FinishEvent.Message-Enabled"), ChestStates.valueOf(settingsConfig.getString("FinishEvent.ChestOption"))); Boolean summonTime = settingsConfig.getBoolean("Time.Summon.Enabled"); Boolean finishTime = settingsConfig.getBoolean("Time.Finish.Enabled"); EnvoyTime time = null; if (summonTime && finishTime) { String summonUnits = settingsConfig.getString("Time.Summon.Units"); String finishUnits = settingsConfig.getString("Time.Finish.Units"); Integer summonAmount = settingsConfig.getInt("Time.Summon.Amount"); Integer finishAmount = settingsConfig.getInt("Time.Finish.Amount"); time = new EnvoyTime(true, true, summonUnits, finishUnits, summonAmount, finishAmount); }else if(!summonTime && !finishTime){ time = new EnvoyTime(); }else{ String units; Integer amount = 0; if(summonTime){ units = settingsConfig.getString("Time.Summon.Units"); amount = settingsConfig.getInt("Time.Summon.Amount"); time = new EnvoyTime(true, false, units, amount); }else if(finishTime){ units = settingsConfig.getString("Time.Finish.Units"); amount = settingsConfig.getInt("Time.Finish.Amount"); time = new EnvoyTime(false, true, units, amount); } } ItemStack item = new ItemStack(Material.valueOf(settingsConfig.getString("EnvoyBlock.Type")), 1, (short) settingsConfig.getInt("EnvoyBlock.Data")); EnvoyContainer container = new EnvoyContainer(x,item, new ArrayList<>(), effects, messages, time, events); EnvoyList.addEnvoy(x, container); }else{ System.out.println(MessagesUtil.basicColor("&c" + x + " &4could not be loaded, please check you have all the files")); } } } }.runTaskAsynchronously(SkyEnvoys.getSkyEnvoys()); } }
[ "47308184+Zoon20X@users.noreply.github.com" ]
47308184+Zoon20X@users.noreply.github.com
32a2e1b9ea3d78556555e5c302983d8bc23fc62c
ebce1f3728823245d94b6a06e66a9c4e37801e7e
/src/main/java/com/scheible/es2020parser/util/JavaScriptTransformer.java
ba1b531ba36ce065acdff34fec3bc1d9b8c51f3a
[ "MIT" ]
permissive
janScheible/javascript-es2020-parser
268246f54fbc810be5517456d3d6d11f4e1b9263
7c2435eee07c9bb277eed5779abad71d69e588aa
refs/heads/master
2022-05-28T17:04:45.051354
2022-05-16T19:09:13
2022-05-16T19:09:13
250,891,067
0
0
MIT
2020-10-13T20:43:50
2020-03-28T20:51:48
ANTLR
UTF-8
Java
false
false
2,493
java
package com.scheible.es2020parser.util; import java.io.BufferedReader; import java.io.IOException; import java.io.InputStream; import java.io.InputStreamReader; import static java.nio.charset.StandardCharsets.UTF_8; import java.util.ArrayList; import java.util.Collections; import java.util.HashMap; import java.util.List; import java.util.Map; import java.util.Set; import java.util.function.Function; import java.util.function.Supplier; /** * * @author sj */ public class JavaScriptTransformer { /** * Allows to transform all passed <code>Positionable</code> instances in the JavaScript source retrieved from * the <code>InputStream</code>. */ public static <T extends Positionable> String transform(final Supplier<InputStream> inputStreamSupplier, final Function<String, Set<T>> positionableSupplier, final Function<T, String> transformerFunction) throws IOException { final StringBuilder javaScriptSourceBuilder = new StringBuilder(); String line; int lineNumber = 0; final List<Integer> lineLengths = new ArrayList<>(); try (BufferedReader reader = new BufferedReader(new InputStreamReader(inputStreamSupplier.get(), UTF_8))) { while ((line = reader.readLine()) != null) { lineNumber++; lineLengths.add(line.length()); javaScriptSourceBuilder.append(line).append('\n'); } } final Map<Integer, List<T>> lineNumberSourcePositionMapping = new HashMap<>(); for (final T positionable : positionableSupplier.apply(javaScriptSourceBuilder.toString())) { lineNumberSourcePositionMapping .computeIfAbsent(positionable.getPosition().getLine(), key -> new ArrayList<>()).add(positionable); } int position = javaScriptSourceBuilder.length(); for (int i = lineLengths.size() - 1; i >= 0; i--) { final List<T> linePositionables = lineNumberSourcePositionMapping.get(lineNumber); if (linePositionables != null) { Collections.sort(linePositionables, (first, second) -> Integer.compare(second.getPosition().getStart(), first.getPosition().getStart())); for (final T positionable : linePositionables) { final int start = position - lineLengths.get(i) + positionable.getPosition().getStart() - 1; final int end = position - lineLengths.get(i) + positionable.getPosition().getEnd(); javaScriptSourceBuilder.replace(start, end, transformerFunction.apply(positionable)); } } position -= lineLengths.get(i) + 1; lineNumber--; } return javaScriptSourceBuilder.toString(); } }
[ "janScheible@users.noreply.github.com" ]
janScheible@users.noreply.github.com
6ff2629c189002e0869edab3a3ee4fc454d82486
dd40594a2e0c69ee2f74416dadebd94ac32e4ab0
/communication/Control.java
c002531b041b9242de652afaef29187141872669
[]
no_license
Bkrokoff/CSC4330Code
e51501b7fa670844247ad0777a382f05bbf8c65c
1a32b8bdbe20d09c6d33531f21a6cb9a48188f09
refs/heads/main
2023-01-12T00:59:29.978390
2020-11-18T21:43:26
2020-11-18T21:43:26
null
0
0
null
null
null
null
UTF-8
Java
false
false
372
java
// a shared resource that ensures that the set of "Number"s which // share this object proceed in order, according to "counter" public class Control { private int counter = 0; public void call(int i) { while(i != counter) { try { wait(); } catch(Exception e) {} } System.out.println(i); counter++; // next, please notifyAll(); } }
[ "murray.patterson@gmail.com" ]
murray.patterson@gmail.com
ebe884f629d8ccb87e28e97c4f498d310d3f8aad
9e5ec21099f0707672ee74d6eb7782d4b71b8ebf
/app/src/androidTest/java/com/example/android/blossom/ExampleInstrumentedTest.java
93e8674b78ca881378afd675f47ec762a828add2
[]
no_license
alonshp/miLab-Demo-App
4a5cd4b41a32caf572a627931ec4d8b6250a9a4b
1adb126fa7ae417a7f2118c41eab6b496112b5f7
refs/heads/master
2020-12-02T17:57:12.560942
2017-07-06T16:57:13
2017-07-06T16:57:13
null
0
0
null
null
null
null
UTF-8
Java
false
false
758
java
package com.example.android.blossom; import android.content.Context; import android.support.test.InstrumentationRegistry; import android.support.test.runner.AndroidJUnit4; import org.junit.Test; import org.junit.runner.RunWith; import static org.junit.Assert.*; /** * Instrumentation test, which will execute on an Android device. * * @see <a href="http://d.android.com/tools/testing">Testing documentation</a> */ @RunWith(AndroidJUnit4.class) public class ExampleInstrumentedTest { @Test public void useAppContext() throws Exception { // Context of the app under test. Context appContext = InstrumentationRegistry.getTargetContext(); assertEquals("com.example.android.blossom", appContext.getPackageName()); } }
[ "alonshp1@gmail.com" ]
alonshp1@gmail.com
5bbfc335ef0f826c96b95a6cbaff746dafb04f8a
de05085d86345bd3e1dc399cefbf714cfefca971
/src/priv/wzb/design_pattern/structural_pattern/bridgepattern/classic/ConcreteImplementor.java
20850973d62f00113c7d17b5d4e4bb24865027ea
[]
no_license
luoziling/Design_Pattern
97e432690cb54d32bb1645a96c2c4b2c81ae2dcf
a74d46be514aafd4a1ec9308e9aec3b108f441af
refs/heads/master
2022-08-09T04:55:35.275356
2021-12-22T09:31:06
2021-12-22T09:31:06
207,322,291
3
0
null
2022-07-15T21:10:05
2019-09-09T13:58:21
Java
UTF-8
Java
false
false
296
java
package priv.wzb.design_pattern.structural_pattern.bridgepattern.classic; /** * @author Satsuki * @time 2019/8/13 17:49 * @description: */ public class ConcreteImplementor implements Implementor { @Override public void operationImpl() { //具体业务方法的实现 } }
[ "767218875@qq.com" ]
767218875@qq.com
46f80d1bb82058552971cd65769bfc8064319f46
9d5096aca9a12ddbc34cc25dee384309689e66ae
/Zero D/KSquare.java
bf6caf8df23f9d1592a8505c761b4cffb393c8ff
[]
no_license
mjs0031/map_notes
daadd1248c0986ff31b58b9d7e3ebd433fffda02
4954e0022faa67471f24a11c974f31af1aaa73b3
refs/heads/master
2021-03-12T19:24:16.244209
2014-06-25T15:30:38
2014-06-25T15:30:38
null
0
0
null
null
null
null
UTF-8
Java
false
false
4,457
java
/** Matthew J Swann Version 1.0, 2010-10-27 Source code for the representation of data represented by a single sqaure in a Karnaugh Map. The current three pieces of data are the decimal index for the map, the binary representation of the decimal which will have a Hamming Distance of one (1) with adjecent squares and finally the variables denoted to be true by that binary representation. The KSquare class has been designed to work with a KMap Class which will populate a map made of the squares. This class contains methods for setting and returning the values stored within a KSqaure for both information retrieval and later for display. */ public class KSquare{ private String kData[] = new String[3]; //Data storage. private String decimalValue; private boolean truthValue = false; /** Primary constructor to be implemented in the KMap class. Constructor takes parameters matching decimal and binary values along with a variable representation only when designated true by the binary value. @param decimalValue The decimal index of the current square. @param binaryValue The binar equivalent of the decimal value attached to the current square. @param variableRepresentation Those variable appearing as true, denoted by the binary representation of the current square. */ public KSquare(int decimalValue, String binaryValue, String variableRepresentation){ kData[0] = decimalValue + ""; kData[1] = binaryValue; kData[2] = variableRepresentation; } /** Default constructor setting the kData to empyt string values. To be used to initialize the complete map once the grid has been established. */ public KSquare(){ kData[0] = 0+""; kData[1] = ""; kData[2] = ""; decimalValue = 0 + ""; } /** Sets the decimal value of the current square. @param value Specified decimal value. */ public void setDecimalValue(int value){ kData[0] = value + ""; } /** Returns the decimal vlaue as a String. @return Returns a String representation of the decimal value set in kData. */ public String getDecimalValue(){ return kData[0]; } /** Sets the binary value of the current square. @param value String representation of the decimal value. */ public void setBinaryValue(String binary){ kData[1] = binary; } /** Returns a String representation of the binary value of the current square. @return Returns a String representation of the binary value. */ public String getBinaryValue(){ return kData[1]; } /** Sets the variable value for the square. Does not convert from binary to variable due non-access to the number of mapping variables. @param variables The variables denoted to be true. */ public void setVariables(String variables){ kData[2] = variables; } /** Appends the current variable representation with a denoted variable only if it is true according to this square's binary value. @param variable The variable appearing as true based on the binary value. */ public void addVariable(String variable){ String temp = kData[2]; temp += variable; kData[2] = temp; } /** Returns a String representation of the positive variables based upon the binary representation. @return Returns a String representation of the positive variables based upon the binary representation. */ public String getVariables(){ return kData[2]; } /** Sets the truth value. @param newTruthValue The new truth value. */ public void setTruthValue(boolean newTruthValue){ truthValue = newTruthValue; } /** Returns the truth value. @return Returns the truth value. */ public boolean getTruthValue(){ return truthValue; } }
[ "mjs0031@auburn.edu" ]
mjs0031@auburn.edu
ae8399cac6fc632d7404c47c7c1d9dce2a0d7d4f
c8b72333da5b9b9d3fc0723e8d3715ec2e1946bf
/src/main/java/ua/sombra/entity/AuthorEntity.java
f81066a3f15699cb00b1be4e5b473eb500451de9
[]
no_license
yurasheremeta/Test
4ae4fabe0555535896318d4d804baee25b0f70bd
5b887e4fde13a64e0e67546bdfc8bd3122991b35
refs/heads/master
2020-03-26T05:29:45.233803
2018-08-15T22:04:09
2018-08-15T22:04:09
124,806,704
0
0
null
null
null
null
UTF-8
Java
false
false
462
java
package ua.sombra.entity; import lombok.Getter; import lombok.NoArgsConstructor; import lombok.Setter; import java.sql.Date; import java.util.List; import javax.persistence.*; @Getter @Setter @NoArgsConstructor @Entity @Table(name = "author") public class AuthorEntity extends BaseEntity{ private String name; private String gender; private Date born; @ManyToMany(fetch = FetchType.LAZY,mappedBy = "authors") private List<BookEntity> books; }
[ "sheremeta.yura@gmail.com" ]
sheremeta.yura@gmail.com
9181e5ce2c9549cfd70521a8214f3a2fb0058371
06d25e014eaaec5efc7ec058565f28945f851d3e
/nfsdb-examples/src/main/java/org/nfsdb/examples/reporting/DailyPriceAverageExample.java
a64534fc0418ddb2754ab4b2b12be249e377acaf
[]
no_license
gubanov/nfsdb
b8788c49e2b95c2b83fe698ad0f705dc991fde47
8d4010f04eb822d2b0ebc46ba3118b2b00f5c992
refs/heads/master
2021-01-15T16:46:45.775581
2015-09-06T21:29:56
2015-09-06T21:29:56
null
0
0
null
null
null
null
UTF-8
Java
false
false
5,526
java
/******************************************************************************* * _ _ ___ ___ _ _ * | \| | __/ __| __| | |__ * | .` | _|\__ \/ _` | '_ \ * |_|\_|_| |___/\__,_|_.__/ * * Copyright (c) 2014-2015. The NFSdb project and its contributors. * * 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.nfsdb.examples.reporting; import com.nfsdb.Journal; import com.nfsdb.JournalWriter; import com.nfsdb.exceptions.JournalException; import com.nfsdb.factory.JournalFactory; import com.nfsdb.io.sink.StringSink; import com.nfsdb.printer.JournalPrinter; import com.nfsdb.printer.appender.StdOutAppender; import com.nfsdb.query.api.QueryAllBuilder; import com.nfsdb.utils.Dates; import com.nfsdb.utils.Files; import edu.umd.cs.findbugs.annotations.SuppressFBWarnings; import org.nfsdb.examples.model.ModelConfiguration; import org.nfsdb.examples.model.Quote; import org.nfsdb.examples.support.QuoteGenerator; import java.io.File; import java.io.IOException; import java.util.concurrent.TimeUnit; public class DailyPriceAverageExample { @SuppressFBWarnings({"CC_CYCLOMATIC_COMPLEXITY"}) public static void main(String[] args) throws JournalException, IOException { if (args.length != 1) { System.out.println("Usage: " + DailyPriceAverageExample.class.getName() + " <path>"); System.exit(1); } String journalLocation = args[0]; try (JournalFactory factory = new JournalFactory(ModelConfiguration.CONFIG.build(journalLocation))) { // delete existing quote journal Files.delete(new File(factory.getConfiguration().getJournalBase(), Quote.class.getName())); int count = 10000000; long t = System.nanoTime(); // get some data in :) try (JournalWriter<Quote> w = factory.writer(Quote.class)) { QuoteGenerator.generateQuoteData(w, count, 90); } System.out.println("Created " + count + " records in " + TimeUnit.NANOSECONDS.toMillis(System.nanoTime() - t) + "ms"); try (Journal<Quote> journal = factory.reader(Quote.class).select("ask", "timestamp")) { count = 0; t = System.nanoTime(); final String symbol = "BP.L"; // create query builder to search for all records with key (sym) = "BP.L" final QueryAllBuilder<Quote> builder = journal.query().all().withKeys(symbol); // state long previousDay = -1; double avgSum = 0; int avgCount = 0; StringSink sink = new StringSink(); try (JournalPrinter printer = new JournalPrinter()) { // tell printer the types of objects we'll be producing printer.types(String.class, String.class, double.class); // add fields to out output // in this example we are using scalar values, so we have same number of fields as there are types. // fields not declared here won't be printed. printer.v(0).h("Symbol").v(1).h("Date").v(2).h("avg(Ask)"); // tell printer the appender we want to use, appender is anything implementing Appender interface. printer.setAppender(StdOutAppender.INSTANCE); // print out header printer.header(); // out result set is all chronologically ordered quotes for symbol BP.L // so this loop leverages data order by printing out result when // day of year changes for (Quote q : builder.asResultSet().bufferedIterator()) { long thisDay = Dates.floorDD(q.getTimestamp()); if (thisDay != previousDay) { if (previousDay != -1) { Dates.formatDashYYYYMMDD(sink, previousDay); printer.out(symbol, sink.toString(), avgSum / avgCount); sink.clear(); } avgCount = 1; avgSum = q.getTimestamp(); previousDay = thisDay; } else { avgCount++; avgSum += q.getTimestamp(); } count++; } if (previousDay != -1) { Dates.formatDashYYYYMMDD(sink, previousDay); printer.out(symbol, sink.toString(), avgSum / avgCount); } } System.out.println("Read " + count + " records in " + TimeUnit.NANOSECONDS.toMillis(System.nanoTime() - t) + "ms"); } } } }
[ "bluestreak@gmail.com" ]
bluestreak@gmail.com
3c14fcd18e9c3840ae23c3024762b6fcb100c46e
65e9c4156bba5f9d5eaf4ea6ed9d5da9bbd27a08
/src/main/java/io/github/vazh/app/domain/package-info.java
769df7689440e5881be9588aeeeaad29f0c6259c
[]
no_license
vazh/optaplannerExample
ab25268aeade081f6707a155c66a7964ea258df2
0a42d085d6d2ca4215b91bc62038fc13a2443149
refs/heads/master
2021-05-14T05:46:00.648645
2018-01-04T07:29:41
2018-01-04T07:29:41
116,228,885
0
0
null
2018-01-04T07:29:43
2018-01-04T07:25:35
Java
UTF-8
Java
false
false
66
java
/** * JPA domain objects. */ package io.github.vazh.app.domain;
[ "jhipster-bot@users.noreply.github.com" ]
jhipster-bot@users.noreply.github.com
bf7418eda1bb273b17f187657046b7c461b553e5
ac64915818e10ddb0f4a65ac889db0307939d58f
/Test1/src/serv/AdminChangePassword.java
2a46f79f30cabc06e1feb0fa5781d30922def3d1
[]
no_license
iamraushan/IndianNationalBank
def0162ec3792567e6476cba41e8babef1a5ad95
013f50143c2ddaed4907ba138883039e704be39a
refs/heads/master
2020-12-02T18:16:46.894563
2017-07-07T07:33:27
2017-07-07T07:33:27
92,418,959
0
0
null
null
null
null
UTF-8
Java
false
false
2,704
java
package serv; import java.io.IOException; import java.sql.Connection; import java.sql.DriverManager; import java.sql.ResultSet; import java.sql.Statement; import javax.servlet.ServletException; import javax.servlet.annotation.WebServlet; import javax.servlet.http.HttpServlet; import javax.servlet.http.HttpServletRequest; import javax.servlet.http.HttpServletResponse; import javax.servlet.http.HttpSession; /** * Servlet implementation class AdminChangePassword */ @WebServlet("/AdminChangePassword") public class AdminChangePassword extends HttpServlet { private static final long serialVersionUID = 1L; /** * @see HttpServlet#HttpServlet() */ public AdminChangePassword() { super(); // TODO Auto-generated constructor stub } /** * @see HttpServlet#doGet(HttpServletRequest request, HttpServletResponse response) */ protected void doGet(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException { // TODO Auto-generated method stub response.getWriter().append("Served at: ").append(request.getContextPath()); } /** * @see HttpServlet#doPost(HttpServletRequest request, HttpServletResponse response) */ protected void doPost(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException { // TODO Auto-generated method stub doGet(request, response); String p1 = request.getParameter("p1"); String p2 = request.getParameter("p2"); HttpSession session = request.getSession(); String aid = (String)session.getAttribute("aid"); if(p1.equals(p2)) { try { Class.forName("oracle.jdbc.driver.OracleDriver"); Connection conn = DriverManager.getConnection("jdbc:oracle:thin:@localhost:1521:XE","system","1234"); Statement stmt = conn.createStatement(ResultSet.TYPE_SCROLL_INSENSITIVE,ResultSet.CONCUR_UPDATABLE); String query ="update admin set pw='"+p1+"' where a_id='"+aid+"'"; int rs = stmt.executeUpdate(query); if(rs == 1) { String message = "Passwords successfully changed"; session.setAttribute("msg", message); response.sendRedirect("adminhome.jsp"); } else { String message = "Passwords not changed"; session.setAttribute("msg", message); response.sendRedirect("adminhome.jsp"); } } catch(Exception e) { System.out.println(e); String message = "Passwords not changed"; session.setAttribute("msg", message); response.sendRedirect("adminhome.jsp"); } } else { String message = "Passwords do not match"; session.setAttribute("msg", message); response.sendRedirect("admin_changepassword.jsp"); } } }
[ "raushan.sh@live.com" ]
raushan.sh@live.com
102aece46fff7596dc2c210d765a3431be8bf94f
44c5ef884143b3f24ca616189edb40833a11ab0b
/src/main/java/WebApp/servlet/StaticServlet.java
7255923d25957a8d099d056b9c921842752d8313
[]
no_license
shahsevil/sevil_homework
1e0a2e140e1c4038298790b617bc1d8a4a5bc198
383c65769fc4b327c6f2e59d9f27a5663dc310c2
refs/heads/master
2023-06-23T22:37:41.955528
2020-04-20T09:26:28
2020-04-20T09:26:28
239,511,669
0
0
null
2023-06-13T22:55:19
2020-02-10T12:55:09
Java
UTF-8
Java
false
false
895
java
package WebApp.servlet; import javax.servlet.ServletException; import javax.servlet.http.HttpServlet; import javax.servlet.http.HttpServletRequest; import javax.servlet.http.HttpServletResponse; import java.io.IOException; import java.io.OutputStream; import java.nio.file.Files; import java.nio.file.Path; import java.nio.file.Paths; public class StaticServlet extends HttpServlet { private final String subPath; public StaticServlet(String subPath) { this.subPath = subPath; } @Override protected void doGet(HttpServletRequest req, HttpServletResponse resp) throws ServletException, IOException { String filename = req.getPathInfo(); String osFileLocation = "content"; Path path = Paths.get(osFileLocation, subPath, filename); try (OutputStream os = resp.getOutputStream()) { Files.copy(path, os); } } }
[ "you@example.com" ]
you@example.com