hexsha
stringlengths
40
40
size
int64
5
1.05M
ext
stringclasses
98 values
lang
stringclasses
21 values
max_stars_repo_path
stringlengths
3
945
max_stars_repo_name
stringlengths
4
118
max_stars_repo_head_hexsha
stringlengths
40
78
max_stars_repo_licenses
sequencelengths
1
10
max_stars_count
int64
1
368k
max_stars_repo_stars_event_min_datetime
stringlengths
24
24
max_stars_repo_stars_event_max_datetime
stringlengths
24
24
max_issues_repo_path
stringlengths
3
945
max_issues_repo_name
stringlengths
4
118
max_issues_repo_head_hexsha
stringlengths
40
78
max_issues_repo_licenses
sequencelengths
1
10
max_issues_count
int64
1
134k
max_issues_repo_issues_event_min_datetime
stringlengths
24
24
max_issues_repo_issues_event_max_datetime
stringlengths
24
24
max_forks_repo_path
stringlengths
3
945
max_forks_repo_name
stringlengths
4
135
max_forks_repo_head_hexsha
stringlengths
40
78
max_forks_repo_licenses
sequencelengths
1
10
max_forks_count
int64
1
105k
max_forks_repo_forks_event_min_datetime
stringlengths
24
24
max_forks_repo_forks_event_max_datetime
stringlengths
24
24
content
stringlengths
5
1.05M
avg_line_length
float64
1
1.03M
max_line_length
int64
2
1.03M
alphanum_fraction
float64
0
1
f94183714a0b8cebe6d75aaf5095f2d8072e0b82
1,572
swift
Swift
Example/Example/ViewController.swift
LaudyLaw/LSPlayPauseButton
1df5b757178a9d30e9e2b5615e4164ceaf610d37
[ "MIT" ]
5
2017-09-12T07:32:36.000Z
2018-10-21T17:48:30.000Z
Example/Example/ViewController.swift
LaudyLaw/LSPlayPauseButton
1df5b757178a9d30e9e2b5615e4164ceaf610d37
[ "MIT" ]
null
null
null
Example/Example/ViewController.swift
LaudyLaw/LSPlayPauseButton
1df5b757178a9d30e9e2b5615e4164ceaf610d37
[ "MIT" ]
null
null
null
// // ViewController.swift // ButtonTest // // Created by Pisen_LuoSong on 2017/9/7. // Copyright © 2017年 LuoSong. All rights reserved. // import LSPlayPauseButton import UIKit class ViewController: UIViewController { //MARK: private properties var iqiyiPlayPauseButton: LSPlayPauseButton? var youkuPlayPauseButton: LSPlayPauseButton? override func viewDidLoad() { super.viewDidLoad() iqiyiPlayPauseButton = LSPlayPauseButton(frame: CGRect(x: 0, y: 0, width: 60, height: 60)) iqiyiPlayPauseButton?.center = CGPoint(x: view.center.x, y: view.bounds.height / 3.0) iqiyiPlayPauseButton?.addTarget(self, action: #selector(buttonClicked(_:)), for: .touchUpInside) view.addSubview(iqiyiPlayPauseButton!) youkuPlayPauseButton = LSPlayPauseButton(frame: CGRect(x: 0, y: 0, width: 60, height: 60), style: .youku) youkuPlayPauseButton?.center = CGPoint(x: view.center.x, y: view.bounds.height * 2.0 / 3.0) youkuPlayPauseButton?.addTarget(self, action: #selector(buttonClicked(_:)), for: .touchUpInside) view.addSubview(youkuPlayPauseButton!) } override func didReceiveMemoryWarning() { super.didReceiveMemoryWarning() // Dispose of any resources that can be recreated. } //MARK: Actions @objc private func buttonClicked(_ button: LSPlayPauseButton) { if button == iqiyiPlayPauseButton || button == youkuPlayPauseButton { button.buttonState = button.buttonState == .play ? .pause : .play } } }
34.933333
113
0.679389
c2380aa5b685c48b1b9308f3ca6b73579bd34941
5,299
c
C
tests/unit_tests/test_unit_write_utils.c
ijacquez/microshell
9033fb89a575c043bfe9940d3aabf74a765cdc86
[ "MIT" ]
77
2021-05-09T19:33:09.000Z
2022-03-23T11:57:47.000Z
tests/unit_tests/test_unit_write_utils.c
ijacquez/microshell
9033fb89a575c043bfe9940d3aabf74a765cdc86
[ "MIT" ]
8
2021-05-20T18:14:41.000Z
2022-01-07T00:12:03.000Z
tests/unit_tests/test_unit_write_utils.c
ijacquez/microshell
9033fb89a575c043bfe9940d3aabf74a765cdc86
[ "MIT" ]
13
2021-06-23T15:10:03.000Z
2022-03-23T19:13:50.000Z
/* MIT License Copyright (c) 2021 Marcin Borowicz <[email protected]> Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ #include <stdio.h> #include <string.h> #include <unity.h> #include "inc/ush_internal.h" int g_assert_call_count; struct ush_io_interface ush_io_iface; struct ush_descriptor ush_desc; struct ush_object ush; int write_callback_call_count; int write_callback_pattern_index; int write_callback_return_val; int write_callback(struct ush_object *self, char ch); void setUp(void) { ush_io_iface.write = write_callback; ush_desc.io = &ush_io_iface; ush_desc.path_max_length = 256; memset((uint8_t*)&ush, 0, sizeof(ush)); ush.desc = &ush_desc; ush.write_buf = "test_message"; write_callback_call_count = 0; write_callback_pattern_index = 0; write_callback_return_val = 0; } void tearDown(void) { } int write_callback(struct ush_object *self, char ch) { char *pattern = "test_message"; TEST_ASSERT_EQUAL(&ush, self); TEST_ASSERT_EQUAL(pattern[write_callback_pattern_index], ch); write_callback_call_count++; write_callback_pattern_index += write_callback_return_val; return write_callback_return_val; } void test_ush_write_pointer_bin(void) { uint8_t *data_1 = (uint8_t*)1234; uint8_t *data_2 = (uint8_t*)5678; for (int i = 0; i < USH_STATE__TOTAL_NUM; i++) { ush_state_t state = (ush_state_t)i; setUp(); ush.state = state; ush.write_pos = -1; ush_write_pointer_bin(&ush, data_1, 4, state); TEST_ASSERT_EQUAL(0, ush.write_pos); TEST_ASSERT_EQUAL(4, ush.write_size); TEST_ASSERT_EQUAL((uint8_t*)1234, ush.write_buf); TEST_ASSERT_EQUAL(USH_STATE_WRITE_CHAR, ush.state); TEST_ASSERT_EQUAL(state, ush.write_next_state); TEST_ASSERT_EQUAL(0, write_callback_call_count); setUp(); ush.state = state; ush.write_pos = -1; ush_write_pointer_bin(&ush, data_2, 8, state); TEST_ASSERT_EQUAL(0, ush.write_pos); TEST_ASSERT_EQUAL(8, ush.write_size); TEST_ASSERT_EQUAL((uint8_t*)5678, ush.write_buf); TEST_ASSERT_EQUAL(USH_STATE_WRITE_CHAR, ush.state); TEST_ASSERT_EQUAL(state, ush.write_next_state); TEST_ASSERT_EQUAL(0, write_callback_call_count); } } void test_ush_write_char_states(void) { for (int i = 0; i < USH_STATE__TOTAL_NUM; i++) { ush_state_t state = (ush_state_t)i; setUp(); ush.state = USH_STATE__TOTAL_NUM; ush.write_pos = 1; ush.write_size = 1; ush.write_next_state = state; ush_write_char(&ush); TEST_ASSERT_EQUAL(state, ush.state); TEST_ASSERT_EQUAL(1, ush.write_pos); TEST_ASSERT_EQUAL(1, ush.write_size); TEST_ASSERT_EQUAL(0, write_callback_call_count); } } void test_ush_write_char_ok(void) { ush.write_pos = 0; ush.write_size = 4; write_callback_return_val = 1; for (int i = 0; i < 4; i++) ush_write_char(&ush); TEST_ASSERT_EQUAL(0, ush.state); TEST_ASSERT_EQUAL(4, ush.write_pos); TEST_ASSERT_EQUAL(4, ush.write_size); TEST_ASSERT_EQUAL(4, write_callback_call_count); } void test_ush_write_char_busy(void) { ush.write_pos = 0; ush.write_size = 4; write_callback_return_val = 0; for (int i = 0; i < 4; i++) ush_write_char(&ush); TEST_ASSERT_EQUAL(0, ush.state); TEST_ASSERT_EQUAL(0, ush.write_pos); TEST_ASSERT_EQUAL(4, ush.write_size); TEST_ASSERT_EQUAL(4, write_callback_call_count); } int main(int argc, char *argv[]) { (void)argc; (void)argv; UNITY_BEGIN(); RUN_TEST(test_ush_write_pointer_bin); RUN_TEST(test_ush_write_char_states); RUN_TEST(test_ush_write_char_ok); RUN_TEST(test_ush_write_char_busy); return UNITY_END(); }
30.454023
78
0.646348
2d2ce118e260c5197adeed672d7e91d9c881a69a
113
sql
SQL
SQL/Alternative Queries/Draw The Triangle 2.sql
dmverner/HackerRank_Solutions
1df6f4b477014021d8276d954f6af9517a069ba3
[ "MIT" ]
2
2018-02-11T17:42:12.000Z
2018-05-31T18:30:39.000Z
SQL/Alternative Queries/Draw The Triangle 2.sql
dmverner/HackerRank_Solutions
1df6f4b477014021d8276d954f6af9517a069ba3
[ "MIT" ]
null
null
null
SQL/Alternative Queries/Draw The Triangle 2.sql
dmverner/HackerRank_Solutions
1df6f4b477014021d8276d954f6af9517a069ba3
[ "MIT" ]
1
2019-09-15T15:22:04.000Z
2019-09-15T15:22:04.000Z
SELECT REPEAT('* ', @NUMBER := @NUMBER + 1) FROM information_schema.tables, (SELECT @NUMBER := 0) t LIMIT 20;
56.5
75
0.654867
2622687bccd8dfcb128c5d97a56a36ec3c48b3fb
100
sql
SQL
inst/sql/tables/create_tbl_SCFF_PELL.sql
christian-million/cccrepo
aa7ec866f394f0b946e571a97fb8c1076430efd0
[ "MIT" ]
null
null
null
inst/sql/tables/create_tbl_SCFF_PELL.sql
christian-million/cccrepo
aa7ec866f394f0b946e571a97fb8c1076430efd0
[ "MIT" ]
null
null
null
inst/sql/tables/create_tbl_SCFF_PELL.sql
christian-million/cccrepo
aa7ec866f394f0b946e571a97fb8c1076430efd0
[ "MIT" ]
null
null
null
CREATE TABLE IF NOT EXISTS SCFF_PELL ( STUDENT_ID TEXT, STUDENT_ID_TYPE TEXT, TERM TEXT );
16.666667
38
0.72
0c3a89700c8f67218a09655f90eaca9eede34283
757
rb
Ruby
features/page_objects/journey/location_page.rb
DEFRA/waste-exemptions-acceptance-tests
da7fefa0b96653099adb4f059bf1e0381e59a5d4
[ "Unlicense" ]
1
2018-11-15T05:09:14.000Z
2018-11-15T05:09:14.000Z
features/page_objects/journey/location_page.rb
DEFRA/waste-exemptions-acceptance-tests
da7fefa0b96653099adb4f059bf1e0381e59a5d4
[ "Unlicense" ]
69
2017-01-31T11:53:31.000Z
2021-12-06T12:10:42.000Z
features/page_objects/journey/location_page.rb
DEFRA/waste-exemptions-acceptance-tests
da7fefa0b96653099adb4f059bf1e0381e59a5d4
[ "Unlicense" ]
2
2020-11-04T03:54:24.000Z
2021-04-10T21:34:38.000Z
# frozen_string_literal: true class LocationPage < SitePrism::Page element(:error, ".error-summary") element(:heading, ".heading-large") element(:england, "#location_form_location_england + label") element(:wales, "#location_form_location_wales + label") element(:scotland, "#location_form_location_scotland + label") element(:northern_ireland, "#location_form_location_northern_ireland + label") element(:submit_button, "input[type='submit']") def submit(args = {}) case args[:location] when :england england.select_option when :wales wales.select_option when :scotland scotland.select_option when :northern_ireland northern_ireland.select_option end submit_button.click end end
24.419355
80
0.72391
b0b919764be6ca617e27b1c4d27af9d1e252473e
12,392
py
Python
SimModel_Python_API/simmodel_swig/Release/SimFlowEnergyTransfer_ConvectiveHeater_Water.py
EnEff-BIM/EnEffBIM-Framework
6328d39b498dc4065a60b5cc9370b8c2a9a1cddf
[ "MIT" ]
3
2016-05-30T15:12:16.000Z
2022-03-22T08:11:13.000Z
SimModel_Python_API/simmodel_swig/Release/SimFlowEnergyTransfer_ConvectiveHeater_Water.py
EnEff-BIM/EnEffBIM-Framework
6328d39b498dc4065a60b5cc9370b8c2a9a1cddf
[ "MIT" ]
21
2016-06-13T11:33:45.000Z
2017-05-23T09:46:52.000Z
SimModel_Python_API/simmodel_swig/Release/SimFlowEnergyTransfer_ConvectiveHeater_Water.py
EnEff-BIM/EnEffBIM-Framework
6328d39b498dc4065a60b5cc9370b8c2a9a1cddf
[ "MIT" ]
null
null
null
# This file was automatically generated by SWIG (http://www.swig.org). # Version 3.0.7 # # Do not make changes to this file unless you know what you are doing--modify # the SWIG interface file instead. from sys import version_info if version_info >= (2, 6, 0): def swig_import_helper(): from os.path import dirname import imp fp = None try: fp, pathname, description = imp.find_module('_SimFlowEnergyTransfer_ConvectiveHeater_Water', [dirname(__file__)]) except ImportError: import _SimFlowEnergyTransfer_ConvectiveHeater_Water return _SimFlowEnergyTransfer_ConvectiveHeater_Water if fp is not None: try: _mod = imp.load_module('_SimFlowEnergyTransfer_ConvectiveHeater_Water', fp, pathname, description) finally: fp.close() return _mod _SimFlowEnergyTransfer_ConvectiveHeater_Water = swig_import_helper() del swig_import_helper else: import _SimFlowEnergyTransfer_ConvectiveHeater_Water del version_info try: _swig_property = property except NameError: pass # Python < 2.2 doesn't have 'property'. def _swig_setattr_nondynamic(self, class_type, name, value, static=1): if (name == "thisown"): return self.this.own(value) if (name == "this"): if type(value).__name__ == 'SwigPyObject': self.__dict__[name] = value return method = class_type.__swig_setmethods__.get(name, None) if method: return method(self, value) if (not static): if _newclass: object.__setattr__(self, name, value) else: self.__dict__[name] = value else: raise AttributeError("You cannot add attributes to %s" % self) def _swig_setattr(self, class_type, name, value): return _swig_setattr_nondynamic(self, class_type, name, value, 0) def _swig_getattr_nondynamic(self, class_type, name, static=1): if (name == "thisown"): return self.this.own() method = class_type.__swig_getmethods__.get(name, None) if method: return method(self) if (not static): return object.__getattr__(self, name) else: raise AttributeError(name) def _swig_getattr(self, class_type, name): return _swig_getattr_nondynamic(self, class_type, name, 0) def _swig_repr(self): try: strthis = "proxy of " + self.this.__repr__() except: strthis = "" return "<%s.%s; %s >" % (self.__class__.__module__, self.__class__.__name__, strthis,) try: _object = object _newclass = 1 except AttributeError: class _object: pass _newclass = 0 try: import weakref weakref_proxy = weakref.proxy except: weakref_proxy = lambda x: x import base class SimFlowEnergyTransfer(base.SimFlowEnergyConverter): __swig_setmethods__ = {} for _s in [base.SimFlowEnergyConverter]: __swig_setmethods__.update(getattr(_s, '__swig_setmethods__', {})) __setattr__ = lambda self, name, value: _swig_setattr(self, SimFlowEnergyTransfer, name, value) __swig_getmethods__ = {} for _s in [base.SimFlowEnergyConverter]: __swig_getmethods__.update(getattr(_s, '__swig_getmethods__', {})) __getattr__ = lambda self, name: _swig_getattr(self, SimFlowEnergyTransfer, name) __repr__ = _swig_repr def Representation(self, *args): return _SimFlowEnergyTransfer_ConvectiveHeater_Water.SimFlowEnergyTransfer_Representation(self, *args) def __init__(self, *args): this = _SimFlowEnergyTransfer_ConvectiveHeater_Water.new_SimFlowEnergyTransfer(*args) try: self.this.append(this) except: self.this = this def _clone(self, f=0, c=None): return _SimFlowEnergyTransfer_ConvectiveHeater_Water.SimFlowEnergyTransfer__clone(self, f, c) __swig_destroy__ = _SimFlowEnergyTransfer_ConvectiveHeater_Water.delete_SimFlowEnergyTransfer __del__ = lambda self: None SimFlowEnergyTransfer_swigregister = _SimFlowEnergyTransfer_ConvectiveHeater_Water.SimFlowEnergyTransfer_swigregister SimFlowEnergyTransfer_swigregister(SimFlowEnergyTransfer) class SimFlowEnergyTransfer_ConvectiveHeater(SimFlowEnergyTransfer): __swig_setmethods__ = {} for _s in [SimFlowEnergyTransfer]: __swig_setmethods__.update(getattr(_s, '__swig_setmethods__', {})) __setattr__ = lambda self, name, value: _swig_setattr(self, SimFlowEnergyTransfer_ConvectiveHeater, name, value) __swig_getmethods__ = {} for _s in [SimFlowEnergyTransfer]: __swig_getmethods__.update(getattr(_s, '__swig_getmethods__', {})) __getattr__ = lambda self, name: _swig_getattr(self, SimFlowEnergyTransfer_ConvectiveHeater, name) __repr__ = _swig_repr def SimFlowEnergyTrans_Name(self, *args): return _SimFlowEnergyTransfer_ConvectiveHeater_Water.SimFlowEnergyTransfer_ConvectiveHeater_SimFlowEnergyTrans_Name(self, *args) def SimFlowEnergyTrans_AvailSchedName(self, *args): return _SimFlowEnergyTransfer_ConvectiveHeater_Water.SimFlowEnergyTransfer_ConvectiveHeater_SimFlowEnergyTrans_AvailSchedName(self, *args) def __init__(self, *args): this = _SimFlowEnergyTransfer_ConvectiveHeater_Water.new_SimFlowEnergyTransfer_ConvectiveHeater(*args) try: self.this.append(this) except: self.this = this def _clone(self, f=0, c=None): return _SimFlowEnergyTransfer_ConvectiveHeater_Water.SimFlowEnergyTransfer_ConvectiveHeater__clone(self, f, c) __swig_destroy__ = _SimFlowEnergyTransfer_ConvectiveHeater_Water.delete_SimFlowEnergyTransfer_ConvectiveHeater __del__ = lambda self: None SimFlowEnergyTransfer_ConvectiveHeater_swigregister = _SimFlowEnergyTransfer_ConvectiveHeater_Water.SimFlowEnergyTransfer_ConvectiveHeater_swigregister SimFlowEnergyTransfer_ConvectiveHeater_swigregister(SimFlowEnergyTransfer_ConvectiveHeater) class SimFlowEnergyTransfer_ConvectiveHeater_Water(SimFlowEnergyTransfer_ConvectiveHeater): __swig_setmethods__ = {} for _s in [SimFlowEnergyTransfer_ConvectiveHeater]: __swig_setmethods__.update(getattr(_s, '__swig_setmethods__', {})) __setattr__ = lambda self, name, value: _swig_setattr(self, SimFlowEnergyTransfer_ConvectiveHeater_Water, name, value) __swig_getmethods__ = {} for _s in [SimFlowEnergyTransfer_ConvectiveHeater]: __swig_getmethods__.update(getattr(_s, '__swig_getmethods__', {})) __getattr__ = lambda self, name: _swig_getattr(self, SimFlowEnergyTransfer_ConvectiveHeater_Water, name) __repr__ = _swig_repr def SimFlowEnergyTrans_InNodeName(self, *args): return _SimFlowEnergyTransfer_ConvectiveHeater_Water.SimFlowEnergyTransfer_ConvectiveHeater_Water_SimFlowEnergyTrans_InNodeName(self, *args) def SimFlowEnergyTrans_OutNodeName(self, *args): return _SimFlowEnergyTransfer_ConvectiveHeater_Water.SimFlowEnergyTransfer_ConvectiveHeater_Water_SimFlowEnergyTrans_OutNodeName(self, *args) def SimFlowEnergyTrans_MaxWaterFlowRate(self, *args): return _SimFlowEnergyTransfer_ConvectiveHeater_Water.SimFlowEnergyTransfer_ConvectiveHeater_Water_SimFlowEnergyTrans_MaxWaterFlowRate(self, *args) def SimFlowEnergyTrans_ConvergTol(self, *args): return _SimFlowEnergyTransfer_ConvectiveHeater_Water.SimFlowEnergyTransfer_ConvectiveHeater_Water_SimFlowEnergyTrans_ConvergTol(self, *args) def SimFlowEnergyTrans_UFactorTimesAreaVal(self, *args): return _SimFlowEnergyTransfer_ConvectiveHeater_Water.SimFlowEnergyTransfer_ConvectiveHeater_Water_SimFlowEnergyTrans_UFactorTimesAreaVal(self, *args) def __init__(self, *args): this = _SimFlowEnergyTransfer_ConvectiveHeater_Water.new_SimFlowEnergyTransfer_ConvectiveHeater_Water(*args) try: self.this.append(this) except: self.this = this def _clone(self, f=0, c=None): return _SimFlowEnergyTransfer_ConvectiveHeater_Water.SimFlowEnergyTransfer_ConvectiveHeater_Water__clone(self, f, c) __swig_destroy__ = _SimFlowEnergyTransfer_ConvectiveHeater_Water.delete_SimFlowEnergyTransfer_ConvectiveHeater_Water __del__ = lambda self: None SimFlowEnergyTransfer_ConvectiveHeater_Water_swigregister = _SimFlowEnergyTransfer_ConvectiveHeater_Water.SimFlowEnergyTransfer_ConvectiveHeater_Water_swigregister SimFlowEnergyTransfer_ConvectiveHeater_Water_swigregister(SimFlowEnergyTransfer_ConvectiveHeater_Water) class SimFlowEnergyTransfer_ConvectiveHeater_Water_sequence(base.sequence_common): __swig_setmethods__ = {} for _s in [base.sequence_common]: __swig_setmethods__.update(getattr(_s, '__swig_setmethods__', {})) __setattr__ = lambda self, name, value: _swig_setattr(self, SimFlowEnergyTransfer_ConvectiveHeater_Water_sequence, name, value) __swig_getmethods__ = {} for _s in [base.sequence_common]: __swig_getmethods__.update(getattr(_s, '__swig_getmethods__', {})) __getattr__ = lambda self, name: _swig_getattr(self, SimFlowEnergyTransfer_ConvectiveHeater_Water_sequence, name) __repr__ = _swig_repr def __init__(self, *args): this = _SimFlowEnergyTransfer_ConvectiveHeater_Water.new_SimFlowEnergyTransfer_ConvectiveHeater_Water_sequence(*args) try: self.this.append(this) except: self.this = this def assign(self, n, x): return _SimFlowEnergyTransfer_ConvectiveHeater_Water.SimFlowEnergyTransfer_ConvectiveHeater_Water_sequence_assign(self, n, x) def begin(self, *args): return _SimFlowEnergyTransfer_ConvectiveHeater_Water.SimFlowEnergyTransfer_ConvectiveHeater_Water_sequence_begin(self, *args) def end(self, *args): return _SimFlowEnergyTransfer_ConvectiveHeater_Water.SimFlowEnergyTransfer_ConvectiveHeater_Water_sequence_end(self, *args) def rbegin(self, *args): return _SimFlowEnergyTransfer_ConvectiveHeater_Water.SimFlowEnergyTransfer_ConvectiveHeater_Water_sequence_rbegin(self, *args) def rend(self, *args): return _SimFlowEnergyTransfer_ConvectiveHeater_Water.SimFlowEnergyTransfer_ConvectiveHeater_Water_sequence_rend(self, *args) def at(self, *args): return _SimFlowEnergyTransfer_ConvectiveHeater_Water.SimFlowEnergyTransfer_ConvectiveHeater_Water_sequence_at(self, *args) def front(self, *args): return _SimFlowEnergyTransfer_ConvectiveHeater_Water.SimFlowEnergyTransfer_ConvectiveHeater_Water_sequence_front(self, *args) def back(self, *args): return _SimFlowEnergyTransfer_ConvectiveHeater_Water.SimFlowEnergyTransfer_ConvectiveHeater_Water_sequence_back(self, *args) def push_back(self, *args): return _SimFlowEnergyTransfer_ConvectiveHeater_Water.SimFlowEnergyTransfer_ConvectiveHeater_Water_sequence_push_back(self, *args) def pop_back(self): return _SimFlowEnergyTransfer_ConvectiveHeater_Water.SimFlowEnergyTransfer_ConvectiveHeater_Water_sequence_pop_back(self) def detach_back(self, pop=True): return _SimFlowEnergyTransfer_ConvectiveHeater_Water.SimFlowEnergyTransfer_ConvectiveHeater_Water_sequence_detach_back(self, pop) def insert(self, *args): return _SimFlowEnergyTransfer_ConvectiveHeater_Water.SimFlowEnergyTransfer_ConvectiveHeater_Water_sequence_insert(self, *args) def erase(self, *args): return _SimFlowEnergyTransfer_ConvectiveHeater_Water.SimFlowEnergyTransfer_ConvectiveHeater_Water_sequence_erase(self, *args) def detach(self, position, r, erase=True): return _SimFlowEnergyTransfer_ConvectiveHeater_Water.SimFlowEnergyTransfer_ConvectiveHeater_Water_sequence_detach(self, position, r, erase) def swap(self, x): return _SimFlowEnergyTransfer_ConvectiveHeater_Water.SimFlowEnergyTransfer_ConvectiveHeater_Water_sequence_swap(self, x) __swig_destroy__ = _SimFlowEnergyTransfer_ConvectiveHeater_Water.delete_SimFlowEnergyTransfer_ConvectiveHeater_Water_sequence __del__ = lambda self: None SimFlowEnergyTransfer_ConvectiveHeater_Water_sequence_swigregister = _SimFlowEnergyTransfer_ConvectiveHeater_Water.SimFlowEnergyTransfer_ConvectiveHeater_Water_sequence_swigregister SimFlowEnergyTransfer_ConvectiveHeater_Water_sequence_swigregister(SimFlowEnergyTransfer_ConvectiveHeater_Water_sequence) # This file is compatible with both classic and new-style classes.
45.896296
181
0.778002
2787cf8508cff61255e86ac5ebc0a182e1e60874
487
asm
Assembly
libsrc/stdio/sprintf_outc.asm
grancier/z180
e83f35e36c9b4d1457e40585019430e901c86ed9
[ "ClArtistic" ]
8
2017-01-18T12:02:17.000Z
2021-06-12T09:40:28.000Z
libsrc/stdio/sprintf_outc.asm
grancier/z180
e83f35e36c9b4d1457e40585019430e901c86ed9
[ "ClArtistic" ]
1
2017-03-06T07:41:56.000Z
2017-03-06T07:41:56.000Z
libsrc/stdio/sprintf_outc.asm
RC2014Z80/z88dk
e5b9447b970e5fae26544b6d8aa5957c98ba0e6a
[ "ClArtistic" ]
3
2017-03-07T03:19:40.000Z
2021-09-15T17:59:19.000Z
MODULE sprintf_outc SECTION code_clib PUBLIC sprintf_outc EXTERN fputc_cons sprintf_outc: pop bc pop hl ;fp pop de ;charcter push bc push ix ;save ix push hl ;get fp into ix pop ix ld c,(ix+2) ld b,(ix+3) ld a,c or b jr z,no_space dec bc ;reduce space ld (ix+2),c ld (ix+3),b ld l,(ix+0) ld h,(ix+1) ld a,b ;make sure we can terminate or c jr z,just_terminate ld (hl),e inc hl just_terminate: ld (hl),0 ld (ix+0),l ld (ix+1),h no_space: pop ix ret
12.487179
36
0.652977
4bd9b449e82df04b9e1137e6de709f772c1cfaba
210
h
C
ComputingTheLongestCommonPrefixArray/ComputingTheLongestCommonPrefixArray/BWT.h
TomoGudelj/Computing-the-longest-common-prefix
6fd891f8c51ffa1057a1394d404d6ee9a7c50c0c
[ "MIT" ]
null
null
null
ComputingTheLongestCommonPrefixArray/ComputingTheLongestCommonPrefixArray/BWT.h
TomoGudelj/Computing-the-longest-common-prefix
6fd891f8c51ffa1057a1394d404d6ee9a7c50c0c
[ "MIT" ]
null
null
null
ComputingTheLongestCommonPrefixArray/ComputingTheLongestCommonPrefixArray/BWT.h
TomoGudelj/Computing-the-longest-common-prefix
6fd891f8c51ffa1057a1394d404d6ee9a7c50c0c
[ "MIT" ]
null
null
null
#ifndef _BWTCLASS_H_ #define _BWTCLASS_H_ #include <string> #include <vector> class BWT { public: std::string BWT_string; BWT(); ~BWT(); void CalculateBWT(std::string S, int *SA); private: }; #endif
9.545455
43
0.685714
215099de68db35a3a9960461e40a6009409ec63c
639
js
JavaScript
migrations/1_ikon.js
anatolii10k/nft-smart-contract
70e15abb0df9c943e0e68066ff9a78e66d669559
[ "MIT" ]
null
null
null
migrations/1_ikon.js
anatolii10k/nft-smart-contract
70e15abb0df9c943e0e68066ff9a78e66d669559
[ "MIT" ]
null
null
null
migrations/1_ikon.js
anatolii10k/nft-smart-contract
70e15abb0df9c943e0e68066ff9a78e66d669559
[ "MIT" ]
null
null
null
const IkonicCoin = artifacts.require("IkonicCoin"); const IkonicMarket = artifacts.require("Marketplace"); module.exports = async (deployer) => { await deployer.deploy(IkonicCoin); const coinContract = await IkonicCoin.deployed(); const coinAddress = coinContract.address; //const coinAddress = '0x301Fe0CF20d1819D8F7eBAF3Ba80C805587d693D'; //Mock coin address await deployer.deploy(IkonicMarket, coinAddress, 1, '0x8626f6940e2eb28930efb4cef49b2d1f2c9c1199'); // Setup default shares const datatoken = await IkonicMarket.deployed(); await Promise.all([ datatoken.setPublicationFee(web3.utils.toWei("0.1")), ]); };
35.5
100
0.762128
c661f121ed094b39d60393bfbbe2cc6e3209963e
514
py
Python
startup/menu.py
ArtFXDev/silex_nuke
670a0d9d282258ed6fe926c78f163d5a86d93c26
[ "MIT" ]
null
null
null
startup/menu.py
ArtFXDev/silex_nuke
670a0d9d282258ed6fe926c78f163d5a86d93c26
[ "MIT" ]
1
2021-09-17T14:18:32.000Z
2021-09-24T12:17:50.000Z
startup/menu.py
ArtFXDev/silex_nuke
670a0d9d282258ed6fe926c78f163d5a86d93c26
[ "MIT" ]
null
null
null
from silex_client.core.context import Context from silex_client.resolve.config import Config from silex_client.action.action_query import ActionQuery actions = [item["name"] for item in Config().actions] def command(action_name): ActionQuery(action_name).execute() def create_menus(): for action in actions: # nuke.error(action) nuke.menu("Nuke").addCommand( "SIlex/{}".format(str(action)), lambda: command(action) ) Context.get().start_services() create_menus()
23.363636
67
0.708171
43623c71d572379ef18bf89e0ef48e6598f101f2
115
ts
TypeScript
fixtures/restricted-visibility/building-blocks/src/foo1/bb1/AnotherFoo1BB1.ts
feature-lint/feature-lint
be8aac3130debf29856ba61bf397ca4f224f0c36
[ "MIT" ]
7
2021-08-07T14:33:43.000Z
2022-03-13T10:18:08.000Z
fixtures/restricted-visibility/building-blocks/src/foo1/bb1/AnotherFoo1BB1.ts
feature-lint/feature-lint
be8aac3130debf29856ba61bf397ca4f224f0c36
[ "MIT" ]
1
2021-07-15T07:27:50.000Z
2021-08-19T20:55:09.000Z
fixtures/restricted-visibility/building-blocks/src/foo1/bb1/AnotherFoo1BB1.ts
feature-lint/feature-lint
be8aac3130debf29856ba61bf397ca4f224f0c36
[ "MIT" ]
null
null
null
import { Foo1BB1 } from "src/foo1/bb1/private/Foo1BB1.js"; // allowed Foo1BB1; export const AnotherFoo1BB1 = {};
19.166667
69
0.713043
a343f29105efa86622759191362037f2ae449e1d
339
java
Java
src/main/java/com/study/guildOfNothing/constant/ProfileEnum.java
Nechelley/GuildOfNothing
58e5578ed7d53b1f38e9b7f80689105df8f6b432
[ "MIT" ]
null
null
null
src/main/java/com/study/guildOfNothing/constant/ProfileEnum.java
Nechelley/GuildOfNothing
58e5578ed7d53b1f38e9b7f80689105df8f6b432
[ "MIT" ]
null
null
null
src/main/java/com/study/guildOfNothing/constant/ProfileEnum.java
Nechelley/GuildOfNothing
58e5578ed7d53b1f38e9b7f80689105df8f6b432
[ "MIT" ]
null
null
null
package com.study.guildOfNothing.constant; //Equal in database public enum ProfileEnum { ADMIN(1L, "ADMIN"), BASIC(2L, "BASIC"); private String name; private Long id; ProfileEnum(Long id, String name) { this.id = id; this.name = name; } public String getName() { return name; } public Long getId() { return id; } }
13.56
42
0.666667
af0bc3bd026a2c412eb988af48559570738dfb2e
6,304
rs
Rust
sdk/servicecatalog/src/lens.rs
StevenBlack/aws-sdk-rust
f4a1458f0154318c47d7e6a4ac55226f400fbfbc
[ "Apache-2.0" ]
1,415
2021-05-07T20:15:53.000Z
2022-03-31T20:47:15.000Z
sdk/servicecatalog/src/lens.rs
StevenBlack/aws-sdk-rust
f4a1458f0154318c47d7e6a4ac55226f400fbfbc
[ "Apache-2.0" ]
253
2021-05-07T21:53:56.000Z
2022-03-29T20:52:47.000Z
sdk/servicecatalog/src/lens.rs
StevenBlack/aws-sdk-rust
f4a1458f0154318c47d7e6a4ac55226f400fbfbc
[ "Apache-2.0" ]
108
2021-05-07T20:42:02.000Z
2022-03-28T18:16:53.000Z
// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT. pub(crate) fn reflens_structure_crate_output_describe_portfolio_shares_output_next_page_token( input: &crate::output::DescribePortfolioSharesOutput, ) -> std::option::Option<&std::string::String> { let input = match &input.next_page_token { None => return None, Some(t) => t, }; Some(input) } pub(crate) fn reflens_structure_crate_output_get_provisioned_product_outputs_output_next_page_token( input: &crate::output::GetProvisionedProductOutputsOutput, ) -> std::option::Option<&std::string::String> { let input = match &input.next_page_token { None => return None, Some(t) => t, }; Some(input) } pub(crate) fn reflens_structure_crate_output_list_accepted_portfolio_shares_output_next_page_token( input: &crate::output::ListAcceptedPortfolioSharesOutput, ) -> std::option::Option<&std::string::String> { let input = match &input.next_page_token { None => return None, Some(t) => t, }; Some(input) } pub(crate) fn reflens_structure_crate_output_list_budgets_for_resource_output_next_page_token( input: &crate::output::ListBudgetsForResourceOutput, ) -> std::option::Option<&std::string::String> { let input = match &input.next_page_token { None => return None, Some(t) => t, }; Some(input) } pub(crate) fn reflens_structure_crate_output_list_constraints_for_portfolio_output_next_page_token( input: &crate::output::ListConstraintsForPortfolioOutput, ) -> std::option::Option<&std::string::String> { let input = match &input.next_page_token { None => return None, Some(t) => t, }; Some(input) } pub(crate) fn reflens_structure_crate_output_list_launch_paths_output_next_page_token( input: &crate::output::ListLaunchPathsOutput, ) -> std::option::Option<&std::string::String> { let input = match &input.next_page_token { None => return None, Some(t) => t, }; Some(input) } pub(crate) fn reflens_structure_crate_output_list_organization_portfolio_access_output_next_page_token( input: &crate::output::ListOrganizationPortfolioAccessOutput, ) -> std::option::Option<&std::string::String> { let input = match &input.next_page_token { None => return None, Some(t) => t, }; Some(input) } pub(crate) fn reflens_structure_crate_output_list_portfolio_access_output_next_page_token( input: &crate::output::ListPortfolioAccessOutput, ) -> std::option::Option<&std::string::String> { let input = match &input.next_page_token { None => return None, Some(t) => t, }; Some(input) } pub(crate) fn reflens_structure_crate_output_list_portfolios_output_next_page_token( input: &crate::output::ListPortfoliosOutput, ) -> std::option::Option<&std::string::String> { let input = match &input.next_page_token { None => return None, Some(t) => t, }; Some(input) } pub(crate) fn reflens_structure_crate_output_list_portfolios_for_product_output_next_page_token( input: &crate::output::ListPortfoliosForProductOutput, ) -> std::option::Option<&std::string::String> { let input = match &input.next_page_token { None => return None, Some(t) => t, }; Some(input) } pub(crate) fn reflens_structure_crate_output_list_principals_for_portfolio_output_next_page_token( input: &crate::output::ListPrincipalsForPortfolioOutput, ) -> std::option::Option<&std::string::String> { let input = match &input.next_page_token { None => return None, Some(t) => t, }; Some(input) } pub(crate) fn reflens_structure_crate_output_list_provisioning_artifacts_for_service_action_output_next_page_token( input: &crate::output::ListProvisioningArtifactsForServiceActionOutput, ) -> std::option::Option<&std::string::String> { let input = match &input.next_page_token { None => return None, Some(t) => t, }; Some(input) } pub(crate) fn reflens_structure_crate_output_list_resources_for_tag_option_output_page_token( input: &crate::output::ListResourcesForTagOptionOutput, ) -> std::option::Option<&std::string::String> { let input = match &input.page_token { None => return None, Some(t) => t, }; Some(input) } pub(crate) fn reflens_structure_crate_output_list_service_actions_output_next_page_token( input: &crate::output::ListServiceActionsOutput, ) -> std::option::Option<&std::string::String> { let input = match &input.next_page_token { None => return None, Some(t) => t, }; Some(input) } pub(crate) fn reflens_structure_crate_output_list_service_actions_for_provisioning_artifact_output_next_page_token( input: &crate::output::ListServiceActionsForProvisioningArtifactOutput, ) -> std::option::Option<&std::string::String> { let input = match &input.next_page_token { None => return None, Some(t) => t, }; Some(input) } pub(crate) fn reflens_structure_crate_output_list_tag_options_output_page_token( input: &crate::output::ListTagOptionsOutput, ) -> std::option::Option<&std::string::String> { let input = match &input.page_token { None => return None, Some(t) => t, }; Some(input) } pub(crate) fn reflens_structure_crate_output_search_products_output_next_page_token( input: &crate::output::SearchProductsOutput, ) -> std::option::Option<&std::string::String> { let input = match &input.next_page_token { None => return None, Some(t) => t, }; Some(input) } pub(crate) fn reflens_structure_crate_output_search_products_as_admin_output_next_page_token( input: &crate::output::SearchProductsAsAdminOutput, ) -> std::option::Option<&std::string::String> { let input = match &input.next_page_token { None => return None, Some(t) => t, }; Some(input) } pub(crate) fn reflens_structure_crate_output_search_provisioned_products_output_next_page_token( input: &crate::output::SearchProvisionedProductsOutput, ) -> std::option::Option<&std::string::String> { let input = match &input.next_page_token { None => return None, Some(t) => t, }; Some(input) }
33.005236
115
0.695907
9241b0fbaa2bad3232e81b664fd7dce7873447c2
811
rb
Ruby
spec/ruby_extensions/rails_environment_extensions_spec.rb
babelian/ruby_extensions
c7c2b0ca8fd563c0b8b636a0148fb26e64b7feb3
[ "MIT" ]
1
2019-09-13T12:31:13.000Z
2019-09-13T12:31:13.000Z
spec/ruby_extensions/rails_environment_extensions_spec.rb
babelian/ruby_extensions
c7c2b0ca8fd563c0b8b636a0148fb26e64b7feb3
[ "MIT" ]
null
null
null
spec/ruby_extensions/rails_environment_extensions_spec.rb
babelian/ruby_extensions
c7c2b0ca8fd563c0b8b636a0148fb26e64b7feb3
[ "MIT" ]
null
null
null
require File.dirname(__FILE__) + '/../spec_helper' describe Object do # Fake Rails class Rails def self.env 'development' end def self.call 'response' end end describe '#in_environment' do it 'with a string' do expect(in_environment('development')).to eql(true) end it 'with regexp' do expect(in_environment(/^dev/)).to eql(true) expect(in_environment(/^test/)).to eql(false) end it 'with a block' do res = in_environment('development') { Rails.call } expect(res).to eql(Rails.call) res = in_environment('test') { Rails.call } expect(res).to be_nil end end it '#in_development' do expect(in_development).to eql(true) end it '#in_testing' do expect(in_testing).to eql(false) end end
18.860465
56
0.62762
4f3b115eeb0b2f675fb3ebfa7b86fb4a15d624d7
675
dart
Dart
lib/ui/screens/chats/chat/widgets/message_day_divider.dart
CabelloIsaac/flutter-firebase-chat
3f2598342a474696c91122697995588d3165b044
[ "MIT" ]
2
2021-03-23T21:20:36.000Z
2022-01-28T20:34:02.000Z
lib/ui/screens/chats/chat/widgets/message_day_divider.dart
CabelloIsaac/flutter-firebase-chat
3f2598342a474696c91122697995588d3165b044
[ "MIT" ]
null
null
null
lib/ui/screens/chats/chat/widgets/message_day_divider.dart
CabelloIsaac/flutter-firebase-chat
3f2598342a474696c91122697995588d3165b044
[ "MIT" ]
null
null
null
import 'package:flutter/material.dart'; import 'package:flutter_firebase_chat/models/message.dart'; import 'package:flutter_firebase_chat/utils/functions.dart'; class MessageDayDivider extends StatelessWidget { const MessageDayDivider(this.message); final Message message; @override Widget build(BuildContext context) { return Container( margin: EdgeInsets.only(bottom: 5), padding: EdgeInsets.symmetric(horizontal: 10, vertical: 5), decoration: BoxDecoration( color: Colors.grey.withOpacity(0.5), borderRadius: BorderRadius.circular(10)), child: Text("${Functions.getMessageDate(message.timestamp)}"), ); } }
30.681818
68
0.727407
0f090310a71c5847bc1388abbc9f69b664b6f623
2,427
sql
SQL
components/automate-workflow-server/schema/deploy/invalidate_tokens_and_passwords.sql
fossabot/automate-1
16910c3ebd75ee0aa25e527bfce3e1378306f42d
[ "Apache-2.0" ]
191
2019-04-16T15:04:53.000Z
2022-03-21T14:10:44.000Z
components/automate-workflow-server/schema/deploy/invalidate_tokens_and_passwords.sql
fossabot/automate-1
16910c3ebd75ee0aa25e527bfce3e1378306f42d
[ "Apache-2.0" ]
4,882
2019-04-16T16:16:01.000Z
2022-03-31T15:39:35.000Z
components/automate-workflow-server/schema/deploy/invalidate_tokens_and_passwords.sql
fossabot/automate-1
16910c3ebd75ee0aa25e527bfce3e1378306f42d
[ "Apache-2.0" ]
114
2019-04-16T15:21:27.000Z
2022-03-26T09:50:08.000Z
-- Deploy invalidate_tokens_and_passwords BEGIN; CREATE TYPE credential AS ENUM('password', 'token'); CREATE OR REPLACE FUNCTION credential_table(p_credential credential) RETURNS NAME LANGUAGE SQL IMMUTABLE AS $$ SELECT CASE p_credential WHEN 'password' THEN 'user_passwords'::NAME WHEN 'token' THEN 'user_tokens'::NAME END; $$; CREATE OR REPLACE FUNCTION invalidate(p_credential credential) RETURNS VOID LANGUAGE plpgsql AS $$ BEGIN EXECUTE format('TRUNCATE %I', credential_table(p_credential)); END; $$; COMMENT ON FUNCTION invalidate(p_credential credential) IS 'Invalidate all tokens or passwords in the entire system; *every* user, across *all* enterprises. In case of emergency, break this glass.'; -- SELECT invalidate('token'); -- SELECT invalidate('password'); CREATE OR REPLACE FUNCTION invalidate( p_credential credential, p_enterprise_name enterprises.name%TYPE) RETURNS VOID LANGUAGE plpgsql AS $$ BEGIN EXECUTE format('DELETE FROM %I AS c USING users AS u, enterprises AS e WHERE e.name = $1 AND c.id = u.id AND u.enterprise_id = e.id', credential_table(p_credential)) USING p_enterprise_name; END; $$; COMMENT ON FUNCTION invalidate( p_credential credential, p_enterprise_name enterprises.name%TYPE) IS 'Invalidate all tokens or passwords for all users in the given enterprise only'; -- SELECT invalidate('token', 'my_enterprise'); -- SELECT invalidate('password', 'my_enterprise'); CREATE OR REPLACE FUNCTION invalidate( p_credential credential, p_enterprise_name enterprises.name%TYPE, p_user_name users.name%TYPE) RETURNS VOID LANGUAGE plpgsql AS $$ BEGIN EXECUTE format('DELETE FROM %I AS c USING users AS u, enterprises AS e WHERE e.name = $1 AND u.name = $2 AND c.id = u.id AND u.enterprise_id = e.id', credential_table(p_credential)) USING p_enterprise_name, p_user_name; END; $$; COMMENT ON FUNCTION invalidate( p_credential credential, p_enterprise_name enterprises.name%TYPE, p_user_name users.name%TYPE) IS 'Invalidate all the tokens or the password of a specific user.'; -- SELECT invalidate('token', 'my_enterprise', 'me'); -- SELECT invalidate('password', 'my_enterprise', 'me'); COMMIT;
27.269663
81
0.682736
4430990761f13d2bcf52157a6332af01f85caf8b
37,301
py
Python
experimental/multihead/resnet.py
gmum/uncertainty-baselines
1118f7d9c084282e12eb0959dfe0ca12eb3d2388
[ "Apache-2.0" ]
null
null
null
experimental/multihead/resnet.py
gmum/uncertainty-baselines
1118f7d9c084282e12eb0959dfe0ca12eb3d2388
[ "Apache-2.0" ]
null
null
null
experimental/multihead/resnet.py
gmum/uncertainty-baselines
1118f7d9c084282e12eb0959dfe0ca12eb3d2388
[ "Apache-2.0" ]
null
null
null
import os.path from absl import app from absl import flags from absl import logging from typing import Any, Dict import tensorflow as tf import tensorflow.keras as keras import uncertainty_baselines as ub import uncertainty_metrics as um import numpy as np # import sklearn.isotonic # import sklearn.neural_network from metrics import BrierScore from metrics import MMC from metrics import nll def one_vs_all_loss_fn(dm_alpha: float = 1., from_logits: bool = True,reduction = tf.keras.losses.Reduction.SUM,one_hot=False): """Requires from_logits=True to calculate correctly.""" if not from_logits: raise ValueError('One-vs-all loss requires inputs to the ' 'loss function to be logits, not probabilities.') def one_vs_all_loss(labels: tf.Tensor, logits: tf.Tensor,reduction=reduction): r"""Implements the one-vs-all loss function. As implemented in https://arxiv.org/abs/1709.08716, multiplies the output logits by dm_alpha (if using a distance-based formulation) before taking K independent sigmoid operations of each class logit, and then calculating the sum of the log-loss across classes. The loss function is calculated from the K sigmoided logits as follows - \mathcal{L} = \sum_{i=1}^{K} -\mathbb{I}(y = i) \log p(\hat{y}^{(i)} | x) -\mathbb{I} (y \neq i) \log (1 - p(\hat{y}^{(i)} | x)) Args: labels: Integer Tensor of dense labels, shape [batch_size]. logits: Tensor of shape [batch_size, num_classes]. Returns: A scalar containing the mean over the batch for one-vs-all loss. """ #eps = tf.keras.backend.epsilon() eps = 1e-6 #eps = 1e-10 logits = logits * dm_alpha n_classes = tf.cast(logits.shape[1], tf.float32) if one_hot: labels = tf.argmax(labels, axis=-1) #decode one_hot one_vs_all_probs = tf.math.sigmoid(logits) labels = tf.cast(tf.squeeze(labels), tf.int32) row_ids = tf.range(tf.shape(one_vs_all_probs)[0], dtype=tf.int32) idx = tf.stack([row_ids, labels], axis=1) # Shape of class_probs is [batch_size,]. class_probs = tf.gather_nd(one_vs_all_probs, idx) s1 = tf.math.log(class_probs + eps) s2 = tf.reduce_sum(tf.math.log(1. - one_vs_all_probs + eps),axis=-1) s3 = - tf.math.log(1. - class_probs + eps) loss = -s1 - s2 - s3 if reduction == tf.keras.losses.Reduction.NONE: return loss elif reduction == tf.keras.losses.Reduction.SUM: return tf.reduce_mean(loss) return one_vs_all_loss # def one_vs_all_loss_fn(dm_alpha: float = 1., from_logits: bool = True): # """Requires from_logits=True to calculate correctly.""" # if not from_logits: # raise ValueError('One-vs-all loss requires inputs to the ' # 'loss function to be logits, not probabilities.') # def one_vs_all_loss(labels: tf.Tensor, logits: tf.Tensor): # r"""Implements the one-vs-all loss function. # As implemented in https://arxiv.org/abs/1709.08716, multiplies the output # logits by dm_alpha (if using a distance-based formulation) before taking K # independent sigmoid operations of each class logit, and then calculating the # sum of the log-loss across classes. The loss function is calculated from the # K sigmoided logits as follows - # \mathcal{L} = \sum_{i=1}^{K} -\mathbb{I}(y = i) \log p(\hat{y}^{(i)} | x) # -\mathbb{I} (y \neq i) \log (1 - p(\hat{y}^{(i)} | x)) # Args: # labels: Integer Tensor of dense labels, shape [batch_size]. # logits: Tensor of shape [batch_size, num_classes]. # Returns: # A scalar containing the mean over the batch for one-vs-all loss. # """ # #eps = tf.keras.backend.epsilon() # eps = 1e-6 # #eps = 1e-10 # logits = logits * dm_alpha # n_classes = tf.cast(logits.shape[1], tf.float32) # one_vs_all_probs = tf.math.sigmoid(logits) # labels = tf.cast(tf.squeeze(labels), tf.int32) # row_ids = tf.range(tf.shape(one_vs_all_probs)[0], dtype=tf.int32) # idx = tf.stack([row_ids, labels], axis=1) # # Shape of class_probs is [batch_size,]. # class_probs = tf.gather_nd(one_vs_all_probs, idx) # loss = ( # tf.reduce_mean(tf.math.log(class_probs + eps)) + # n_classes * tf.reduce_mean(tf.math.log(1. - one_vs_all_probs + eps)) - # tf.reduce_mean(tf.math.log(1. - class_probs + eps))) # return -loss # return one_vs_all_loss def _calc_certs(probs: tf.Tensor, certainty_variant: str = 'partial') -> tf.Tensor: #form Ci's #probs = tf.math.sigmoid(logits) probs_comp = 1-probs K = probs.shape[1] cert_list = [] for i in range(K): proj_vec = np.zeros(K) proj_vec[i]=1 proj_mat = np.outer(proj_vec,proj_vec) proj_mat_comp = np.identity(K)-np.outer(proj_vec,proj_vec) tproj_mat = tf.constant(proj_mat,dtype=tf.float32) tproj_mat_comp = tf.constant(proj_mat_comp,dtype=tf.float32) out = tf.tensordot(probs,tproj_mat,axes=1) + tf.tensordot(probs_comp,tproj_mat_comp,axes=1) cert_list+=[tf.reduce_prod(out,axis=1)] if certainty_variant == 'partial': certs = tf.stack(cert_list,axis=1,name='certs') elif certainty_variant == 'total': certs = tf.stack(cert_list,axis=1) certs_argmax = tf.one_hot(tf.argmax(certs,axis=1),depth=K) certs_reduce = tf.tile(tf.reduce_sum(certs,axis=1,keepdims=True),[1,K]) certs = tf.math.multiply(certs_argmax,certs_reduce) elif certainty_variant == 'normalized': certs = tf.stack(cert_list,axis=1) certs_norm = tf.tile(tf.reduce_sum(certs,axis=1,keepdims=True),[1,K]) certs = tf.math.divide(certs,certs_norm) else: raise ValueError(f'unknown certainty_variant={certainty_variant}') #certs.name = 'certs' return certs def _calc_logits_from_certs(certs: tf.Tensor, eps: float = 1e-6) -> tf.Tensor: #logits_from_certs K = certs.shape[1] logcerts = tf.math.log(certs+eps) rs = tf.tile(logcerts[:,:1],[1,K])-logcerts #set first logit to zero (an arbitrary choice) logits_from_certs = -rs return logits_from_certs def _activ(activation_type: str = 'relu'): activation = {'relu': tf.keras.layers.ReLU(), 'sin': tf.keras.backend.sin} if activation_type in activation.keys(): return activation[activation_type] else: return activation['relu'] class resnetLayer(tf.keras.layers.Layer): def __init__(self, num_filters: int = 16, kernel_size: int = 3, strides: int = 1, use_activation: bool = True, activation_type: str = 'relu', #relu or sin! use_norm: bool = True, l2_weight: float = 1e-4): super(resnetLayer,self).__init__() self.use_activation = use_activation self.use_norm = use_norm self.kernel_regularizer = None if l2_weight: self.kernel_regularizer = tf.keras.regularizers.l2(l2_weight) # print(f' resnetLayer num_filters={num_filters}, strides={strides}, kernel_size={kernel_size}') self.conv_layer = tf.keras.layers.Conv2D(num_filters, kernel_size=kernel_size, strides=strides, padding='same', kernel_initializer='he_normal', kernel_regularizer=self.kernel_regularizer) self.batch_norm = tf.keras.layers.BatchNormalization() self.activation = _activ(activation_type) def call(self, inputs: tf.Tensor) -> tf.Tensor: x = self.conv_layer(inputs) if self.use_norm: x = self.batch_norm(x) if self.use_activation: x = self.activation(x) return x class resnet20Block(tf.keras.layers.Layer): def __init__(self, stack: int, res_block: int, num_filters: int = 16, activation_type: str = 'relu', #relu or sin! l2_weight: float = 1e-4): super(resnet20Block,self).__init__() self.stack = stack self.res_block = res_block self.num_filters = num_filters self.activation_type = activation_type self.l2_weight = l2_weight # layers= 3 if self.stack > 0 and self.res_block == 0 else 2 # print(f'resnetBlock: stack={stack}, res_block={res_block}, filters={num_filters}, number_layers={layers}') strides = 1 if self.stack > 0 and self.res_block == 0: strides = 2 self.l_1 = resnetLayer(num_filters=self.num_filters, strides=strides, l2_weight=self.l2_weight, activation_type=self.activation_type) self.l_2 = resnetLayer(num_filters=self.num_filters, l2_weight=self.l2_weight, use_activation=False) self.l_3 = resnetLayer(num_filters=self.num_filters, kernel_size=1, strides=strides, l2_weight=self.l2_weight, use_activation=False, use_norm=False) self.l_add = tf.keras.layers.Add() self.l_activation = _activ(self.activation_type) def call(self,inputs: tf.Tensor) -> tf.Tensor: y = self.l_1(inputs) y = self.l_2(y) x = self.l_3(inputs) if self.stack > 0 and self.res_block == 0 else inputs x = self.l_add([x, y]) x = self.l_activation(x) return x class DMLayer(tf.keras.layers.Layer): def __init__(self, units: int = 10, **kwargs): super(DMLayer, self).__init__(**kwargs) self.units = units def build(self, input_shape): self.w = self.add_weight(name='DMLayer_weight', shape=(input_shape[-1], self.units), initializer="he_normal", trainable=True) def get_config(self): return {"units": self.units} def call(self, inputs): #tf.tile(inputs) # w_tiled = tf.tile(tf.reshape(self.w,shape=(1,)+self.w.shape),[inputs.shape[0],1,1]) # inputs_tiled = tf.tile(tf.reshape(inputs,shape=inputs.shape+(1,)),[1,1,self.units]) # out = tf.math.sqrt(tf.math.reduce_euclidean_norm(inputs_tiled-w_tiled,axis=1)) # a = tf.random.normal(shape=(128,64)) # b = tf.random.normal(shape=(64,10)) be=tf.expand_dims(self.w,0) ae=tf.expand_dims(inputs,-1) out = -tf.math.sqrt(tf.math.reduce_euclidean_norm(be-ae,axis=1)) return out class resnet20(tf.keras.Model): def __init__(self, batch_size: int = 128, l2_weight: float = 0.0, activation_type: str = 'relu', #relu or sin certainty_variant: str = 'partial', #partial, total or normalized model_variant: str = '1vsall', #1vsall or vanilla logit_variant: str = 'affine', #affine or dm **params): super(resnet20,self).__init__() self.batch_size = batch_size self.l2_weight = l2_weight if activation_type in ['sin','relu']: self.activation_type = activation_type else: raise ValueError(f'unknown activation_type={activation_type}') if certainty_variant in ['partial','total','normalized']: self.certainty_variant = certainty_variant else: raise ValueError(f'unknown certainty_variant={certainty_variant}') if model_variant in ['1vsall','vanilla']: self.model_variant = model_variant else: raise ValueError(f'unknown model_variant={model_variant}') if logit_variant in ['affine','dm']: self.logit_variant = logit_variant else: raise ValueError(f'unknown logit_variant={logit_variant}') self.depth = 20 self.num_res_blocks = int((self.depth - 2) / 6) num_filters = 16 self.layer_init_1 = tf.keras.layers.InputLayer(input_shape=(32, 32, 3), batch_size=self.batch_size) self.layer_init_2 = resnetLayer(num_filters=num_filters, l2_weight=self.l2_weight, activation_type=self.activation_type) self.res_blocks = [[0 for stack in range(3)] for res_block in range(self.num_res_blocks)] for stack in range(3): for res_block in range(self.num_res_blocks): self.res_blocks[stack][res_block] = resnet20Block(stack = stack, res_block = res_block, num_filters = num_filters, activation_type = self.activation_type, l2_weight = self.l2_weight) num_filters *= 2 self.layer_final_1 = tf.keras.layers.AveragePooling2D(pool_size=8) self.layer_final_2 = tf.keras.layers.Flatten() if self.logit_variant == 'dm': self.layer_final_3 = DMLayer(units=10) elif self.logit_variant == 'affine': self.layer_final_3 = tf.keras.layers.Dense(10, kernel_initializer='he_normal') else: raise ValueError(f'unknown logit_variant={self.logit_variant}') def call(self, inputs: tf.Tensor, trainable: bool = False) -> dict: x = self.layer_init_1(inputs) x = self.layer_init_2(x) for stack in range(3): for res_block in range(self.num_res_blocks): x = self.res_blocks[stack][res_block](x) x = self.layer_final_1(x) x = self.layer_final_2(x) logits = self.layer_final_3(x) if self.model_variant == '1vsall': probs = tf.math.sigmoid(logits) if self.logit_variant == 'dm': probs = 2*probs elif self.model_variant == 'vanilla': probs = tf.math.softmax(logits,axis=-1) else: raise ValueError(f'unknown model_variant={self.model_variant}') certs = _calc_certs(probs, certainty_variant = self.certainty_variant) logits_from_certs = _calc_logits_from_certs(certs = certs) return {'logits':logits,'probs':probs,'certs':certs,'logits_from_certs':logits_from_certs} def train_step(self, data): # Unpack the data. Its structure depends on your model and # on what you pass to `fit()`. x, y = data with tf.GradientTape() as tape: y_pred = self(x, training=True) # Forward pass # Compute the loss value # (the loss function is configured in `compile()`) loss = self.compiled_loss(y, y_pred, regularization_losses=self.losses) # Compute gradients trainable_vars = self.trainable_variables gradients = tape.gradient(loss, trainable_vars) # Update weights self.optimizer.apply_gradients(zip(gradients, trainable_vars)) # Update metrics (includes the metric that tracks the loss) self.compiled_metrics.update_state(y, y_pred) # Return a dict mapping metric names to current value return {m.name: m.result() for m in self.metrics} class resnet50Block(tf.keras.layers.Layer): def __init__(self, stack: int, res_block: int, num_filters: int = 16, activation_type: str = 'relu', #relu or sin! l2_weight: float = 1e-4): super(resnet50Block,self).__init__() self.stack = stack self.res_block = res_block self.num_filters = num_filters self.activation_type = activation_type self.l2_weight = l2_weight strides = 1 if self.stack > 0 and self.res_block == 0: strides = 2 # print(f'resnet50Block: stack={stack}, res_block={res_block}, filters={num_filters}') self.l_1 = resnetLayer(num_filters=self.num_filters, kernel_size=1, strides=strides, l2_weight=self.l2_weight, activation_type=self.activation_type) self.l_2 = resnetLayer(num_filters=self.num_filters, kernel_size=3, l2_weight=self.l2_weight, activation_type=self.activation_type) self.l_3 = resnetLayer(num_filters=4*self.num_filters, kernel_size=1, l2_weight=self.l2_weight, use_activation=False, use_norm=True) self.l_4 = resnetLayer(num_filters=4*self.num_filters, kernel_size=1, strides=strides, l2_weight=self.l2_weight, use_activation=False) self.l_add = tf.keras.layers.Add() self.l_activation = _activ(self.activation_type) def call(self,inputs: tf.Tensor) -> tf.Tensor: y = self.l_1(inputs) y = self.l_2(y) y = self.l_3(y) if self.res_block == 0: x = self.l_4(inputs) else: x = inputs x = self.l_add([x, y]) x = self.l_activation(x) return x #agreed with tf.keras.applications.ResNet50 class resnet50(tf.keras.Model): def __init__(self, batch_size: int = 128, l2_weight: float = 0.0, activation_type: str = 'relu', #relu or sin certainty_variant: str = 'partial', #partial, total or normalized model_variant: str = '1vsall', #1vsall or vanilla logit_variant: str = 'affine', #affine or dm **params): super(resnet50,self).__init__() self.batch_size = batch_size self.l2_weight = l2_weight if activation_type in ['sin','relu']: self.activation_type = activation_type else: raise ValueError(f'unknown activation_type={activation_type}') if certainty_variant in ['partial','total','normalized']: self.certainty_variant = certainty_variant else: raise ValueError(f'unknown certainty_variant={certainty_variant}') if model_variant in ['1vsall','vanilla']: self.model_variant = model_variant else: raise ValueError(f'unknown model_variant={model_variant}') if logit_variant in ['affine','dm']: self.logit_variant = logit_variant else: raise ValueError(f'unknown logit_variant={logit_variant}') # self.num_res_blocks = int((self.depth - 2) / 6) self.num_res_blocks = [3,4,6,3] num_filters = 64 self.layer_init_1 = tf.keras.layers.InputLayer(input_shape=(224, 224, 3), batch_size=self.batch_size) self.layer_init_2 = resnetLayer(num_filters=num_filters, kernel_size=7, strides=2, l2_weight=self.l2_weight, activation_type=self.activation_type) self.layer_init_3 = tf.keras.layers.MaxPooling2D(pool_size=3,strides=2) #self.res_blocks = [[0 for stack in range(4)] for res_block in range(max(self.num_res_blocks))] self.res_blocks = [[0 for res_block in range(max(self.num_res_blocks))] for stack in range(4)] for stack in range(4): for res_block in range(self.num_res_blocks[stack]): self.res_blocks[stack][res_block] = resnet50Block(stack = stack, res_block = res_block, num_filters = num_filters, activation_type = self.activation_type, l2_weight = self.l2_weight) num_filters *= 2 self.layer_final_1 = tf.keras.layers.AveragePooling2D(7) self.layer_final_2 = tf.keras.layers.Flatten() if self.logit_variant == 'dm': self.layer_final_3 = DMLayer(units=1000) elif self.logit_variant == 'affine': self.layer_final_3 = tf.keras.layers.Dense(1000, kernel_initializer='he_normal') else: raise ValueError(f'unknown logit_variant={self.logit_variant}') def call(self, inputs: tf.Tensor, trainable: bool = False) -> dict: x = self.layer_init_1(inputs) x = self.layer_init_2(x) x = self.layer_init_3(x) for stack in range(4): for res_block in range(self.num_res_blocks[stack]): x = self.res_blocks[stack][res_block](x) x = self.layer_final_1(x) x = self.layer_final_2(x) logits = self.layer_final_3(x) if self.model_variant == '1vsall': probs = tf.math.sigmoid(logits) if self.logit_variant == 'dm': probs = 2*probs elif self.model_variant == 'vanilla': probs = tf.math.softmax(logits,axis=-1) else: raise ValueError(f'unknown model_variant={self.model_variant}') certs = _calc_certs(probs, certainty_variant = self.certainty_variant) logits_from_certs = _calc_logits_from_certs(certs = certs) return {'logits':logits,'probs':probs,'certs':certs,'logits_from_certs':logits_from_certs} def train_step(self, data): # Unpack the data. Its structure depends on your model and # on what you pass to `fit()`. x, y = data with tf.GradientTape() as tape: y_pred = self(x, training=True) # Forward pass # Compute the loss value # (the loss function is configured in `compile()`) loss = self.compiled_loss(y, y_pred, regularization_losses=self.losses) # Compute gradients trainable_vars = self.trainable_variables gradients = tape.gradient(loss, trainable_vars) # Update weights self.optimizer.apply_gradients(zip(gradients, trainable_vars)) # Update metrics (includes the metric that tracks the loss) self.compiled_metrics.update_state(y, y_pred) # Return a dict mapping metric names to current value #garbage collection return {m.name: m.result() for m in self.metrics} class dummymodel(tf.keras.Model): def __init__(self, batch_size:int = 128, **params): super(dummymodel,self).__init__() self.batch_size = batch_size self.layer_1 = tf.keras.layers.InputLayer(input_shape=(224, 224, 3), batch_size=self.batch_size) self.layer_2 = tf.keras.layers.Flatten() self.layer_3 = tf.keras.layers.Dense(1000, kernel_initializer='he_normal') def call(self, inputs: tf.Tensor, trainable: bool = False) -> dict: x = self.layer_1(inputs) x = self.layer_2(x) logits = self.layer_3(x) probs = tf.math.sigmoid(logits) return {'logits':logits,'probs':probs,'certs':probs,'logits_from_certs':logits} # def create_model(batch_size: int, # l2_weight: float = 0.0, # activation_type: str = 'relu', #relu or sine # certainty_variant: str = 'partial', # total, partial or normalized # model_variant: str = '1vsall', #1vsall or vanilla # logit_variant: str = 'affine', #affine or dm # **unused_kwargs: Dict[str, Any]) -> tf.keras.models.Model: # return resnet20(batch_size=batch_size, # l2_weight=l2_weight, # activation_type=activation_type, # certainty_variant=certainty_variant, # model_variant=model_variant, # logit_variant=logit_variant) # based on um.numpy.plot_diagram, um.numpy.reliability_diagram def _extract_conf_acc(probs,labels,bins=0,one_hot=False): probs = np.array(probs) labels = np.array(labels) if not one_hot: labels_matrix = um.numpy.visualization.one_hot_encode(labels, probs.shape[1]) else: labels_matrix = labels # plot_diagram(probs.flatten(), labels_matrix.flatten(), y_axis)) probs = probs.flatten() labels = labels_matrix.flatten() probs_labels = [(prob, labels[i]) for i, prob in enumerate(probs)] probs_labels = np.array(sorted(probs_labels, key=lambda x: x[0])) window_len = int(len(labels)/100.) calibration_errors = [] confidences = [] accuracies = [] # More interesting than length of the window (which is specific to this # window) is average distance between datapoints. This normalizes by dividing # by the window length. distances = [] for i in range(len(probs_labels)-window_len): distances.append(( probs_labels[i+window_len, 0] - probs_labels[i, 0])/float(window_len)) # It's pretty sketchy to look for the 100 datapoints around this one. # They could be anywhere in the probability simplex. This introduces bias. mean_confidences = um.numpy.visualization.mean(probs_labels[i:i + window_len, 0]) confidences.append(mean_confidences) class_accuracies = um.numpy.visualization.mean(probs_labels[i:i + window_len, 1]) accuracies.append(class_accuracies) calibration_error = class_accuracies-mean_confidences calibration_errors.append(calibration_error) if bins>0: delta = int((len(probs_labels)-window_len)/bins) return confidences[::delta],accuracies[::delta] else: return confidences, accuracies # nonlinear calibration class calLayer(tf.keras.layers.Layer): def __init__(self, basis_type: str = 'uniform', basis_params: list = [-20,20,20], basis_list: list = [-2,-1,0,1,2], train_basis=True): super(calLayer,self).__init__() self.basis_type = basis_type self.basis_params = basis_params self.basis_list = basis_list self.train_basis = train_basis def build(self, input_shape): # if input_shape[-1]!=1: # raise ValueError('input_shape != 1') if self.basis_type=='uniform': self.basis_exponents = np.linspace(*self.basis_params) else: self.basis_exponents = self.basis_list self.basis_exponents = tf.convert_to_tensor(self.basis_exponents,dtype=tf.float32) self.alphas = tf.exp(self.basis_exponents) #self.alphas = tf.cast(self.alphas,dtype=tf.float32) self.alphas = tf.Variable(name='calLayer_alphas', initial_value=self.alphas, trainable=self.train_basis) self.W1 = self.add_weight(name='calLayer_weights', shape=(len(self.basis_exponents),), initializer="he_normal", trainable=True) def get_config(self): return {"basis_type": self.basis_type, "basis_params": self.basis_params, "basis_list": self.basis_list, "train_basis": self.train_basis} def call(self,inputs): inputs_shape = tf.shape(inputs) inputs_r = tf.reshape(inputs,shape=(-1,1)) self.beta = tf.nn.softmax(self.W1) #print(self.alphas) eps = 1e-10 x_alpha = tf.pow(inputs_r+eps,self.alphas) out = tf.reduce_sum(self.beta*x_alpha,axis=-1) return tf.reshape(out,shape=inputs_shape) def _form_cal_dataset(uncal_model:tf.keras.Model, output_name:str, train_dataset, dataset_bins:int, steps:int, append_random:bool = False, random_frac:float = 0.1): cal_dataset = dict() #FLAGS = exp1.FLAGS #self.cal_dataset = train_dataset #dataset = exp1.datasets['cifar10']['val'] labels = np.empty(0) probs = None for i,(x,y) in enumerate(train_dataset): if i>steps: break out = uncal_model(x)[output_name].numpy() labels = np.append(labels,y.numpy().astype('int32')) probs = out if type(probs)==type(None) else np.concatenate((probs,out)) if append_random: print(labels.shape,probs.shape) random_frac = random_frac random_mean = 0.5 random_std = 0.33 batch_size = next(iter(train_dataset))[0].shape[0] val_examples = steps*batch_size random_size = int(val_examples*random_frac) #random_x = np.sqrt(random_std)*np.random.randn(random_size,32,32,3) + random_mean random_x = np.random.rand(random_size,32,32,3) random_probs = uncal_model(random_x)[output_name].numpy() #random_labels_onehot = np.zeros(shape=(random_size,random_probs.shape[1])) random_labels_onehot = np.ones(shape=(random_size,random_probs.shape[1])) #random_labels_onehot = np.random.binomial(1,0.5,size=(random_size,random_probs.shape[1])) #random_labels_onehot = np.ones(shape=(random_size,random_probs.shape[1])) #random_labels_onehot = np.random.randint(low=0,high=2,size=(random_size,random_probs.shape[1])).astype('float32') labels_onehot = um.numpy.visualization.one_hot_encode(labels.astype('int32'), probs.shape[1]) # print(labels_onehot.shape) # print(random_labels_onehot.shape) # print(labels_onehot.dtype) # print(random_labels_onehot.dtype) # print(random_labels_onehot2.dtype) # print(random_labels_onehot[0]) # print(random_labels_onehot2[0]) labels_onehot = np.concatenate((labels_onehot,random_labels_onehot)) probs = np.concatenate((probs,random_probs)) print(labels_onehot.shape,probs.shape) confidences, accuracies = _extract_conf_acc(probs=probs, labels=labels_onehot, bins=dataset_bins, one_hot=True) else: confidences, accuracies = _extract_conf_acc(probs=probs, labels=labels.astype('int32'), bins=dataset_bins, one_hot=False) cal_dataset['x'] = tf.convert_to_tensor(confidences,dtype=tf.float32) cal_dataset['y'] = tf.convert_to_tensor(accuracies,dtype=tf.float32) return cal_dataset class nonlin_calibrator(tf.keras.Model): def __init__(self, basis_type: str = 'uniform', basis_params: list = [-20,20,10], basis_list: list = [-2,-1,0,1,2], train_basis: bool = True): super(nonlin_calibrator,self).__init__() self.layer = calLayer(basis_type = basis_type, basis_params = basis_params, basis_list = basis_list, train_basis = train_basis) def call(self, inputs: tf.Tensor, training: bool = False) -> tf.Tensor: x = self.layer(inputs) return x class cal_model(tf.keras.Model): def __init__(self, uncal_model: tf.keras.Model, calibrator: tf.keras.Model, output_name: str): super(cal_model,self).__init__() #self.inp = tf.keras.layers.Input(shape=(32,32,3)) self.uncal_model = uncal_model self.calibrator = calibrator self.output_name = output_name def call(self, inputs:tf.Tensor): x = self.uncal_model(inputs)[self.output_name] x = self.calibrator(x) return {self.output_name: x} def calibrate_model_nonlin(model, dataset, FLAGS, output='certs', epochs=10000, verbose=False, bins=4000, basis_type='uniform', # or list basis_params={-20,20,60}, basis_list = [-2,-1,0,1,2] ): def feature_create(x,basis_exponents): x_feat = tf.tile(tf.reshape(x,shape=(-1,1)),[1,len(basis_exponents)]) be_tf = tf.convert_to_tensor(basis_exponents,dtype=tf.float32) return tf.pow(x_feat,tf.exp(be_tf)) def cal_out(W1,x,basis_exponents): size = len(basis_exponents) x_shape = tf.shape(x) # print(x_shape) xr = tf.reshape(x,shape=(-1,)) # print(xr.shape) W1_tile = tf.tile(tf.reshape(tf.nn.softmax(W1),[1,size]),[tf.shape(xr)[0],1]) x_feat = feature_create(xr,basis_exponents) # print(W1_tile.shape) # print(x_feat.shape) out = tf.reduce_sum(W1_tile*x_feat,axis=-1) return tf.reshape(out,shape=x_shape) def cost(W1, x, y): yhats = cal_out(W1,x,basis_exponents) # print(yhats.shape) # print(y.shape) cost_value = tf.keras.losses.MSE(y_true=y, y_pred=yhats) return cost_value def grad(W1, x, y): with tf.GradientTape() as tape: cost_value = cost(W1, x, y) return cost_value, tape.gradient(cost_value, W1) if basis_type=='uniform': basis_exponents = np.linspace(*basis_params) else: basis_exponents = basis_list W1 = tf.Variable(tf.random.normal(shape=(len(basis_exponents),))) optimizer = ub.optimizers.get(optimizer_name='adam', learning_rate_schedule='constant', learning_rate=0.1, weight_decay=None) #number of classes K = FLAGS['no_classes'] labels = np.empty(0) probs = np.empty((0,K)) for i,(x,y) in enumerate(dataset): if i>FLAGS['validation_steps']: break out = model(x)[output].numpy() labels = np.append(labels,y.numpy().astype('int32')) probs = np.concatenate((probs,out)) confidences, accuracies = _extract_conf_acc(probs=probs,labels=labels.astype('int32'),bins=bins) X_train = tf.convert_to_tensor(confidences,dtype=tf.float32) y_train = tf.convert_to_tensor(accuracies,dtype=tf.float32) for i in range(epochs): train_cost, grads = grad(W1,X_train,y_train) optimizer.apply_gradients(zip([grads], [W1])) # if i % 50 == 0: # print(train_cost.numpy()) def model_return(): inp = tf.keras.layers.Input(shape=(32,32,3)) out_model = model(inp) out_calibr = cal_out(W1,out_model[output],basis_exponents=basis_exponents) out_model[output+'_cal'] = out_calibr return tf.keras.Model(inputs=inp,outputs=out_model) # def cal_model(x): # #out = tf.keras.models.Model(model.layers[0].input, model.output[output])(x) # out = model(x)[output] # out_shape = out.shape # out_calibr = cal_out(W1,out,basis_exponents=basis_exponents) # return {output+'_cal':out_calibr} return model_return(),W1
38.653886
127
0.56843
dd8a804253c1d3e59c07d6ac964aee4a8871fb81
1,423
java
Java
src/main/java/com/withinet/opaas/controller/RoleController.java
foomoto/easypaas
d7bae456ebaa6cb5ea4ecf69bc1a95a93e18a672
[ "Apache-2.0" ]
1
2018-11-11T15:44:13.000Z
2018-11-11T15:44:13.000Z
src/main/java/com/withinet/opaas/controller/RoleController.java
foomoto/easypaas
d7bae456ebaa6cb5ea4ecf69bc1a95a93e18a672
[ "Apache-2.0" ]
null
null
null
src/main/java/com/withinet/opaas/controller/RoleController.java
foomoto/easypaas
d7bae456ebaa6cb5ea4ecf69bc1a95a93e18a672
[ "Apache-2.0" ]
null
null
null
/** * */ package com.withinet.opaas.controller; import java.util.List; import org.springframework.web.bind.annotation.RestController; import com.withinet.opaas.controller.common.RoleControllerException; import com.withinet.opaas.model.domain.Permission; import com.withinet.opaas.model.domain.Role; /** * @author Folarin * */ @RestController public interface RoleController { public Role createRole (Role userRole, Long requesterId) throws RoleControllerException; public void deleteRole (Long id, Long requesterId) throws RoleControllerException; public Role updateRole (Role userRole, Long id, Long requesterId) throws RoleControllerException; public Role readRole (Long id, Long requesterId) throws RoleControllerException; public List<Role> readRolesByOwner (Long requesterId) throws RoleControllerException; public Role addPermission (Long id, List<Permission> permissions, Long requesterId) throws RoleControllerException ; public Role addPermission (Long id, Permission permission, Long requesterId) throws RoleControllerException; public void removePermission (Long id, Long pid, Long requesterId) throws RoleControllerException; public List<Permission> readRolePermissions (Long id, Long requesterId) throws RoleControllerException; public List<Permission> readAllPermissions(Long requesterId) throws RoleControllerException; }
33.093023
118
0.785664
2731507e469ff41c925c3e7c246078c0697565ec
170
lua
Lua
modules/unitframes/tags.lua
PedroZC90/LuaUI
5b3fab73f4d774b04f03b1097f44212c6ecb947b
[ "MIT" ]
null
null
null
modules/unitframes/tags.lua
PedroZC90/LuaUI
5b3fab73f4d774b04f03b1097f44212c6ecb947b
[ "MIT" ]
null
null
null
modules/unitframes/tags.lua
PedroZC90/LuaUI
5b3fab73f4d774b04f03b1097f44212c6ecb947b
[ "MIT" ]
null
null
null
local T, C, L = Tukui:unpack() ---------------------------------------------------------------- -- Tags ----------------------------------------------------------------
28.333333
64
0.135294
e752df59977c56f1e495562ce469d618ca091827
829
php
PHP
phpbb3.0/includes/auth/bridgebb/BridgeBBDBAL.php
bee-b/lara-auth-bridge
9ac1bbb8031b81a39cade3648fe656dd18611bd4
[ "MIT" ]
18
2015-06-18T21:30:25.000Z
2018-02-28T05:52:57.000Z
phpbb3.0/includes/auth/bridgebb/BridgeBBDBAL.php
bee-b/lara-auth-bridge
9ac1bbb8031b81a39cade3648fe656dd18611bd4
[ "MIT" ]
12
2015-09-22T03:53:10.000Z
2021-02-15T11:35:02.000Z
phpbb3.0/includes/auth/bridgebb/BridgeBBDBAL.php
bee-b/lara-auth-bridge
9ac1bbb8031b81a39cade3648fe656dd18611bd4
[ "MIT" ]
16
2015-07-17T08:22:00.000Z
2021-10-03T19:31:07.000Z
<?php class BridgeBBDBAL { public static function getUserByUsername($username) { global $db; $username = mb_strtolower($username); $sql = 'SELECT * FROM '.USERS_TABLE." WHERE LOWER(username) = '".$db->sql_escape($username)."'"; $result = $db->sql_query($sql); $row = $db->sql_fetchrow($result); $db->sql_freeresult($result); return $row; } public static function getDefaultGroupID() { global $db; $sql = 'SELECT group_id FROM '.GROUPS_TABLE." WHERE group_name = '".$db->sql_escape('REGISTERED')."' AND group_type = ".GROUP_SPECIAL; $result = $db->sql_query($sql); $row = $db->sql_fetchrow($result); $db->sql_freeresult($result); return $row; } }
25.90625
70
0.546441
e2878546ecd26dc52a42fd3584c9df95fb67ca7f
141
py
Python
backend/server/user/urls.py
munteanugabriel25/Javascript-RestApiDjango-FoodDelievery
0a362cc48ae0c8435f0d89f7c352b325995f9098
[ "Unlicense" ]
null
null
null
backend/server/user/urls.py
munteanugabriel25/Javascript-RestApiDjango-FoodDelievery
0a362cc48ae0c8435f0d89f7c352b325995f9098
[ "Unlicense" ]
null
null
null
backend/server/user/urls.py
munteanugabriel25/Javascript-RestApiDjango-FoodDelievery
0a362cc48ae0c8435f0d89f7c352b325995f9098
[ "Unlicense" ]
null
null
null
from django.urls import path, include from .views import UserLoginApiView urlpatterns = [ path('login/', UserLoginApiView.as_view()), ]
20.142857
47
0.744681
6dedc1145143a817fddc232f7f5222f323c4a9d5
4,141
h
C
targets/all/sensors/position/LIS3MD.h
minuteos/lib-sensors
752359daf3e2e143064ad459c46763935e2f318a
[ "MIT" ]
1
2021-10-02T07:59:59.000Z
2021-10-02T07:59:59.000Z
targets/all/sensors/position/LIS3MD.h
minuteos/lib-sensors
752359daf3e2e143064ad459c46763935e2f318a
[ "MIT" ]
null
null
null
targets/all/sensors/position/LIS3MD.h
minuteos/lib-sensors
752359daf3e2e143064ad459c46763935e2f318a
[ "MIT" ]
null
null
null
/* * Copyright (c) 2019 triaxis s.r.o. * Licensed under the MIT license. See LICENSE.txt file in the repository root * for full license information. * * sensors/position/LIS3MD.h */ #pragma once #include <sensors/I2CSensor.h> namespace sensors::position { class LIS3MD : I2CSensor { public: enum struct Address : uint8_t { Low = 0x1C, High = 0x1E, }; enum struct Config : uint32_t { // values for CTRL_REG1 Rate0p625Hz = 0 << 2, Rate1p25Hz = 1 << 2, Rate2p5Hz = 2 << 2, Rate5Hz = 3 << 2, Rate10Hz = 4 << 2, Rate20Hz = 5 << 2, Rate40Hz = 6 << 2, Rate80Hz = 7 << 2, PowerXYLow = 0 << 5, PowerXYMedium = 1 << 5, PowerXYHigh = 2 << 5, PowerXYUltra = 3 << 5, // values for CTRL_REG2 Scale4gS = 0 << 5 << 8, Scale8gS = 1 << 5 << 8, Scale12gS = 2 << 5 << 8, Scale16gS = 3 << 5 << 8, // values for CTRL_REG4 PowerZLow = 0 << 2 << 16, PowerZMedium = 1 << 2 << 16, PowerZHigh = 2 << 2 << 16, PowerZUltra = 3 << 2 << 16, // combined power values PowerLow = PowerXYLow | PowerZLow, PowerMedium = PowerXYMedium | PowerZMedium, PowerHigh = PowerXYHigh | PowerZHigh, PowerUltra = PowerXYUltra | PowerZUltra, }; LIS3MD(bus::I2C i2c, Address address) : I2CSensor(i2c, (uint8_t)address) { } //! Field intensity in X direction in gauss float GetFieldX() const { return x; } //! Field intensity in Y direction in gauss float GetFieldY() const { return y; } //! Field intensity in Z direction in gauss float GetFieldZ() const { return z; } //! Initializes the sensor async(Init); //! Updates sensor configuration async(Configure, Config cfg); //! Retrieves the last measurement result, return value indicates if the measured values have changed in the meantime async(Measure); protected: const char* DebugComponent() const { return "LIS3MD"; } private: enum struct Register : uint8_t { ID = 0xF, Control1 = 0x20, Control2 = 0x21, Control3 = 0x22, Control4 = 0x23, Control5 = 0x24, Status = 0x27, OutXL = 0x28, OutXH = 0x29, OutYL = 0x2A, OutYH = 0x2B, OutZL = 0x2C, OutZH = 0x2D, }; enum struct IDValue : uint8_t { Valid = 0x3D, }; enum struct Status : uint8_t { ReadyX = 1, ReadyY = 2, ReadyZ = 4, ReadyAll = ReadyX | ReadyY | ReadyZ, ReadyAny = 8, OverrunX = 0x10, OverrunY = 0x20, OverrunZ = 0x40, OverrunAll = OverrunX | OverrunY | OverrunZ, OverrunAny = 0x80, }; enum struct Control1 : uint8_t { }; enum struct Control2 : uint8_t { Reset = 4, Reboot = 8, Scale4gS = 0 << 5, Scale8gS = 1 << 5, Scale12gS = 2 << 5, Scale16gS = 3 << 5, }; enum struct Control3 : uint8_t { ModeContinuous = 0, ModeSingle = 1, ModePowerDown = 2, ModeMask = 3, }; enum struct Control4 : uint8_t { }; DECLARE_FLAG_ENUM(Status); DECLARE_FLAG_ENUM(Control2); DECLARE_FLAG_ENUM(Control3); async(UpdateConfiguration); bool init = false; struct { union { struct { Control1 ctl1; Control2 ctl2; Control3 ctl3; Control4 ctl4; }; uint32_t combined = FROM_BE32(0x10000300); // initialize with default values of registers }; float GetScale() const { return BYTES(4, 8, 12, 16)[(uint8_t(ctl2) >> 5) & 3]; } bool IsPowerDown() const { return !!(ctl3 & Control3::ModePowerDown); } } cfgActual, cfgDesired; float x = NAN, y = NAN, z = NAN; float mul; }; DEFINE_FLAG_ENUM(LIS3MD::Config); DEFINE_FLAG_ENUM(LIS3MD::Status); DEFINE_FLAG_ENUM(LIS3MD::Control2); DEFINE_FLAG_ENUM(LIS3MD::Control3); }
22.628415
121
0.545037
5d647427755bd5cf6ebbca66a79030eb40079c79
4,346
cpp
C++
src/Utils/Tests/Math/BSplines/BSplineTest.cpp
DockBio/utilities
213ed5ac2a64886b16d0fee1fcecb34d36eea9e9
[ "BSD-3-Clause" ]
null
null
null
src/Utils/Tests/Math/BSplines/BSplineTest.cpp
DockBio/utilities
213ed5ac2a64886b16d0fee1fcecb34d36eea9e9
[ "BSD-3-Clause" ]
null
null
null
src/Utils/Tests/Math/BSplines/BSplineTest.cpp
DockBio/utilities
213ed5ac2a64886b16d0fee1fcecb34d36eea9e9
[ "BSD-3-Clause" ]
null
null
null
/** * @file * @copyright This code is licensed under the 3-clause BSD license.\n * Copyright ETH Zurich, Laboratory for Physical Chemistry, Reiher Group.\n * See LICENSE.txt for details. */ #include <Utils/Math/BSplines/BSpline.h> #include <Utils/Math/BSplines/Coefficients.h> #include <Utils/Math/BSplines/Exceptions.h> #include <Utils/Math/BSplines/InterpolationGenerator.h> #include <gmock/gmock.h> using namespace testing; namespace Scine { namespace Utils { using namespace BSplines; namespace Tests { class ABspline : public Test { public: BSpline randomBSpline; protected: void SetUp() override { const int numberDimensions = 4; const int numberPoints = 20; Eigen::MatrixXd randomPoints = Eigen::MatrixXd::Random(numberPoints, numberDimensions); InterpolationGenerator generator(randomPoints); randomBSpline = generator.generateBSpline(); } }; namespace { void compareAtRandomUValues(const BSpline& b1, const BSpline& b2) { for (auto u : {0.001111, 0.232323, 0.555, 0.8766, 0.999}) { Eigen::VectorXd v1 = b1.evaluate(u); Eigen::VectorXd v2 = b2.evaluate(u); ASSERT_TRUE(v1.isApprox(v2)); } } void compareDividedSpline(const BSpline& b1, const BSpline& b2, const BSpline& b3) { for (auto u : {0.001111, 0.232323, 0.555, 0.8766, 0.999}) { Eigen::VectorXd v1 = b1.evaluate(u); Eigen::VectorXd v2 = b2.evaluate(u); Eigen::VectorXd v3 = b3.evaluate(u); Eigen::VectorXd v23(v2.size() + v3.size()); v23 << v2, v3; ASSERT_TRUE(v1.isApprox(v23)); } } } // namespace TEST_F(ABspline, CanBeGeneratedFromDegreeAndKnotsAndControlPoints) { auto degree = randomBSpline.getDegree(); Eigen::VectorXd knotVector = randomBSpline.getKnotVector(); Eigen::MatrixXd controlPoints = randomBSpline.getControlPointMatrix(); BSpline copiedSpline{knotVector, controlPoints, degree}; compareAtRandomUValues(randomBSpline, copiedSpline); } TEST_F(ABspline, CanBeDividedAlongDimensions) { auto degree = randomBSpline.getDegree(); Eigen::VectorXd knotVector = randomBSpline.getKnotVector(); Eigen::MatrixXd controlPoints = randomBSpline.getControlPointMatrix(); BSpline bspline1d{knotVector, controlPoints.leftCols(1), degree}; BSpline bspline3d{knotVector, controlPoints.rightCols(3), degree}; compareDividedSpline(randomBSpline, bspline1d, bspline3d); } TEST_F(ABspline, CanBeReversed) { auto reversed = randomBSpline.reversed(); for (auto u : {0.002, 0.3, 0.5436, 0.900}) { auto v = randomBSpline.evaluate(u); auto w = reversed.evaluate(1.0 - u); ASSERT_TRUE(v.isApprox(w)); } } TEST_F(ABspline, ReversingTwoTimesDeliversOriginalSpline) { auto reversed = randomBSpline.reversed(); auto reversedTwoTimes = reversed.reversed(); compareAtRandomUValues(randomBSpline, reversedTwoTimes); } TEST_F(ABspline, ReturnsZeroDimensionalValueWhenUninitialized) { BSpline uninitialized; for (auto u : {0.01, 0.4, 0.8}) { auto v = uninitialized.evaluate(u); ASSERT_THAT(v.size(), Eq(0)); } } TEST_F(ABspline, CalculatesNoDerivativesByDefault) { ASSERT_THAT(randomBSpline.getHighestCalculatedDerivative(), Eq(0)); } TEST_F(ABspline, CalculatesMissingDerivatives) { double u = 0.333; ASSERT_THAT(randomBSpline.getHighestCalculatedDerivative(), Eq(0)); randomBSpline.evaluate(u, 2); ASSERT_THAT(randomBSpline.getHighestCalculatedDerivative(), Eq(2)); } TEST_F(ABspline, EvaluationIsSameAsLinearCombinationOfCoefficientsAndControlPoints) { double u = 0.5678; const auto& controlPoints = randomBSpline.getControlPointMatrix(); Eigen::VectorXd bsplineCoefficients = randomBSpline.calculateBSplineCoefficientVector(u); Eigen::VectorXd evaluated = randomBSpline.evaluate(u); Eigen::VectorXd linearCombination = controlPoints.transpose() * bsplineCoefficients; ASSERT_TRUE(evaluated.isApprox(linearCombination)); } TEST_F(ABspline, CoefficientsClassCorrespondsToCoefficientVector) { double u = 0.5678; Eigen::VectorXd fullBsplineCoefficients = randomBSpline.calculateBSplineCoefficientVector(u); auto coefficientClass = randomBSpline.calculateBSplineCoefficients(u); for (int i = 0; i < fullBsplineCoefficients.size(); ++i) { ASSERT_THAT(coefficientClass.get(i), DoubleEq(fullBsplineCoefficients(i))); } } } // namespace Tests } // namespace Utils } // namespace Scine
31.266187
95
0.744133
58124c83e8f0ad84edbea0a8dfada21f0b1e33b2
557
css
CSS
public/style.css
ivanpakpahan27/agromeat
b8a3c180e3c3a979d009873fde239e4e0357aff6
[ "MIT" ]
null
null
null
public/style.css
ivanpakpahan27/agromeat
b8a3c180e3c3a979d009873fde239e4e0357aff6
[ "MIT" ]
null
null
null
public/style.css
ivanpakpahan27/agromeat
b8a3c180e3c3a979d009873fde239e4e0357aff6
[ "MIT" ]
null
null
null
.gambar { width: 190px; } .table > tbody > tr > * { vertical-align: middle; } .notification { /* background-color: #555; */ color: white; text-decoration: none; /* padding: 15px 26px; */ position: relative; display: inline-block; border-radius: 2px; } .notification .badge { position: absolute; top: -5px; right: -10px; padding: 5px 6px; border-radius: 50%; background: red; color: white; font-size: 12%; } html, body { height: 100%; } .carousel, .item, .active { height: 100%; } .carousel-inner { height: 100%; }
13.585366
31
0.615799
7fc0205453aea0408e011e62b697d893bea030fd
3,537
php
PHP
vendor/amranidev/scaffold-interface/src/Http/Controllers/GuiController.php
rikardote/portal
0c5f9e841e4532a21870e4f557a2df1203204182
[ "MIT" ]
null
null
null
vendor/amranidev/scaffold-interface/src/Http/Controllers/GuiController.php
rikardote/portal
0c5f9e841e4532a21870e4f557a2df1203204182
[ "MIT" ]
null
null
null
vendor/amranidev/scaffold-interface/src/Http/Controllers/GuiController.php
rikardote/portal
0c5f9e841e4532a21870e4f557a2df1203204182
[ "MIT" ]
null
null
null
<?php namespace Amranidev\ScaffoldInterface\Http\Controllers; use Amranidev\Ajaxis\Ajaxis; use Amranidev\ScaffoldInterface\AutoArray; use Amranidev\ScaffoldInterface\Scaffold; use Amranidev\ScaffoldInterface\Scaffoldinterface; use AppController; use Request; use Session; use URL; /** * Class GuiController * * @package scaffold-interface/Http/Controllers * @author Amrani Houssain <[email protected]> * * @todo Testing */ class GuiController extends AppController { /** * Display a listing of the resource. * * @return \Illuminate\Http\Response */ public function index() { $scaffold = Scaffoldinterface::paginate(6); $scaffoldList = Scaffoldinterface::all()->lists('id', 'tablename'); return view('scaffold-interface::scaffoldApp', compact('scaffold', 'scaffoldList')); } /** * Store a newly created resource in storage. * * @param \Illuminate\Http\Request $request * @return \Illuminate\Http\Response */ public function store(Request $request) { $data = Request::except('_token'); $scaffold = new Scaffold($data); $scaffold->Migration()->Model()->Views()->Controller()->Route(); $scaffoldInterface = new Scaffoldinterface(); $scaffoldInterface->migration = $scaffold->paths->MigrationPath(); $scaffoldInterface->model = $scaffold->paths->ModelPath(); $scaffoldInterface->controller = $scaffold->paths->ControllerPath(); $scaffoldInterface->views = $scaffold->paths->DirPath(); $scaffoldInterface->tablename = $scaffold->names->TableNames(); $scaffoldInterface->save(); Session::flash('status', ' Successfully created ' . $scaffold->names->TableName() . '. To complete your scaffold. go ahead and migrate the schema.'); return redirect('scaffold'); } /** * Remove the specified resource from storage. * * @param int $id * @return \Illuminate\Http\Response */ public function destroy($id) { $scaffoldInterface = Scaffoldinterface::FindOrFail($id); unlink($scaffoldInterface->model); unlink($scaffoldInterface->controller); unlink($scaffoldInterface->views . '/index.blade.php'); unlink($scaffoldInterface->views . '/create.blade.php'); unlink($scaffoldInterface->views . '/show.blade.php'); unlink($scaffoldInterface->views . '/edit.blade.php'); rmdir($scaffoldInterface->views); $scaffoldInterface->delete(); Session::flash('status', 'Successfully deleted'); return URL::to('scaffold'); } /** * Delete confirmation message by Ajaxis * * @link https://github.com/amranidev/ajaxis * * @return String */ public function deleteMsg($id) { $scaffold = Scaffoldinterface::FindOrFail($id); $msg = Ajaxis::Mtdeleting("Warning!!", "Would you like to rollback '" . $scaffold->tablename . "' ?? by rollbacking this, make sure that you have rollbacked " . $scaffold->tablename . " from database. and avoid to keep routes recoureces.", '/scaffold/guirollback/' . $id); if (Request::ajax()) { return $msg; } } /** * get Attributes from * * @param String $table * * @return Array */ public function GetResult($table) { $attributes = new AutoArray($table); if (Request::ajax()) { return $attributes->getResult(); } } }
28.296
280
0.625954
c6e3945e8f5dc3a1564dea71157a31e3d4a7b83f
2,874
py
Python
utils/scraping_utils.py
DavidMcDonald1993/mim
b55ea1c23ffd1aaf3c395480cbc6673dc6b4cf6a
[ "Apache-2.0" ]
null
null
null
utils/scraping_utils.py
DavidMcDonald1993/mim
b55ea1c23ffd1aaf3c395480cbc6673dc6b4cf6a
[ "Apache-2.0" ]
null
null
null
utils/scraping_utils.py
DavidMcDonald1993/mim
b55ea1c23ffd1aaf3c395480cbc6673dc6b4cf6a
[ "Apache-2.0" ]
null
null
null
import requests from bs4 import BeautifulSoup import time from requests.exceptions import TooManyRedirects from urllib3.connection import ConnectionError import re sleep = .1 def remove_html_tags(text): return BeautifulSoup(text, features="html.parser").get_text() def process_figure_string(figure_string_): figure_string = figure_string_ if (figure_string is None or "%" in figure_string or "£" not in figure_string): return figure_string assert "£" in figure_string, figure_string if "k" in figure_string: multiplier = 1000 elif "m" in figure_string: multiplier = 1000000 elif "b" in figure_string: multiplier = 1000000000 else: multiplier = 1 figure_string = re.sub(f"(£|[a-z])", "", figure_string) try: return float(figure_string) * multiplier except ValueError as e: print (e, figure_string_, figure_string) def strip_text(s): return re.sub( r"(\n|[ ]{2,})" , "", s) def get_soup_for_url(url, sleep=1., timeout=5, retries=3, return_request=False): print ("getting soup for url:", url) # proxies = {"http": "http://10.10.1.10:3128", # "https": "http://10.10.1.10:1080"} for _ in range(retries): try: page = requests.get(url, timeout=timeout, # proxies=proxies ) print ("Received status code:", page.status_code) time.sleep(sleep) status_code = page.status_code if status_code != 200: print ("STATUS CODE FAIL", status_code) continue if return_request: return page, status_code else: return BeautifulSoup(page.content, 'html.parser'), status_code except (ConnectionError, requests.ConnectTimeout, requests.exceptions.ConnectionError, requests.exceptions.ReadTimeout, ConnectionResetError, TooManyRedirects) as e: print ("SOUP ERROR", e) pass print ("MAX RETRIES") # raise Exception() return None, None def identify_postcode(address): postcode_pattern = r"[A-Z]{1,2}[0-9]{1,2}[A-Z]?[ ]?[0-9][A-Z]{2}" matches = re.findall(postcode_pattern, address) if len(matches) == 1: postcode = matches[0] return postcode else: return None def get_postcode_prefix(postcode): # print ("finding postcode prefix for postcode", postcode) if postcode is None: return None match = re.match(r"^[A-Z]+", postcode) if match is None: return None return match.group(0) def clean_directors_name(name): # remove title name = re.sub(r'(^\w{2,3} )', r'', name) # remove middle name return re.sub(r" [A-Z][a-z]* ", r" ", name)
27.902913
80
0.597425
7b3a682cfc774646b0e9368d63c5d8a14b550493
1,018
rb
Ruby
spec/classes/learning_stickler_gems_spec.rb
thedarkwriter/pltraining-bootstrap
fe232d4c976668ce1139154170e30236b1d527bc
[ "Apache-2.0" ]
4
2015-03-20T23:58:05.000Z
2018-05-23T20:42:13.000Z
spec/classes/learning_stickler_gems_spec.rb
thedarkwriter/pltraining-bootstrap
fe232d4c976668ce1139154170e30236b1d527bc
[ "Apache-2.0" ]
54
2015-03-20T17:35:48.000Z
2021-09-01T18:09:18.000Z
spec/classes/learning_stickler_gems_spec.rb
thedarkwriter/pltraining-bootstrap
fe232d4c976668ce1139154170e30236b1d527bc
[ "Apache-2.0" ]
21
2015-03-18T17:55:57.000Z
2021-03-16T10:17:58.000Z
require 'spec_helper' describe "bootstrap::profile::learning::learning_stickler_gems" do let(:node) { 'test.example.com' } let(:facts) { { :os => { :family => 'RedHat', :release => { :major => '7', :minor => '2', } }, :path => '/usr/bin:/usr/sbin:/usr/local/bin:/usr/local/sbin', :osfamily => 'RedHat', :operatingsystem => 'CentOS', :operatingsystemrelease => '7.2.1511', :operatingsystemmajrelease => '7', :kernel => 'Linux', :kernelversion => '3.10.0', :aio_agent_version => '4.5.3', :pe_build => '2016.2', } } let(:pre_condition) { <<-EOF include bootstrap::profile::stickler_server EOF } it { is_expected.to compile.with_all_deps } it { is_expected.to contain_bootstrap__profile__stickler_clone_gem('cowsay') .with({ "version" => "0.3.0", }) } end
24.829268
86
0.496071
a46634ec98b18f48e79e8dd77bfc03bcbc2a69ae
1,201
php
PHP
resources/views/people/list.blade.php
uHs13/Laravel
7fbc2b42063ad8e84a346aadec6542a66ceed0f9
[ "MIT" ]
null
null
null
resources/views/people/list.blade.php
uHs13/Laravel
7fbc2b42063ad8e84a346aadec6542a66ceed0f9
[ "MIT" ]
1
2021-02-02T21:23:27.000Z
2021-02-02T21:23:27.000Z
resources/views/people/list.blade.php
uHs13/Laravel
7fbc2b42063ad8e84a346aadec6542a66ceed0f9
[ "MIT" ]
null
null
null
@extends('layouts.index') @section('title', 'Person List') @section('content') <div> <div> <h2>Person List</h2> <a href="{{ route('resources.create') }}">Add</a> </div> @if (count($people) > 0) <div> <ul> @foreach ($people as $person) <li> <div>Id: {{ $person['id'] }}</div> <div>Name: {{ $person['name'] }}</div> <div> <a href="{{ route('resources.edit', $person['id']) }}">Edit</a> <a href="{{ route('resources.show', $person['id']) }}">Details</a> <form method="POST" action="{{ route('resources.destroy', $person['id']) }}"> @csrf @method('DELETE') <button>Delete</button> </form> </div> </li> @endforeach </ul> </div> @else <div> <p style="color: rgb(146, 143, 143)">Add a person</p> </div> @endif </div> @stop
29.292683
105
0.354704
58728dc3003111b5f54f59cd9a536ffacbbca69d
8,294
css
CSS
estilos.css
maurodinucci97/libreria-la-sombra
377c54a3d2fba0a0f6678953d8b1955a56bdff5f
[ "MIT" ]
null
null
null
estilos.css
maurodinucci97/libreria-la-sombra
377c54a3d2fba0a0f6678953d8b1955a56bdff5f
[ "MIT" ]
null
null
null
estilos.css
maurodinucci97/libreria-la-sombra
377c54a3d2fba0a0f6678953d8b1955a56bdff5f
[ "MIT" ]
null
null
null
* { margin: 0; padding: 0; box-sizing: border-box 0; } body { background-color: rgb(192, 240, 240); background-image: url(https://previews.123rf.com/images/kluva/kluva1512/kluva151200057/49482654-biblioteca-de-libros-de-patr%C3%B3n-transparente-la-lectura-de-fondo-patr%C3%B3n-de-bosquejo-dibujado-a-mano-s.jpg); background-position: center; } /* carrusel que está en galería de fotos */ .contenedorIndex { width: 100%; } nav { width: 100%; background-color: #000; height: 50px; } .carruselPersonal { width: 500px; } .subtitulo { margin: 20px; padding: 30px; font-family: 'Kaushan Script', cursive; color: rgb(3, 1, 15); text-align: center; font-size: 5em; } table { border: 3px solid; font-family: cursive; color: rgb(206, 226, 252); background-color: rgb(28, 49, 63); width: 90%; text-align: center; } th { background-color:#000105; border: 1px solid; } tr, td { border: 1px solid; width: 25%; text-align: center; } .titulo{ background-color: #000; padding: 20px; border: solid; color: rgb(243, 178, 59); font-weight: normal; font-size: 4em; text-align: center; font-family: 'Great Vibes', cursive; } .p{ margin: 20px; padding: 30px; color: rgb(7, 1, 1); font-size: large; font-style: italic; text-align: center; font-weight: bold; animation-duration: 3s; } h3 { text-align: center; font-family: 'Courier New', Courier, monospace; } .audio { width: 100%; margin-right: 300px; background-color: black; } .indice { font-family: Arial, Helvetica, sans-serif; list-style: circle; text-decoration: none; } .footer { background-color: rgb(13, 15, 24); min-height: 20px; font-weight: normal; color: rgb(124, 89, 0); font-style: oblique; } a:visited { color: rgb(235, 231, 231); } .parrafoDeNovela { font-style: italic; font-size: 20px; font-family: 'Great Vibes', cursive; padding: 20px; margin: 30px; } .novela { float: left; margin: 20px; padding: 30px; border: solid; background: linear-gradient(to top, #000, #ccc); transform: rotate(-10deg); } .ul { color: rgb(235, 231, 231); } .hr { clear: both; } .conociendonos { margin: 20px; font-size: 20px; font-family: cursive; display: inline } a { font-family: fantasy; text-decoration: none; display: inline-block; text-align: center; font-size: large; } li{ margin: 50px; padding: 50px; align-items: center; text-decoration: none; display: inline; } a:hover { background: rgb(186, 226, 159); } .menu { background: linear-gradient(to top, #000, #ccc); width: 100%; padding: 12em; height: 50px; justify-content: center; } .contenedorTitulo { background-color: #000; } .contenedorConcursos { width: 100%; height: 300px; background: url(../imagenes.html/5-premiosliterarios1.jpg); margin: 1em auto; display: flex; justify-content: center; align-items: center; } .contenedorEntrevistas { background-color: black; width: 100%; height: 400px; display: flex; flex-wrap: wrap; justify-content: center; align-items: flex-start; } .pConcursos { margin: 0; text-align: center; background: black; color: blanchedalmond; font-family: sans-serif; display: flex; box-sizing: border-box; } .asideConcursos { width: 100%; background: linear-gradient(90deg, #000, #ccc); display: flex; flex-direction: row; align-items: center; justify-content: space-around; text-align: center; color: bisque; font-size: 20px; } .conteiner { background-color: rgb(17, 16, 4); width: 80%; max-width: 1000px; margin: 1.6em auto; display: grid; grid-template-columns: repeat(2, 1fr); grid-template-rows: repeat(3, 1fr); } .conteiner > .contenido, .conteiner > .sidebar, .conteiner >.div { background-color: lavender; padding: 20px; border: 1px solid black; } .conteiner > .contenido { grid-column: span 2 ; margin: 20px; grid-row: span 3 ; background: linear-gradient( rgb(65, 59, 59), rgb(14, 103, 187) ); text-align: center; } .conteiner > .sidebar { width: 90%; text-align: center; background: linear-gradient( rgb(65, 59, 59), rgb(14, 103, 187) ); margin: 20px; grid-column: span 2; grid-row: span 3; font-family: 'Courier New', Courier, monospace; } .article { font-family: Arial, Helvetica, sans-serif; } .fotosIndex { margin: 15px; padding: 10px; display: flex; flex-direction: row; align-items: flex-start; background: linear-gradient(to top, #000, #ccc); justify-content: space-around; filter: saturate(150%); } .imagenesLibros { width: 350px; height: 300px; padding: 20px; } .seccionOfertas { margin: 20px; width: 100%; height: 600px; float: left; background: linear-gradient(to top, rgb(54, 181, 240), rgb(14, 1, 1)); } .ofertas { width: auto; } h2 { font-family: Arial, Helvetica, sans-serif; color: lightyellow; } .pAside { color: lightyellow; font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif; } .letraOfertas { font-size: 30px; color: rgb(2, 10, 10); } .aparecer{ margin:100px; animation-duration: 8s; animation-name: aparecer; animation-iteration-count: infinite; text-align: center; } @keyframes aparecer { 0% { opacity: 0; } 50% { opacity: 1; } 100% { opacity: 0; } } .animacion { background: #8e44ad; color: white; padding: .2rem .3rem 1rem .3rem; position: absolute; border-radius: 2rem 2rem 0 0; animation-name: animar; animation-duration: 5s; animation-iteration-count: infinite; } @keyframes animar{ 0% { left: 0; top: 0; } 10% { left: 10rem; top: 0rem; color: #9b59b6; } 30% { top: 10rem; left: 5rem; color: white; } 60%{ top: 1rem; left: 0; color: #9b59b6; } 100% { top: 0; left: 0; } }
17.49789
217
0.454787
daa6d093c4abcb86571510fc4b1ee2d98afb1888
212
ts
TypeScript
node_modules/@polkadot/util-crypto/address/sort.d.ts
vikusss/sub4.3
006301051ed052c8105b7da592bd2ae59d695920
[ "MIT" ]
1
2022-01-30T05:13:15.000Z
2022-01-30T05:13:15.000Z
node_modules/@polkadot/util-crypto/address/sort.d.ts
vikusss/sub4.3
006301051ed052c8105b7da592bd2ae59d695920
[ "MIT" ]
1
2022-01-23T16:33:48.000Z
2022-01-23T16:33:48.000Z
node_modules/@polkadot/util-crypto/address/sort.d.ts
vikusss/sub4.3
006301051ed052c8105b7da592bd2ae59d695920
[ "MIT" ]
1
2022-01-17T10:15:33.000Z
2022-01-17T10:15:33.000Z
import type { HexString } from '@polkadot/util/types'; import type { Prefix } from './types'; export declare function sortAddresses(addresses: (HexString | Uint8Array | string)[], ss58Format?: Prefix): string[];
53
117
0.731132
2d150219ac188d4017c444fc5f80ce5744c93ad9
22,571
css
CSS
assets/css/theme/admin.css
pwnugraha/laundry-in
1330d1757ffb1f74202ff6aff75ffb18a49a8095
[ "MIT" ]
null
null
null
assets/css/theme/admin.css
pwnugraha/laundry-in
1330d1757ffb1f74202ff6aff75ffb18a49a8095
[ "MIT" ]
null
null
null
assets/css/theme/admin.css
pwnugraha/laundry-in
1330d1757ffb1f74202ff6aff75ffb18a49a8095
[ "MIT" ]
null
null
null
/*! * Start Bootstrap - SB Admin 2 Bootstrap Admin Theme (http://startbootstrap.com) * Code licensed under the Apache License v2.0. * For details, see http://www.apache.org/licenses/LICENSE-2.0. */ @import url('http://fonts.googleapis.com/css?family=Source+Sans+Pro:200,300,400,600|Open+Sans:400italic,400,300,600'); body { background-color: #f8f8f8; } #wrapper { width: 100%; } #page-wrapper { padding: 0 20px 25px 25px; background-color: #fff; position: relative; } @media (min-width: 768px) { #page-wrapper { position: inherit; margin: 0 0 0 230px; } /* .navbar-static-side { z-index: 2001; position: absolute; width: 230px; }*/ } @media (max-width: 767px) { #page-wrapper { position: inherit; margin: 50px 0 0 0px; } } .navbar-fa-right{ float: right; } @media (max-width: 767px) { .navbar-fa-right { position: inherit; margin-top: 50px; padding-left: 5px; float: right; background-color: #F3F3F4; width: 100%; border-bottom: 1px solid #E7EAEC; } .navbar-fixed-top{ border-bottom: 0px; } } .nav > li{ padding: 0; } .nav > li > a{ padding: 12px; } .navbar-brand{ opacity: 1; } .navbar-top-links { margin-right: 0; padding-left: 0; margin-bottom: 0; list-style: outside none none; } .navbar-top-links li a{ padding: 0; min-height: 50px; } .navbar-top-links li { display: inline-block; } .navbar-top-links li:last-child { margin-right: 15px; } .navbar-top-links .dropdown-menu li { display: block; } .navbar-top-links .dropdown-menu li:last-child { margin-right: 0; } .navbar-top-links .dropdown-menu li a { padding: 3px 20px; min-height: 0; } .navbar-top-links .dropdown-menu li a div { white-space: normal; } .navbar-top-links .dropdown-messages, .navbar-top-links .dropdown-tasks, .navbar-top-links .dropdown-alerts { width: 310px; min-width: 0; } .navbar-top-links .dropdown-messages { margin-left: 5px; } .navbar-top-links .dropdown-tasks { margin-left: -59px; } .navbar-top-links .dropdown-alerts { margin-left: -123px; } .navbar-top-links .dropdown-user { right: 0; left: auto; } .sidebar .sidebar-nav.navbar-collapse { padding-right: 0; padding-left: 0; } .sidebar .sidebar-search { padding: 15px; } .sidebar ul li a.active { color: #ffffff; border-left: 5px solid #19aa8d; background: #293846; transition: all 0.15s linear; } .sidebar ul li.active { border-left: 5px solid #19aa8d; background: #293846; transition: all 0.15s linear; } .sidebar ul li.active > a { color: #ffffff; } .sidebar .arrow { float: right; } .sidebar .fa.arrow:before { content: "\f104"; } .sidebar .active>a>.fa.arrow:before { content: "\f107"; } .sidebar .nav-second-level li, .sidebar .nav-third-level li { border-bottom: 0!important; } .sidebar .nav-second-level li a { padding-left: 37px; } .sidebar .nav-second-level li a.active { padding-left: 37px; border: none; } .sidebar .nav-third-level li a { padding-left: 52px; } .sidebar .nav-third-level li a.active { padding-left: 52px; border: none; } @media(min-width:768px) { .sidebar { /* z-index: 1; position: absolute; width: 230px; margin-top: 51px;*/ } .navbar-top-links .dropdown-messages, .navbar-top-links .dropdown-tasks, .navbar-top-links .dropdown-alerts { margin-left: auto; } } .float-left{ float: left; } .float-right{ float: right; } .font-14{ font-size: 1.05em } .panel-image-post{ padding: 20px 30px 15px; } .img-preview{ border: 4px dashed #ddd; } .btn-right{ text-align: right; } .btn-right-float{ float: right; } .btn-left{ text-align: left; float: left; } .btn-file { position: relative; overflow: hidden; } .btn-file input[type=file] { position: absolute; top: 0; right: 0; font-size: 20px; text-align: right; filter: alpha(opacity=0); opacity: 0; outline: none; background: white; cursor: inherit; width: 100%; height: 100%; } .btn-outline { color: inherit; background-color: transparent; transition: all .5s; } .btn-primary.btn-outline { color: #428bca; } .btn-success.btn-outline { color: #5cb85c; } .btn-info.btn-outline { color: #5bc0de; } .btn-warning.btn-outline { color: #f0ad4e; } .btn-danger.btn-outline { color: #d9534f; } .btn-primary.btn-outline:hover, .btn-success.btn-outline:hover, .btn-info.btn-outline:hover, .btn-warning.btn-outline:hover, .btn-danger.btn-outline:hover { color: #fff; } .chat { margin: 0; padding: 0; list-style: none; } .chat li { margin-bottom: 10px; padding-bottom: 5px; border-bottom: 1px dotted #999; } .chat li.left .chat-body { margin-left: 60px; } .chat li.right .chat-body { margin-right: 60px; } .chat li .chat-body p { margin: 0; } .panel .slidedown .glyphicon, .chat .glyphicon { margin-right: 5px; } .chat-panel .panel-body { height: 350px; overflow-y: scroll; } .panel-shadow{ box-shadow: 0px 3px 15px 1px #D9D8D8; } .panel-shadow-o{ box-shadow: 4px 4px #DFE1D8; } .login-panel { margin-top: 35%; font-family: 'Open Sans', sans-serif; } .panel-logo > h3{ text-align: center; line-height: 1.5em; font-size: 20px; } .panel-logo > h2{ text-align: center; line-height: 1.5em; font-weight: 700; font-size: 26px; } .flot-chart { display: block; height: 400px; } .flot-chart-content { width: 100%; height: 100%; } .dataTables_wrapper { position: relative; clear: both; } table.dataTable thead .sorting, table.dataTable thead .sorting_asc, table.dataTable thead .sorting_desc, table.dataTable thead .sorting_asc_disabled, table.dataTable thead .sorting_desc_disabled { background: 0 0; } table.dataTable thead .sorting_asc:after { content: "\f0de"; float: right; font-family: fontawesome; } table.dataTable thead .sorting_desc:after { content: "\f0dd"; float: right; font-family: fontawesome; } table.dataTable thead .sorting:after { content: "\f0dc"; float: right; font-family: fontawesome; color: rgba(50,50,50,.5); } .btn-circle { width: 30px; height: 30px; padding: 6px 0; border-radius: 15px; text-align: center; font-size: 12px; line-height: 1.428571429; } .btn-circle.btn-lg { width: 50px; height: 50px; padding: 10px 16px; border-radius: 25px; font-size: 18px; line-height: 1.33; } .btn-circle.btn-xl { width: 70px; height: 70px; padding: 10px 16px; border-radius: 35px; font-size: 24px; line-height: 1.33; } .show-grid [class^=col-] { padding-top: 10px; padding-bottom: 10px; border: 1px solid #ddd; background-color: #eee!important; } .show-grid { margin: 15px 0; } .huge { font-size: 40px; } .huge-cal { font-size: 30px; } .border-normal{ border-radius: 0px; box-shadow: 0px 0px 3px #ddd; } .panel-green { border-color: #5cb85c; } .panel-green .panel-heading { border-color: #5cb85c; color: #fff; background-color: #5cb85c; } .panel-green a { color: #5cb85c; } .panel-green a:hover { color: #3d8b3d; } .panel-red { border-color: #d9534f; } .panel-red .panel-heading { border-color: #d9534f; color: #fff; background-color: #d9534f; } .panel-red a { color: #d9534f; } .panel-red a:hover { color: #b52b27; } .panel-yellow { border-color: #f0ad4e; } .panel-yellow .panel-heading { border-color: #f0ad4e; color: #fff; background-color: #f0ad4e; } .panel-yellow a { color: #f0ad4e; } .panel-yellow a:hover { color: #df8a13; } .panel-greenblue{ border-color: #009C82; } .panel-greenblue .panel-heading { border-color: #009C82; color: #fff; background-color: #009C82; } .bg-greenblue{ border-color: #009C82; background-color: #009C82; } .bg-greenblue:hover, .bg-greenblue:focus{ border-color: #00856f; background-color: #00856f; } .panel-gold{ border-color: #B0AB30; } .panel-gold .panel-heading { border-color: #B0AB30; color: #fff; background-color: #B0AB30; } .panel-turquoise{ border-color: #25ACB4; } .panel-turquoise .panel-heading { border-color: #25ACB4; color: #fff; background-color: #25ACB4; } .text-gold{ color: #B0AB30; } .text-greenblue{ color: #009C82; } .text-turquoise{ color: #25ACB4; } .text-bold{ font-weight: bold; } .text-semi-bold{ font-weight: 600; } .a-panel{ border-width: 5px 1px 1px; } .panel-body-sm{ padding: 10px 10px 5px; } .cal-center{ font-size: 36px; position: relative; bottom: 43px; color: #777; } .col-xs-1-slim{ padding: 0; margin: 5px 0; width: 0; } .time-delimiter{ font-size: 1.2em; font-weight: bold; } @-moz-document url-prefix() { fieldset { display: table-cell; } } /*Calendar style*/ .calendar { width: 100%; border-collapse: collapse; } .calendar tbody tr:first-child th { color: #505050; margin: 0 0 10px 0; font-size: 14px; } .day_header { text-align: center; color: #757575; font-size: 1em; font-weight: 600; } .day_header td{ padding-bottom: 5px; } .day_detail{ height: 100%; cursor: pointer; } .day_listing { display: block; text-align: right; font-size: 16px; color: #959393; padding: 5px 7px 0 0; font-weight: 600; } .calendar .day .active { background: rgba(232, 253, 231, 0.75); height: 100%; } .calendar .days td { width: 14%; /*Force all cells to be about the same width regardless of content */ border: 1px solid #CCC; height: 100px; vertical-align: top; font-size: 10px; padding: 0; font-family: Georgia,Times,serif; } .calendar .days td:hover { background-color: #F3F3F3; } .calendar .highlight { font-weight: bold; font-size: 2.4em; padding: 2px 8px 0 0; } .weekend_sun{ background-color: #FFE5E5; } .next-prev-month{ font-size: 16px; background-color: #fff; } .title-month{ font-size: 22px; padding-bottom: 30px; } .minggu{ color: #A94442; } .Minggu{ color: #A94442; } .expand-evt, .edit-evt{ float:right; padding: 3px 5px 0 0; cursor:pointer; } .expand-evt a, .edit-evt{ color: #009C82; } .expand-evt a:hover, .edit-evt:hover{ text-decoration: none; } .delete{ float:right; padding: 2px 7px 0 5px; cursor:pointer; } .modal-agenda, .modal-img-post{ top: 20px; } .modal-page{ margin-top: 130px; } .modal-md{ width: 700px; } .modal-result-sm, .modal-result-success, .modal-result-failed{ margin-top: 270px; width: 250px; margin-left: auto; margin-right: auto; } .modal-result-success, .modal-result-failed, .modal-confirm{ margin-top: 200px; } .result-success-content, .result-failed-content{ padding: 15px; } .modal-result-content{ background-color: rgba(255,255,255,0); border: none; box-shadow: none; } .tc-img{ height: 380px; overflow: auto; } .fa-spin{ text-align: center; } textarea[name = info], textarea[name = NewsContent], textarea[name = img-descrip], textarea[name = img-caption], textarea[name = album-deskrip], textarea[name = moto_jpsm], textarea[name = alamat_jpsm], textarea[name = text-widget]{ resize: none; } .text-normal{ font-weight: 400; } .day-name, .edit-day-name{ text-transform: capitalize; font-weight: 700; } /*News Section*/ .uploader { position:relative; overflow:hidden; margin-left: auto; margin-right: auto; margin-bottom: 10px; } @media(min-width: 768px){ .img-box { height: 227px; } } #filePhoto{ position:absolute; width:300px; height:400px; top:-50px; left:0; z-index:2; opacity:0; cursor:pointer; } .uploader img{ border:none; } .img-box{ padding: 0; background:#f3f3f3; border:3px dashed #e8e8e8; } .progress-img-post{ margin-bottom: 0; margin-top: 10px; } #upload-img-post{ padding: 15px 25px 0px; } .edit-post-img{ margin-top: 10px; font-size: 0.95em; } .edit-post-img a{ text-decoration: none; } .list-post .table > tbody > tr > td{ vertical-align: middle; text-align: center; font-size: 1.05em; } .img-info-m{ line-height: 0.7em; } .set-ft-img{ padding: 10px 25px 5px; } .tab-post{ height: 30px; margin-bottom: 10px; } .tab-post .nav > li > a{ padding: 6px 10px; font-size: 12px; } .tab-post .badge{ font-size: 11px; } .post-new{ font-size: 13px; font-weight: 600; } .post-page{ float: right; font-weight: 600; } .text-center-btn{ text-align: center; } /*cal event*/ .det_agenda{ margin-top: 50px; padding-left: 10px; font-family: 'Open Sans', sans-serif; } span.event{ font-family: Arial; font-size: 22px; font-weight:bold; text-align:center; padding-top:5px; display:block; } .require{ color: red; } .error_require{ background-color: #ffd2d4; } .spacer{ clear:both; color:red; text-align:center; font-size:12px; padding: 3px; } .add_event { font-family: Arial, Helvetica, sans-serif; cursor:pointer; font-size: 14px; color: #ffffff; padding: 3px 8px 3px 25px; background: #01b9ec url('images/add.png') no-repeat 5px center; -moz-border-radius: 8px; -webkit-border-radius: 8px; border-radius: 8px; border: 1px solid #01b9ec; -moz-box-shadow: 0px 1px 3px rgba(000,000,000,0.5), inset 0px 0px 2px rgba(255,255,255,1); -webkit-box-shadow: 0px 1px 3px rgba(000,000,000,0.5), inset 0px 0px 2px rgba(255,255,255,1); box-shadow: 0px 1px 3px rgba(000,000,000,0.5), inset 0px 0px 2px rgba(255,255,255,1); text-shadow: 0px -1px 0px rgba(000,000,000,0.4), 0px 1px 0px rgba(255,255,255,0.3); margin: 10px 0 0 22px; } /*Loading spinner*/ .sk-spinner-three-bounce.sk-spinner { margin: 0 auto; width: 70px; text-align: center; } .sk-spinner-three-bounce div { width: 18px; height: 18px; background-color: #333; border-radius: 100%; display: inline-block; -webkit-animation: sk-threeBounceDelay 1.4s infinite ease-in-out; animation: sk-threeBounceDelay 1.4s infinite ease-in-out; /* Prevent first frame from flickering when animation starts */ -webkit-animation-fill-mode: both; animation-fill-mode: both; } .sk-spinner-three-bounce .sk-bounce1 { -webkit-animation-delay: -0.32s; animation-delay: -0.32s; } .sk-spinner-three-bounce .sk-bounce2 { -webkit-animation-delay: -0.16s; animation-delay: -0.16s; } @-webkit-keyframes sk-threeBounceDelay { 0%, 80%, 100% { -webkit-transform: scale(0); transform: scale(0); } 40% { -webkit-transform: scale(1); transform: scale(1); } } @keyframes sk-threeBounceDelay { 0%, 80%, 100% { -webkit-transform: scale(0); transform: scale(0); } 40% { -webkit-transform: scale(1); transform: scale(1); } } .process-text{ font-size: 15px; } .load-container { position: relative; overflow: hidden; float: left; margin-top: -10px; } .load-container .loader { text-indent: 0; text-align: center; color: #FFF; font-size: 17px; border: 0 none; width: auto; height: auto; margin: 1em auto; overflow: visible; box-shadow: none; -webkit-animation: none; -moz-animation: none; animation: none; } .load-container .loader:before, .load-container .loader:after { display: none; } .circle .loader { margin: 6em auto; font-size: 2px; position: relative; text-indent: -9999em; border-top: 2em solid rgba(255, 255, 255, 0.2); border-right: 2em solid rgba(255, 255, 255, 0.2); border-bottom: 2em solid rgba(255, 255, 255, 0.2); border-left: 2em solid #ffffff; -webkit-transform: translateZ(0); -ms-transform: translateZ(0); transform: translateZ(0); -webkit-animation: circle 1.1s infinite linear; animation: circle 1.1s infinite linear; } .circle .loader, .circle .loader:after { border-radius: 50%; width: 10em; height: 10em; } @-webkit-keyframes circle { 0% { -webkit-transform: rotate(0deg); transform: rotate(0deg); } 100% { -webkit-transform: rotate(360deg); transform: rotate(360deg); } } @keyframes circle { 0% { -webkit-transform: rotate(0deg); transform: rotate(0deg); } 100% { -webkit-transform: rotate(360deg); transform: rotate(360deg); } } /*galeri*/ .layout-mode a{ border: none; padding: 4px 5px 3px; } .layout-mode a.active{ box-shadow: 0.3px 0.5px 1.5px 2.5px #adadad inset; background-color: #fff; } .album-list{ margin: 0; padding: 0; height: auto; width: 100%; } .img-box-thumb{ margin-bottom: 7px; max-width: 265px; } /*grid layout*/ .grid{ list-style: none; margin: 0 0px 0 -40px; } .grid .list-head{ display: none; } .grid li{ width: 50%; min-height: 1px; padding-left: 20px; padding-right: 20px; position: relative; float: left; } @media(max-width: 1075px){ .grid li{ width: 50%; } } .grid li .frame-album{ height: 360px; border: 1px solid #ddd; margin: 15px 0; overflow: auto; } .grid li .frame-album:hover{ box-shadow: 2px 2px 12px 4px #DFE1D8; cursor: pointer; } .grid li .cover-description{ padding: 0 10px; } .grid li .action-album{ position: absolute; top: 16px; right: 21px; padding: 5px; background-color: rgba(105,105,105,0.35); opacity: 0.35; } .grid li .frame-album:hover .action-album{ opacity: 0.85; background-color: rgba(105,105,105,0.8); -moz-transition: linear 0.2s all; -webkit-transition: linear 0.2s all; transition: linear 0.2s all; } .grid li .frame-album .cover-img{ overflow: hidden; height: 230px; } .grid li .frame-album .cover-img img{ max-height: 230px; } .grid li .frame-album .cover-img .show-album{ position: relative; width: 100%; bottom: 0; height: 70px; background-color: rgba(105,105,105,0.35); opacity: 0.35; -moz-transition: linear 0.15s all; -webkit-transition: linear 0.15s all; transition: linear 0.15s all; padding: 5px; } .grid li .frame-album:hover .show-album{ position: relative; width: 100%; bottom: 70px; height: 70px; opacity: 0.85; background-color: rgba(41,56,70,0.8); -moz-transition: linear 0.15s all; -webkit-transition: linear 0.15s all; transition: linear 0.15s all; } .grid li .show-album h4, .grid li .show-album p{ color: #fff; text-align: center; } .grid li .show-album p a{ color: #fff; font-size: 14px; } /*list layout*/ .list{ list-style: none; margin: 0 10px 0 -30px; } .list .list-head{ display: block; text-align: center; } .list li{ width: 100%; min-height: 1px; padding-left: 15px; padding-right: 15px; position: relative; float: left; } .list li .frame-album{ height: 170px; border: 1px solid #ddd; margin: 15px 0; overflow: hidden; padding: 10px; cursor: pointer; } @media(max-width: 1175px){ .list li .frame-album{ overflow:auto; } } .list li .frame-album:hover{ box-shadow: 2px 2px 12px 4px #DFE1D8; } .list li .show-album{ display: none; } .list li .frame-album .cover-img{ width: 41.667%; } .list li .frame-album .cover-img img{ width: 49%; float: left; min-height: 149px; } .list li .frame-album .cover-img div{ width: 51%; float: left; padding: 15px 12px; } .list li .frame-album .cover-img div a{ font-size: 16px; cursor: pointer; } .list li .frame-album .grid-foto{ width: 8.3333%; float: left; text-align: center; font-size: 15px; margin-top: 60px; } .list li .frame-album .grid-deskripsi{ width: 33.3333%; float: left; padding: 15px 15px; font-size: 14px; } .list li .frame-album .grid-action{ width: 16.6667%; float: left; padding: 15px 0px 15px 35px; margin-top: 30px; } @media(max-width: 1280px){ .list li .frame-album .grid-action{ padding: 15px 0px 15px 20px; } } @media(max-width: 1190px){ .list li .frame-album .grid-action{ padding: 5px 35px; margin-top: 0px; } .list li .frame-album .grid-action a{ margin: 3px 0; } } @media(max-width:800px){ .list li .frame-album .grid-action{ padding: 12px; } } @media(max-width:767px){ .list li .frame-album .grid-action{ padding: 5px 35px; } } @media(max-width:575px){ .list li .frame-album .grid-action{ padding: 12px; } } .img-galeri{ margin:10px 0px ; } .img-galeri img:hover{ box-shadow: 2px 2px 12px 4px #DFE1D8; cursor: pointer; } .action-galeri{ position: absolute; top: 8px; right: 20px; opacity: 0.35; } .img-galeri:hover .action-galeri{ opacity: 0.85; -moz-transition: linear 0.2s all; -webkit-transition: linear 0.2s all; transition: linear 0.2s all; } /*upload galeri*/ .upload-box{ padding: 15px; } .img-box-pic{ width: 360px; height: auto; } /*jejaring section*/ .tab-post-jejaring{ height: 30px; margin-bottom: 10px; margin-top: 10px; } .tab-post-jejaring .nav > li > a{ padding: 6px 10px; font-size: 1em; } .form-profil-jejaring .control-label, .form-profil-jejaring .form-profil-umum .control-label{ text-align: left; } .form-profil-jejaring .form-profil-umum .control-label{ padding-top: 0; margin-bottom: 7px; } .form-profil-jejaring h4{ margin-bottom: 15px; } .cke_textarea_inline{ border: 1px solid #ccc; border-radius: 4px; height: 90px; padding: 8px 10px; } .form-profil-program textarea{ resize: none; } /*Pesan*/ .message-content{ padding-top: 10px; padding-bottom: 10px; border: 1px solid #ddd; min-height: 200px; font-size: 14px; } .message-content p{ white-space: pre-wrap; } /*Page*/ #page-parent{ display: none; } .label-user{ margin-bottom: 0; } /*image*/ .img-spacing{ margin: 5px 0px; text-align: center; }
18.653719
232
0.61486
230535490578cef053fd39906170596bd0b32eaa
55
css
CSS
blocks/header/__link/header__link.css
ya-team/first
b07ebb1d71546a55fe6fd0667ff8fdf593a329ef
[ "MIT" ]
null
null
null
blocks/header/__link/header__link.css
ya-team/first
b07ebb1d71546a55fe6fd0667ff8fdf593a329ef
[ "MIT" ]
null
null
null
blocks/header/__link/header__link.css
ya-team/first
b07ebb1d71546a55fe6fd0667ff8fdf593a329ef
[ "MIT" ]
null
null
null
.header__link { color: #000; text-decoration: none; }
13.75
23
0.690909
c95db49571bd593c9953fdce6d83059a0ef7ed3b
174
tsx
TypeScript
src/ui/export/index.tsx
Bridge2Hyku/cdm-bridge
e5367faafcfd70e3313145542dbfb140a73fbb4a
[ "Apache-2.0" ]
6
2018-08-30T19:32:31.000Z
2019-12-06T21:36:00.000Z
src/ui/export/index.tsx
uhlibraries-digital/cdm-bridge-carp
ed83dfe0855888ddb55204979c8e8f7ab5446f48
[ "Apache-2.0" ]
4
2020-08-25T17:34:32.000Z
2022-02-28T17:47:51.000Z
src/ui/export/index.tsx
Bridge2Hyku/cdm-bridge
e5367faafcfd70e3313145542dbfb140a73fbb4a
[ "Apache-2.0" ]
null
null
null
export { ExportView } from './export-view' export { ExportDropdown } from './export-dropdown' export { ExportButton } from './export-button' export * from './export-dropdown'
43.5
50
0.724138
33d42aaae21ff176656c438d69e768627cb4b5ed
2,462
lua
Lua
lib/bass.lua
jimbo00000/foguete
dc583f3124e8ed6211d1e97701f1c700e12f5b1c
[ "MIT" ]
5
2016-06-10T21:35:49.000Z
2022-03-08T04:26:36.000Z
lib/bass.lua
jimbo00000/foguete
dc583f3124e8ed6211d1e97701f1c700e12f5b1c
[ "MIT" ]
null
null
null
lib/bass.lua
jimbo00000/foguete
dc583f3124e8ed6211d1e97701f1c700e12f5b1c
[ "MIT" ]
null
null
null
local ffi = require( "ffi" ) local libs = ffi_Bass_libs or { OSX = { x86 = "libbass.dylib", x64 = "libbass.dylib" }, Windows = { x86 = "bass.dll", x64 = "" }, Linux = { x86 = "libbass.so", x64 = "libbass.so", arm = "libbass.so" }, BSD = { }, POSIX = { }, Other = { }, } local lib = ffi_Bass_lib or libs[ ffi.os ][ ffi.arch ] or "Bass" local bass = ffi.load( lib ) ffi.cdef [[ typedef unsigned char BYTE; typedef unsigned short WORD; typedef unsigned long DWORD; typedef unsigned __int64 QWORD; typedef unsigned long HWND; typedef unsigned long GUID; typedef int BOOL; typedef struct _GUID { DWORD Data1; WORD Data2; WORD Data3; BYTE Data4[8]; } GUID; typedef DWORD HMUSIC; // MOD music handle typedef DWORD HSAMPLE; // sample handle typedef DWORD HCHANNEL; // playing sample's channel handle typedef DWORD HSTREAM; // sample stream handle typedef DWORD HRECORD; // recording handle typedef DWORD HSYNC; // synchronizer handle typedef DWORD HDSP; // DSP handle typedef DWORD HFX; // DX8 effect handle typedef DWORD HPLUGIN; // Plugin handle enum { BASS_POS_BYTE = 0, BASS_ACTIVE_PLAYING = 1, BASS_STREAM_PRESCAN = 0x20000, // enable pin-point seeking/length (MP3/MP2/MP1) }; BOOL BASS_Init(int device, DWORD freq, DWORD flags, HWND win, const GUID *dsguid); BOOL BASS_Free(); HSTREAM BASS_StreamCreateFile(BOOL mem, const void *file, QWORD offset, QWORD length, DWORD flags); BOOL BASS_StreamFree(HSTREAM handle); BOOL BASS_Start(); BOOL BASS_Update(DWORD length); BOOL BASS_ChannelPlay(DWORD handle, BOOL restart); BOOL BASS_ChannelPause(DWORD handle); DWORD BASS_ChannelIsActive(DWORD handle); BOOL BASS_ChannelSetPosition(DWORD handle, QWORD pos, DWORD mode); QWORD BASS_ChannelSeconds2Bytes(DWORD handle, double pos); QWORD BASS_ChannelGetPosition(DWORD handle, DWORD mode); QWORD BASS_ChannelSeconds2Bytes(DWORD handle, double pos); double BASS_ChannelBytes2Seconds(DWORD handle, QWORD pos); QWORD BASS_ChannelGetLength(DWORD handle, DWORD mode); HSAMPLE BASS_SampleLoad(BOOL mem, const void *file, QWORD offset, DWORD length, DWORD max, DWORD flags); HCHANNEL BASS_SampleGetChannel(HSAMPLE handle, BOOL onlynew); int BASS_ErrorGetCode(); ]] return bass
36.205882
108
0.666531
6afb505880946de3373ee2a825c02fe079cf812b
440
lua
Lua
MMOCoreORB/bin/scripts/mobile/conversation.lua
V-Fib/FlurryClone
40e0ca7245ec31b3815eb6459329fd9e70f88936
[ "Zlib", "OpenSSL" ]
18
2017-02-09T15:36:05.000Z
2021-12-21T04:22:15.000Z
MMOCoreORB/bin/scripts/mobile/conversation.lua
V-Fib/FlurryClone
40e0ca7245ec31b3815eb6459329fd9e70f88936
[ "Zlib", "OpenSSL" ]
61
2016-12-30T21:51:10.000Z
2021-12-10T20:25:56.000Z
MMOCoreORB/bin/scripts/mobile/conversation.lua
V-Fib/FlurryClone
40e0ca7245ec31b3815eb6459329fd9e70f88936
[ "Zlib", "OpenSSL" ]
71
2017-01-01T05:34:38.000Z
2022-03-29T01:04:00.000Z
ConvoTemplate = { initialScreen = "", screens = {} } function ConvoTemplate:new (o) o = o or { } setmetatable(o, self) self.__index = self return o end function ConvoTemplate:addScreen(screen) table.insert(self.screens, screen) end ConvoScreen = { id = "", leftDialog = "", customDialogText = "", options = {} } function ConvoScreen:new (o) o = o or { } setmetatable(o, self) self.__index = self return o end
14.666667
40
0.65
365a8cb20f1489aaf106bcb5b53e20dd2187756b
20
sh
Shell
commit.sh
dreamykun/hutool
398a4a78c1a51cd0403c9173393f6ba26e3fd37d
[ "Apache-2.0" ]
9
2017-08-11T16:24:28.000Z
2021-10-15T03:19:39.000Z
commit.sh
clevogao/hutool
750b9787caac5ead2b009bde1b15e18096cf2dbb
[ "Apache-2.0" ]
1
2021-12-10T01:23:07.000Z
2021-12-10T01:23:07.000Z
commit.sh
clevogao/hutool
750b9787caac5ead2b009bde1b15e18096cf2dbb
[ "Apache-2.0" ]
1
2021-04-02T09:48:46.000Z
2021-04-02T09:48:46.000Z
git commit -am "$1"
10
19
0.6
208e28cf61df6cf8a447598822fcfba6b0ee6b53
615
asm
Assembly
EserciziMips/Vettore.asm
AntoAndGar/MIPS
776bbf3ca1d9a3184f469a11b5230d4d03622826
[ "MIT" ]
null
null
null
EserciziMips/Vettore.asm
AntoAndGar/MIPS
776bbf3ca1d9a3184f469a11b5230d4d03622826
[ "MIT" ]
null
null
null
EserciziMips/Vettore.asm
AntoAndGar/MIPS
776bbf3ca1d9a3184f469a11b5230d4d03622826
[ "MIT" ]
null
null
null
# Definire due vettori di 5 elementi x di valore -2 32 <x i <2 32 -1 e # memorizzare in un nuovo vettore solamente gli elementi in posizione dispari # Esempio: # vIN=(3,5,8,10,1) # vOUT= (3,5,1) .text .globl main main: la $t0, vin li $t1, 1 lw $t9, num_elem la $s0, vout loop: blt $t9, $t1, end_loop rem $t5, $t1, 2 beqz $t5, no_add subi $t4, $t1, 1 mul $t2, $t4, 4 add $t3, $t0, $t2 lw $t6, ($t3) mul $t7, $t8, 4 add $s1, $s0, $t7 sw $t6, ($s1) addi $t8, $t8, 1 no_add: addi $t1, $t1, 1 j loop end_loop: li $v0, 10 syscall .data vin: .word 3,5,8,10,1 vout: .word 0:5 num_elem: .word 5
15.375
77
0.6
a601c6cf7cf5ace0c1572919242932d447a1b247
219
rb
Ruby
app/models/integral/user_version.rb
yamasolutions/integral
db83889c862167332c31254644c9de1d441b6577
[ "MIT" ]
22
2018-10-23T00:05:44.000Z
2022-01-26T04:02:02.000Z
app/models/integral/user_version.rb
yamasolutions/integral
db83889c862167332c31254644c9de1d441b6577
[ "MIT" ]
59
2018-10-08T08:02:46.000Z
2022-02-26T04:27:32.000Z
app/models/integral/user_version.rb
yamasolutions/integral
db83889c862167332c31254644c9de1d441b6577
[ "MIT" ]
5
2019-03-10T09:32:53.000Z
2021-09-20T17:29:43.000Z
# Integral namespace module Integral # Record PaperTrail of Integral::User class UserVersion < Version self.table_name = :integral_user_versions self.sequence_name = :integral_user_versions_id_seq end end
24.333333
55
0.785388
f240a6e511a6201e6f5dac450de93f1e1c33ef82
2,227
php
PHP
src/Widgets/Colors.php
yalks/dcat-admin
2a62f95efa23c076778542d547e915685a6fcfd8
[ "MIT" ]
null
null
null
src/Widgets/Colors.php
yalks/dcat-admin
2a62f95efa23c076778542d547e915685a6fcfd8
[ "MIT" ]
null
null
null
src/Widgets/Colors.php
yalks/dcat-admin
2a62f95efa23c076778542d547e915685a6fcfd8
[ "MIT" ]
null
null
null
<?php namespace Dcat\Admin\Widgets; class Colors { public static $default = [ 'green' => [ 'rgba(33,185,120, 1)', 'rgba(33,185,120, 0.1)', ], 'primary' => [ 'rgba(64,153,222, 1)', 'rgba(64,153,222, 0.1)', ], 'purple' => [ 'rgba(91, 105, 188, 1)', 'rgba(91,105,188,0.1)', ], 'red' => [ 'rgba(255,91,91, 1)', 'rgba(255,91,91,0.1)', ], 'custom' => [ 'rgba(89,169,248, 1)', 'rgba(89,169,248,0.1)', ], 'tear' => [ 'rgba(38,166,154, 1)', 'rgba(38,166,154,0.1)', ], 'blue' => [ 'rgba(0,126,229, 1)', 'rgba(0,126,229,0.1)', ], ]; public static $charts = [ 'blue' => [ 'rgba(64,153,222,.5)', // primary 'rgba(64,153,222,.85)', // primary '#007ee5', // blue '#59a9f8', // custom 'rgba(121,134,203, 1)', // purple '#6474D7', // purple darker '#8FC15D', // green '#21b978', // success '#47C1BF', // tear '#F2CB22', // yellow '#F99037', // orange '#F5573B', // red '#9C6ADE', // another purple '#ff8acc', // pink '#297ec0', // primary darker '#483D8B', // blue darker ], 'green' => [ // 绿色系 'rgba(64,153,222,.5)', // primary '#21b978', // success '#47C1BF', // tear '#8FC15D', // green ], 'orange' => [ // 橙色系 'rgba(64,153,222,.5)', // primary '#F99037', // orange '#F5573B', // red '#F2CB22', // yellow ], // 'red2' => [ // 红色系 // '#F99037', // orange // '#F5573B', // red // '#F2CB22', // yellow // '#ff5b5b', // danger // ], 'purple' => [ 'rgba(64,153,222,.5)', // primary 'rgba(121,134,203, 1)', // purple '#6474D7', // purple darker '#9C6ADE', // another purple ], ]; }
23.946237
46
0.355186
da63052b0aa0deab39498df307b0ef9f7da09c37
6,822
php
PHP
resources/views/components/design_process.blade.php
mtawil/undraw
a5a4599e4fb487e51b49c77087a2e8cb683611cc
[ "MIT" ]
9
2020-12-11T11:38:29.000Z
2022-03-26T13:17:02.000Z
resources/views/components/design_process.blade.php
mtawil/undraw
a5a4599e4fb487e51b49c77087a2e8cb683611cc
[ "MIT" ]
8
2020-05-25T15:41:44.000Z
2022-02-14T14:38:52.000Z
resources/views/components/design_process.blade.php
mtawil/undraw
a5a4599e4fb487e51b49c77087a2e8cb683611cc
[ "MIT" ]
3
2020-12-31T05:12:18.000Z
2022-03-26T13:17:04.000Z
<svg xmlns="http://www.w3.org/2000/svg" width="761.717" height="680.93" viewBox="0 0 761.717 680.93"> <g id="Group_24" data-name="Group 24" transform="translate(-239.283 -78)"> <path id="Path_296" data-name="Path 296" d="M232.953,40.713H573.016v92.408" transform="translate(316.047 211.881)" fill="none" stroke="#6c63ff" stroke-miterlimit="10" stroke-width="2" stroke-dasharray="12"/> <path id="Path_297" data-name="Path 297" d="M573.016,133.121H232.953V40.713" transform="translate(193.984 586.882)" fill="none" stroke="#6c63ff" stroke-miterlimit="10" stroke-width="2" stroke-dasharray="12"/> <g id="Group_22" data-name="Group 22" transform="translate(-523.844 -217.094)"> <path id="Path_284" data-name="Path 284" d="M11.029,0H279.243a11.025,11.025,0,0,1,11.025,11.025v501.88a11.025,11.025,0,0,1-11.025,11.025H11.029A11.025,11.025,0,0,1,0,512.907V11.027A11.025,11.025,0,0,1,11.029,0Z" transform="translate(763.123 295.092)" fill="#3e3c55"/> <path id="Path_285" data-name="Path 285" d="M497.548,104.162a23.26,23.26,0,0,1-22.924,19.783l-99.1,0A23.26,23.26,0,0,1,352.6,104.159h-52.49a10.9,10.9,0,0,0-10.9,10.9L289.2,585.163a10.9,10.9,0,0,0,10.9,10.9l250.726.006a10.9,10.9,0,0,0,10.9-10.9l.011-470.108a10.9,10.9,0,0,0-10.9-10.9Z" transform="translate(481.837 212.369)" fill="#e6e6e6"/> <rect id="Rectangle_112" data-name="Rectangle 112" width="65.404" height="4.088" rx="1.42" transform="translate(874.929 318.031)" fill="#dbdbdb"/> <circle id="Ellipse_24" data-name="Ellipse 24" cx="2.453" cy="2.453" r="2.453" transform="translate(951.779 317.214)" fill="#dbdbdb"/> <rect id="Rectangle_117" data-name="Rectangle 117" width="243" height="424" rx="16" transform="translate(786.844 352.094)" fill="#fff"/> <g id="Group_20" data-name="Group 20" transform="translate(815.506 439.142)"> <rect id="Rectangle_55" data-name="Rectangle 55" width="28.309" height="6.815" transform="translate(35.649)" fill="{{ $color }}"/> <rect id="Rectangle_56" data-name="Rectangle 56" width="9.961" height="6.815" transform="translate(152.032)" fill="{{ $color }}"/> <rect id="Rectangle_57" data-name="Rectangle 57" width="9.961" height="6.815" transform="translate(171.953)" fill="{{ $color }}"/> <rect id="Rectangle_58" data-name="Rectangle 58" width="67.628" height="6.815" transform="translate(73.919)" fill="{{ $color }}"/> <rect id="Rectangle_59" data-name="Rectangle 59" width="28.309" height="6.815" transform="translate(0 44.037)" fill="{{ $color }}"/> <rect id="Rectangle_60" data-name="Rectangle 60" width="9.961" height="6.815" transform="translate(116.383 44.037)" fill="{{ $color }}"/> <rect id="Rectangle_61" data-name="Rectangle 61" width="9.961" height="6.815" transform="translate(136.304 44.037)" fill="{{ $color }}"/> <rect id="Rectangle_62" data-name="Rectangle 62" width="67.628" height="6.815" transform="translate(38.27 44.037)" fill="{{ $color }}"/> <rect id="Rectangle_63" data-name="Rectangle 63" width="28.309" height="6.815" transform="translate(116.907 15.203)" fill="{{ $color }}"/> <rect id="Rectangle_64" data-name="Rectangle 64" width="28.309" height="6.815" transform="translate(155.177 15.203)" fill="{{ $color }}"/> <rect id="Rectangle_66" data-name="Rectangle 66" width="9.961" height="6.815" transform="translate(0 15.203)" fill="{{ $color }}"/> <rect id="Rectangle_67" data-name="Rectangle 67" width="9.961" height="6.815" transform="translate(19.921 15.203)" fill="{{ $color }}"/> <rect id="Rectangle_68" data-name="Rectangle 68" width="67.628" height="6.815" transform="translate(39.843 15.203)" fill="{{ $color }}"/> <rect id="Rectangle_69" data-name="Rectangle 69" width="28.309" height="6.815" transform="translate(58.192 29.882)" fill="{{ $color }}"/> <rect id="Rectangle_70" data-name="Rectangle 70" width="28.309" height="6.815" transform="translate(19.921 29.882)" fill="{{ $color }}"/> <rect id="Rectangle_71" data-name="Rectangle 71" width="9.961" height="6.815" transform="translate(0 29.882)" fill="{{ $color }}"/> <rect id="Rectangle_73" data-name="Rectangle 73" width="9.961" height="6.815" transform="translate(173.526 29.882)" fill="{{ $color }}"/> <rect id="Rectangle_74" data-name="Rectangle 74" width="67.628" height="6.815" transform="translate(95.937 29.882)" fill="{{ $color }}"/> </g> <rect id="Rectangle_114" data-name="Rectangle 114" width="138" height="43" rx="12" transform="translate(838.844 564.094)" fill="{{ $color }}"/> <rect id="Rectangle_115" data-name="Rectangle 115" width="138" height="43" rx="12" transform="translate(838.844 640.094)" fill="#e6e6e6"/> </g> <g id="Group_23" data-name="Group 23" transform="translate(22.454 75)"> <path id="Path_284-2" data-name="Path 284" d="M8.186,0H207.242a8.182,8.182,0,0,1,8.182,8.182V380.656a8.182,8.182,0,0,1-8.182,8.182H8.186A8.182,8.182,0,0,1,0,380.656V8.184A8.182,8.182,0,0,1,8.186,0Z" transform="translate(763.123 295.092)" fill="#3e3c55"/> <path id="Path_285-2" data-name="Path 285" d="M443.827,104.161a17.262,17.262,0,0,1-17.013,14.682l-73.546,0a17.262,17.262,0,0,1-17.013-14.683H297.3a8.087,8.087,0,0,0-8.087,8.087L289.2,461.137a8.087,8.087,0,0,0,8.087,8.087l186.077,0a8.087,8.087,0,0,0,8.087-8.087l.008-348.892a8.087,8.087,0,0,0-8.087-8.087Z" transform="translate(479.796 206.842)" fill="#e6e6e6"/> <rect id="Rectangle_112-2" data-name="Rectangle 112" width="48.54" height="3.034" rx="1.42" transform="translate(846.101 312.117)" fill="#dbdbdb"/> <circle id="Ellipse_24-2" data-name="Ellipse 24" cx="1.82" cy="1.82" r="1.82" transform="translate(903.135 311.511)" fill="#dbdbdb"/> <g id="Rectangle_117-2" data-name="Rectangle 117" transform="translate(781 336)" fill="#fff" stroke="#3e3c55" stroke-width="1"> <rect width="180" height="315" rx="16" stroke="none"/> <rect x="0.5" y="0.5" width="179" height="314" rx="15.5" fill="none"/> </g> <g id="Rectangle_118" data-name="Rectangle 118" transform="translate(802 402)" fill="#fff" stroke="#707070" stroke-width="2"> <rect width="136" height="38" stroke="none"/> <rect x="1" y="1" width="134" height="36" fill="none"/> </g> <g id="Rectangle_114-2" data-name="Rectangle 114" transform="translate(819 495)" fill="#fff" stroke="#3e3c55" stroke-width="2"> <rect width="103" height="32" stroke="none"/> <rect x="1" y="1" width="101" height="30" fill="none"/> </g> <g id="Rectangle_119" data-name="Rectangle 119" transform="translate(819 544)" fill="#fff" stroke="#3e3c55" stroke-width="2"> <rect width="103" height="32" stroke="none"/> <rect x="1" y="1" width="101" height="30" fill="none"/> </g> </g> </g> </svg>
117.62069
367
0.648783
c68d49cd6be8c0c272821744c5cc9cf73c6c8d66
412
rb
Ruby
app/services/users/comments/creation_service.rb
obla/citadel
9c143af6bb792ec0c95e62ee7850adf97931189b
[ "MIT" ]
24
2016-03-11T15:27:43.000Z
2022-03-15T00:44:14.000Z
app/services/users/comments/creation_service.rb
obla/citadel
9c143af6bb792ec0c95e62ee7850adf97931189b
[ "MIT" ]
475
2016-03-19T06:01:41.000Z
2022-03-05T12:25:11.000Z
app/services/users/comments/creation_service.rb
nacl-gg/citadel
f5e356a37c481c0f449795748ccbbd63b92431cd
[ "MIT" ]
42
2016-06-08T09:37:40.000Z
2020-09-11T19:07:48.000Z
module Users module Comments module CreationService include BaseService def call(creator, user, params) comment_params = params.merge(user: user, created_by: creator) comment = User::Comment.new(comment_params) comment.transaction do comment.save || rollback! comment.create_edit!(creator) end comment end end end end
19.619048
70
0.628641
537a6193838aa4db6104f34fbca1e664d3afd407
3,844
ps1
PowerShell
ScheduledTasks/Notification_Monthy_Patch_Reboots.ps1
scombs/PowerShell
affb234c1e55632364b63e830994746e38eae5ec
[ "MIT" ]
null
null
null
ScheduledTasks/Notification_Monthy_Patch_Reboots.ps1
scombs/PowerShell
affb234c1e55632364b63e830994746e38eae5ec
[ "MIT" ]
null
null
null
ScheduledTasks/Notification_Monthy_Patch_Reboots.ps1
scombs/PowerShell
affb234c1e55632364b63e830994746e38eae5ec
[ "MIT" ]
null
null
null
<# .Name Notification_Monthly_Patch_Reboots .Synopsis Basic notification for lettings people know what servers will be rebooted over the maintenance window. .Syntax None .Description #> #This calculates patch tuesday of the month which allows us to then calculate the dev and prod patch weekends $BaseDate = ( Get-Date -Day 12 ).Date $PatchTuesday = $BaseDate.AddDays( 2 - [int]$BaseDate.DayOfWeek ) $datesat=$patchtuesday.adddays(11) $datesat=$datesat.ToString('MM-dd-yyyy') $datesun=$patchtuesday.adddays(12) $datesun=$datesun.ToString('MM-dd-yyyy') $datedev=$patchtuesday.adddays(5) $datedev=$datedev.ToString('MM-dd-yyyy') #These variables are used to specify the different OUs for the server enviornments and days they are patched. $searchbasesat ="ou=mgmt-sat,ou=dr servers,dc=MyDomain,dc=com", "ou=mgmt-sat,ou=office1 servers,dc=MyDomain,dc=com", "ou=mgmt-sat,ou=office2 servers,dc=MyDomain,dc=com", "ou=mgmt-sat,ou=office3 servers,dc=MyDomain,dc=com" $searchbasesun ="ou=mgmt-sun,ou=dr servers,dc=MyDomain,dc=com", "ou=mgmt-sun,ou=office1 servers,dc=MyDomain,dc=com", "ou=mgmt-sun,ou=office2 prod servers,dc=MyDomain,dc=com" $searchbasedev = "ou=mgmt-sun,ou=office1 dev,dc=MyDomain,dc=com", "ou=mgmt-sun,ou=office2 dev,dc=MyDomain,dc=com" #temp directory to hold the files $loc = "c:\temp" #3rd saturdays loop $forloopsat = foreach ($base in $searchbasesat) { get-adcomputer -filter * -SearchBase $base | Select-Object name | Sort-Object Name } $forloopsat | export-csv "$loc\ProdSatReboots.csv" #3rd sundays loop $forloopsun = foreach ($base in $searchbasesun) { get-adcomputer -filter * -SearchBase $base | Select-Object name | Sort-Object Name } $forloopsun | export-csv "$loc\ProdSunReboots.csv" #2nd sunday dev loop $forloopdev = foreach ($base in $searchbasedev) { get-adcomputer -filter * -SearchBase $base | Select-Object name | Sort-Object Name } $forloopdev | export-csv "$loc\DevSunReboots.csv" #this section is to consolidate the generated csv files #the DMZ files are generated by another task that's running on a DMZ server and doing similar for each loops Start-Sleep -Seconds 20 @(import-csv "$loc\ProdSunReboots.csv") + @(import-csv "$loc\dmzfiles\dmzprodsunreboots.csv") | sort-object name | export-csv "$loc\Production-Sunday.csv" @(import-csv "$loc\ProdSatReboots.csv") + @(import-csv "$loc\dmzfiles\dmzprodsatreboots.csv") | sort-object name | export-csv "$loc\Production-Saturday.csv" @(import-csv "$loc\DevSunReboots.csv") + @(import-csv "$loc\dmzfiles\dmzdevsunreboots.csv") | sort-object name |export-csv "$loc\Development-Sunday.csv" #This section is for the message to be sent out from the server. $messageparameters = @{ subject="PLEASE REVIEW: Microsoft Security Updates for All Servers - Scheduled Reboots" body =" Good Morning, <p>The Infrastructure team will patch all Development and Production Servers over the next two weekends to ensure they are fully compliant with Microsoft Security Updates. This will require a REBOOT or possibly multiple reboots until all patches are fully installed. Please reference the below patching schedule and attached files for a full list of servers being patched each day.<br> <br> <b> Production Servers</b> $datesat at 1:00 AM local time and $datesun at 1:00 AM local time.<br> <br> <b> Development Servers</b> $datedev at 1:00 AM local time.<br> <br> <b>REMINDER: **Please remember to test functionality for ALL Applications on Tst, Dev, QA, and Stg Servers next week prior to scheduled Production Server patching.**</b><br> <br> <p>Thank you for your support! <br> <br> </P>" From = "[email protected]" TO = "[email protected]" Smtpserver= "smtp.MyDomain.com" Attachments = "$loc\Development-Sunday.csv","$loc\Production-Saturday.csv","$loc\Production-Sunday.csv" } Send-MailMessage @messageparameters -BodyAsHtml
42.241758
387
0.753382
a437a2be6e72b4d8b377b28ec7e2786e8f90d626
1,684
php
PHP
lib/Doctrine/ODM/MongoDB/Mapping/Annotations/Document.php
Kaapiii/mongodb-odm
40c27443475ba517bc1c5ab73a3237fb085c1382
[ "MIT" ]
null
null
null
lib/Doctrine/ODM/MongoDB/Mapping/Annotations/Document.php
Kaapiii/mongodb-odm
40c27443475ba517bc1c5ab73a3237fb085c1382
[ "MIT" ]
null
null
null
lib/Doctrine/ODM/MongoDB/Mapping/Annotations/Document.php
Kaapiii/mongodb-odm
40c27443475ba517bc1c5ab73a3237fb085c1382
[ "MIT" ]
null
null
null
<?php declare(strict_types=1); namespace Doctrine\ODM\MongoDB\Mapping\Annotations; use Attribute; use Doctrine\Common\Annotations\Annotation\NamedArgumentConstructor; /** * Identifies a class as a document that can be stored in the database * * @Annotation * @NamedArgumentConstructor */ #[Attribute(Attribute::TARGET_CLASS)] final class Document extends AbstractDocument { /** @var string|null */ public $db; /** @var string|array{name: string, capped?: bool, size?: int, max?: int}|null */ public $collection; /** @var string|null */ public $repositoryClass; /** @var Index[] */ public $indexes; /** @var bool */ public $readOnly; /** @var string|null */ public $shardKey; /** @var string|int|null */ public $writeConcern; /** * @param string|array{name: string, capped?: bool, size?: int, max?: int}|null $collection * @param Index[] $indexes * @param int|string|null $writeConcern */ public function __construct( ?string $db = null, $collection = null, ?string $repositoryClass = null, array $indexes = [], bool $readOnly = false, ?string $shardKey = null, $writeConcern = null ) { $this->db = $db; $this->collection = $collection; $this->repositoryClass = $repositoryClass; $this->indexes = $indexes; $this->readOnly = $readOnly; $this->shardKey = $shardKey; $this->writeConcern = $writeConcern; } }
26.730159
97
0.551069
45483047c05a7921c47c1a1fd616044c40190fec
5,765
py
Python
swfc_lt_stream/decode/__init__.py
anikey-m/swfc-lt-stream
77ae327c1e1b86170ec0728c49e836894d97ea17
[ "MIT" ]
null
null
null
swfc_lt_stream/decode/__init__.py
anikey-m/swfc-lt-stream
77ae327c1e1b86170ec0728c49e836894d97ea17
[ "MIT" ]
null
null
null
swfc_lt_stream/decode/__init__.py
anikey-m/swfc-lt-stream
77ae327c1e1b86170ec0728c49e836894d97ea17
[ "MIT" ]
null
null
null
import collections import time import socket import select import sys from swfc_lt_stream import net, sampler class Node(object): def __init__(self, samples, block): self.samples = samples self.block = block class Decoder(object): def __init__(self, conf): self.sampler = sampler.PRNG(conf.window, conf.c, conf.delta) self.chunk_size = conf.chunksize self.window_size = conf.window self.shift_size = conf.window_shift self.dummy = self.window_size - self.shift_size self.window_number = None self.window = [bytes(self.chunk_size) for _ in range(self.window_size)] self.checks = collections.defaultdict(list) self.unknown = set(range( self.window_size - self.shift_size, self.window_size )) self._metric = conf.metric self._packets = 0 self._extra = 0 self._total_packets = 0 self._total_extra = 0 def shift(self, window=None): if type(window) is int: if window < self.window_number: return if window > 0xffffff00 and self.window_size < 0x000000ff: return if self._metric: self._metric.write('Done window {}. Data packets: {}. Extra packets: {}.\n'.format( self.window_number, self._packets, self._extra)) self._total_packets += self._packets self._total_extra += self._extra self._packets = 0 self._extra = 0 self.window_number = (self.window_number + 1) % 0xffffffff if not self.dummy: clean_data = self.window[:self.shift_size] elif self.dummy < self.shift_size: clean_data = self.window_size[self.dummy:self.shift_size] self.dummy = 0 else: self.dummy -= self.shift_size clean_data = [] self.window = self.window[self.shift_size:] self.window.extend([bytes(self.chunk_size)] * self.shift_size) self.unknown = set(range( self.window_size - self.shift_size, self.window_size )) for chunk in clean_data: sys.stdout.buffer.write(chunk) def consume(self, window, seed, block): if window != self.window_number: if self.window_number is None: self.window_number = window else: self._extra += 1 return window self._packets += 1 self.sampler.set_seed(seed) _, samples = self.sampler.get_src_blocks() if len(samples) == 1: self.add_block(next(iter(samples)), block) else: array = bytearray(block) for sample in samples.copy(): if sample not in self.unknown: for i in range(self.chunk_size): array[i] ^= self.window[sample][i] samples.remove(sample) if len(samples) == 1: self.add_block(next(iter(samples)), bytes(array)) elif len(samples) > 1: check = Node(samples, array) for sample in samples: self.checks[sample].append(check) if self.unknown: return False else: return self.window_number def add_block(self, sample, block): shoud_eleminate = list(self.eliminate(sample, block)) while shoud_eleminate: sample, block = shoud_eleminate.pop() shoud_eleminate.extend(self.eliminate(sample, block)) def eliminate(self, sample, block): if sample not in self.unknown: return self.unknown.remove(sample) self.window[sample] = block if sample in self.checks: nodes = self.checks.pop(sample) for node in nodes: node.samples.remove(sample) for i in range(self.chunk_size): node.block[i] ^= block[i] if len(node.samples) == 1: yield next(iter(node.samples)), bytes(node.block) def stop(self): if self._metric: self._metric.write('Total packets {}. Total extra {}.\n'.format( self._total_packets, self._total_extra)) self._metric.close() class Listener(object): def __init__(self, host, port, decoder): self.decoder = decoder self.packet_size = 4096 self.sock = socket.socket(type=socket.SOCK_DGRAM) self.sock.connect((host, port)) def listen(self): try: self._listen() except: self.sock.send(net.build_packet(net.Packet.disconnect, b'')) self.decoder.stop() raise def _listen(self): while True: _, write, _ = select.select([], [self.sock], []) self.sock.send(net.build_packet(net.Packet.connect, b'')) readable, _, _ = select.select([self.sock], [], [], 5) try: packet = self.sock.recv(self.packet_size) except: time.sleep(5) else: break while True: type_, payload = net.clean_packet(packet) if type_ == net.Packet.end: return elif type_ == net.Packet.data: done = self.decoder.consume(*payload) if done: self.decoder.shift(done) shift = net.build_shift_packet(done) self.sock.send(shift) readable, _, _ = select.select([self.sock], [], []) packet = self.sock.recv(self.packet_size)
31.850829
95
0.547441
fc27b6a9541492b99f5214f3692bcec6b1e2e00d
6,005
sql
SQL
zalego.sql
mutende/zalego-teaching-miniproject
d329a4b0c22558f678360036d377e16e13ddefcb
[ "MIT" ]
null
null
null
zalego.sql
mutende/zalego-teaching-miniproject
d329a4b0c22558f678360036d377e16e13ddefcb
[ "MIT" ]
null
null
null
zalego.sql
mutende/zalego-teaching-miniproject
d329a4b0c22558f678360036d377e16e13ddefcb
[ "MIT" ]
null
null
null
-- phpMyAdmin SQL Dump -- version 4.8.2 -- https://www.phpmyadmin.net/ -- -- Host: 127.0.0.1 -- Generation Time: Nov 21, 2019 at 01:11 PM -- Server version: 10.1.34-MariaDB -- PHP Version: 7.2.7 SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO"; SET AUTOCOMMIT = 0; START TRANSACTION; SET time_zone = "+00:00"; /*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */; /*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */; /*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */; /*!40101 SET NAMES utf8mb4 */; -- -- Database: `zalego` -- -- -------------------------------------------------------- -- -- Table structure for table `campuses` -- CREATE TABLE `campuses` ( `id` int(11) NOT NULL, `campus` varchar(255) NOT NULL, `location` varchar(255) NOT NULL, `courses` varchar(500) DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1; -- -- Dumping data for table `campuses` -- INSERT INTO `campuses` (`id`, `campus`, `location`, `courses`) VALUES (1, 'JKUAT', 'Juja', '2'); -- -------------------------------------------------------- -- -- Table structure for table `course` -- CREATE TABLE `course` ( `courseId` int(11) NOT NULL, `courseName` varchar(65) NOT NULL, `courseDuration` int(2) NOT NULL, `courseFee` double(8,2) NOT NULL, `timeAdded` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP ) ENGINE=InnoDB DEFAULT CHARSET=latin1; -- -- Dumping data for table `course` -- INSERT INTO `course` (`courseId`, `courseName`, `courseDuration`, `courseFee`, `timeAdded`) VALUES (1, 'Web Development', 3, 45000.00, '2019-11-20 16:38:51'), (2, 'Python', 4, 50000.00, '2019-11-20 16:39:29'); -- -------------------------------------------------------- -- -- Table structure for table `courseapplied` -- CREATE TABLE `courseapplied` ( `appliedId` int(11) NOT NULL, `courseId` int(11) NOT NULL, `studentId` int(11) NOT NULL, `timeApplied` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP, `status` tinyint(1) NOT NULL DEFAULT '1' ) ENGINE=InnoDB DEFAULT CHARSET=latin1; -- -- Dumping data for table `courseapplied` -- INSERT INTO `courseapplied` (`appliedId`, `courseId`, `studentId`, `timeApplied`, `status`) VALUES (1, 1, 2, '2019-10-15 14:37:18', 1), (2, 1, 3, '2019-10-17 08:59:17', 1); -- -------------------------------------------------------- -- -- Table structure for table `resetpassword` -- CREATE TABLE `resetpassword` ( `id` int(11) NOT NULL, `email` varchar(255) NOT NULL, `selector` varchar(255) NOT NULL, `token` varchar(1500) NOT NULL, `expires` varchar(1500) NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1; -- -- Dumping data for table `resetpassword` -- INSERT INTO `resetpassword` (`id`, `email`, `selector`, `token`, `expires`) VALUES (1, '[email protected]', 'f2434ee5adad6b61', '$2y$10$qHJ1HI90UPecV9afqnW9C.DPwEqHJbDV5p7w7Z9kz90FlY4i8rI8K', '1574277306'); -- -------------------------------------------------------- -- -- Table structure for table `student` -- CREATE TABLE `student` ( `studentId` int(11) NOT NULL, `fullName` varchar(65) NOT NULL, `regNo` varchar(20) NOT NULL, `phoneNo` varchar(14) NOT NULL, `email` varchar(65) NOT NULL, `timeRegistered` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP ) ENGINE=InnoDB DEFAULT CHARSET=latin1; -- -- Dumping data for table `student` -- INSERT INTO `student` (`studentId`, `fullName`, `regNo`, `phoneNo`, `email`, `timeRegistered`) VALUES (2, 'Ngetich Kip', 'ZA001', '+254708058225', '[email protected]', '2019-10-17 08:58:44'), (3, 'Alvin Ndolo', 'ZA002', '+254788999003', '[email protected]', '2019-10-17 08:58:44'); -- -------------------------------------------------------- -- -- Table structure for table `user` -- CREATE TABLE `user` ( `userId` int(11) NOT NULL, `email` varchar(65) NOT NULL, `userName` varchar(65) NOT NULL, `type` varchar(15) NOT NULL, `password` varchar(65) NOT NULL, `status` tinyint(1) NOT NULL DEFAULT '1' ) ENGINE=InnoDB DEFAULT CHARSET=latin1; -- -- Dumping data for table `user` -- INSERT INTO `user` (`userId`, `email`, `userName`, `type`, `password`, `status`) VALUES (1, '[email protected]', 'elvis', 'admin', '$2y$10$lOkL1g9z/E57RnkAf98Wm.YrUUaYXjTQvzRGoDlCHa0nT0jYgacWC', 1); -- -- Indexes for dumped tables -- -- -- Indexes for table `campuses` -- ALTER TABLE `campuses` ADD PRIMARY KEY (`id`); -- -- Indexes for table `course` -- ALTER TABLE `course` ADD PRIMARY KEY (`courseId`); -- -- Indexes for table `courseapplied` -- ALTER TABLE `courseapplied` ADD PRIMARY KEY (`appliedId`); -- -- Indexes for table `resetpassword` -- ALTER TABLE `resetpassword` ADD PRIMARY KEY (`id`); -- -- Indexes for table `student` -- ALTER TABLE `student` ADD PRIMARY KEY (`studentId`), ADD UNIQUE KEY `regNo` (`regNo`), ADD UNIQUE KEY `email` (`email`), ADD UNIQUE KEY `phoneNo` (`phoneNo`); -- -- Indexes for table `user` -- ALTER TABLE `user` ADD PRIMARY KEY (`userId`), ADD UNIQUE KEY `email` (`email`); -- -- AUTO_INCREMENT for dumped tables -- -- -- AUTO_INCREMENT for table `campuses` -- ALTER TABLE `campuses` MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=2; -- -- AUTO_INCREMENT for table `course` -- ALTER TABLE `course` MODIFY `courseId` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=3; -- -- AUTO_INCREMENT for table `courseapplied` -- ALTER TABLE `courseapplied` MODIFY `appliedId` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=3; -- -- AUTO_INCREMENT for table `resetpassword` -- ALTER TABLE `resetpassword` MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=2; -- -- AUTO_INCREMENT for table `student` -- ALTER TABLE `student` MODIFY `studentId` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=4; -- -- AUTO_INCREMENT for table `user` -- ALTER TABLE `user` MODIFY `userId` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=2; COMMIT; /*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */; /*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */; /*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
24.711934
121
0.649459
cdbad7d803bb9c0aba3da7973cf96418b1e51655
2,382
cs
C#
MVC/Runtime/Events/EventDispatchQuery.cs
tositeru/hinode
b0a28d1ad9cf0f5ee006dbcf57c669680c321f34
[ "Apache-2.0" ]
null
null
null
MVC/Runtime/Events/EventDispatchQuery.cs
tositeru/hinode
b0a28d1ad9cf0f5ee006dbcf57c669680c321f34
[ "Apache-2.0" ]
1
2020-07-05T08:02:48.000Z
2020-07-05T08:02:48.000Z
MVC/Runtime/Events/EventDispatchQuery.cs
tositeru/hinode
b0a28d1ad9cf0f5ee006dbcf57c669680c321f34
[ "Apache-2.0" ]
null
null
null
using System.Collections; using System.Collections.Generic; using System.Linq; using UnityEngine; using UnityEngine.Assertions; namespace Hinode.MVC { /// <summary> /// <seealso cref="EventDispatchStateMap"/> /// </summary> public class EventDispatchQuery { HashSet<System.Type> _enabledEventTypes = new HashSet<System.Type>(); public string Query { get; } public OnlyMainIDViewIdentity ViewID { get; } public IEnumerable<System.Type> EnabledEventTypes { get => _enabledEventTypes; } public EventDispatchQuery(string query, OnlyMainIDViewIdentity viewID) { Query = query; ViewID = viewID; } public EventDispatchQuery AddIncludedEventType(System.Type type) { if (!_enabledEventTypes.Contains(type)) { Assert.IsTrue(type.ContainsInterface<IEventHandler>()); _enabledEventTypes.Add(type); } return this; } public EventDispatchQuery AddIncludedEventType<T>() where T : IEventHandler => AddIncludedEventType(typeof(T)); public bool DoMatch(Model model, IViewObject viewObj, System.Type eventType) { Assert.IsNotNull(model); Assert.IsTrue(eventType.ContainsInterface<IEventHandler>(), $"Invalid EventType({eventType})..."); if(viewObj == null) { return model.DoMatchQuery(Query) && ViewID.IsEmpty && DoEnableEventType(eventType); } else { Assert.AreEqual(model, viewObj.UseModel); Assert.IsNotNull(viewObj.UseBindInfo); return model.DoMatchQuery(Query) && (ViewID.IsEmpty || viewObj.UseBindInfo.ID == ViewID) && DoEnableEventType(eventType); } } public bool DoMatch<T>(Model model, IViewObject viewObj) where T : IEventHandler => DoMatch(model, viewObj, typeof(T)); public bool DoEnableEventType(System.Type eventType) => (!_enabledEventTypes.Any() || _enabledEventTypes.Contains(eventType)); public bool DoEnableEventType<T>() where T : IEventHandler => DoEnableEventType(typeof(T)); } }
32.630137
110
0.584803
c68b03403942f077284f1357c6d9b83a1f0e8d2f
2,128
rb
Ruby
lib/fet/ui/game_loop_handler.rb
DimitriosLisenko/functional_ear_training
f494cb4b1e6c01c201322491e920ce2230119e90
[ "MIT" ]
2
2021-09-01T21:22:42.000Z
2021-10-13T10:25:27.000Z
lib/fet/ui/game_loop_handler.rb
DimitriosLisenko/functional_ear_training
f494cb4b1e6c01c201322491e920ce2230119e90
[ "MIT" ]
18
2021-09-01T19:43:11.000Z
2021-12-17T18:49:29.000Z
lib/fet/ui/game_loop_handler.rb
DimitriosLisenko/functional_ear_training
f494cb4b1e6c01c201322491e920ce2230119e90
[ "MIT" ]
null
null
null
# frozen_string_literal: true require_relative "custom_event" module Fet module Ui # Handles various events and updates for the Game object module GameLoopHandler def handle_update_loop score.handle_update_loop level.handle_update_loop timer.handle_update_loop end def handle_event_loop(event) handle_keyboard_event(event) # NOTE: score must handle event before level because level event could recreate the whole level score.handle_event_loop(event) level.handle_event_loop(event) timer.handle_event_loop(event) handle_custom_events end def set_note_selected_event_flag self.note_selected_event_flag = true end def set_level_started_event_flag self.level_started_event_flag = true end def set_level_complete_event_flag self.level_complete_event_flag = true end private attr_accessor :note_selected_event_flag, :level_started_event_flag, :level_complete_event_flag def handle_keyboard_event(event) return unless event.is_a?(Ruby2D::Window::KeyEvent) return unless event.type == :down stop if event.key == "q" end def handle_custom_events handle_note_selected_event handle_level_started_event handle_level_complete_event end def handle_note_selected_event handle_event = note_selected_event_flag self.note_selected_event_flag = false handle_event_loop(CustomEvent.new(CustomEvent::EVENT_TYPE_NOTE_SELECTED)) if handle_event end def handle_level_started_event handle_event = level_started_event_flag self.level_started_event_flag = false handle_event_loop(CustomEvent.new(CustomEvent::EVENT_TYPE_LEVEL_STARTED)) if handle_event end def handle_level_complete_event handle_event = level_complete_event_flag self.level_complete_event_flag = false handle_event_loop(CustomEvent.new(CustomEvent::EVENT_TYPE_LEVEL_COMPLETE)) if handle_event end end end end
28.373333
103
0.718985
5d78dee24835002659c1dc33aa0a35839be4b565
3,773
cpp
C++
ngraph/core/reference/src/runtime/reference/tile.cpp
szabi-luxonis/openvino
c8dd831fc3ba68a256ab47edb4f6bf3cb5e804be
[ "Apache-2.0" ]
2
2020-11-18T14:14:06.000Z
2020-11-28T04:55:57.000Z
ngraph/core/reference/src/runtime/reference/tile.cpp
szabi-luxonis/openvino
c8dd831fc3ba68a256ab47edb4f6bf3cb5e804be
[ "Apache-2.0" ]
30
2020-11-13T11:44:07.000Z
2022-02-21T13:03:16.000Z
ngraph/core/reference/src/runtime/reference/tile.cpp
szabi-luxonis/openvino
c8dd831fc3ba68a256ab47edb4f6bf3cb5e804be
[ "Apache-2.0" ]
1
2020-12-18T15:47:45.000Z
2020-12-18T15:47:45.000Z
//***************************************************************************** // Copyright 2017-2020 Intel Corporation // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. //***************************************************************************** #include <algorithm> #include <cmath> #include <cstdio> #include <numeric> #include "ngraph/check.hpp" #include "ngraph/runtime/reference/tile.hpp" using namespace ngraph; namespace { /// \brief For each axis calculates the product of inner axes /// If dims has shape (2, 3, 4) then for 2 (first axis) the inner axes would be (3, 4) /// and for 3 (second axis) it would be (4) /// If dims has shape(2, 3, 4) then the output vector would be (3 * 4, 4, 1) /// The outermost axis is not used. For innermost axis it is always 1. /// \param[in] dims Shape of the output /// /// \return Vector containing calculated values for each axis. std::vector<int64_t> create_pitches(const Shape& dims) { std::vector<int64_t> pitch; pitch.resize(dims.size() - 1); std::partial_sum( dims.rbegin(), dims.rend() - 1, pitch.rbegin(), std::multiplies<int64_t>()); pitch.push_back(1); return pitch; } } void runtime::reference::tile(const char* arg, char* out, const Shape& in_shape, const Shape& out_shape, const size_t elem_size, const std::vector<int64_t>& repeats) { Shape in_shape_expanded(in_shape); in_shape_expanded.insert(in_shape_expanded.begin(), out_shape.size() - in_shape.size(), 1); size_t block_size = 0; int64_t num_repeats = 0; const int input_rank = in_shape_expanded.size(); const int64_t last_dim = in_shape_expanded[input_rank - 1]; const std::vector<int64_t> pitches = create_pitches(out_shape); const char* copy = nullptr; std::vector<int64_t> indices(in_shape_expanded.size() - 1, 0); size_t axis = indices.size(); // Copy and repeat data for innermost axis as many times as described in the repeats parameter while (axis <= indices.size()) { block_size = last_dim * elem_size; memcpy(out, arg, block_size); out += block_size; arg += block_size; copy = out - block_size; num_repeats = repeats[input_rank - 1] - 1; for (int64_t i = 0; i < num_repeats; ++i) { memcpy(out, copy, block_size); out += block_size; } // Copy and repeat data for other axes as many times as described in the repeats parameter while (axis-- != 0) { if (++indices[axis] != in_shape_expanded[axis]) { axis = indices.size(); break; } indices[axis] = 0; ptrdiff_t pitch = pitches[axis] * in_shape_expanded[axis]; block_size = pitch * elem_size; copy = out - block_size; num_repeats = repeats[axis] - 1; for (int64_t i = 0; i < num_repeats; i++) { memcpy(out, copy, block_size); out += block_size; } } } }
35.933333
98
0.571694
0acf596df52da5a7ee09900b81a396aadd9a0305
14,486
cs
C#
KioskForm.cs
NorthTorontoChristianSchool/NTCSAttendanceKiosk
cd673c9d3711acf7089f3a118c92f71ff339c6cd
[ "MIT" ]
1
2022-03-16T22:54:09.000Z
2022-03-16T22:54:09.000Z
KioskForm.cs
NorthTorontoChristianSchool/NTCSAttendanceKiosk
cd673c9d3711acf7089f3a118c92f71ff339c6cd
[ "MIT" ]
null
null
null
KioskForm.cs
NorthTorontoChristianSchool/NTCSAttendanceKiosk
cd673c9d3711acf7089f3a118c92f71ff339c6cd
[ "MIT" ]
null
null
null
using System; using System.Collections.Generic; using System.Data; using System.Data.SqlClient; using System.Diagnostics; using System.Drawing; using System.Media; using System.Runtime.InteropServices; using System.Windows.Forms; namespace NTCSAttendanceKiosk { public partial class KioskForm : Form { // Unmanaged code to keep the window on top [DllImport("User32.dll")] internal static extern IntPtr SetForegroundWindow(IntPtr hWnd); [DllImport("user32.dll")] internal static extern bool ShowWindow(IntPtr hWnd, int nCmdShow); internal static readonly IntPtr InvalidHandleValue = IntPtr.Zero; internal const int SW_MAXIMIZE = 3; // Stores the list of messages private List<string> PublicMessages = new List<string>(); private int CurrentPublicMessage; private enum DisplayType { SignIn, SignOut, Failure } public KioskForm() { InitializeComponent(); LocationLabel.Text = SqlConnectionInfo.KioskLocation; Cursor.Hide(); AdvancePublicMessage(); SecurityTimer.Start(); } // About 444 chars on average can fit inside the user message box. /// <summary> /// Sets the colours of the message to the success sign in (green) colour scheme. /// </summary> private void SetSuccessSignInColors() { HelloPanel.BackColor = Color.ForestGreen; UserMessagePanel.BackColor = Color.LimeGreen; UserMessageTextBox.BackColor = Color.LimeGreen; SuccesIndicatorPictureBox.Image = Properties.Resources.CheckSign; } /// <summary> /// Sets the colours of the message to the success sign out (yellow) colour scheme. /// </summary> private void SetSuccessSignOutColors() { HelloPanel.BackColor = Color.Orange; UserMessagePanel.BackColor = Color.Yellow; UserMessageTextBox.BackColor = Color.Yellow; SuccesIndicatorPictureBox.Image = Properties.Resources.YellowCheckSign; } /// <summary> /// Sets the colours of the message to the failed (red) colour scheme. /// </summary> private void SetFailColors() { HelloPanel.BackColor = Color.Red; UserMessagePanel.BackColor = Color.Salmon; UserMessageTextBox.BackColor = Color.Salmon; SuccesIndicatorPictureBox.Image = Properties.Resources.XSign; } private void ShowScanResultControls() { ClockLabel.Hide(); UserMessagePanel.Show(); SuccesIndicatorPictureBox.Show(); } private void HideScanResultControls() { UserMessagePanel.Hide(); SuccesIndicatorPictureBox.Hide(); ClockLabel.Show(); } // Timer that hides the results automatically private void HideUserMessageTimer_Tick(object sender, EventArgs e) { this.HideScanResultControls(); HideUserMessageTimer.Stop(); } private void DisplayScanResult(DisplayType type, string titleText, string userMessageText) { // Reset the hiding timer HideUserMessageTimer.Stop(); // Switch the text HelloLabel.Text = titleText; UserMessageTextBox.Text = userMessageText; // Switch the colours depending on the display type switch (type) { case DisplayType.SignIn: SetSuccessSignInColors(); break; case DisplayType.SignOut: SetSuccessSignOutColors(); break; default: SetFailColors(); break; } // Show it! this.ShowScanResultControls(); // Play the sound switch (type) { case DisplayType.SignIn: SoundPlayer sinsound = new SoundPlayer(Properties.Resources.SignIn); sinsound.Play(); break; case DisplayType.SignOut: SoundPlayer soutsound = new SoundPlayer(Properties.Resources.SignOut); soutsound.Play(); break; default: SoundPlayer failsound = new SoundPlayer(Properties.Resources.Fail); failsound.Play(); break; } // Start the timer so that it hides automatically HideUserMessageTimer.Start(); } // Keeps the form on top and the text box selected private void SecurityTimer_Tick(object sender, EventArgs e) { this.BringToFront(); Process currentProcess = Process.GetCurrentProcess(); IntPtr hWnd = currentProcess.MainWindowHandle; if (hWnd != InvalidHandleValue) { SetForegroundWindow(hWnd); ShowWindow(hWnd, SW_MAXIMIZE); } CardTextBox.Focus(); } // Refreshes the date and time display private void ClockUpdateTimer_Tick(object sender, EventArgs e) { ClockLabel.Text = DateTime.Now.ToString("yyyy-MM-dd") + "\r\n" + DateTime.Now.ToString("HH:mm:ss"); } // Makes the messages scroll and reloads them private void PublicMessageMarqueeTimer_Tick(object sender, EventArgs e) { if (PublicMessageLabel.Left < 0 && (Math.Abs(PublicMessageLabel.Left) > PublicMessageLabel.Width)) { AdvancePublicMessage(); } PublicMessageLabel.Left -= 2; } /// <summary> /// Loads the public messages into the scrolling display. /// </summary> private void LoadPublicMessages() { try { using (SqlConnection conn = new SqlConnection()) { conn.ConnectionString = SqlConnectionInfo.ConnectionString; conn.Open(); using (SqlCommand selectCmd = new SqlCommand()) { selectCmd.Connection = conn; selectCmd.CommandType = CommandType.Text; selectCmd.CommandText = "SELECT DisplayMessage FROM KioskPublicMessages WHERE (StartDate < GETDATE() AND ExpiryDate > GETDATE()) ORDER BY DisplayOrder"; using (SqlDataReader reader = selectCmd.ExecuteReader()) { PublicMessages.Clear(); if (reader.HasRows) { while (reader.Read()) { PublicMessages.Add(reader[0].ToString()); } } else { PublicMessages.Add(""); } } } } } catch { PublicMessages.Clear(); PublicMessages.Add("Failed to load messages."); } } /// <summary> /// Advances the public messages. /// </summary> private void AdvancePublicMessage() { CurrentPublicMessage++; if (CurrentPublicMessage >= PublicMessages.Count) { CurrentPublicMessage = 0; LoadPublicMessages(); } PublicMessageLabel.Left = this.Width; PublicMessageLabel.Text = PublicMessages[CurrentPublicMessage]; } // Code that runs when scan is complete/enter is pressed in the textbox private void CardTextBox_KeyDown(object sender, KeyEventArgs e) { if (e.KeyCode == Keys.Enter) { e.Handled = true; e.SuppressKeyPress = true; // Store the user input and clear the text box string userInput = CardTextBox.Text; CardTextBox.Text = ""; string firstName = ""; int toDoScanType = 0; string userMessage = ""; // Lookup the student in the database try { using (SqlConnection conn = new SqlConnection()) { conn.ConnectionString = SqlConnectionInfo.ConnectionString; conn.Open(); // See if the ID is in the database using (SqlCommand selectStudentCommand = new SqlCommand()) { selectStudentCommand.Connection = conn; selectStudentCommand.CommandType = CommandType.Text; selectStudentCommand.CommandText = "SELECT TOP 1 (FirstName) FROM Students WHERE StudentID = @UserInID"; selectStudentCommand.Parameters.AddWithValue("@UserInID", userInput); using (SqlDataReader nameReader = selectStudentCommand.ExecuteReader()) { if (nameReader.HasRows) { while (nameReader.Read()) { firstName = nameReader[0].ToString(); } } else { DisplayScanResult(DisplayType.Failure, "Invalid Student ID", "The student ID is invalid. Please ask a staff member for assistance."); return; } } } // See if they signed in already today using (SqlCommand selAtLogCmd = new SqlCommand()) { selAtLogCmd.Connection = conn; selAtLogCmd.CommandType = CommandType.Text; selAtLogCmd.CommandText = "SELECT TOP 1 (ScanType) FROM AttendanceLog WHERE (StudentID = @UserInID AND LogTime < GETDATE() AND LogTime > CONVERT(DATE, GETDATE())) ORDER BY LogTime DESC"; selAtLogCmd.Parameters.AddWithValue("@UserInID", userInput); using (SqlDataReader atLogReader = selAtLogCmd.ExecuteReader()) { if (atLogReader.HasRows) { while (atLogReader.Read()) { if (Convert.ToInt32(atLogReader[0]) == 0) { toDoScanType = 1; } } } } } // Make the log using (SqlCommand insertCmd = new SqlCommand()) { insertCmd.Connection = conn; insertCmd.CommandType = CommandType.Text; insertCmd.CommandText = "INSERT INTO AttendanceLog (LogTime, StudentID, ScanLocation, ScanType) VALUES (GETDATE(), @UserInID, @Loc, @Type)"; insertCmd.Parameters.AddWithValue("@UserInID", userInput); insertCmd.Parameters.AddWithValue("@Loc", SqlConnectionInfo.KioskLocation); insertCmd.Parameters.AddWithValue("@Type", toDoScanType); insertCmd.ExecuteNonQuery(); } // Select the kiosk message, if any using (SqlCommand selMsgCmd = new SqlCommand()) { selMsgCmd.Connection = conn; selMsgCmd.CommandType = CommandType.Text; selMsgCmd.CommandText = "SELECT TOP 1 (KioskPersonalMessage) FROM Students WHERE (StudentID = @UserInID AND KioskMessageStartDate < GETDATE() AND KioskMessageExpiryDate > GETDATE())"; selMsgCmd.Parameters.AddWithValue("@UserInID", userInput); using (SqlDataReader msgCmdReader = selMsgCmd.ExecuteReader()) { if (msgCmdReader.HasRows) { while (msgCmdReader.Read()) { userMessage = msgCmdReader[0].ToString(); } } } } // Show the result switch (toDoScanType) { case 1: DisplayScanResult(DisplayType.SignOut, "Goodbye " + firstName, userMessage); break; default: DisplayScanResult(DisplayType.SignIn, "Hello " + firstName, userMessage); break; } } } catch (SqlException se) { // Display the error code and the error DisplayScanResult(DisplayType.Failure, "System Error - " + se.Number.ToString(), se.Message); } catch (Exception ex) { DisplayScanResult(DisplayType.Failure, "System Error", ex.Message); } } } } }
39.257453
214
0.475079
afe05e28765fbca6032890f232089c0aeafc38c8
2,114
py
Python
py4e/exercises/exercise_14_1.py
carlosviveros/Soluciones
115f4fa929c7854ca497e4c994352adc64565456
[ "MIT" ]
1
2022-02-02T04:44:56.000Z
2022-02-02T04:44:56.000Z
py4e/exercises/exercise_14_1.py
leugimkm/Soluciones
d71601c8d9b5e86e926f48d9e49462af8a956b6d
[ "MIT" ]
null
null
null
py4e/exercises/exercise_14_1.py
leugimkm/Soluciones
d71601c8d9b5e86e926f48d9e49462af8a956b6d
[ "MIT" ]
null
null
null
""" Instructions If you don't already have it, install the SQLite Browser from http://sqlitebrowser.org/ Then, create a SQLite database or use an existing database and create a table in the database called "Ages". +-----------------------+ | CREATE TABLE Ages ( | | name VARCHAR(128), | | age INTEGER | | ); | +-----------------------+ Then make sure the table is empty by deleting any rows that you previously inserted, and insert these and only these rows with the following commands: +-------------------------------------------------------+ | DELETE FROM Ages; | | INSERT INTO Ages (name, age) VALUES ('Gael', 28); | | INSERT INTO Ages (name, age) VALUES ('Destiny', 35); | | INSERT INTO Ages (name, age) VALUES ('Lorraine', 18); | | INSERT INTO Ages (name, age) VALUES ('Abia', 16); | +-------------------------------------------------------+ Once the inserts are done, run the following SQL command: +----------------------------------------------------+ | SELECT hex(name || age) AS X FROM Ages ORDER BY X; | +----------------------------------------------------+ Find the first row in the resulting record set and enter the long string that looks like 53656C696E613333. Note: This assignment must be done using SQLite - in particular, the SELECT query above will not work in any other database. So you cannot use MySQL or Oracle for this assignment. """ import sqlite3 conn = sqlite3.connect('data/my_friends.db') cur = conn.cursor() cur.execute("DROP TABLE IF EXISTS Ages") cur.execute("CREATE TABLE Ages (name VARCHAR(128), age INTEGER)") cur.execute("DELETE FROM Ages") cur.execute("INSERT INTO Ages (name, age) VALUES ('Gael', 28)") cur.execute("INSERT INTO Ages (name, age) VALUES ('Destiny', 35)") cur.execute("INSERT INTO Ages (name, age) VALUES ('Lorraine', 18)") cur.execute("INSERT INTO Ages (name, age) VALUES ('Abia', 16)") cur.execute("SELECT hex(name || age) AS X FROM Ages ORDER BY X") row = cur.fetchone() print(row[0]) # 416269613136
37.087719
71
0.575686
61345be6be4f754eaff3f313c48f0cf7193fe966
32
sql
SQL
srv/migrations/2018-02-20-175650_create_student_marks/down.sql
Emberwalker/honours-pas
676460815cd9bb9e6b59fabf3d8c6c406a745133
[ "0BSD" ]
1
2018-09-30T06:07:25.000Z
2018-09-30T06:07:25.000Z
srv/migrations/2018-02-20-175650_create_student_marks/down.sql
Emberwalker/honours-pas
676460815cd9bb9e6b59fabf3d8c6c406a745133
[ "0BSD" ]
null
null
null
srv/migrations/2018-02-20-175650_create_student_marks/down.sql
Emberwalker/honours-pas
676460815cd9bb9e6b59fabf3d8c6c406a745133
[ "0BSD" ]
null
null
null
DROP TABLE public.student_marks;
32
32
0.875
dd60650b29f5fce619c655f09738c5dfcb7a8ef2
5,068
java
Java
s3_cortos-back/src/main/java/co/edu/uniandes/csw/cortos/ejb/ClienteLogic.java
Uniandes-ISIS2603-backup/s3_Cortos_201920
8847fb23de92d7c8fb50bc97fcdeca31de81ea3c
[ "MIT" ]
null
null
null
s3_cortos-back/src/main/java/co/edu/uniandes/csw/cortos/ejb/ClienteLogic.java
Uniandes-ISIS2603-backup/s3_Cortos_201920
8847fb23de92d7c8fb50bc97fcdeca31de81ea3c
[ "MIT" ]
null
null
null
s3_cortos-back/src/main/java/co/edu/uniandes/csw/cortos/ejb/ClienteLogic.java
Uniandes-ISIS2603-backup/s3_Cortos_201920
8847fb23de92d7c8fb50bc97fcdeca31de81ea3c
[ "MIT" ]
null
null
null
/* * 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 co.edu.uniandes.csw.cortos.ejb; import co.edu.uniandes.csw.cortos.entities.ClienteEntity; import co.edu.uniandes.csw.cortos.exceptions.BusinessLogicException; import co.edu.uniandes.csw.cortos.persistence.ClientePersistence; import java.util.List; import java.util.logging.Level; import java.util.logging.Logger; import javax.ejb.Stateless; import javax.inject.Inject; /** * * @author Arturo Rubio */ @Stateless public class ClienteLogic { private static final Logger LOGGER = Logger.getLogger(ClienteLogic.class.getName()); @Inject private ClientePersistence persistence; public ClienteEntity createCliente(ClienteEntity cliente) throws BusinessLogicException { if (persistence.findByName(cliente.getNombre()) != null) { throw new BusinessLogicException("Ya existe un cliente con el nombre \"" + cliente.getNombre() + "\""); } if (persistence.findByCorreo(cliente.getCorreo()) != null) { throw new BusinessLogicException("Ya existe un cliente con el correo \"" + cliente.getCorreo() + "\""); } if (cliente.getNombre() == null || cliente.getNombre().equals("")) { throw new BusinessLogicException("El nombre no puede ser null ni vacio \""); } if (cliente.getContrasenia() == null || cliente.getContrasenia().equals("")) { throw new BusinessLogicException("La contraseña no puede ser null ni vacio \""); } if (cliente.getCorreo() == null || cliente.getCorreo().equals("")) { throw new BusinessLogicException("El correo no puede ser null ni vacio \""); } if (persistence.findByCorreo(cliente.getCorreo())!= null) { throw new BusinessLogicException("El correo ya existe \""); } cliente = persistence.create(cliente); return cliente; } public List<ClienteEntity> getClientes() { LOGGER.log(Level.INFO,"Inicia proceso de consultar todos los clientes"); List<ClienteEntity> clientes = persistence.findAll(); LOGGER.log(Level.INFO,"Termina proceso de consultar todos los clientes"); return clientes; } public ClienteEntity getCliente(Long id ) { LOGGER.log(Level.INFO,"Inicia el proceso de consultar el cliente con id = {0}",id); ClienteEntity clienteEntity= persistence.find(id); if(clienteEntity==null || id == null) { LOGGER.log(Level.INFO,"El cliente con id ={0} no existe",id); } LOGGER.log(Level.INFO,"Termina el proceso de consultar el cliente con id = {0}", id ); return clienteEntity; } public ClienteEntity getClienteNombre(String name ) { LOGGER.log(Level.INFO,"Inicia el proceso de consultar el cliente con name = {0}",name); ClienteEntity clienteEntity= persistence.findByName(name); if(clienteEntity==null || name == null) { LOGGER.log(Level.INFO,"El cliente con name ={0} no existe",name); } LOGGER.log(Level.INFO,"Termina el proceso de consultar el cliente con name = {0}", name ); return clienteEntity; } public List<ClienteEntity> getClienteNombreLike(String name ) { LOGGER.log(Level.INFO,"Inicia el proceso de consultar clientes con name = {0}",name); List<ClienteEntity> clienteEntity= persistence.findByNameLike(name); if(clienteEntity==null || name == null) { LOGGER.log(Level.INFO,"El cliente con name ={0} no existe",name); } LOGGER.log(Level.INFO,"Termina el proceso de consultar el clientes con name = {0}", name ); return clienteEntity; } public ClienteEntity getClienteCorreo(String correo ) { LOGGER.log(Level.INFO,"Inicia el proceso de consultar el cliente con name = {0}",correo); ClienteEntity clienteEntity= persistence.findByName(correo); if(clienteEntity==null || correo == null) { LOGGER.log(Level.INFO,"El cliente con name ={0} no existe",correo); } LOGGER.log(Level.INFO,"Termina el proceso de consultar el cliente con name = {0}", correo ); return clienteEntity; } public ClienteEntity updateCliente (Long id ,ClienteEntity cliente) throws BusinessLogicException { LOGGER.log(Level.INFO,"Inicia proceso de actualizar el cliente con id = {0}",id); ClienteEntity newEntity = persistence.update(cliente); LOGGER.log(Level.INFO,"Termina proceso de actaulizar el cliente con Id={0}", id); return newEntity; } public void deleteCliente(Long id ) { LOGGER.log(Level.INFO, "Inicia proceso de borrar el cliente con id = {0}", id ); persistence.delete(id); LOGGER.log(Level.INFO,"Termine el proceso de borrar el cliente con id= {0}",id); } }
40.544
115
0.651342
a3d34aa26e318f53c20f8d89fc2aeb1f07f60479
1,460
java
Java
vaccination-scheduler-public/src/main/java/com/github/rixwwd/vaccination_scheduler/pub/service/DbActionLogService.java
rixwwd/vaccination-scheduler
f7c25bd7e1ac0c9fb942989d8aa4495846d6e7c5
[ "MIT" ]
null
null
null
vaccination-scheduler-public/src/main/java/com/github/rixwwd/vaccination_scheduler/pub/service/DbActionLogService.java
rixwwd/vaccination-scheduler
f7c25bd7e1ac0c9fb942989d8aa4495846d6e7c5
[ "MIT" ]
24
2021-03-03T14:47:21.000Z
2021-04-23T13:57:49.000Z
vaccination-scheduler-public/src/main/java/com/github/rixwwd/vaccination_scheduler/pub/service/DbActionLogService.java
rixwwd/vaccination-scheduler
f7c25bd7e1ac0c9fb942989d8aa4495846d6e7c5
[ "MIT" ]
null
null
null
package com.github.rixwwd.vaccination_scheduler.pub.service; import org.springframework.transaction.annotation.Transactional; import org.springframework.web.context.request.RequestContextHolder; import org.springframework.web.context.request.ServletRequestAttributes; import com.github.rixwwd.vaccination_scheduler.pub.entity.ActionLog; import com.github.rixwwd.vaccination_scheduler.pub.entity.ActionType; import com.github.rixwwd.vaccination_scheduler.pub.entity.PublicUser; import com.github.rixwwd.vaccination_scheduler.pub.repository.ActionLogRepository; public class DbActionLogService implements ActionLogService { private final ActionLogRepository actionLogRepository; public DbActionLogService(ActionLogRepository actionLogRepository) { this.actionLogRepository = actionLogRepository; } @Override @Transactional public void log(PublicUser publicUser, ActionType actionType) { var actionLog = new ActionLog(); actionLog.setPublicUserId(publicUser.getId()); actionLog.setActionType(actionType); actionLog.setIpAddress(getRemoteAddress()); actionLogRepository.save(actionLog); } protected String getRemoteAddress() { var requestAttibutes = (ServletRequestAttributes) RequestContextHolder.currentRequestAttributes(); if (requestAttibutes != null) { var httpServletRequest = requestAttibutes.getRequest(); if (httpServletRequest != null) { return httpServletRequest.getRemoteAddr(); } } return null; } }
33.181818
100
0.820548
79ba99f0817b1c43ff8bb32e1f49a2ea3d31e673
1,251
rb
Ruby
examples/contact/add_contact.rb
truedialog/truedialog-ruby
d1f980af526d04b189f5fb7028983fc1df929a4d
[ "MIT" ]
null
null
null
examples/contact/add_contact.rb
truedialog/truedialog-ruby
d1f980af526d04b189f5fb7028983fc1df929a4d
[ "MIT" ]
1
2021-11-14T20:05:58.000Z
2021-11-14T20:05:58.000Z
examples/contact/add_contact.rb
truedialog/truedialog-ruby
d1f980af526d04b189f5fb7028983fc1df929a4d
[ "MIT" ]
null
null
null
#################### ## add_contact.rb ## #################### # This example enables you to add a new contact # # You must edit the "payload" array (below) with # appropriate values. # # Please note: Telephone numbers must be prefixed # with a plus sign. Example: +15555551212 require '../../lib/truedialog_api' require 'yaml' require 'json' # Example to add a new contact. class AddContact def run # Load the configuration file (config.yml) config = YAML.load_file(File.expand_path("../../config.yml", __FILE__)) # Load the account_id from config.yml account_id = config['account_id'] # Load the URL from config.yml url = config['url'] # Load the username from config.yml username = config['username'] # Load the password from config.yml password = config['password'] # Set the payload payload = { "PhoneNumber" => "INSERT PHONE NUMBER HERE" ## Set phone number # "Email" => "[email protected]" ## Set e-mail address } # Initiate the client. client = TrueDialogApi::Client.new(url, username, password, account_id) # Make a call to AddContact via the via the API and print the result. puts client.add_contact(payload) end end example = AddContact.new example.run
29.785714
75
0.664269
2ce63e80b8f71d64e5679b4285fc09e75113ef92
4,105
cpp
C++
src/hir2mpl/test/common/hir2mpl_ut_options.cpp
venshine/OpenArkCompiler
264cd4463834356658154f0d254672ef559f245f
[ "MulanPSL-1.0" ]
2
2019-09-06T07:02:41.000Z
2019-09-09T12:24:46.000Z
src/hir2mpl/test/common/hir2mpl_ut_options.cpp
venshine/OpenArkCompiler
264cd4463834356658154f0d254672ef559f245f
[ "MulanPSL-1.0" ]
null
null
null
src/hir2mpl/test/common/hir2mpl_ut_options.cpp
venshine/OpenArkCompiler
264cd4463834356658154f0d254672ef559f245f
[ "MulanPSL-1.0" ]
null
null
null
/* * Copyright (c) [2020-2022] Huawei Technologies Co.,Ltd.All rights reserved. * * OpenArkCompiler is licensed under Mulan PSL v2. * You can use this software according to the terms and conditions of the Mulan PSL v2. * You may obtain a copy of Mulan PSL v2 at: * * http://license.coscl.org.cn/MulanPSL2 * * THIS SOFTWARE IS PROVIDED ON AN "AS IS" BASIS, WITHOUT WARRANTIES OF ANY KIND, EITHER * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO NON-INFRINGEMENT, MERCHANTABILITY OR * FIT FOR A PARTICULAR PURPOSE. * See the Mulan PSL v2 for more details. */ #include "cl_option.h" #include "hir2mpl_ut_options.h" #include <iostream> #include "mpl_logging.h" #include "parser_opt.h" namespace maple { namespace opts::hir2mplut { static maplecl::OptionCategory hir2mplUTCategory; maplecl::Option<bool> help({"--help", "-h"}, " -h, -help : print usage and exit", {hir2mplUTCategory}); maplecl::Option<std::string> genBase64({"--gen-base64", "-gen-base64"}, " -gen-base64 file.xx : generate base64 string for file.xx", {hir2mplUTCategory}); maplecl::Option<std::string> mplt({"--mplt", "-mplt"}, " -mplt lib1.mplt,lib2.mplt\n" " : input mplt files", {hir2mplUTCategory}); maplecl::Option<std::string> inClass({"--in-class", "-in-class"}, " -in-class file1.jar,file2.jar\n" " : input class files", {hir2mplUTCategory}); maplecl::Option<std::string> inJar({"--in-jar", "-in-jar"}, " -in-jar file1.jar,file2.jar\n" " : input jar files", {hir2mplUTCategory}); } HIR2MPLUTOptions::HIR2MPLUTOptions() : runAll(false), runAllWithCore(false), genBase64(false), base64SrcFileName(""), coreMpltName("") {} void HIR2MPLUTOptions::DumpUsage() const { std::cout << "========================================\n" << " Run gtest: hir2mplUT\n" << " Run gtest: hir2mplUT test [ options for gtest ]\n" << " Run ext mode: hir2mplUT ext [ options ]\n" << "========= options for ext mode =========\n"; maplecl::CommandLine::GetCommandLine().HelpPrinter(opts::hir2mplut::hir2mplUTCategory); exit(1); } bool HIR2MPLUTOptions::SolveArgs(int argc, char **argv) { if (argc == 1) { runAll = true; return true; } if (std::string(argv[1]).compare("test") == 0) { runAll = true; return true; } if (std::string(argv[1]).compare("testWithMplt") == 0) { runAllWithCore = true; CHECK_FATAL(argc > 2, "In TestWithMplt mode, core.mplt must be specified"); coreMpltName = argv[2]; return true; } if (std::string(argv[1]).compare("ext") != 0) { FATAL(kLncFatal, "Undefined mode"); return false; } runAll = false; maplecl::CommandLine::GetCommandLine().Parse(argc, (char **)argv, opts::hir2mplut::hir2mplUTCategory); if (opts::hir2mplut::help) { DumpUsage(); return false; } if (opts::hir2mplut::genBase64.IsEnabledByUser()) { base64SrcFileName = opts::hir2mplut::genBase64; } if (opts::hir2mplut::inClass.IsEnabledByUser()) { Split(opts::hir2mplut::inClass, ',', std::back_inserter(classFileList)); } if (opts::hir2mplut::inJar.IsEnabledByUser()) { Split(opts::hir2mplut::inJar, ',', std::back_inserter(jarFileList)); } if (opts::hir2mplut::mplt.IsEnabledByUser()) { Split(opts::hir2mplut::mplt, ',', std::back_inserter(mpltFileList)); } return true; } template <typename Out> void HIR2MPLUTOptions::Split(const std::string &s, char delim, Out result) { std::stringstream ss; ss.str(s); std::string item; while (std::getline(ss, item, delim)) { *(result++) = item; } } } // namespace maple
33.647541
101
0.568575
43815f4e7bfc897c55c3a2279994d39eb0716396
1,201
tsx
TypeScript
src/components/data/PowerBI/ReportInfo/PowerBIUserIdentity.tsx
equinor/fusion-components
32f9aa6b6f677c5271ac0a81a7c235d443a0c959
[ "MIT" ]
15
2019-01-17T13:07:48.000Z
2022-02-18T17:09:40.000Z
src/components/data/PowerBI/ReportInfo/PowerBIUserIdentity.tsx
equinor/fusion-components
32f9aa6b6f677c5271ac0a81a7c235d443a0c959
[ "MIT" ]
515
2019-05-28T13:26:55.000Z
2022-03-21T11:31:52.000Z
src/components/data/PowerBI/ReportInfo/PowerBIUserIdentity.tsx
equinor/fusion-components
32f9aa6b6f677c5271ac0a81a7c235d443a0c959
[ "MIT" ]
2
2019-08-23T13:54:58.000Z
2020-11-03T16:56:34.000Z
import { FC } from 'react'; import { useCurrentUser } from '@equinor/fusion'; import styles from './styles.less'; type Props = { header?: string }; export const PowerBIInfoUserIdentity: FC<Props> = (props) => { const user = useCurrentUser(); const header = props.header || 'Your identity does not meet this reports access requirements, your identity is:'; return ( <div className={styles.userIdentityContainer}> <h4>{header}</h4> <div className={styles.info}> <div className={styles.labels}> <div>Username</div> <div>GUID</div> <div>Roles</div> <div>Timestamp</div> <div>Context</div> </div> <div className={styles.text}> <div> {user?.upn} </div> <div> {user?.id} </div> <div>{user?.roles.toString()} </div> <div> {new Date().toString()} </div> <div> {window.location.href} </div> </div> </div> </div> ); }; export default PowerBIInfoUserIdentity;
31.605263
90
0.487094
58666454974ec5e65e99cd98aead023fee7fc6f9
663
css
CSS
tokyo-night.css
heckerdoggo/Tokyo-Night
989639fa5638e1d0e04d0ca6f31614d4b564f67c
[ "MIT" ]
4
2021-09-22T03:19:31.000Z
2022-01-04T04:33:25.000Z
tokyo-night.css
heckerdoggo/Tokyo-Night
989639fa5638e1d0e04d0ca6f31614d4b564f67c
[ "MIT" ]
null
null
null
tokyo-night.css
heckerdoggo/Tokyo-Night
989639fa5638e1d0e04d0ca6f31614d4b564f67c
[ "MIT" ]
null
null
null
{"light":false,"accent":"#4651c2","background":"#12131b","foreground":"#F6F6F6","block":"#171722","message-box":"#171722","mention":"#4b443b","success":"#57F287","warning":"#FEE75C","error":"#ED4245","hover":"#181822","scrollbar-thumb":"#4651c2","scrollbar-track":"transparent","primary-background":"#1b1a26","primary-header":"#17161f","secondary-background":"#171722","secondary-foreground":"#6e728e","secondary-header":"#171722","tertiary-background":"#171722","tertiary-foreground":"#848484","status-online":"#57F287","status-away":"#FEE75C","status-busy":"#ED4245","status-streaming":"#7100fd","status-invisible":"#747f8d","css":"","sidebar-active":"#202225"}
663
663
0.696833
a4a2ea917455fcf07a8fb45a0fbacf0e1a73fc61
4,794
php
PHP
skim/skimclab/system/application/views/paymentold/paymentsummary.php
izzuliman94/Skim-
b625f8d59a20d6da9cde2e50521a2509c1e10777
[ "Apache-2.0" ]
null
null
null
skim/skimclab/system/application/views/paymentold/paymentsummary.php
izzuliman94/Skim-
b625f8d59a20d6da9cde2e50521a2509c1e10777
[ "Apache-2.0" ]
null
null
null
skim/skimclab/system/application/views/paymentold/paymentsummary.php
izzuliman94/Skim-
b625f8d59a20d6da9cde2e50521a2509c1e10777
[ "Apache-2.0" ]
null
null
null
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" /> <title>SKIM</title> <link href="<?php echo base_url();?>/css/sippsstyle.css" rel="stylesheet" type="text/css" /> <link href="<?php echo base_url();?>js/scwdatepicker/scw.css" rel="stylesheet" type="text/css" /> <script type="text/javascript" src="<?php echo base_url();?>js/scwdatepicker/scw.js"></script> <script type="text/javascript"> function datebutton_onclick(elementId, thisRef) { switch (scwVisibilityStatus) { case "hidden": scwShow(document.getElementById(elementId), thisRef); break; case "visible": scwHide(); } } function generateReportexcel(type){ var cont = document.summary.selCurrentCompany.value; var cancel = document.summary.radcancel.value; var region = document.summary.selregion.value; var ptype = document.summary.selpayment.value; var datefrom = document.summary.datefrom.value; var dateto = document.summary.dateto.value; var url = "<?php echo site_url('contPayment/summaryexcel')?>/" + datefrom + "/" + dateto + "/" + region + "/" + ptype + "/" + cancel + "/" + cont; window.open(url); } function generateReportview(type){ var cont = document.summary.selCurrentCompany.value; var cancel = document.summary.radcancel.value; var region = document.summary.selregion.value; var ptype = document.summary.selpayment.value; var datefrom = document.summary.datefrom.value; var dateto = document.summary.dateto.value; var url = "<?php echo site_url('contPaymentold/summaryview')?>/" + datefrom + "/" + dateto + "/" + region + "/" + ptype + "/" + cancel + "/" + cont; window.open(url); } </script> </head> <body> <h4><a href="dashboard.php">Payment Summary ( SUMMARY OF PAYMENT RECORDED) </a></h4> <h3 id="switchsection1-title" class="handcursor">&nbsp;</h3> <form method="POST" action="" name="summary"> <table width="80%" border="0"> <tr> <th colspan="2" align="LEFT">Payment Filter</th> </tr> <tr> <td>Contractor/Company</td> <td><select name="selCurrentCompany"> <option value="0">All</option> <?php foreach($allContractors->result() as $ctr){ ?> <option value="<?php echo $ctr->ctr_clab_no;?>"><?php echo $ctr->ctr_comp_name;?></option> <?php } ?> </select></td> </tr> <tr> <td>Region</td> <td><select name="selregion"> <option value="0">All</option> <?php foreach($allRegion->result() as $region){ ?> <option value="<?php echo $region->regional_id;?>"><?php echo $region->regional_desc;?></option> <?php } ?> </select></td> </tr> <tr> <td>Payment Type</td> <td><select name="selpayment" onchange="valid(this.value)"> <option value="0">All</option> <option value="V">VDR</option> <option value="R">Renewal</option> <option value="CP">Cancel Permit</option> <option value="CR">Contractor Registration</option> <option value="CRN">Contractor Renewal</option> <option value="COM">Compound</option> <option value="T">Transit Center</option> <option value="SP">SP</option> <option value="O">Others</option> </select> <label> <input name="radcancel" type="radio" id="radio" value="0" checked="checked" /> All Recorded Payment <input type="radio" name="radcancel" id="radio" value="1" /> Cancelled Payment Only</label></td> </tr> <tr> <td width="30%">Payment Receipt From Date </td> <td width="70%"><input type="text" name="datefrom" id="datefrom" maxlength="20" value="" READONLY/> <input id="button1" name="btnDate1" type="button" class="scwdatepicker" onclick="scwShow(document.getElementById('datefrom'), this)" /> </td> </tr> <tr> <td>Payment Receipt To Date </td> <td><input type="text" name="dateto" id="dateto" maxlength="20" value="" READONLY/> <input id="button1" name="btnDate1" type="button" class="scwdatepicker" onclick="scwShow(document.getElementById('dateto'), this)" /></td> </tr> <tr> <td colspan="2" align="CENTER"><input type="button" name="btnExport1" value="View" onclick="generateReportview('excel');" /> <input type="button" name="btnExport2" value="Export To Excel" onclick="generateReportexcel('excel');" /> </td> </tr> </table> </form> </body> </html>
39.619835
153
0.605549
8613ef42b3ebcc5abdda373f07a3ff60c0335cb0
7,223
sql
SQL
TransactSQL/TransactSQL_.sql
Nayaata/Databases
344db9c1aadd2337cd410df0294f33b6871f83fb
[ "MIT" ]
10
2017-07-14T17:35:21.000Z
2021-12-24T08:55:35.000Z
TransactSQL/TransactSQL_.sql
Nayaata/Databases
344db9c1aadd2337cd410df0294f33b6871f83fb
[ "MIT" ]
null
null
null
TransactSQL/TransactSQL_.sql
Nayaata/Databases
344db9c1aadd2337cd410df0294f33b6871f83fb
[ "MIT" ]
6
2018-03-08T17:31:23.000Z
2021-09-01T01:16:44.000Z
USE master GO -- Create a db CREATE DATABASE PeopleDB GO USE PeopleDB GO -- Create a new table named 'Persons' CREATE TABLE Persons ( PersonsId int IDENTITY NOT NULL PRIMARY KEY, FirstName nvarchar(50) NOT NULL, LastName nvarchar(50) NOT NULL, SSN varchar(9) NOT NULL ) GO -- Create a new table named 'Accounts' CREATE TABLE Accounts ( Id int IDENTITY NOT NULL PRIMARY KEY, PersonId int NOT NULL FOREIGN KEY REFERENCES Persons(PersonsId), Balance money NOT NULL ) GO --INSERT some values into both tables and repeat this action a few times INSERT INTO Persons(FirstName, LastName, SSN) VALUES('Natalie', 'Klein', '9212315698') INSERT INTO Accounts(PersonID, Balance) VALUES (3, 789058.67) --1. CREATE PROC dbo.usp_SelectFullNamesOfAllPersons AS SELECT DISTINCT CONCAT(FirstName, LastName) AS [Full Name] FROM Persons GO --2. CREATE PROC dbo.usp_ReturnsAllPersonsWithMoreMoneyInAccountsThanGivenParameter (@givenParameter money) AS SELECT CONCAT(p.FirstName, p.LastName) AS [Full Name], a.Balance FROM Persons p JOIN Accounts a ON a.PersonID = p.PersonID WHERE a.Balance > @givenParameter ORDER BY a.Balance DESC --3. CREATE FUNCTION unf_CalculateAndReturnSum(@sum money, @interestRate float, @numberOfMonths int) RETURNS money AS BEGIN RETURN @sum * (1 + @interestRate / 12) * @numberOfMonths END GO --Test it USE PeopleDB SELECT Balance, ROUND(dbo.unf_CalculateAndReturnSum(Balance, 3.50, 11), 2) AS [Bonus] FROM Accounts --4. USE PeopleDB GO CREATE PROC dbo.usp_CalculateInterestRateToAccountPerMonth(@accountId int, @interestRate float) AS DECLARE @balance money SELECT @balance = Balance FROM Accounts WHERE PersonID = AccountID DECLARE @newBalance money SELECT @newBalance = dbo.unf_CalculateAndReturnSum(@balance, @interestRate, 3) SELECT CONCAT(p.FirstName, p.LastName) AS [Full Name], a.Balance, @newBalance AS [New balance] FROM Persons p JOIN Accounts a ON p.PersonID = a.AccountID WHERE a.AccountID = @accountId GO --Test EXEC dbo.usp_CalculateInterestRateToAccountPerMonth 1, 0.5 EXEC dbo.usp_CalculateInterestRateToAccountPerMonth 2, 2.5 EXEC dbo.usp_CalculateInterestRateToAccountPerMonth 3, 1.5 --5. CREATE PROC dbo.usp_WithdrawMoney(@AccountId int, @money money) AS BEGIN TRANSACTION UPDATE Accounts SET Balance -= @money WHERE AccountID = @AccountId COMMIT TRANSACTION GO CREATE PROC dbo.usp_DepositMoney(@AccountId int, @money money) AS BEGIN TRANSACTION UPDATE Accounts SET Balance += @money WHERE AccountID = @AccountId COMMIT TRANSACTION GO EXEC dbo.usp_WithdrawMoney 5, 678 EXEC dbo.usp_DepositMoney 3, 500 --6. CREATE TABLE Logs ( LogId int IDENTITY PRIMARY KEY, AccountId int NOT NULL FOREIGN KEY REFERENCES Accounts(AccountId), OldSum money NOT NULL, NewSum money NOT NULL ) CREATE TRIGGER tr_UpdateAccountBalance ON Accounts FOR UPDATE AS DECLARE @oldSum money; SELECT @oldSum = Balance FROM deleted; INSERT INTO Logs(AccountId, OldSum, NewSum) SELECT AccountId, @oldSum, Balance FROM inserted GO EXEC usp_WithdrawMoney 1, 500 EXEC usp_DepositMoney 3, 2000 --7. USE TelerikAcademy GO CREATE FUNCTION ufn_SearchForWordsInGivenPattern(@pattern nvarchar(255)) RETURNS @MatchedNames TABLE (Name varchar(50)) AS BEGIN INSERT @MatchedNames SELECT * FROM (SELECT e.FirstName FROM Employees e UNION SELECT e.LastName FROM Employees e UNION SELECT t.Name FROM Towns t) as temp(name) WHERE PATINDEX('%[' + @pattern + ']', Name) > 0 RETURN END GO -- Test -- SELECT * FROM dbo.ufn_SearchForWordsInGivenPattern('oistmiahf') --8. DECLARE empCursor CURSOR READ_ONLY FOR SELECT emp1.FirstName, emp1.LastName, t1.Name, emp2.FirstName, emp2.LastName FROM Employees emp1 JOIN Addresses a1 ON emp1.AddressID = a1.AddressID JOIN Towns t1 ON a1.TownID = t1.TownID, Employees emp2 JOIN Addresses a2 ON emp2.AddressID = a2.AddressID JOIN Towns t2 ON a2.TownID = t2.TownID WHERE t1.TownID = t2.TownID AND emp1.EmployeeID != emp2.EmployeeID ORDER BY emp1.FirstName, emp2.FirstName OPEN empCursor DECLARE @firstName1 nvarchar(50), @lastName1 nvarchar(50), @townName nvarchar(50), @firstName2 nvarchar(50), @lastName2 nvarchar(50) FETCH NEXT FROM empCursor INTO @firstName1, @lastName1, @townName, @firstName2, @lastName2 DECLARE @counter int; SET @counter = 0; WHILE @@FETCH_STATUS = 0 BEGIN SET @counter = @counter + 1; PRINT @firstName1 + ' ' + @lastName1 + ' ' + @townName + ' ' + @firstName2 + ' ' + @lastName2; FETCH NEXT FROM empCursor INTO @firstName1, @lastName1, @townName, @firstName2, @lastName2 END print 'Total records: ' + CAST(@counter AS nvarchar(10)); CLOSE empCursor DEALLOCATE empCursor --9. IF NOT EXISTS ( SELECT value FROM sys.configurations WHERE name = 'clr enabled' AND value = 1 ) BEGIN EXEC sp_configure @configname = clr_enabled, @configvalue = 1 RECONFIGURE END GO -- Remove the aggregate and assembly if they're there IF (OBJECT_ID('dbo.concat') IS NOT NULL) DROP Aggregate concat; GO IF EXISTS (SELECT * FROM sys.assemblies WHERE name = 'concat_assembly') DROP assembly concat_assembly; GO CREATE Assembly concat_assembly AUTHORIZATION dbo FROM 'C:\SqlStringConcatenation.dll' --- CHANGE THE LOCATION WITH PERMISSION_SET = SAFE; GO CREATE AGGREGATE dbo.concat ( @Value NVARCHAR(MAX), @Delimiter NVARCHAR(4000) ) RETURNS NVARCHAR(MAX) EXTERNAL Name concat_assembly.concat; GO --- CURSOR DECLARE empCursor CURSOR READ_ONLY FOR SELECT t.Name, dbo.concat(e.FirstName + ' ' + e.LastName, ', ') FROM Towns t JOIN Addresses a ON t.TownID = a.TownID JOIN Employees e ON a.AddressID = e.AddressID GROUP BY t.Name ORDER BY t.Name OPEN empCursor DECLARE @townName nvarchar(50), @employeesNames nvarchar(max) FETCH NEXT FROM empCursor INTO @townName, @employeesNames WHILE @@FETCH_STATUS = 0 BEGIN PRINT @townName + ' -> ' + @employeesNames; FETCH NEXT FROM empCursor INTO @townName, @employeesNames END CLOSE empCursor DEALLOCATE empCursor GO DROP Aggregate concat; DROP assembly concat_assembly; GO --10. IF NOT EXISTS ( SELECT value FROM sys.configurations WHERE name = 'clr enabled' AND value = 1 ) BEGIN EXEC sp_configure @configname = clr_enabled, @configvalue = 1 RECONFIGURE END GO -- Remove the aggregate and assembly if they're there IF (OBJECT_ID('dbo.concat') IS NOT NULL) DROP Aggregate concat; GO IF EXISTS (SELECT * FROM sys.assemblies WHERE name = 'concat_assembly') DROP assembly concat_assembly; GO CREATE Assembly concat_assembly AUTHORIZATION dbo FROM 'C:\SqlStringConcatenation.dll' --- CHANGE THE LOCATION WITH PERMISSION_SET = SAFE; GO CREATE AGGREGATE dbo.concat ( @Value NVARCHAR(MAX), @Delimiter NVARCHAR(4000) ) RETURNS NVARCHAR(MAX) EXTERNAL Name concat_assembly.concat; GO SELECT dbo.concat(FirstName + ' ' + LastName, ', ') FROM Employees GO DROP Aggregate concat; DROP assembly concat_assembly; GO
21.058309
95
0.720615
a377b270cba20951589f089321aedc9ced3d9bb0
1,478
java
Java
src/main/java/com/billybyte/dse/queries/TreasuryRateQueryFromTreasuryRateSingle.java
bgithub1/common-libs
30bd6ddad880cd3da7d946ccb921d83352a2be8c
[ "MIT" ]
null
null
null
src/main/java/com/billybyte/dse/queries/TreasuryRateQueryFromTreasuryRateSingle.java
bgithub1/common-libs
30bd6ddad880cd3da7d946ccb921d83352a2be8c
[ "MIT" ]
null
null
null
src/main/java/com/billybyte/dse/queries/TreasuryRateQueryFromTreasuryRateSingle.java
bgithub1/common-libs
30bd6ddad880cd3da7d946ccb921d83352a2be8c
[ "MIT" ]
null
null
null
package com.billybyte.dse.queries; import java.math.BigDecimal; import java.util.HashMap; import java.util.Map; import java.util.TreeMap; import java.util.Set; import java.util.concurrent.TimeUnit; import com.billybyte.commoninterfaces.QueryInterface; import com.billybyte.marketdata.SecDef; import com.billybyte.marketdata.SecDefQueryAllMarkets; import com.billybyte.queries.ComplexQueryResult; public class TreasuryRateQueryFromTreasuryRateSingle extends DseInputQuery<BigDecimal> { private final TreasuryRateSingleQuery single ; public TreasuryRateQueryFromTreasuryRateSingle( QueryInterface<String, SecDef> sdQuery, TreeMap<Integer, BigDecimal> rateTable){ single = new TreasuryRateSingleQuery(sdQuery, rateTable); } public TreasuryRateQueryFromTreasuryRateSingle( QueryInterface<String, SecDef> sdQuery, String rateTablePathOrFileNameIfResource, Class<?> classOfPackage){ single = new TreasuryRateSingleQuery(sdQuery, rateTablePathOrFileNameIfResource, classOfPackage); } public TreasuryRateQueryFromTreasuryRateSingle(){ single = new TreasuryRateSingleQuery(); } @Override public Map<String, ComplexQueryResult<BigDecimal>> get(Set<String> keySet, int timeoutValue, TimeUnit timeUnitType) { Map<String, ComplexQueryResult<BigDecimal>> ret = new HashMap<String, ComplexQueryResult<BigDecimal>>(); for(String key : keySet){ ret.put(key, single.get(key, timeoutValue, timeUnitType)); } return ret; } }
28.980392
88
0.794317
03f38148181c63e5f920ed5a711c67402628e8e9
41,257
sql
SQL
BASEDEDATOS_PARTICIPA.sql
humbertom90/Participa
3c3536c4a752513b32cad60109a366889dc95733
[ "MIT" ]
null
null
null
BASEDEDATOS_PARTICIPA.sql
humbertom90/Participa
3c3536c4a752513b32cad60109a366889dc95733
[ "MIT" ]
null
null
null
BASEDEDATOS_PARTICIPA.sql
humbertom90/Participa
3c3536c4a752513b32cad60109a366889dc95733
[ "MIT" ]
null
null
null
/* SQLyog Ultimate v12.08 (64 bit) MySQL - 10.0.29-MariaDB-0ubuntu0.16.04.1 : Database - participa ********************************************************************* */ /*!40101 SET NAMES utf8 */; /*!40101 SET SQL_MODE=''*/; /*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */; /*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */; /*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */; /*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */; CREATE DATABASE /*!32312 IF NOT EXISTS*/`participa` /*!40100 DEFAULT CHARACTER SET utf8mb4 */; USE `participa`; /*Table structure for table `acciones` */ DROP TABLE IF EXISTS `acciones`; CREATE TABLE `acciones` ( `id` varchar(10) NOT NULL, `nombre` varchar(255) NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*Data for the table `acciones` */ /*Table structure for table `adminlogs` */ DROP TABLE IF EXISTS `adminlogs`; CREATE TABLE `adminlogs` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT, `descripcion` varchar(255) NOT NULL, `subclase` varchar(255) NOT NULL, `objeto_id` int(10) unsigned NOT NULL, `objeto_type` varchar(255) NOT NULL, `poder_id` int(10) unsigned NOT NULL, `actor_id` int(10) unsigned NOT NULL, `created_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00', `updated_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00', PRIMARY KEY (`id`), KEY `adminlogs_objeto_id_objeto_type_index` (`objeto_id`,`objeto_type`), KEY `adminlogs_actor_id_foreign` (`actor_id`), CONSTRAINT `adminlogs_actor_id_foreign` FOREIGN KEY (`actor_id`) REFERENCES `usuarios` (`id`) ON DELETE CASCADE ) ENGINE=InnoDB AUTO_INCREMENT=7 DEFAULT CHARSET=utf8; /*Data for the table `adminlogs` */ insert into `adminlogs`(`id`,`descripcion`,`subclase`,`objeto_id`,`objeto_type`,`poder_id`,`actor_id`,`created_at`,`updated_at`) values (1,'','new',1,'Organismo',3,1,'2016-12-01 12:37:19','2016-12-01 12:37:19'),(2,'1','new',1,'Organismo',4,1,'2016-12-01 12:37:46','2016-12-01 12:37:46'),(3,'','mod',1,'Organismo',3,1,'2016-12-01 12:38:35','2016-12-01 12:38:35'),(4,'3','new',1,'Organismo',4,1,'2016-12-01 14:39:18','2016-12-01 14:39:18'),(5,'','new',2,'Organismo',3,1,'2016-12-06 12:36:44','2016-12-06 12:36:44'),(6,'','mod',2,'Organismo',3,1,'2016-12-06 12:40:23','2016-12-06 12:40:23'); /*Table structure for table `ajustes` */ DROP TABLE IF EXISTS `ajustes`; CREATE TABLE `ajustes` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT, `key` varchar(255) NOT NULL, `value_type` varchar(255) NOT NULL, `int_value` int(11) DEFAULT NULL, `str_value` varchar(255) DEFAULT NULL, `txt_value` text, `description` varchar(255) NOT NULL, `created_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00', `updated_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00', PRIMARY KEY (`id`), UNIQUE KEY `ajustes_key_unique` (`key`) ) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8; /*Data for the table `ajustes` */ insert into `ajustes`(`id`,`key`,`value_type`,`int_value`,`str_value`,`txt_value`,`description`,`created_at`,`updated_at`) values (1,'tos','txt',NULL,NULL,'Términos y condiciones de uso.','Términos y condiciones para el uso de la plataforma.','2016-12-01 11:01:26','2016-12-01 11:01:26'); /*Table structure for table `categorias` */ DROP TABLE IF EXISTS `categorias`; CREATE TABLE `categorias` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT, `nombre` varchar(255) NOT NULL, `created_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00', `updated_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00', `deleted_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8; /*Data for the table `categorias` */ insert into `categorias`(`id`,`nombre`,`created_at`,`updated_at`,`deleted_at`) values (1,'General','2016-12-01 11:01:26','2016-12-01 11:01:26',NULL),(2,'Movilidad Urbana','2016-12-12 00:00:00','2016-12-12 00:00:00',NULL); /*Table structure for table `comentario_votos` */ DROP TABLE IF EXISTS `comentario_votos`; CREATE TABLE `comentario_votos` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT, `valor` int(11) NOT NULL, `usuario_id` int(10) unsigned NOT NULL, `comentario_id` int(10) unsigned NOT NULL, `created_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00', `updated_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00', PRIMARY KEY (`id`), KEY `comentario_votos_comentario_id_foreign` (`comentario_id`), CONSTRAINT `comentario_votos_comentario_id_foreign` FOREIGN KEY (`comentario_id`) REFERENCES `comentarios` (`id`) ON DELETE CASCADE ) ENGINE=InnoDB AUTO_INCREMENT=12 DEFAULT CHARSET=utf8; /*Data for the table `comentario_votos` */ insert into `comentario_votos`(`id`,`valor`,`usuario_id`,`comentario_id`,`created_at`,`updated_at`) values (1,1,1,3,'2016-12-02 14:33:28','2016-12-02 14:33:28'),(2,1,3,3,'2016-12-02 14:33:43','2016-12-02 14:33:43'),(3,-1,2,2,'2016-12-07 10:47:59','2016-12-07 10:47:59'),(4,1,2,1,'2016-12-07 10:48:05','2016-12-07 10:48:05'),(5,1,2,3,'2016-12-07 11:00:59','2016-12-07 11:00:59'),(6,1,2,5,'2016-12-07 11:02:54','2016-12-07 11:02:54'),(7,1,2,4,'2016-12-07 11:02:57','2016-12-07 11:02:57'),(8,1,4,13,'2016-12-12 12:28:20','2016-12-12 12:28:20'),(9,-1,4,14,'2016-12-12 12:28:23','2016-12-12 12:28:23'),(10,1,3,16,'2016-12-12 12:46:43','2016-12-12 12:46:43'),(11,1,3,17,'2016-12-12 13:32:48','2016-12-12 13:32:48'); /*Table structure for table `comentarios` */ DROP TABLE IF EXISTS `comentarios`; CREATE TABLE `comentarios` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT, `comentable_id` int(10) unsigned NOT NULL, `comentable_type` varchar(255) NOT NULL, `cuerpo` text NOT NULL, `votos` int(11) NOT NULL DEFAULT '0', `autor_id` int(10) unsigned NOT NULL, `created_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00', `updated_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00', `deleted_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`), KEY `comentarios_comentable_id_comentable_type_index` (`comentable_id`,`comentable_type`), KEY `comentarios_autor_id_foreign` (`autor_id`), CONSTRAINT `comentarios_autor_id_foreign` FOREIGN KEY (`autor_id`) REFERENCES `usuarios` (`id`) ON DELETE CASCADE ) ENGINE=InnoDB AUTO_INCREMENT=18 DEFAULT CHARSET=utf8; /*Data for the table `comentarios` */ insert into `comentarios`(`id`,`comentable_id`,`comentable_type`,`cuerpo`,`votos`,`autor_id`,`created_at`,`updated_at`,`deleted_at`) values (1,2,'Problematica','Creo, que seria un avance',1,2,'2016-12-01 12:10:24','2016-12-07 10:48:05',NULL),(2,2,'Problematica','Coincido',-1,1,'2016-12-01 12:30:16','2016-12-07 10:47:59',NULL),(3,1,'Evento','Genial!',3,3,'2016-12-02 14:32:41','2016-12-07 11:00:59',NULL),(4,3,'Problematica','p+0\'¿¿\'}',1,2,'2016-12-07 11:02:37','2016-12-07 11:02:57',NULL),(5,4,'Comentario','kkkk',1,2,'2016-12-07 11:02:49','2016-12-07 11:02:54',NULL),(6,1,'Evento','kakaka\r\n',0,2,'2016-12-07 11:04:17','2016-12-07 11:04:17',NULL),(7,3,'Problematica','oooooooooo',0,2,'2016-12-07 11:04:38','2016-12-07 11:04:38',NULL),(8,3,'Problematica','asdasdas',0,2,'2016-12-07 12:21:27','2016-12-07 12:21:27',NULL),(9,2,'Problematica','yyyyyyyyyyy',0,2,'2016-12-07 12:24:44','2016-12-07 12:24:44',NULL),(10,3,'Problematica','sssssssssssssssssssss',0,2,'2016-12-07 12:47:39','2016-12-07 12:47:39',NULL),(11,3,'Problematica','.........\r\n',0,4,'2016-12-12 12:26:30','2016-12-12 12:26:30',NULL),(12,11,'Comentario','...\r\n',0,4,'2016-12-12 12:27:16','2016-12-12 12:27:16',NULL),(13,4,'Problematica','ikkkkkkkkk',1,4,'2016-12-12 12:27:43','2016-12-12 12:28:20',NULL),(14,13,'Comentario','llllllll',-1,4,'2016-12-12 12:28:11','2016-12-12 12:28:23',NULL),(15,1,'Novedad','......................',0,3,'2016-12-12 12:43:13','2016-12-12 12:43:13',NULL),(16,2,'ParrafoDocumento','Oxigeno',1,1,'2016-12-12 12:45:51','2016-12-12 12:46:43',NULL),(17,9,'ParrafoDocumento','interesante',1,3,'2016-12-12 13:32:03','2016-12-12 13:32:48',NULL); /*Table structure for table `contactos` */ DROP TABLE IF EXISTS `contactos`; CREATE TABLE `contactos` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT, `contactable_id` int(10) unsigned NOT NULL, `contactable_type` varchar(255) NOT NULL, `email` varchar(255) DEFAULT NULL, `telefono` varchar(255) DEFAULT NULL, `web` varchar(255) DEFAULT NULL, `created_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00', `updated_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00', PRIMARY KEY (`id`), KEY `contactos_contactable_id_contactable_type_index` (`contactable_id`,`contactable_type`) ) ENGINE=InnoDB AUTO_INCREMENT=6 DEFAULT CHARSET=utf8; /*Data for the table `contactos` */ insert into `contactos`(`id`,`contactable_id`,`contactable_type`,`email`,`telefono`,`web`,`created_at`,`updated_at`) values (1,2,'Usuario',NULL,'+541144444444','http://ga.lujan.gov.ar','2016-12-01 12:05:26','2016-12-01 12:05:26'),(2,1,'Usuario',NULL,NULL,'http://ga.lujan.gov.ar','2016-12-01 12:28:34','2016-12-01 12:28:34'),(3,1,'Organismo','[email protected]',NULL,'http://www.lujan.gov.ar','2016-12-01 12:38:35','2016-12-01 12:38:35'),(4,2,'Organismo',NULL,NULL,'http://www.lujan.gov.ar/hcd','2016-12-06 12:40:23','2016-12-06 12:40:23'),(5,4,'Usuario',NULL,NULL,NULL,'2016-12-12 12:29:16','2016-12-12 12:29:16'); /*Table structure for table `contenidos` */ DROP TABLE IF EXISTS `contenidos`; CREATE TABLE `contenidos` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT, `contenible_id` int(10) unsigned NOT NULL, `contenible_type` varchar(255) NOT NULL, `titulo` varchar(255) NOT NULL, `huella` varchar(255) DEFAULT NULL, `puntos` int(10) unsigned NOT NULL DEFAULT '0', `impulsor_id` int(10) unsigned DEFAULT NULL, `referido_id` int(10) unsigned DEFAULT NULL, `categoria_id` int(10) unsigned NOT NULL, `autor_id` int(10) unsigned NOT NULL, `created_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00', `updated_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00', `deleted_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`), KEY `contenidos_contenible_id_contenible_type_index` (`contenible_id`,`contenible_type`), KEY `contenidos_autor_id_foreign` (`autor_id`), CONSTRAINT `contenidos_autor_id_foreign` FOREIGN KEY (`autor_id`) REFERENCES `usuarios` (`id`) ON DELETE CASCADE ) ENGINE=InnoDB AUTO_INCREMENT=8 DEFAULT CHARSET=utf8; /*Data for the table `contenidos` */ insert into `contenidos`(`id`,`contenible_id`,`contenible_type`,`titulo`,`huella`,`puntos`,`impulsor_id`,`referido_id`,`categoria_id`,`autor_id`,`created_at`,`updated_at`,`deleted_at`) values (1,1,'Problematica','Declaraciones Juradas','DeclaracionesJuradas',0,NULL,NULL,1,2,'2016-12-01 12:08:50','2016-12-01 12:11:24','2016-12-01 12:11:24'),(2,2,'Problematica','Declaraciones juradas','Declaracionesjuradas',14,NULL,NULL,1,2,'2016-12-01 12:09:55','2016-12-07 12:24:44',NULL),(3,1,'Evento','Acercarte','Acercarte',13,NULL,NULL,1,1,'2016-12-02 14:31:00','2016-12-07 11:04:17',NULL),(4,3,'Problematica','sdfsdf sdfsdf s','sdfsdfsdfsdfs',24,NULL,NULL,1,2,'2016-12-07 10:38:02','2016-12-12 12:40:57',NULL),(5,4,'Problematica','asdasdasd asdasdas','asdasdasdasdasdas',8,NULL,NULL,1,4,'2016-12-12 12:27:37','2016-12-12 12:28:11',NULL),(6,1,'Novedad','wqrewatwetw','wqrewatwetw',3,NULL,NULL,1,3,'2016-12-12 12:41:56','2016-12-12 12:43:13',NULL),(7,1,'Documento','Documento prueba','Documentoprueba',6,NULL,NULL,1,1,'2016-12-12 12:45:20','2016-12-12 13:32:03',NULL); /*Table structure for table `documento_parrafos` */ DROP TABLE IF EXISTS `documento_parrafos`; CREATE TABLE `documento_parrafos` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT, `cuerpo` text NOT NULL, `ubicacion` int(10) unsigned NOT NULL, `version_id` int(10) unsigned NOT NULL, `created_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00', `updated_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00', `deleted_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=11 DEFAULT CHARSET=utf8; /*Data for the table `documento_parrafos` */ insert into `documento_parrafos`(`id`,`cuerpo`,`ubicacion`,`version_id`,`created_at`,`updated_at`,`deleted_at`) values (1,'1) Sensor de ORP (Potencial Redox): El potencial Redox mide el potencial de oxidación-reducción, es decir, la degradación o compactación. El potencial Redox (inglés = oxidation reduction potential = ORP) expresa la capacidad de una molécula para dar o recibir electrones. El potencial de oxidación o de reducción se mide en mV y puede alcanzar tanto valores positivos como negativos. En la naturaleza el potencial Redox se puede encontrar entre +600 mV (oxidación) y -300 mV (reducción), lo que representa la suma de procesos de oxidación y regeneración que se producen en la naturaleza.',0,1,'2016-12-12 12:45:20','2016-12-12 12:45:20',NULL),(2,'Cuando, por ejemplo, una sustancia reacciona con oxígeno, se produce oxidación. Cuando la madera se quema en el fuego o cuando el hierro se oxida, se produce oxidación. La reducción es exactamente lo contrario, como si, por ejemplo, al óxido se le volviera a extraer el oxígeno y el hierro vuelve a su brillo original.',1,1,'2016-12-12 12:45:20','2016-12-12 12:45:20',NULL),(3,'Los procesos de oxidación sí son útiles, son la base de la obtención de energía vital. Los valores positivos de potencial Redox significan que, por ejemplo, a través de la cesión de electrones el agua promueve la oxidación. Cuanto mayor sea el potencial Redox (p.ej. el Anolyte ácido), mayor y más rápido será la muerte de bacterias, virus, mohos, hongos, esporas, etc. Esto también es así en animales, plantas y en el ser humano, destruyen a los patógenos. Entre +850 y +1000 mV (con un pH de alrededor de 7) todos los microbios están muertos.',2,1,'2016-12-12 12:45:20','2016-12-12 12:45:20',NULL),(4,'Valores de potencial Redox negativos significan que cuanto menor sea el potencial Redox, mayor será el poder de reducción. Los agentes reductores ceden electrones. Los iones cargados negativamente pueden combinarse con los llamados radicales libres (con carga positiva) y convertirlos en inofensivos. Cuanto menor sea el potencial Redox, es decir, cuanta más alcalina sea p.ej. el agua, mayor cantidad de electrones podrá ceder el agua a sustancias oxidantes. Se trata, por tanto, de un captador ideal de radicales libres. Las reacciones Redox son aquellos procesos que aseguran las funciones vitales de los organismos vivos.',3,1,'2016-12-12 12:45:20','2016-12-12 12:45:20',NULL),(5,'Nuestro organismo, y la naturaleza en general, dependen del funcionamiento de ambos procesos. El Anolyte neutro apoya la oxidación por excelencia, para que la reducción se pueda desarrollar plenamente y al mismo tiempo enlazar los radicales libres. Por tanto, si no se apoyara el proceso de oxidación, se preservarían también las bacterias y los gérmenes y permanecerían con vida.',4,1,'2016-12-12 12:45:20','2016-12-12 12:45:20',NULL),(6,'2) Sensor de PH: Con el valor pH se especifica el grado de acidez de los líquidos. La escala va de 0 a 14. Justo en el centro, es decir, un pH de 7 denota un líquido neutro – para el agua potable el pH ideal se encuentra entre 7,2 y 7,4. Cuanto menor sea el valor, más ácido es el líquido. No obstante, la escala del pH debe entenderse de forma que por cada número entero de la escala (es decir, por cada muestra de color de las tiras de medición por colores) el grado de acidez se incrementa en un factor de 10. Por tanto, un estanque con un pH de 6 contiene diez veces más ácido que uno con un pH de 7, y 100 veces más que uno con un pH de 8.',5,1,'2016-12-12 12:45:20','2016-12-12 12:45:20',NULL),(7,'En la otra mitad de la escala, que va de 7 a 14, los líquidos son jabonosos. El pH de la sangre, por ejemplo, debe permanecer constante en un rango muy estrecho entre 7,35 y 7,45, de lo contrario, la persona estaría gravemente enferma. Y existen otros ejemplos interesantes para el pH correcto de un líquido:',6,1,'2016-12-12 12:45:20','2016-12-12 12:45:20',NULL),(8,'La lluvia normal, por ejemplo, tiene un pH de entre 6,5 y 7,4. La lluvia ácida que se da en las zonas industriales suele tener un pH alrededor de 4. La Coca Cola tiene un pH de entre 2,5 y 2,7, casi tan ácido como el vinagre.',7,1,'2016-12-12 12:45:20','2016-12-12 12:45:20',NULL),(9,'Pero también en nuestro cuerpo podemos encontrar fuerte acidez: el jugo gástrico. Por las mañanas, en ayunas, el pH está en torno a 1,5, mientras que la saliva humana se encuentra entre 6,5 y 7,4. Por el contrario, el jugo pancreático con un pH de 8,4 ya se encuentra en la parte muy alcalina y el jabón con un pH normal de entre 9 y 10 ya pica fuertemente en los ojos.',8,1,'2016-12-12 12:45:20','2016-12-12 12:45:20',NULL),(10,'De forma muy sencilla se podría decir que el valor de pH depende de la concentración de iones de hidrógeno (H+). Cuantos más se encuentren en el líquido, más ácido será.',9,1,'2016-12-12 12:45:20','2016-12-12 12:45:20',NULL); /*Table structure for table `documento_versiones` */ DROP TABLE IF EXISTS `documento_versiones`; CREATE TABLE `documento_versiones` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT, `version` int(10) unsigned NOT NULL, `documento_id` int(10) unsigned NOT NULL, `created_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00', `updated_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00', `deleted_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8; /*Data for the table `documento_versiones` */ insert into `documento_versiones`(`id`,`version`,`documento_id`,`created_at`,`updated_at`,`deleted_at`) values (1,1,1,'2016-12-12 12:45:20','2016-12-12 12:45:20',NULL); /*Table structure for table `documentos` */ DROP TABLE IF EXISTS `documentos`; CREATE TABLE `documentos` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT, `descripcion` varchar(255) NOT NULL, `ultima_version` int(10) unsigned NOT NULL, `created_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00', `updated_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00', `deleted_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8; /*Data for the table `documentos` */ insert into `documentos`(`id`,`descripcion`,`ultima_version`,`created_at`,`updated_at`,`deleted_at`) values (1,'Documento de prueba',1,'2016-12-12 12:45:20','2016-12-12 12:45:20',NULL); /*Table structure for table `evento_usuario` */ DROP TABLE IF EXISTS `evento_usuario`; CREATE TABLE `evento_usuario` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT, `presente` tinyint(1) NOT NULL, `publico` tinyint(1) NOT NULL, `usuario_id` int(10) unsigned NOT NULL, `evento_id` int(10) unsigned NOT NULL, `created_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00', `updated_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00', PRIMARY KEY (`id`), KEY `evento_usuario_evento_id_foreign` (`evento_id`), CONSTRAINT `evento_usuario_evento_id_foreign` FOREIGN KEY (`evento_id`) REFERENCES `eventos` (`id`) ON DELETE CASCADE ) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8; /*Data for the table `evento_usuario` */ insert into `evento_usuario`(`id`,`presente`,`publico`,`usuario_id`,`evento_id`,`created_at`,`updated_at`) values (1,1,1,1,1,'2016-12-02 14:31:14','2016-12-02 14:31:14'),(2,1,1,3,1,'2016-12-02 14:32:57','2016-12-02 14:32:57'),(3,0,1,2,1,'2016-12-02 14:37:37','2016-12-02 14:37:37'); /*Table structure for table `eventos` */ DROP TABLE IF EXISTS `eventos`; CREATE TABLE `eventos` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT, `cuerpo` text NOT NULL, `lugar` varchar(255) NOT NULL, `fecha` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00', `created_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00', `updated_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00', `deleted_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8; /*Data for the table `eventos` */ insert into `eventos`(`id`,`cuerpo`,`lugar`,`fecha`,`created_at`,`updated_at`,`deleted_at`) values (1,'AcercARTE, propuesta de PBA bla bla bla','Parque san Martin','2016-12-03 04:00:00','2016-12-02 14:31:00','2016-12-02 14:31:00',NULL); /*Table structure for table `funcionarios` */ DROP TABLE IF EXISTS `funcionarios`; CREATE TABLE `funcionarios` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT, `usuario_id` int(10) unsigned NOT NULL, `organismo_id` int(10) unsigned NOT NULL, `created_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00', `updated_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00', `deleted_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`), KEY `funcionarios_usuario_id_foreign` (`usuario_id`), CONSTRAINT `funcionarios_usuario_id_foreign` FOREIGN KEY (`usuario_id`) REFERENCES `usuarios` (`id`) ON DELETE CASCADE ) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8; /*Data for the table `funcionarios` */ insert into `funcionarios`(`id`,`usuario_id`,`organismo_id`,`created_at`,`updated_at`,`deleted_at`) values (1,1,1,'2016-12-01 12:37:46','2016-12-01 12:37:46',NULL),(2,3,1,'2016-12-01 14:39:18','2016-12-01 14:39:18',NULL); /*Table structure for table `notificaciones` */ DROP TABLE IF EXISTS `notificaciones`; CREATE TABLE `notificaciones` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT, `notificable_id` int(10) unsigned NOT NULL, `notificable_type` varchar(255) NOT NULL, `usuario_id` int(10) unsigned NOT NULL, `deleted_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`), KEY `notificaciones_notificable_id_notificable_type_index` (`notificable_id`,`notificable_type`), KEY `notificaciones_usuario_id_foreign` (`usuario_id`), CONSTRAINT `notificaciones_usuario_id_foreign` FOREIGN KEY (`usuario_id`) REFERENCES `usuarios` (`id`) ON DELETE CASCADE ) ENGINE=InnoDB AUTO_INCREMENT=20 DEFAULT CHARSET=utf8; /*Data for the table `notificaciones` */ insert into `notificaciones`(`id`,`notificable_id`,`notificable_type`,`usuario_id`,`deleted_at`) values (1,3,'Userlog',2,'2016-12-01 12:10:31'),(2,6,'Userlog',2,'2016-12-02 14:36:13'),(3,7,'Userlog',1,'2016-12-01 12:38:41'),(4,8,'Userlog',3,'2016-12-01 14:39:37'),(5,10,'Userlog',1,'2016-12-02 14:35:23'),(6,13,'Userlog',2,'2016-12-07 11:03:11'),(7,14,'Userlog',2,'2016-12-07 11:03:11'),(8,15,'Userlog',1,'2016-12-12 12:33:38'),(9,16,'Userlog',2,'2016-12-07 11:04:42'),(10,17,'Userlog',2,'2016-12-07 12:21:29'),(11,18,'Userlog',2,'2016-12-07 12:25:17'),(12,19,'Userlog',2,'2016-12-07 12:47:43'),(13,20,'Userlog',2,NULL),(14,22,'Userlog',2,NULL),(15,24,'Userlog',4,'2016-12-12 12:27:49'),(16,26,'Userlog',4,'2016-12-12 12:28:13'),(17,29,'Userlog',3,'2016-12-12 12:47:49'),(18,31,'Userlog',1,'2017-01-11 16:28:17'),(19,32,'Userlog',1,'2017-01-11 16:28:17'); /*Table structure for table `novedades` */ DROP TABLE IF EXISTS `novedades`; CREATE TABLE `novedades` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT, `cuerpo` text NOT NULL, `created_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00', `updated_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00', `deleted_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8; /*Data for the table `novedades` */ insert into `novedades`(`id`,`cuerpo`,`created_at`,`updated_at`,`deleted_at`) values (1,'ertaertaertaeearjarlktjaehtklahrlkaekalkhtkaejhrtajkjhaer','2016-12-12 12:41:56','2016-12-12 12:41:56',NULL); /*Table structure for table `organismos` */ DROP TABLE IF EXISTS `organismos`; CREATE TABLE `organismos` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT, `nombre` varchar(255) NOT NULL, `descripcion` text NOT NULL, `cupo` int(10) unsigned NOT NULL, `huella` varchar(255) DEFAULT NULL, `created_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00', `updated_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00', `deleted_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8; /*Data for the table `organismos` */ insert into `organismos`(`id`,`nombre`,`descripcion`,`cupo`,`huella`,`created_at`,`updated_at`,`deleted_at`) values (1,'Municipalidad de Luján','Gobierno Municipal de la ciudad de Luján',10,'MunicipalidaddeLuján','2016-12-01 12:37:18','2016-12-01 12:37:18',NULL),(2,'HCD Luján','Honorable Concejo deliberante de Luján',18,'HCDLuján','2016-12-06 12:36:43','2016-12-06 12:36:43',NULL); /*Table structure for table `partidos` */ DROP TABLE IF EXISTS `partidos`; CREATE TABLE `partidos` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT, `nombre` varchar(255) NOT NULL, `acronimo` varchar(255) NOT NULL, `descripcion` text NOT NULL, `huella` varchar(255) DEFAULT NULL, `fundador` varchar(255) DEFAULT NULL, `fecha_fundacion` date DEFAULT NULL, `creador_id` int(10) unsigned NOT NULL, `created_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00', `updated_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00', `deleted_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`), UNIQUE KEY `partidos_nombre_unique` (`nombre`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*Data for the table `partidos` */ /*Table structure for table `patrulla_poder` */ DROP TABLE IF EXISTS `patrulla_poder`; CREATE TABLE `patrulla_poder` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT, `patrulla_id` int(10) unsigned NOT NULL, `poder_id` int(10) unsigned NOT NULL, PRIMARY KEY (`id`), KEY `patrulla_poder_patrulla_id_foreign` (`patrulla_id`), KEY `patrulla_poder_poder_id_foreign` (`poder_id`), CONSTRAINT `patrulla_poder_patrulla_id_foreign` FOREIGN KEY (`patrulla_id`) REFERENCES `patrullas` (`id`) ON DELETE CASCADE, CONSTRAINT `patrulla_poder_poder_id_foreign` FOREIGN KEY (`poder_id`) REFERENCES `poderes` (`id`) ON DELETE CASCADE ) ENGINE=InnoDB AUTO_INCREMENT=8 DEFAULT CHARSET=utf8; /*Data for the table `patrulla_poder` */ insert into `patrulla_poder`(`id`,`patrulla_id`,`poder_id`) values (1,1,1),(2,1,2),(3,1,3),(4,1,4),(5,1,5),(6,1,6),(7,1,7); /*Table structure for table `patrullas` */ DROP TABLE IF EXISTS `patrullas`; CREATE TABLE `patrullas` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT, `nombre` varchar(255) NOT NULL, `descripcion` text NOT NULL, `created_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00', `updated_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00', PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8; /*Data for the table `patrullas` */ insert into `patrullas`(`id`,`nombre`,`descripcion`,`created_at`,`updated_at`) values (1,'Aministrador','Admnistrador que instaló la plataforma.','2016-12-01 11:01:26','2016-12-01 11:01:26'); /*Table structure for table `poderes` */ DROP TABLE IF EXISTS `poderes`; CREATE TABLE `poderes` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT, `nombre` varchar(255) NOT NULL, `descripcion` varchar(255) NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=8 DEFAULT CHARSET=utf8; /*Data for the table `poderes` */ insert into `poderes`(`id`,`nombre`,`descripcion`) values (1,'Moderar','Moderar en la plataforma.'),(2,'Configurar plataforma','Configurar parámetros de Virtugora.'),(3,'Administrar organismos','Definir los organimos existentes.'),(4,'Administrar funcionarios','Asignar los funcionarios a sus respectivos organismos.'),(5,'Administrar patrullas','Definir los distintos grupos de moderación.'),(6,'Administrar moderadores','Asignar los usuarios que serán moderadores.'),(7,'Verificar ciudadanos','Registrar como verificados a usuarios que lo demuestren.'); /*Table structure for table `preusuarios` */ DROP TABLE IF EXISTS `preusuarios`; CREATE TABLE `preusuarios` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT, `email` varchar(255) NOT NULL, `password` varchar(255) NOT NULL, `nombre` varchar(255) NOT NULL, `apellido` varchar(255) NOT NULL, `emailed_token` varchar(255) NOT NULL, `created_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00', `updated_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00', PRIMARY KEY (`id`), UNIQUE KEY `preusuarios_email_unique` (`email`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*Data for the table `preusuarios` */ /*Table structure for table `problematica_votos` */ DROP TABLE IF EXISTS `problematica_votos`; CREATE TABLE `problematica_votos` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT, `postura` int(10) unsigned NOT NULL, `usuario_id` int(10) unsigned NOT NULL, `problematica_id` int(10) unsigned NOT NULL, `created_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00', `updated_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00', PRIMARY KEY (`id`), KEY `problematica_votos_problematica_id_foreign` (`problematica_id`), CONSTRAINT `problematica_votos_problematica_id_foreign` FOREIGN KEY (`problematica_id`) REFERENCES `problematicas` (`id`) ON DELETE CASCADE ) ENGINE=InnoDB AUTO_INCREMENT=7 DEFAULT CHARSET=utf8; /*Data for the table `problematica_votos` */ insert into `problematica_votos`(`id`,`postura`,`usuario_id`,`problematica_id`,`created_at`,`updated_at`) values (1,1,2,2,'2016-12-01 12:10:10','2016-12-01 12:10:10'),(2,2,1,2,'2016-12-01 12:29:33','2016-12-01 12:29:33'),(3,0,2,3,'2016-12-07 11:01:58','2016-12-07 11:01:58'),(4,0,4,3,'2016-12-12 12:27:01','2016-12-12 12:27:01'),(5,1,4,4,'2016-12-12 12:28:04','2016-12-12 12:28:04'),(6,0,3,3,'2016-12-12 12:40:56','2016-12-12 12:40:56'); /*Table structure for table `problematicas` */ DROP TABLE IF EXISTS `problematicas`; CREATE TABLE `problematicas` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT, `cuerpo` text NOT NULL, `afectados_directos` int(10) unsigned NOT NULL DEFAULT '0', `afectados_indirectos` int(10) unsigned NOT NULL DEFAULT '0', `afectados_indiferentes` int(10) unsigned NOT NULL DEFAULT '0', `created_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00', `updated_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00', `deleted_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=5 DEFAULT CHARSET=utf8; /*Data for the table `problematicas` */ insert into `problematicas`(`id`,`cuerpo`,`afectados_directos`,`afectados_indirectos`,`afectados_indiferentes`,`created_at`,`updated_at`,`deleted_at`) values (1,'Seria genial, tener las DD.JJ. del Intendente, funcionarios y Concejales\r\n\r\n[img]http://breakingrisk.com/wp-content/uploads/2015/09/DECLARACIONES.jpg[/img]',0,0,0,'2016-12-01 12:08:50','2016-12-01 12:11:24','2016-12-01 12:11:24'),(2,'Seria genial tener las DD.JJ. del [b]Intendente[/b], Funcionarios y [b]Concejales[/b]\r\n\r\n[img]http://breakingrisk.com/wp-content/uploads/2015/09/DECLARACIONES.jpg[/img]',1,1,0,'2016-12-01 12:09:55','2016-12-01 12:29:33',NULL),(3,'[img]http://10.240.14.213/app/turismo/galeria/1479915354.jpg[/img]',0,0,3,'2016-12-07 10:38:02','2016-12-12 12:40:57',NULL),(4,'a sdasdas[i]dasdasdasd[/i]sd[b]asdasd[/b]',0,1,0,'2016-12-12 12:27:37','2016-12-12 12:28:04',NULL); /*Table structure for table `propuesta_votos` */ DROP TABLE IF EXISTS `propuesta_votos`; CREATE TABLE `propuesta_votos` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT, `postura` int(11) NOT NULL, `publico` tinyint(1) NOT NULL, `usuario_id` int(10) unsigned NOT NULL, `propuesta_id` int(10) unsigned NOT NULL, `created_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00', `updated_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00', PRIMARY KEY (`id`), KEY `propuesta_votos_propuesta_id_foreign` (`propuesta_id`), CONSTRAINT `propuesta_votos_propuesta_id_foreign` FOREIGN KEY (`propuesta_id`) REFERENCES `propuestas` (`id`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*Data for the table `propuesta_votos` */ /*Table structure for table `propuestas` */ DROP TABLE IF EXISTS `propuestas`; CREATE TABLE `propuestas` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT, `cuerpo` text NOT NULL, `votos_favor` int(10) unsigned NOT NULL DEFAULT '0', `votos_contra` int(10) unsigned NOT NULL DEFAULT '0', `votos_neutro` int(10) unsigned NOT NULL DEFAULT '0', `created_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00', `updated_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00', `deleted_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*Data for the table `propuestas` */ /*Table structure for table `taggables` */ DROP TABLE IF EXISTS `taggables`; CREATE TABLE `taggables` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT, `taggable_id` int(10) unsigned NOT NULL, `taggable_type` varchar(255) NOT NULL, `tag_id` int(10) unsigned NOT NULL, PRIMARY KEY (`id`), KEY `taggables_taggable_id_taggable_type_index` (`taggable_id`,`taggable_type`), KEY `taggables_tag_id_foreign` (`tag_id`), CONSTRAINT `taggables_tag_id_foreign` FOREIGN KEY (`tag_id`) REFERENCES `tags` (`id`) ON DELETE CASCADE ) ENGINE=InnoDB AUTO_INCREMENT=9 DEFAULT CHARSET=utf8; /*Data for the table `taggables` */ insert into `taggables`(`id`,`taggable_id`,`taggable_type`,`tag_id`) values (1,2,'Contenido',1),(2,2,'Contenido',2),(3,3,'Contenido',3),(4,3,'Contenido',4),(5,3,'Contenido',5),(6,6,'Contenido',6),(7,6,'Contenido',7),(8,6,'Contenido',8); /*Table structure for table `tags` */ DROP TABLE IF EXISTS `tags`; CREATE TABLE `tags` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT, `nombre` varchar(255) NOT NULL, `huella` varchar(255) DEFAULT NULL, `menciones` int(10) unsigned NOT NULL DEFAULT '0', `created_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00', `updated_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00', PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=9 DEFAULT CHARSET=utf8; /*Data for the table `tags` */ insert into `tags`(`id`,`nombre`,`huella`,`menciones`,`created_at`,`updated_at`) values (1,'declaraciones juradas','declaracionesjuradas',1,'2016-12-01 12:09:55','2016-12-01 12:09:55'),(2,'transparencia','transparencia',1,'2016-12-01 12:09:55','2016-12-01 12:09:55'),(3,'evento','evento',1,'2016-12-02 14:31:00','2016-12-02 14:31:01'),(4,'acercarte','acercarte',1,'2016-12-02 14:31:00','2016-12-02 14:31:01'),(5,'soledad','soledad',1,'2016-12-02 14:31:01','2016-12-02 14:31:01'),(6,'rjtah','rjtah',1,'2016-12-12 12:41:56','2016-12-12 12:41:56'),(7,'rtkjhaklrethjrertaerta','rtkjhaklrethjrertaerta',1,'2016-12-12 12:41:56','2016-12-12 12:41:56'),(8,'rtartan','rtartan',1,'2016-12-12 12:41:56','2016-12-12 12:41:56'); /*Table structure for table `userlogs` */ DROP TABLE IF EXISTS `userlogs`; CREATE TABLE `userlogs` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT, `objeto_id` int(10) unsigned NOT NULL, `objeto_type` varchar(255) NOT NULL, `accion_id` varchar(10) NOT NULL, `actor_id` int(10) unsigned NOT NULL, `created_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00', `updated_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00', PRIMARY KEY (`id`), KEY `userlogs_objeto_id_objeto_type_index` (`objeto_id`,`objeto_type`), KEY `userlogs_actor_id_foreign` (`actor_id`), CONSTRAINT `userlogs_actor_id_foreign` FOREIGN KEY (`actor_id`) REFERENCES `usuarios` (`id`) ON DELETE CASCADE ) ENGINE=InnoDB AUTO_INCREMENT=33 DEFAULT CHARSET=utf8; /*Data for the table `userlogs` */ insert into `userlogs`(`id`,`objeto_id`,`objeto_type`,`accion_id`,`actor_id`,`created_at`,`updated_at`) values (1,2,'Problematica','newProblem',2,'2016-12-01 12:09:55','2016-12-01 12:09:55'),(2,2,'Problematica','votProblem',2,'2016-12-01 12:10:10','2016-12-01 12:10:10'),(3,2,'Problematica','newComenta',2,'2016-12-01 12:10:25','2016-12-01 12:10:25'),(4,1,'Problematica','delProblem',2,'2016-12-01 12:11:24','2016-12-01 12:11:24'),(5,2,'Problematica','votProblem',1,'2016-12-01 12:29:33','2016-12-01 12:29:33'),(6,2,'Problematica','newComenta',1,'2016-12-01 12:30:16','2016-12-01 12:30:16'),(7,1,'Organismo','newFuncion',1,'2016-12-01 12:37:46','2016-12-01 12:37:46'),(8,1,'Organismo','newFuncion',3,'2016-12-01 14:39:18','2016-12-01 14:39:18'),(9,1,'Evento','newEventoo',1,'2016-12-02 14:31:01','2016-12-02 14:31:01'),(10,1,'Evento','newComenta',3,'2016-12-02 14:32:41','2016-12-02 14:32:41'),(11,3,'Problematica','newProblem',2,'2016-12-07 10:38:02','2016-12-07 10:38:02'),(12,3,'Problematica','votProblem',2,'2016-12-07 11:01:58','2016-12-07 11:01:58'),(13,3,'Problematica','newComenta',2,'2016-12-07 11:02:37','2016-12-07 11:02:37'),(14,3,'Problematica','newComenta',2,'2016-12-07 11:02:49','2016-12-07 11:02:49'),(15,1,'Evento','newComenta',2,'2016-12-07 11:04:17','2016-12-07 11:04:17'),(16,3,'Problematica','newComenta',2,'2016-12-07 11:04:38','2016-12-07 11:04:38'),(17,3,'Problematica','newComenta',2,'2016-12-07 12:21:27','2016-12-07 12:21:27'),(18,2,'Problematica','newComenta',2,'2016-12-07 12:24:44','2016-12-07 12:24:44'),(19,3,'Problematica','newComenta',2,'2016-12-07 12:47:39','2016-12-07 12:47:39'),(20,3,'Problematica','newComenta',4,'2016-12-12 12:26:30','2016-12-12 12:26:30'),(21,3,'Problematica','votProblem',4,'2016-12-12 12:27:01','2016-12-12 12:27:01'),(22,3,'Problematica','newComenta',4,'2016-12-12 12:27:16','2016-12-12 12:27:16'),(23,4,'Problematica','newProblem',4,'2016-12-12 12:27:37','2016-12-12 12:27:37'),(24,4,'Problematica','newComenta',4,'2016-12-12 12:27:43','2016-12-12 12:27:43'),(25,4,'Problematica','votProblem',4,'2016-12-12 12:28:04','2016-12-12 12:28:04'),(26,4,'Problematica','newComenta',4,'2016-12-12 12:28:11','2016-12-12 12:28:11'),(27,3,'Problematica','votProblem',3,'2016-12-12 12:40:56','2016-12-12 12:40:56'),(28,1,'Novedad','newNovedad',3,'2016-12-12 12:41:56','2016-12-12 12:41:56'),(29,1,'Novedad','newComenta',3,'2016-12-12 12:43:13','2016-12-12 12:43:13'),(30,1,'Documento','newDocumen',1,'2016-12-12 12:45:20','2016-12-12 12:45:20'),(31,1,'Documento','newComenta',1,'2016-12-12 12:45:51','2016-12-12 12:45:51'),(32,1,'Documento','newComenta',3,'2016-12-12 13:32:03','2016-12-12 13:32:03'); /*Table structure for table `usuarios` */ DROP TABLE IF EXISTS `usuarios`; CREATE TABLE `usuarios` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT, `email` varchar(255) NOT NULL, `password` varchar(255) NOT NULL, `nombre` varchar(255) NOT NULL, `apellido` varchar(255) NOT NULL, `img_tipo` int(10) unsigned NOT NULL, `img_hash` varchar(255) NOT NULL, `huella` varchar(255) DEFAULT NULL, `puntos` int(11) NOT NULL DEFAULT '0', `advertencia` varchar(255) DEFAULT NULL, `suspendido` tinyint(1) NOT NULL DEFAULT '0', `es_funcionario` tinyint(1) NOT NULL DEFAULT '0', `es_jefe` tinyint(1) NOT NULL DEFAULT '0', `dni` varchar(255) DEFAULT NULL, `token` varchar(255) DEFAULT NULL, `verified_at` timestamp NULL DEFAULT NULL, `fin_advertencia` timestamp NULL DEFAULT NULL, `fin_suspension` timestamp NULL DEFAULT NULL, `partido_id` int(10) unsigned DEFAULT NULL, `patrulla_id` int(10) unsigned DEFAULT NULL, `created_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00', `updated_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00', `deleted_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`), UNIQUE KEY `usuarios_email_unique` (`email`) ) ENGINE=InnoDB AUTO_INCREMENT=5 DEFAULT CHARSET=utf8; /*Data for the table `usuarios` */ insert into `usuarios`(`id`,`email`,`password`,`nombre`,`apellido`,`img_tipo`,`img_hash`,`huella`,`puntos`,`advertencia`,`suspendido`,`es_funcionario`,`es_jefe`,`dni`,`token`,`verified_at`,`fin_advertencia`,`fin_suspension`,`partido_id`,`patrulla_id`,`created_at`,`updated_at`,`deleted_at`) values (1,'[email protected]','$2y$10$8Q/GNjAQ9qYSoctfWf3sOO.Oku2Nc3Ykggj4Diz5pv54UOSoX6OzS','Maximiliano','Chisnerman',0,'1','MaximilianoChisnerman',68,NULL,0,1,0,NULL,NULL,NULL,NULL,NULL,NULL,1,'2016-12-01 11:01:27','2017-02-06 11:31:16',NULL),(2,'[email protected]','$2y$10$2rUm9EBE1aeKcsCO8YAKc.40kPjTXvbhf973z45aa/reTU9P.KGni','Joshua Sharon','Chisnerman',0,'2','JoshuaSharonChisnerman',104,NULL,1,0,0,NULL,NULL,NULL,NULL,'2016-12-15 00:00:00',NULL,NULL,'2016-12-01 12:02:58','2016-12-07 12:47:39',NULL),(3,'[email protected]','$2y$10$k3UsXv71NtnVnQqknaBrf.BTxFUR.a44e3CY.267Y4xvDjkXiITh2','Federico Andres','Grosso',1,'92f641502587814364a0275f6cec2abc','FedericoAndresGrosso',52,NULL,0,1,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2016-12-01 12:21:47','2016-12-12 13:32:48',NULL),(4,'[email protected]','$2y$10$7po0A3V7QWoEocTFE89Jpe1X9QXLTfGkIGsFtLahBKgwGVMbwRvVO','Matias','Mazzucca',0,'4','MatiasMazzucca',53,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2016-12-01 12:21:47','2016-12-12 12:29:15',NULL); /*!40101 SET SQL_MODE=@OLD_SQL_MODE */; /*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */; /*!40014 SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS */; /*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */;
65.800638
4,891
0.705141
db80af5745d3a84de15ba0cca783d7e4e0d1b731
3,361
php
PHP
application/modules/users/controllers/Users.php
tawonland/demo1
47c8024f11e2731d894448da41eda4ac15a8a40e
[ "MIT" ]
null
null
null
application/modules/users/controllers/Users.php
tawonland/demo1
47c8024f11e2731d894448da41eda4ac15a8a40e
[ "MIT" ]
null
null
null
application/modules/users/controllers/Users.php
tawonland/demo1
47c8024f11e2731d894448da41eda4ac15a8a40e
[ "MIT" ]
null
null
null
<?php /** * */ class Users extends Auth_Controller { function __construct() { parent::__construct(); } function index() { $this->a_kolom[] = array('label' => array('data' => 'No', 'align' => 'center'), 'field' => 'no:'); $this->a_kolom[] = array('label' => 'Nama Lengkap', 'field' => 'user_fullname'); $this->a_kolom[] = array('label' => 'Email', 'field' => 'user_name'); $this->a_kolom[] = array('label' => 'No HP', 'field' => 'user_mobile'); $this->a_kolom[] = array('label' => array('data' => 'Aktif', 'align' => 'center'), 'td_attributes' => array('align' => 'center'), 'field' => 'user_active'); parent::listdata(); } //overide a_data function a_data(){ $a_data = parent::a_data(); foreach ($a_data as $key => $row) { foreach ($this->a_kolom as $k => $v) { $field = $v['field']; if($field == 'no:') { $val = ''; } else if($field == 'user_active') { $val = $row['user_active'] == '1' ? '<span class="label label-success">Aktif</span>' : '<span class="label label-danger">Tidak Aktif</span>'; } else{ $val = $row[$field]; } $a_data[$key][$field] = $val; } } return $a_data; } function add() { parent::add(); } function insert() { $this->load->library('form_validation'); $config = array( array( 'field' => 'user_fullname', 'label' => 'Nama Lengkap', 'rules' => 'trim|required' ), array( 'field' => 'user_email', 'label' => 'Email', 'rules' => 'trim|required|valid_email|is_unique[users.user_email]' ) ); $this->form_validation->set_rules($config); $data = $this->input->post(); if ($this->form_validation->run() == FALSE) { $this->session->set_flashdata('row', $data); $this->session->set_flashdata('error', validation_errors()); redirect($this->ctl.'/add'); } //load model $this->load->model('users/m_users'); // $data['user_password'] = password_hash('admin', PASSWORD_BCRYPT); $data['user_name'] = $data['user_email']; $data['user_fullname'] = $data['user_fullname']; //insert data $id = $this->M_Users->insert($data); if(!$id) { $this->session->set_flashdata('error', info('not_saved')); redirect($this->ctl.'/add'); } $this->session->set_flashdata('success', info('saved')); redirect($this->ctl); } function update($id) { $this->load->library('form_validation'); $config = array( array( 'field' => 'user_fullname', 'label' => 'Nama Lengkap', 'rules' => 'trim|required' ) ); $this->form_validation->set_rules($config); $data = $this->input->post(); if ($this->form_validation->run() == FALSE) { $this->session->set_flashdata('row', $data); $this->session->set_flashdata('error', validation_errors()); redirect($this->ctl.'/edit/'.$id); } //load model $this->load->model('users/m_users'); // $data['user_name'] = $data['user_email']; $this->M_Users->update($data, $id); } }
22.557047
158
0.505504
411cb6b169270fcb211329aa72dd6d1a13689141
299,932
sql
SQL
database/db_to - 20210529.sql
entertrans/lms-ujian-online
1c10169df532c3a431e9eefed2a3f49e079d7522
[ "MIT" ]
null
null
null
database/db_to - 20210529.sql
entertrans/lms-ujian-online
1c10169df532c3a431e9eefed2a3f49e079d7522
[ "MIT" ]
null
null
null
database/db_to - 20210529.sql
entertrans/lms-ujian-online
1c10169df532c3a431e9eefed2a3f49e079d7522
[ "MIT" ]
1
2021-05-18T02:28:39.000Z
2021-05-18T02:28:39.000Z
-- phpMyAdmin SQL Dump -- version 5.0.3 -- https://www.phpmyadmin.net/ -- -- Host: 127.0.0.1 -- Generation Time: May 29, 2021 at 03:02 PM -- Server version: 10.4.14-MariaDB -- PHP Version: 7.4.11 SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO"; START TRANSACTION; SET time_zone = "+00:00"; /*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */; /*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */; /*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */; /*!40101 SET NAMES utf8mb4 */; -- -- Database: `db_to` -- drop database if exists `db_to`; create database `db_to`; use `db_to`; -- -------------------------------------------------------- -- -- Table structure for table `tbl_agama` -- CREATE TABLE `tbl_agama` ( `agama_id` int(11) NOT NULL, `agama_nama` varchar(10) DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1; -- -- Dumping data for table `tbl_agama` -- INSERT INTO `tbl_agama` (`agama_id`, `agama_nama`) VALUES (1, 'Islam'), (2, 'Kristen'), (3, 'Katholik'), (4, 'Hindu'), (5, 'Budha'), (6, 'Khongucu'); -- -------------------------------------------------------- -- -- Table structure for table `tbl_kelas` -- CREATE TABLE `tbl_kelas` ( `kelas_id` int(11) NOT NULL, `kelas_nama` varchar(40) DEFAULT NULL, `wali_kelas` text DEFAULT NULL, `kls_jadwal` text DEFAULT NULL, `ttd` varchar(50) DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1; -- -- Dumping data for table `tbl_kelas` -- INSERT INTO `tbl_kelas` (`kelas_id`, `kelas_nama`, `wali_kelas`, `kls_jadwal`, `ttd`) VALUES (1, 'Kelas I', 'a:5:{i:0;a:3:{s:2:\"ta\";s:9:\"2019/2020\";s:5:\"wakel\";s:6:\"TARSIH\";s:3:\"ttd\";s:10:\"tarsih.png\";}i:1;a:3:{s:2:\"ta\";s:9:\"2020/2021\";s:5:\"wakel\";s:13:\"IMAS INDRIANI\";s:3:\"ttd\";s:8:\"imas.png\";}i:2;a:3:{s:2:\"ta\";s:9:\"2016/2017\";s:5:\"wakel\";s:6:\"TARSIH\";s:3:\"ttd\";s:10:\"tarsih.png\";}i:3;a:3:{s:2:\"ta\";s:9:\"2017/2018\";s:5:\"wakel\";s:6:\"TARSIH\";s:3:\"ttd\";s:10:\"tarsih.png\";}i:4;a:3:{s:2:\"ta\";s:9:\"2018/2019\";s:5:\"wakel\";s:6:\"TARSIH\";s:3:\"ttd\";s:10:\"tarsih.png\";}}', 'a:2:{i:0;a:2:{s:4:\"hari\";s:4:\"Rabu\";s:4:\"data\";a:3:{i:0;a:2:{s:5:\"mapel\";s:10:\"Matematika\";s:4:\"tipe\";s:2:\"Vc\";}i:1;a:2:{s:5:\"mapel\";s:16:\"Bahasa Indonesia\";s:4:\"tipe\";s:2:\"Vc\";}i:2;a:2:{s:5:\"mapel\";s:26:\"Pendidikan Kewarganegaraan\";s:4:\"tipe\";s:2:\"Vc\";}}}i:1;a:2:{s:4:\"hari\";s:5:\"Jumat\";s:4:\"data\";a:2:{i:0;a:2:{s:5:\"mapel\";s:23:\"Ilmu Pengetahuan Sosial\";s:4:\"tipe\";s:2:\"Vc\";}i:1;a:2:{s:5:\"mapel\";s:21:\"Ilmu Pengetahuan Alam\";s:4:\"tipe\";s:2:\"Vc\";}}}}', 'tarsih.png'), (2, 'Kelas II', 'a:5:{i:0;a:3:{s:2:\"ta\";s:9:\"2019/2020\";s:5:\"wakel\";s:12:\"SUSI SUSANTI\";s:3:\"ttd\";s:8:\"susi.png\";}i:1;a:3:{s:2:\"ta\";s:9:\"2020/2021\";s:5:\"wakel\";s:14:\"ANGGI ANATASIA\";s:3:\"ttd\";s:9:\"anggi.png\";}i:2;a:3:{s:2:\"ta\";s:9:\"2016/2017\";s:5:\"wakel\";s:12:\"SUSI SUSANTI\";s:3:\"ttd\";s:8:\"susi.png\";}i:3;a:3:{s:2:\"ta\";s:9:\"2017/2018\";s:5:\"wakel\";s:12:\"SUSI SUSANTI\";s:3:\"ttd\";s:8:\"susi.png\";}i:4;a:3:{s:2:\"ta\";s:9:\"2018/2019\";s:5:\"wakel\";s:12:\"SUSI SUSANTI\";s:3:\"ttd\";s:8:\"susi.png\";}}', 'a:2:{i:0;a:2:{s:4:\"hari\";s:4:\"Rabu\";s:4:\"data\";a:3:{i:0;a:2:{s:5:\"mapel\";s:10:\"Matematika\";s:4:\"tipe\";s:2:\"Vc\";}i:1;a:2:{s:5:\"mapel\";s:16:\"Bahasa Indonesia\";s:4:\"tipe\";s:2:\"Vc\";}i:2;a:2:{s:5:\"mapel\";s:26:\"Pendidikan Kewarganegaraan\";s:4:\"tipe\";s:2:\"Vc\";}}}i:1;a:2:{s:4:\"hari\";s:5:\"Jumat\";s:4:\"data\";a:2:{i:0;a:2:{s:5:\"mapel\";s:21:\"Ilmu Pengetahuan Alam\";s:4:\"tipe\";s:2:\"Vc\";}i:1;a:2:{s:5:\"mapel\";s:23:\"Ilmu Pengetahuan Sosial\";s:4:\"tipe\";s:2:\"vc\";}}}}', 'susi.png'), (3, 'Kelas III', 'a:5:{i:0;a:3:{s:2:\"ta\";s:9:\"2019/2020\";s:5:\"wakel\";s:14:\"SIENNA SHAROON\";s:3:\"ttd\";s:12:\"sharoone.png\";}i:1;a:3:{s:2:\"ta\";s:9:\"2020/2021\";s:5:\"wakel\";s:16:\"NISRINA AGUSTAMA\";s:3:\"ttd\";s:8:\"anis.png\";}i:2;a:3:{s:2:\"ta\";s:9:\"2016/2017\";s:5:\"wakel\";s:14:\"SIENNA SHAROON\";s:3:\"ttd\";s:12:\"sharoone.png\";}i:3;a:3:{s:2:\"ta\";s:9:\"2017/2018\";s:5:\"wakel\";s:14:\"SIENNA SHAROON\";s:3:\"ttd\";s:12:\"sharoone.png\";}i:4;a:3:{s:2:\"ta\";s:9:\"2018/2019\";s:5:\"wakel\";s:14:\"SIENNA SHAROON\";s:3:\"ttd\";s:12:\"sharoone.png\";}}', 'a:2:{i:0;a:2:{s:4:\"hari\";s:4:\"Rabu\";s:4:\"data\";a:3:{i:0;a:2:{s:5:\"mapel\";s:10:\"Matematika\";s:4:\"tipe\";s:2:\"Vc\";}i:1;a:2:{s:5:\"mapel\";s:16:\"Bahasa Indonesia\";s:4:\"tipe\";s:2:\"Vc\";}i:2;a:2:{s:5:\"mapel\";s:26:\"Pendidikan Kewarganegaraan\";s:4:\"tipe\";s:2:\"Vc\";}}}i:1;a:2:{s:4:\"hari\";s:5:\"Jumat\";s:4:\"data\";a:2:{i:0;a:2:{s:5:\"mapel\";s:21:\"Ilmu Pengetahuan Alam\";s:4:\"tipe\";s:2:\"Vc\";}i:1;a:2:{s:5:\"mapel\";s:23:\"Ilmu Pengetahuan Sosial\";s:4:\"tipe\";s:2:\"vc\";}}}}', 'sharoone.png'), (4, 'Kelas IV', 'a:5:{i:0;a:3:{s:2:\"ta\";s:9:\"2019/2020\";s:5:\"wakel\";s:17:\"MAHDA DWI HAMSARI\";s:3:\"ttd\";s:9:\"mahda.png\";}i:1;a:3:{s:2:\"ta\";s:9:\"2020/2021\";s:5:\"wakel\";s:16:\"NISRINA AGUSTAMA\";s:3:\"ttd\";s:8:\"anis.png\";}i:2;a:3:{s:2:\"ta\";s:9:\"2016/2017\";s:5:\"wakel\";s:17:\"MAHDA DWI HAMSARI\";s:3:\"ttd\";s:9:\"mahda.png\";}i:3;a:3:{s:2:\"ta\";s:9:\"2017/2018\";s:5:\"wakel\";s:17:\"MAHDA DWI HAMSARI\";s:3:\"ttd\";s:9:\"mahda.png\";}i:4;a:3:{s:2:\"ta\";s:9:\"2018/2019\";s:5:\"wakel\";s:17:\"MAHDA DWI HAMSARI\";s:3:\"ttd\";s:9:\"mahda.png\";}}', 'a:2:{i:0;a:2:{s:4:\"hari\";s:6:\"Selasa\";s:4:\"data\";a:3:{i:0;a:2:{s:5:\"mapel\";s:10:\"Matematika\";s:4:\"tipe\";s:2:\"Vc\";}i:1;a:2:{s:5:\"mapel\";s:16:\"Bahasa Indonesia\";s:4:\"tipe\";s:2:\"Vc\";}i:2;a:2:{s:5:\"mapel\";s:26:\"Pendidikan Kewarganegaraan\";s:4:\"tipe\";s:2:\"Vc\";}}}i:1;a:2:{s:4:\"hari\";s:5:\"Kamis\";s:4:\"data\";a:2:{i:0;a:2:{s:5:\"mapel\";s:21:\"Ilmu Pengetahuan Alam\";s:4:\"tipe\";s:2:\"Vc\";}i:1;a:2:{s:5:\"mapel\";s:23:\"Ilmu Pengetahuan Sosial\";s:4:\"tipe\";s:2:\"Vc\";}}}}', 'mahda.png'), (5, 'Kelas V', 'a:5:{i:0;a:3:{s:2:\"ta\";s:9:\"2019/2020\";s:5:\"wakel\";s:13:\"IMAS INDRIANI\";s:3:\"ttd\";s:8:\"imas.png\";}i:1;a:3:{s:2:\"ta\";s:9:\"2020/2021\";s:5:\"wakel\";s:12:\"GRACE DEBORA\";s:3:\"ttd\";s:9:\"grace.png\";}i:2;a:3:{s:2:\"ta\";s:9:\"2016/2017\";s:5:\"wakel\";s:13:\"IMAS INDRIANI\";s:3:\"ttd\";s:8:\"imas.png\";}i:3;a:3:{s:2:\"ta\";s:9:\"2017/2018\";s:5:\"wakel\";s:13:\"IMAS INDRIANI\";s:3:\"ttd\";s:8:\"imas.png\";}i:4;a:3:{s:2:\"ta\";s:9:\"2018/2019\";s:5:\"wakel\";s:13:\"IMAS INDRIANI\";s:3:\"ttd\";s:8:\"imas.png\";}}', 'a:2:{i:0;a:2:{s:4:\"hari\";s:6:\"Selasa\";s:4:\"data\";a:3:{i:0;a:2:{s:5:\"mapel\";s:10:\"Matematika\";s:4:\"tipe\";s:2:\"Vc\";}i:1;a:2:{s:5:\"mapel\";s:16:\"Bahasa Indonesia\";s:4:\"tipe\";s:2:\"Vc\";}i:2;a:2:{s:5:\"mapel\";s:26:\"Pendidikan Kewarganegaraan\";s:4:\"tipe\";s:2:\"Vc\";}}}i:1;a:2:{s:4:\"hari\";s:5:\"Kamis\";s:4:\"data\";a:2:{i:0;a:2:{s:5:\"mapel\";s:21:\"Ilmu Pengetahuan Alam\";s:4:\"tipe\";s:2:\"Vc\";}i:1;a:2:{s:5:\"mapel\";s:23:\"Ilmu Pengetahuan Sosial\";s:4:\"tipe\";s:2:\"Vc\";}}}}', 'imas.png'), (6, 'Kelas VI', 'a:5:{i:0;a:3:{s:2:\"ta\";s:9:\"2019/2020\";s:5:\"wakel\";s:14:\"ANGGI ANATASIA\";s:3:\"ttd\";s:9:\"angga.png\";}i:1;a:3:{s:2:\"ta\";s:9:\"2020/2021\";s:5:\"wakel\";s:12:\"GRACE DEBORA\";s:3:\"ttd\";s:9:\"grace.png\";}i:2;a:3:{s:2:\"ta\";s:9:\"2016/2017\";s:5:\"wakel\";s:15:\"ANGGI ANASTASIA\";s:3:\"ttd\";s:8:\"imas.png\";}i:3;a:3:{s:2:\"ta\";s:9:\"2017/2018\";s:5:\"wakel\";s:15:\"ANGGI ANASTASIA\";s:3:\"ttd\";s:8:\"imas.png\";}i:4;a:3:{s:2:\"ta\";s:9:\"2018/2019\";s:5:\"wakel\";s:15:\"ANGGI ANASTASIA\";s:3:\"ttd\";s:8:\"imas.png\";}}', 'a:2:{i:0;a:2:{s:4:\"hari\";s:6:\"Selasa\";s:4:\"data\";a:3:{i:0;a:2:{s:5:\"mapel\";s:10:\"Matematika\";s:4:\"tipe\";s:2:\"Vc\";}i:1;a:2:{s:5:\"mapel\";s:16:\"Bahasa Indonesia\";s:4:\"tipe\";s:2:\"Vc\";}i:2;a:2:{s:5:\"mapel\";s:26:\"Pendidikan Kewarganegaraan\";s:4:\"tipe\";s:2:\"Vc\";}}}i:1;a:2:{s:4:\"hari\";s:5:\"Kamis\";s:4:\"data\";a:2:{i:0;a:2:{s:5:\"mapel\";s:21:\"Ilmu Pengetahuan Alam\";s:4:\"tipe\";s:2:\"Vc\";}i:1;a:2:{s:5:\"mapel\";s:23:\"Ilmu Pengetahuan Sosial\";s:4:\"tipe\";s:2:\"Vc\";}}}}', 'anggi.png'), (7, 'Kelas VII', 'a:5:{i:0;a:3:{s:2:\"ta\";s:9:\"2019/2020\";s:5:\"wakel\";s:16:\"NISRINA AGUSTAMA\";s:3:\"ttd\";s:8:\"anis.png\";}i:1;a:3:{s:2:\"ta\";s:9:\"2020/2021\";s:5:\"wakel\";s:14:\"ANGGI ANATASIA\";s:3:\"ttd\";s:9:\"anggi.png\";}i:2;a:3:{s:2:\"ta\";s:9:\"2016/2017\";s:5:\"wakel\";s:16:\"NISRINA AGUSTAMA\";s:3:\"ttd\";s:8:\"anis.png\";}i:3;a:3:{s:2:\"ta\";s:9:\"2017/2018\";s:5:\"wakel\";s:16:\"NISRINA AGUSTAMA\";s:3:\"ttd\";s:8:\"anis.png\";}i:4;a:3:{s:2:\"ta\";s:9:\"2018/2019\";s:5:\"wakel\";s:16:\"NISRINA AGUSTAMA\";s:3:\"ttd\";s:8:\"anis.png\";}}', 'a:5:{i:0;a:2:{s:4:\"hari\";s:5:\"Senin\";s:4:\"data\";a:2:{i:0;a:2:{s:5:\"mapel\";s:26:\"Pendidikan Kewarganegaraan\";s:4:\"tipe\";s:2:\"Kc\";}i:1;a:2:{s:5:\"mapel\";s:16:\"Bahasa Indonesia\";s:4:\"tipe\";s:2:\"Kc\";}}}i:1;a:2:{s:4:\"hari\";s:6:\"Selasa\";s:4:\"data\";a:4:{i:0;a:2:{s:5:\"mapel\";s:10:\"Matematika\";s:4:\"tipe\";s:2:\"Vc\";}i:1;a:2:{s:5:\"mapel\";s:16:\"Bahasa Indonesia\";s:4:\"tipe\";s:2:\"Vc\";}i:2;a:2:{s:5:\"mapel\";s:14:\"Bahasa Inggris\";s:4:\"tipe\";s:2:\"Vc\";}i:3;a:2:{s:5:\"mapel\";s:26:\"Pendidikan Kewarganegaraan\";s:4:\"tipe\";s:2:\"Vc\";}}}i:2;a:2:{s:4:\"hari\";s:4:\"Rabu\";s:4:\"data\";a:2:{i:0;a:2:{s:5:\"mapel\";s:21:\"Ilmu Pengetahuan Alam\";s:4:\"tipe\";s:2:\"Kc\";}i:1;a:2:{s:5:\"mapel\";s:23:\"Ilmu Pengetahuan Sosial\";s:4:\"tipe\";s:2:\"Kc\";}}}i:3;a:2:{s:4:\"hari\";s:5:\"Kamis\";s:4:\"data\";a:2:{i:0;a:2:{s:5:\"mapel\";s:21:\"Ilmu Pengetahuan Alam\";s:4:\"tipe\";s:2:\"Vc\";}i:1;a:2:{s:5:\"mapel\";s:23:\"Ilmu Pengetahuan Sosial\";s:4:\"tipe\";s:2:\"Vc\";}}}i:4;a:2:{s:4:\"hari\";s:5:\"Jumat\";s:4:\"data\";a:2:{i:0;a:2:{s:5:\"mapel\";s:10:\"Matematika\";s:4:\"tipe\";s:2:\"Kc\";}i:1;a:2:{s:5:\"mapel\";s:14:\"Bahasa Inggris\";s:4:\"tipe\";s:2:\"Kc\";}}}}', 'anis.png'), (8, 'Kelas VIII', 'a:5:{i:0;a:3:{s:2:\"ta\";s:9:\"2019/2020\";s:5:\"wakel\";s:12:\"GRACE DEBORA\";s:3:\"ttd\";s:9:\"grace.png\";}i:1;a:3:{s:2:\"ta\";s:9:\"2020/2021\";s:5:\"wakel\";s:13:\"IMAS INDRIANI\";s:3:\"ttd\";s:8:\"imas.png\";}i:2;a:3:{s:2:\"ta\";s:9:\"2016/2017\";s:5:\"wakel\";s:12:\"GRACE DEBORA\";s:3:\"ttd\";s:9:\"grace.png\";}i:3;a:3:{s:2:\"ta\";s:9:\"2017/2018\";s:5:\"wakel\";s:12:\"GRACE DEBORA\";s:3:\"ttd\";s:9:\"grace.png\";}i:4;a:3:{s:2:\"ta\";s:9:\"2018/2019\";s:5:\"wakel\";s:12:\"GRACE DEBORA\";s:3:\"ttd\";s:9:\"grace.png\";}}', 'a:5:{i:0;a:2:{s:4:\"hari\";s:5:\"Senin\";s:4:\"data\";a:2:{i:0;a:2:{s:5:\"mapel\";s:26:\"Pendidikan Kewarganegaraan\";s:4:\"tipe\";s:2:\"Kc\";}i:1;a:2:{s:5:\"mapel\";s:16:\"Bahasa Indonesia\";s:4:\"tipe\";s:2:\"Kc\";}}}i:1;a:2:{s:4:\"hari\";s:6:\"Selasa\";s:4:\"data\";a:4:{i:0;a:2:{s:5:\"mapel\";s:10:\"Matematika\";s:4:\"tipe\";s:2:\"Vc\";}i:1;a:2:{s:5:\"mapel\";s:16:\"Bahasa Indonesia\";s:4:\"tipe\";s:2:\"Vc\";}i:2;a:2:{s:5:\"mapel\";s:14:\"Bahasa Inggris\";s:4:\"tipe\";s:2:\"Vc\";}i:3;a:2:{s:5:\"mapel\";s:26:\"Pendidikan Kewarganegaraan\";s:4:\"tipe\";s:2:\"Vc\";}}}i:2;a:2:{s:4:\"hari\";s:4:\"Rabu\";s:4:\"data\";a:2:{i:0;a:2:{s:5:\"mapel\";s:21:\"Ilmu Pengetahuan Alam\";s:4:\"tipe\";s:2:\"Kc\";}i:1;a:2:{s:5:\"mapel\";s:23:\"Ilmu Pengetahuan Sosial\";s:4:\"tipe\";s:2:\"Kc\";}}}i:3;a:2:{s:4:\"hari\";s:5:\"Kamis\";s:4:\"data\";a:2:{i:0;a:2:{s:5:\"mapel\";s:21:\"Ilmu Pengetahuan Alam\";s:4:\"tipe\";s:2:\"Vc\";}i:1;a:2:{s:5:\"mapel\";s:23:\"Ilmu Pengetahuan Sosial\";s:4:\"tipe\";s:2:\"Vc\";}}}i:4;a:2:{s:4:\"hari\";s:5:\"Jumat\";s:4:\"data\";a:2:{i:0;a:2:{s:5:\"mapel\";s:10:\"Matematika\";s:4:\"tipe\";s:2:\"Kc\";}i:1;a:2:{s:5:\"mapel\";s:14:\"Bahasa Inggris\";s:4:\"tipe\";s:2:\"Kc\";}}}}', 'grace.png'), (9, 'Kelas IX', 'a:5:{i:0;a:3:{s:2:\"ta\";s:9:\"2019/2020\";s:5:\"wakel\";s:14:\"WILLY SUMANTRI\";s:3:\"ttd\";s:9:\"willy.png\";}i:1;a:3:{s:2:\"ta\";s:9:\"2020/2021\";s:5:\"wakel\";s:18:\"RAY RIZKI DWIPUTRA\";s:3:\"ttd\";s:7:\"rey.png\";}i:2;a:3:{s:2:\"ta\";s:9:\"2016/2017\";s:5:\"wakel\";s:14:\"WILLY SUMANTRI\";s:3:\"ttd\";s:9:\"willy.png\";}i:3;a:3:{s:2:\"ta\";s:9:\"2017/2018\";s:5:\"wakel\";s:14:\"WILLY SUMANTRI\";s:3:\"ttd\";s:9:\"willy.png\";}i:4;a:3:{s:2:\"ta\";s:9:\"2018/2019\";s:5:\"wakel\";s:14:\"WILLY SUMANTRI\";s:3:\"ttd\";s:9:\"willy.png\";}}', 'a:5:{i:0;a:2:{s:4:\"hari\";s:5:\"Senin\";s:4:\"data\";a:2:{i:0;a:2:{s:5:\"mapel\";s:16:\"Bahasa Indonesia\";s:4:\"tipe\";s:2:\"Kc\";}i:1;a:2:{s:5:\"mapel\";s:26:\"Pendidikan Kewarganegaraan\";s:4:\"tipe\";s:2:\"Kc\";}}}i:1;a:2:{s:4:\"hari\";s:6:\"Selasa\";s:4:\"data\";a:4:{i:0;a:2:{s:5:\"mapel\";s:10:\"Matematika\";s:4:\"tipe\";s:2:\"Vc\";}i:1;a:2:{s:5:\"mapel\";s:16:\"Bahasa Indonesia\";s:4:\"tipe\";s:2:\"Vc\";}i:2;a:2:{s:5:\"mapel\";s:14:\"Bahasa Inggris\";s:4:\"tipe\";s:2:\"Vc\";}i:3;a:2:{s:5:\"mapel\";s:26:\"Pendidikan Kewarganegaraan\";s:4:\"tipe\";s:2:\"Vc\";}}}i:2;a:2:{s:4:\"hari\";s:4:\"Rabu\";s:4:\"data\";a:2:{i:0;a:2:{s:5:\"mapel\";s:21:\"Ilmu Pengetahuan Alam\";s:4:\"tipe\";s:2:\"Kc\";}i:1;a:2:{s:5:\"mapel\";s:23:\"Ilmu Pengetahuan Sosial\";s:4:\"tipe\";s:2:\"Kc\";}}}i:3;a:2:{s:4:\"hari\";s:5:\"Kamis\";s:4:\"data\";a:2:{i:0;a:2:{s:5:\"mapel\";s:21:\"Ilmu Pengetahuan Alam\";s:4:\"tipe\";s:2:\"Vc\";}i:1;a:2:{s:5:\"mapel\";s:23:\"Ilmu Pengetahuan Sosial\";s:4:\"tipe\";s:2:\"Vc\";}}}i:4;a:2:{s:4:\"hari\";s:5:\"Jumat\";s:4:\"data\";a:2:{i:0;a:2:{s:5:\"mapel\";s:14:\"Bahasa Inggris\";s:4:\"tipe\";s:2:\"Kc\";}i:1;a:2:{s:5:\"mapel\";s:10:\"Matematika\";s:4:\"tipe\";s:2:\"Kc\";}}}}', 'willy.png'), (10, 'Kelas X IPA', 'a:5:{i:0;a:3:{s:2:\"ta\";s:9:\"2019/2020\";s:5:\"wakel\";s:19:\"ABDUL RACHMAT SOLEH\";s:3:\"ttd\";s:9:\"abdul.png\";}i:1;a:3:{s:2:\"ta\";s:9:\"2020/2021\";s:5:\"wakel\";s:19:\"ABDUL RACHMAT SOLEH\";s:3:\"ttd\";s:9:\"abdul.png\";}i:2;a:3:{s:2:\"ta\";s:9:\"2016/2017\";s:5:\"wakel\";s:19:\"ABDUL RACHMAT SOLEH\";s:3:\"ttd\";s:9:\"abdul.png\";}i:3;a:3:{s:2:\"ta\";s:9:\"2017/2018\";s:5:\"wakel\";s:19:\"ABDUL RACHMAT SOLEH\";s:3:\"ttd\";s:9:\"abdul.png\";}i:4;a:3:{s:2:\"ta\";s:9:\"2018/2019\";s:5:\"wakel\";s:19:\"ABDUL RACHMAT SOLEH\";s:3:\"ttd\";s:9:\"abdul.png\";}}', 'a:5:{i:0;a:2:{s:4:\"hari\";s:5:\"Senin\";s:4:\"data\";a:2:{i:0;a:2:{s:5:\"mapel\";s:10:\"Matematika\";s:4:\"tipe\";s:2:\"Kc\";}i:1;a:2:{s:5:\"mapel\";s:26:\"Pendidikan Kewarganegaraan\";s:4:\"tipe\";s:2:\"Kc\";}}}i:1;a:2:{s:4:\"hari\";s:6:\"Selasa\";s:4:\"data\";a:3:{i:0;a:2:{s:5:\"mapel\";s:26:\"Pendidikan Kewarganegaraan\";s:4:\"tipe\";s:2:\"Vc\";}i:1;a:2:{s:5:\"mapel\";s:16:\"Bahasa Indonesia\";s:4:\"tipe\";s:2:\"Vc\";}i:2;a:2:{s:5:\"mapel\";s:14:\"Bahasa Inggris\";s:4:\"tipe\";s:2:\"Vc\";}}}i:2;a:2:{s:4:\"hari\";s:4:\"Rabu\";s:4:\"data\";a:2:{i:0;a:2:{s:5:\"mapel\";s:7:\"Biologi\";s:4:\"tipe\";s:2:\"Kc\";}i:1;a:2:{s:5:\"mapel\";s:14:\"Bahasa Inggris\";s:4:\"tipe\";s:2:\"Kc\";}}}i:3;a:2:{s:4:\"hari\";s:5:\"Kamis\";s:4:\"data\";a:3:{i:0;a:2:{s:5:\"mapel\";s:6:\"Fisika\";s:4:\"tipe\";s:2:\"Vc\";}i:1;a:2:{s:5:\"mapel\";s:10:\"Matematika\";s:4:\"tipe\";s:2:\"Vc\";}i:2;a:2:{s:5:\"mapel\";s:7:\"Biologi\";s:4:\"tipe\";s:2:\"Vc\";}}}i:4;a:2:{s:4:\"hari\";s:5:\"Jumat\";s:4:\"data\";a:2:{i:0;a:2:{s:5:\"mapel\";s:6:\"Fisika\";s:4:\"tipe\";s:2:\"Kc\";}i:1;a:2:{s:5:\"mapel\";s:16:\"Bahasa Indonesia\";s:4:\"tipe\";s:2:\"Kc\";}}}}', 'abdul.png'), (11, 'Kelas X IPS', 'a:5:{i:0;a:3:{s:2:\"ta\";s:9:\"2019/2020\";s:5:\"wakel\";s:13:\"MERIK NUGROHO\";s:3:\"ttd\";s:9:\"merik.png\";}i:1;a:3:{s:2:\"ta\";s:9:\"2020/2021\";s:5:\"wakel\";s:19:\"ABDUL RACHMAT SOLEH\";s:3:\"ttd\";s:9:\"abdul.png\";}i:2;a:3:{s:2:\"ta\";s:9:\"2016/2017\";s:5:\"wakel\";s:13:\"MERIK NUGROHO\";s:3:\"ttd\";s:9:\"merik.png\";}i:3;a:3:{s:2:\"ta\";s:9:\"2017/2018\";s:5:\"wakel\";s:13:\"MERIK NUGROHO\";s:3:\"ttd\";s:9:\"merik.png\";}i:4;a:3:{s:2:\"ta\";s:9:\"2018/2019\";s:5:\"wakel\";s:13:\"MERIK NUGROHO\";s:3:\"ttd\";s:9:\"merik.png\";}}', 'a:5:{i:0;a:2:{s:4:\"hari\";s:5:\"Senin\";s:4:\"data\";a:2:{i:0;a:2:{s:5:\"mapel\";s:16:\"Bahasa Indonesia\";s:4:\"tipe\";s:2:\"Kc\";}i:1;a:2:{s:5:\"mapel\";s:14:\"Bahasa Inggris\";s:4:\"tipe\";s:2:\"Kc\";}}}i:1;a:2:{s:4:\"hari\";s:6:\"Selasa\";s:4:\"data\";a:3:{i:0;a:2:{s:5:\"mapel\";s:16:\"Bahasa Indonesia\";s:4:\"tipe\";s:2:\"Vc\";}i:1;a:2:{s:5:\"mapel\";s:14:\"Bahasa Inggris\";s:4:\"tipe\";s:2:\"Vc\";}i:2;a:2:{s:5:\"mapel\";s:7:\"Ekonomi\";s:4:\"tipe\";s:2:\"Vc\";}}}i:2;a:2:{s:4:\"hari\";s:4:\"Rabu\";s:4:\"data\";a:2:{i:0;a:2:{s:5:\"mapel\";s:10:\"Matematika\";s:4:\"tipe\";s:2:\"Kc\";}i:1;a:2:{s:5:\"mapel\";s:7:\"Ekonomi\";s:4:\"tipe\";s:2:\"Kc\";}}}i:3;a:2:{s:4:\"hari\";s:5:\"Kamis\";s:4:\"data\";a:2:{i:0;a:2:{s:5:\"mapel\";s:10:\"Matematika\";s:4:\"tipe\";s:2:\"Vc\";}i:1;a:2:{s:5:\"mapel\";s:8:\"Geografi\";s:4:\"tipe\";s:2:\"Vc\";}}}i:4;a:2:{s:4:\"hari\";s:5:\"Jumat\";s:4:\"data\";a:3:{i:0;a:2:{s:5:\"mapel\";s:26:\"Pendidikan Kewarganegaraan\";s:4:\"tipe\";s:2:\"Kc\";}i:1;a:2:{s:5:\"mapel\";s:9:\"Sosiologi\";s:4:\"tipe\";s:2:\"Kc\";}i:2;a:2:{s:5:\"mapel\";s:8:\"Geografi\";s:4:\"tipe\";s:2:\"Kc\";}}}}', 'merick.png'), (12, 'Kelas XI IPA', 'a:5:{i:0;a:3:{s:2:\"ta\";s:9:\"2019/2020\";s:5:\"wakel\";s:15:\"GALIH SUPRASTYO\";s:3:\"ttd\";s:9:\"galih.png\";}i:1;a:3:{s:2:\"ta\";s:9:\"2020/2021\";s:5:\"wakel\";s:15:\"GALIH SUPRASTYO\";s:3:\"ttd\";s:9:\"galih.png\";}i:2;a:3:{s:2:\"ta\";s:9:\"2016/2017\";s:5:\"wakel\";s:15:\"GALIH SUPRASTYO\";s:3:\"ttd\";s:9:\"galih.png\";}i:3;a:3:{s:2:\"ta\";s:9:\"2017/2018\";s:5:\"wakel\";s:15:\"GALIH SUPRASTYO\";s:3:\"ttd\";s:9:\"galih.png\";}i:4;a:3:{s:2:\"ta\";s:9:\"2018/2019\";s:5:\"wakel\";s:15:\"GALIH SUPRASTYO\";s:3:\"ttd\";s:9:\"galih.png\";}}', 'a:5:{i:0;a:2:{s:4:\"hari\";s:5:\"Senin\";s:4:\"data\";a:2:{i:0;a:2:{s:5:\"mapel\";s:10:\"Matematika\";s:4:\"tipe\";s:2:\"Kc\";}i:1;a:2:{s:5:\"mapel\";s:26:\"Pendidikan Kewarganegaraan\";s:4:\"tipe\";s:2:\"Kc\";}}}i:1;a:2:{s:4:\"hari\";s:6:\"Selasa\";s:4:\"data\";a:3:{i:0;a:2:{s:5:\"mapel\";s:26:\"Pendidikan Kewarganegaraan\";s:4:\"tipe\";s:2:\"Vc\";}i:1;a:2:{s:5:\"mapel\";s:16:\"Bahasa Indonesia\";s:4:\"tipe\";s:2:\"Vc\";}i:2;a:2:{s:5:\"mapel\";s:14:\"Bahasa Inggris\";s:4:\"tipe\";s:2:\"Vc\";}}}i:2;a:2:{s:4:\"hari\";s:4:\"Rabu\";s:4:\"data\";a:2:{i:0;a:2:{s:5:\"mapel\";s:7:\"Biologi\";s:4:\"tipe\";s:2:\"Kc\";}i:1;a:2:{s:5:\"mapel\";s:14:\"Bahasa Inggris\";s:4:\"tipe\";s:2:\"Kc\";}}}i:3;a:2:{s:4:\"hari\";s:5:\"Kamis\";s:4:\"data\";a:3:{i:0;a:2:{s:5:\"mapel\";s:6:\"Fisika\";s:4:\"tipe\";s:2:\"Vc\";}i:1;a:2:{s:5:\"mapel\";s:10:\"Matematika\";s:4:\"tipe\";s:2:\"Vc\";}i:2;a:2:{s:5:\"mapel\";s:7:\"Biologi\";s:4:\"tipe\";s:2:\"Vc\";}}}i:4;a:2:{s:4:\"hari\";s:5:\"Jumat\";s:4:\"data\";a:2:{i:0;a:2:{s:5:\"mapel\";s:6:\"Fisika\";s:4:\"tipe\";s:2:\"Kc\";}i:1;a:2:{s:5:\"mapel\";s:16:\"Bahasa Indonesia\";s:4:\"tipe\";s:2:\"Kc\";}}}}', 'galih.png'), (13, 'Kelas XI IPS', 'a:5:{i:0;a:3:{s:2:\"ta\";s:9:\"2019/2020\";s:5:\"wakel\";s:11:\"ALVIN PUTRA\";s:3:\"ttd\";s:9:\"alvin.png\";}i:1;a:3:{s:2:\"ta\";s:9:\"2020/2021\";s:5:\"wakel\";s:15:\"GALIH SUPRASTYO\";s:3:\"ttd\";s:9:\"galih.png\";}i:2;a:3:{s:2:\"ta\";s:9:\"2016/2017\";s:5:\"wakel\";s:11:\"ALVIN PUTRA\";s:3:\"ttd\";s:9:\"alvin.png\";}i:3;a:3:{s:2:\"ta\";s:9:\"2017/2018\";s:5:\"wakel\";s:11:\"ALVIN PUTRA\";s:3:\"ttd\";s:9:\"alvin.png\";}i:4;a:3:{s:2:\"ta\";s:9:\"2018/2019\";s:5:\"wakel\";s:11:\"ALVIN PUTRA\";s:3:\"ttd\";s:9:\"alvin.png\";}}', 'a:5:{i:0;a:2:{s:4:\"hari\";s:5:\"Senin\";s:4:\"data\";a:2:{i:0;a:2:{s:5:\"mapel\";s:16:\"Bahasa Indonesia\";s:4:\"tipe\";s:2:\"Kc\";}i:1;a:2:{s:5:\"mapel\";s:14:\"Bahasa Inggris\";s:4:\"tipe\";s:2:\"Kc\";}}}i:1;a:2:{s:4:\"hari\";s:6:\"Selasa\";s:4:\"data\";a:3:{i:0;a:2:{s:5:\"mapel\";s:16:\"Bahasa Indonesia\";s:4:\"tipe\";s:2:\"Vc\";}i:1;a:2:{s:5:\"mapel\";s:14:\"Bahasa Inggris\";s:4:\"tipe\";s:2:\"Vc\";}i:2;a:2:{s:5:\"mapel\";s:7:\"Ekonomi\";s:4:\"tipe\";s:2:\"Vc\";}}}i:2;a:2:{s:4:\"hari\";s:4:\"Rabu\";s:4:\"data\";a:2:{i:0;a:2:{s:5:\"mapel\";s:10:\"Matematika\";s:4:\"tipe\";s:2:\"Kc\";}i:1;a:2:{s:5:\"mapel\";s:7:\"Ekonomi\";s:4:\"tipe\";s:2:\"Kc\";}}}i:3;a:2:{s:4:\"hari\";s:5:\"Kamis\";s:4:\"data\";a:2:{i:0;a:2:{s:5:\"mapel\";s:10:\"Matematika\";s:4:\"tipe\";s:2:\"Vc\";}i:1;a:2:{s:5:\"mapel\";s:8:\"Geografi\";s:4:\"tipe\";s:2:\"Vc\";}}}i:4;a:2:{s:4:\"hari\";s:5:\"Jumat\";s:4:\"data\";a:3:{i:0;a:2:{s:5:\"mapel\";s:26:\"Pendidikan Kewarganegaraan\";s:4:\"tipe\";s:2:\"Kc\";}i:1;a:2:{s:5:\"mapel\";s:9:\"Sosiologi\";s:4:\"tipe\";s:2:\"Kc\";}i:2;a:2:{s:5:\"mapel\";s:8:\"Geografi\";s:4:\"tipe\";s:2:\"Kc\";}}}}', 'alvin.png'), (14, 'Kelas XII IPA', 'a:5:{i:0;a:3:{s:2:\"ta\";s:9:\"2019/2020\";s:5:\"wakel\";s:19:\"BAMBANG EKO PRAKOSO\";s:3:\"ttd\";s:7:\"bep.png\";}i:1;a:3:{s:2:\"ta\";s:9:\"2020/2021\";s:5:\"wakel\";s:14:\"WILLY SUMANTRI\";s:3:\"ttd\";s:9:\"willy.png\";}i:2;a:3:{s:2:\"ta\";s:9:\"2016/2017\";s:5:\"wakel\";s:19:\"BAMBANG EKO PRAKOSO\";s:3:\"ttd\";s:7:\"bep.png\";}i:3;a:3:{s:2:\"ta\";s:9:\"2017/2018\";s:5:\"wakel\";s:19:\"BAMBANG EKO PRAKOSO\";s:3:\"ttd\";s:7:\"bep.png\";}i:4;a:3:{s:2:\"ta\";s:9:\"2018/2019\";s:5:\"wakel\";s:19:\"BAMBANG EKO PRAKOSO\";s:3:\"ttd\";s:7:\"bep.png\";}}', 'a:5:{i:0;a:2:{s:4:\"hari\";s:5:\"Senin\";s:4:\"data\";a:2:{i:0;a:2:{s:5:\"mapel\";s:26:\"Pendidikan Kewarganegaraan\";s:4:\"tipe\";s:2:\"Kc\";}i:1;a:2:{s:5:\"mapel\";s:10:\"Matematika\";s:4:\"tipe\";s:2:\"Kc\";}}}i:1;a:2:{s:4:\"hari\";s:6:\"Selasa\";s:4:\"data\";a:3:{i:0;a:2:{s:5:\"mapel\";s:26:\"Pendidikan Kewarganegaraan\";s:4:\"tipe\";s:2:\"Vc\";}i:1;a:2:{s:5:\"mapel\";s:16:\"Bahasa Indonesia\";s:4:\"tipe\";s:2:\"Vc\";}i:2;a:2:{s:5:\"mapel\";s:14:\"Bahasa Inggris\";s:4:\"tipe\";s:2:\"Vc\";}}}i:2;a:2:{s:4:\"hari\";s:4:\"Rabu\";s:4:\"data\";a:2:{i:0;a:2:{s:5:\"mapel\";s:14:\"Bahasa Inggris\";s:4:\"tipe\";s:2:\"Kc\";}i:1;a:2:{s:5:\"mapel\";s:7:\"Biologi\";s:4:\"tipe\";s:2:\"Kc\";}}}i:3;a:2:{s:4:\"hari\";s:5:\"Kamis\";s:4:\"data\";a:3:{i:0;a:2:{s:5:\"mapel\";s:6:\"Fisika\";s:4:\"tipe\";s:2:\"Vc\";}i:1;a:2:{s:5:\"mapel\";s:10:\"Matematika\";s:4:\"tipe\";s:2:\"Vc\";}i:2;a:2:{s:5:\"mapel\";s:7:\"Biologi\";s:4:\"tipe\";s:2:\"Vc\";}}}i:4;a:2:{s:4:\"hari\";s:5:\"Jumat\";s:4:\"data\";a:2:{i:0;a:2:{s:5:\"mapel\";s:16:\"Bahasa Indonesia\";s:4:\"tipe\";s:2:\"Kc\";}i:1;a:2:{s:5:\"mapel\";s:6:\"Fisika\";s:4:\"tipe\";s:2:\"Kc\";}}}}', 'bep.png'), (15, 'Kelas XII IPS', 'a:5:{i:0;a:3:{s:2:\"ta\";s:9:\"2019/2020\";s:5:\"wakel\";s:18:\"RAY RIZKY DWIPUTRA\";s:3:\"ttd\";s:7:\"rey.png\";}i:1;a:3:{s:2:\"ta\";s:9:\"2020/2021\";s:5:\"wakel\";s:14:\"WILLY SUMANTRI\";s:3:\"ttd\";s:9:\"willy.png\";}i:2;a:3:{s:2:\"ta\";s:9:\"2016/2017\";s:5:\"wakel\";s:18:\"RAY RIZKY DWIPUTRA\";s:3:\"ttd\";s:7:\"rey.png\";}i:3;a:3:{s:2:\"ta\";s:9:\"2017/2018\";s:5:\"wakel\";s:18:\"RAY RIZKY DWIPUTRA\";s:3:\"ttd\";s:7:\"rey.png\";}i:4;a:3:{s:2:\"ta\";s:9:\"2018/2019\";s:5:\"wakel\";s:18:\"RAY RIZKY DWIPUTRA\";s:3:\"ttd\";s:7:\"rey.png\";}}', 'a:5:{i:0;a:2:{s:4:\"hari\";s:5:\"Senin\";s:4:\"data\";a:2:{i:0;a:2:{s:5:\"mapel\";s:14:\"Bahasa Inggris\";s:4:\"tipe\";s:2:\"Kc\";}i:1;a:2:{s:5:\"mapel\";s:16:\"Bahasa Indonesia\";s:4:\"tipe\";s:2:\"Kc\";}}}i:1;a:2:{s:4:\"hari\";s:6:\"Selasa\";s:4:\"data\";a:3:{i:0;a:2:{s:5:\"mapel\";s:16:\"Bahasa Indonesia\";s:4:\"tipe\";s:2:\"Vc\";}i:1;a:2:{s:5:\"mapel\";s:14:\"Bahasa Inggris\";s:4:\"tipe\";s:2:\"Vc\";}i:2;a:2:{s:5:\"mapel\";s:7:\"Ekonomi\";s:4:\"tipe\";s:2:\"Vc\";}}}i:2;a:2:{s:4:\"hari\";s:4:\"Rabu\";s:4:\"data\";a:2:{i:0;a:2:{s:5:\"mapel\";s:7:\"Ekonomi\";s:4:\"tipe\";s:2:\"Kc\";}i:1;a:2:{s:5:\"mapel\";s:10:\"Matematika\";s:4:\"tipe\";s:2:\"Kc\";}}}i:3;a:2:{s:4:\"hari\";s:5:\"Kamis\";s:4:\"data\";a:2:{i:0;a:2:{s:5:\"mapel\";s:10:\"Matematika\";s:4:\"tipe\";s:2:\"Vc\";}i:1;a:2:{s:5:\"mapel\";s:8:\"Geografi\";s:4:\"tipe\";s:2:\"Vc\";}}}i:4;a:2:{s:4:\"hari\";s:5:\"Jumat\";s:4:\"data\";a:3:{i:0;a:2:{s:5:\"mapel\";s:9:\"Sosiologi\";s:4:\"tipe\";s:2:\"Kc\";}i:1;a:2:{s:5:\"mapel\";s:8:\"Geografi\";s:4:\"tipe\";s:2:\"Kc\";}i:2;a:2:{s:5:\"mapel\";s:26:\"Pendidikan Kewarganegaraan\";s:4:\"tipe\";s:2:\"Kc\";}}}}', 'rey.png'), (16, 'Alumni SD', NULL, NULL, NULL), (17, 'Alumni SMP', NULL, NULL, NULL), (18, 'Alumni SMA', NULL, NULL, NULL); -- -------------------------------------------------------- -- -- Table structure for table `tbl_log_soal` -- CREATE TABLE `tbl_log_soal` ( `id_log` bigint(25) NOT NULL, `nis_user` bigint(25) NOT NULL, `kd_modul` bigint(25) NOT NULL, `id_log_soal` text CHARACTER SET utf8 DEFAULT NULL, `log_jawaban_user` text CHARACTER SET utf8 DEFAULT NULL, `time_start` datetime DEFAULT NULL, `time_end` datetime DEFAULT NULL, `batas_waktu_tes` datetime DEFAULT NULL, `nilai` double(8,2) DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1; -- -- Dumping data for table `tbl_log_soal` -- INSERT INTO `tbl_log_soal` (`id_log`, `nis_user`, `kd_modul`, `id_log_soal`, `log_jawaban_user`, `time_start`, `time_end`, `batas_waktu_tes`, `nilai`) VALUES (1, 2019638, 1, 'a:6:{i:0;i:0;i:1;i:1;i:2;i:2;i:3;i:3;i:4;i:4;i:5;i:5;}', NULL, '2021-05-15 23:14:57', NULL, '2021-05-15 23:44:57', NULL), (2, 2019552, 1, 'a:3:{i:0;i:1;i:1;i:3;i:2;i:4;}', NULL, '2021-05-18 10:18:12', NULL, '2021-05-18 10:48:12', NULL), (3, 2019558, 1, 'a:3:{i:0;i:1;i:1;i:3;i:2;i:4;}', NULL, '2021-05-22 18:14:06', NULL, '2021-05-22 18:44:06', NULL), (4, 2019565, 1, 'a:3:{i:0;i:1;i:1;i:2;i:2;i:3;}', NULL, '2021-05-22 21:13:39', NULL, '2021-05-22 21:43:39', NULL); -- -------------------------------------------------------- -- -- Table structure for table `tbl_mapel` -- CREATE TABLE `tbl_mapel` ( `kd_mapel` int(11) NOT NULL, `nm_mapel` varchar(100) DEFAULT NULL, `status_mapel` int(1) NOT NULL DEFAULT 1, `kelompok` varchar(1) NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1; -- -- Dumping data for table `tbl_mapel` -- INSERT INTO `tbl_mapel` (`kd_mapel`, `nm_mapel`, `status_mapel`, `kelompok`) VALUES (1, 'Pendidikan Agama', 1, 'A'), (2, 'Pendidikan Kewarganegaraan', 1, 'A'), (3, 'Bahasa Indonesia', 1, 'A'), (4, 'Matematika', 1, 'A'), (5, 'Ilmu Pengetahuan Alam', 1, 'A'), (6, 'Seni dan Budaya', 1, 'B'), (7, 'Pendidikan Jasmani & Kesehatan', 1, 'B'), (8, 'Fisika', 1, 'C'), (9, 'Kimia', 1, 'C'), (10, 'Biologi', 1, 'C'), (11, 'Ekonomi', 1, 'C'), (12, 'Geografi', 1, 'C'), (13, 'Sosiologi', 1, 'C'), (14, 'Prakarya/TIK', 1, 'B'), (15, 'Prakarya & Kewirausahaan', 1, 'B'), (16, 'Ilmu Pengetahuan Sosial', 1, 'A'), (17, 'Bahasa Inggris', 1, 'A'); -- -------------------------------------------------------- -- -- Table structure for table `tbl_modul` -- CREATE TABLE `tbl_modul` ( `id_modul` int(11) NOT NULL, `modul_pelajaran` int(11) NOT NULL, `modul_ub` int(11) NOT NULL, `waktu_pengerjaan` int(11) NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1; -- -- Dumping data for table `tbl_modul` -- INSERT INTO `tbl_modul` (`id_modul`, `modul_pelajaran`, `modul_ub`, `waktu_pengerjaan`) VALUES (1, 52, 1, 30), (2, 52, 2, 30), (3, 54, 1, 60), (4, 49, 1, 60); -- -------------------------------------------------------- -- -- Table structure for table `tbl_pelajaran` -- CREATE TABLE `tbl_pelajaran` ( `id_pelajaran` int(11) NOT NULL, `id_kelas` int(11) NOT NULL, `kd_mapel` int(11) NOT NULL, `kd_pengajar` int(11) DEFAULT NULL, `link_oc` varchar(255) DEFAULT NULL, `tgl_oc` date DEFAULT NULL, `time_start` time DEFAULT NULL, `time_end` time DEFAULT NULL, `aktifkan` tinyint(2) NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1; -- -- Dumping data for table `tbl_pelajaran` -- INSERT INTO `tbl_pelajaran` (`id_pelajaran`, `id_kelas`, `kd_mapel`, `kd_pengajar`, `link_oc`, `tgl_oc`, `time_start`, `time_end`, `aktifkan`) VALUES (12, 2, 1, NULL, '', NULL, NULL, NULL, 0), (13, 2, 2, NULL, '', NULL, NULL, NULL, 0), (14, 2, 3, NULL, '', NULL, NULL, NULL, 0), (15, 1, 4, NULL, '', NULL, NULL, NULL, 0), (17, 1, 6, NULL, '', NULL, NULL, NULL, 0), (18, 1, 7, NULL, '', NULL, NULL, NULL, 0), (20, 5, 2, NULL, '', NULL, NULL, NULL, 0), (21, 5, 1, NULL, '', NULL, NULL, NULL, 0), (22, 5, 3, NULL, '', NULL, NULL, NULL, 0), (23, 5, 4, NULL, '', NULL, NULL, NULL, 0), (24, 5, 5, NULL, '', NULL, NULL, NULL, 0), (25, 5, 6, NULL, '', NULL, NULL, NULL, 0), (26, 5, 7, NULL, '', NULL, NULL, NULL, 0), (27, 10, 1, NULL, '', NULL, NULL, NULL, 0), (29, 10, 3, NULL, '', NULL, NULL, NULL, 0), (30, 10, 4, NULL, '', NULL, NULL, NULL, 0), (32, 10, 6, NULL, '', NULL, NULL, NULL, 0), (33, 10, 7, NULL, '', NULL, NULL, NULL, 0), (34, 10, 8, NULL, '', NULL, NULL, NULL, 0), (35, 10, 2, NULL, '', NULL, NULL, NULL, 0), (36, 10, 9, NULL, '', NULL, NULL, NULL, 0), (37, 10, 10, NULL, '', NULL, NULL, NULL, 0), (40, 5, 16, NULL, '', NULL, NULL, NULL, 0), (43, 11, 1, 2, NULL, NULL, NULL, NULL, 0), (44, 11, 3, 1, NULL, NULL, NULL, NULL, 0), (45, 11, 2, 1, NULL, NULL, NULL, NULL, 0), (49, 11, 11, 1, NULL, NULL, NULL, NULL, 0), (52, 11, 4, 1, NULL, NULL, NULL, NULL, 0), (53, 11, 12, 1, NULL, NULL, NULL, NULL, 0), (54, 11, 13, 2, NULL, NULL, NULL, NULL, 0), (55, 11, 6, 2, NULL, NULL, NULL, NULL, 0), (57, 11, 7, 2, NULL, NULL, NULL, NULL, 0), (58, 11, 15, 2, NULL, NULL, NULL, NULL, 1), (60, 6, 1, NULL, '', NULL, NULL, NULL, 0), (63, 6, 2, NULL, '', NULL, NULL, NULL, 0), (64, 6, 3, NULL, '', NULL, NULL, NULL, 0), (65, 6, 4, NULL, '', NULL, NULL, NULL, 0), (66, 6, 5, NULL, '', NULL, NULL, NULL, 0), (67, 6, 16, NULL, '', NULL, NULL, NULL, 0), (68, 6, 6, NULL, '', NULL, NULL, NULL, 0), (69, 6, 7, NULL, '', NULL, NULL, NULL, 0), (70, 6, 14, NULL, '', NULL, NULL, NULL, 0), (71, 7, 1, NULL, '', NULL, NULL, NULL, 0), (73, 7, 3, NULL, '', NULL, NULL, NULL, 0), (74, 7, 2, NULL, '', NULL, NULL, NULL, 0), (75, 7, 4, NULL, '', NULL, NULL, NULL, 0), (76, 7, 5, NULL, '', NULL, NULL, NULL, 0), (77, 7, 16, NULL, '', NULL, NULL, NULL, 0), (78, 7, 17, NULL, '', NULL, NULL, NULL, 0), (79, 7, 6, NULL, '', NULL, NULL, NULL, 0), (80, 7, 7, NULL, '', NULL, NULL, NULL, 0), (81, 7, 14, NULL, '', NULL, NULL, NULL, 0), (83, 1, 16, NULL, '', NULL, NULL, NULL, 0), (85, 9, 1, NULL, '', NULL, NULL, NULL, 0), (95, 2, 4, NULL, '', NULL, NULL, NULL, 0), (101, 1, 14, NULL, '', NULL, NULL, NULL, 0), (102, 2, 5, 2, NULL, NULL, NULL, NULL, 0), (109, 2, 6, NULL, '', NULL, NULL, NULL, 0), (110, 2, 7, NULL, '', NULL, NULL, NULL, 0), (113, 2, 14, 2, NULL, NULL, NULL, NULL, 0), (115, 2, 16, NULL, '', NULL, NULL, NULL, 0), (116, 3, 1, NULL, '', NULL, NULL, NULL, 0), (118, 3, 2, NULL, '', NULL, NULL, NULL, 0), (119, 3, 3, NULL, '', NULL, NULL, NULL, 0), (120, 3, 4, NULL, '', NULL, NULL, NULL, 0), (121, 3, 5, NULL, '', NULL, NULL, NULL, 0), (122, 3, 6, NULL, '', NULL, NULL, NULL, 0), (123, 3, 7, NULL, '', NULL, NULL, NULL, 0), (124, 3, 14, NULL, '', NULL, NULL, NULL, 0), (125, 3, 16, NULL, '', NULL, NULL, NULL, 0), (126, 4, 1, NULL, '', NULL, NULL, NULL, 0), (127, 4, 2, NULL, '', NULL, NULL, NULL, 0), (128, 4, 3, NULL, '', NULL, NULL, NULL, 0), (129, 4, 4, NULL, '', NULL, NULL, NULL, 0), (130, 4, 5, NULL, '', NULL, NULL, NULL, 0), (131, 4, 6, NULL, '', NULL, NULL, NULL, 0), (132, 4, 7, NULL, '', NULL, NULL, NULL, 0), (133, 4, 14, NULL, '', NULL, NULL, NULL, 0), (134, 4, 16, NULL, '', NULL, NULL, NULL, 0), (136, 5, 14, NULL, '', NULL, NULL, NULL, 0), (137, 8, 1, NULL, '', NULL, NULL, NULL, 0), (138, 8, 2, NULL, '', NULL, NULL, NULL, 0), (139, 8, 3, NULL, '', NULL, NULL, NULL, 0), (140, 8, 4, NULL, '', NULL, NULL, NULL, 0), (141, 8, 5, NULL, '', NULL, NULL, NULL, 0), (143, 8, 6, NULL, '', NULL, NULL, NULL, 0), (144, 8, 7, NULL, '', NULL, NULL, NULL, 0), (145, 8, 14, NULL, '', NULL, NULL, NULL, 0), (146, 8, 16, NULL, '', NULL, NULL, NULL, 0), (147, 8, 17, NULL, '', NULL, NULL, NULL, 0), (148, 9, 3, NULL, '', NULL, NULL, NULL, 0), (149, 9, 2, NULL, '', NULL, NULL, NULL, 0), (152, 9, 5, NULL, '', NULL, NULL, NULL, 0), (153, 9, 4, NULL, '', NULL, NULL, NULL, 0), (154, 9, 6, NULL, '', NULL, NULL, NULL, 0), (155, 9, 7, NULL, '', NULL, NULL, NULL, 0), (156, 9, 14, NULL, '', NULL, NULL, NULL, 0), (157, 9, 16, NULL, '', NULL, NULL, NULL, 0), (158, 9, 17, NULL, '', NULL, NULL, NULL, 0), (159, 10, 17, NULL, '', NULL, NULL, NULL, 0), (160, 10, 15, NULL, '', NULL, NULL, NULL, 0), (161, 11, 17, NULL, '', NULL, NULL, NULL, 0), (162, 12, 1, NULL, '', NULL, NULL, NULL, 0), (163, 12, 2, NULL, '', NULL, NULL, NULL, 0), (164, 12, 3, NULL, '', NULL, NULL, NULL, 0), (165, 12, 4, NULL, '', NULL, NULL, NULL, 0), (166, 12, 6, NULL, '', NULL, NULL, NULL, 0), (167, 12, 7, NULL, '', NULL, NULL, NULL, 0), (168, 12, 8, NULL, '', NULL, NULL, NULL, 0), (169, 12, 9, NULL, '', NULL, NULL, NULL, 0), (170, 12, 10, NULL, '', NULL, NULL, NULL, 0), (171, 12, 15, NULL, '', NULL, NULL, NULL, 0), (172, 12, 17, NULL, '', NULL, NULL, NULL, 0), (173, 15, 1, NULL, '', NULL, NULL, NULL, 0), (174, 15, 2, NULL, '', NULL, NULL, NULL, 0), (175, 15, 3, NULL, '', NULL, NULL, NULL, 0), (176, 15, 4, NULL, '', NULL, NULL, NULL, 0), (177, 15, 6, NULL, '', NULL, NULL, NULL, 0), (178, 15, 7, NULL, '', NULL, NULL, NULL, 0), (181, 0, 0, NULL, '', NULL, NULL, NULL, 0), (182, 15, 11, NULL, '', NULL, NULL, NULL, 0), (183, 15, 12, NULL, '', NULL, NULL, NULL, 0), (184, 15, 13, NULL, '', NULL, NULL, NULL, 0), (185, 15, 15, NULL, '', NULL, NULL, NULL, 0), (186, 15, 17, NULL, '', NULL, NULL, NULL, 0), (187, 14, 1, NULL, '', NULL, NULL, NULL, 0), (188, 14, 2, NULL, '', NULL, NULL, NULL, 0), (189, 14, 3, NULL, '', NULL, NULL, NULL, 0), (190, 14, 4, NULL, '', NULL, NULL, NULL, 0), (191, 14, 6, NULL, '', NULL, NULL, NULL, 0), (192, 14, 7, NULL, '', NULL, NULL, NULL, 0), (193, 14, 8, NULL, '', NULL, NULL, NULL, 0), (194, 14, 9, NULL, '', NULL, NULL, NULL, 0), (195, 14, 10, NULL, '', NULL, NULL, NULL, 0), (196, 14, 14, NULL, '', NULL, NULL, NULL, 0), (197, 14, 17, NULL, '', NULL, NULL, NULL, 0), (198, 13, 1, NULL, '', NULL, NULL, NULL, 0), (199, 13, 2, NULL, '', NULL, NULL, NULL, 0), (200, 13, 3, NULL, '', NULL, NULL, NULL, 0), (201, 13, 4, NULL, '', NULL, NULL, NULL, 0), (202, 13, 6, NULL, '', NULL, NULL, NULL, 0), (203, 13, 7, NULL, '', NULL, NULL, NULL, 0), (204, 13, 11, NULL, '', NULL, NULL, NULL, 0), (205, 13, 12, NULL, '', NULL, NULL, NULL, 0), (206, 13, 13, NULL, '', NULL, NULL, NULL, 0), (207, 13, 17, NULL, '', NULL, NULL, NULL, 0), (209, 13, 15, NULL, '', NULL, NULL, NULL, 0); -- -------------------------------------------------------- -- -- Table structure for table `tbl_pengajar` -- CREATE TABLE `tbl_pengajar` ( `id_pengajar` int(11) NOT NULL, `nm_pengajar` varchar(100) NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1; -- -- Dumping data for table `tbl_pengajar` -- INSERT INTO `tbl_pengajar` (`id_pengajar`, `nm_pengajar`) VALUES (1, 'Imam Maulana Ibrahim S.Kom'), (2, 'Merik Nugroho S.Kom'); -- -------------------------------------------------------- -- -- Table structure for table `tbl_pengguna` -- CREATE TABLE `tbl_pengguna` ( `pengguna_id` int(255) NOT NULL, `pengguna_nama` varchar(50) DEFAULT NULL, `pengguna_username` varchar(30) DEFAULT NULL, `pengguna_password` varchar(35) DEFAULT NULL, `pengguna_status` int(11) NOT NULL, `pengguna_level` varchar(3) DEFAULT '2', `pengguna_register` timestamp NULL DEFAULT current_timestamp() ) ENGINE=InnoDB DEFAULT CHARSET=latin1; -- -- Dumping data for table `tbl_pengguna` -- INSERT INTO `tbl_pengguna` (`pengguna_id`, `pengguna_nama`, `pengguna_username`, `pengguna_password`, `pengguna_status`, `pengguna_level`, `pengguna_register`) VALUES (23, 'Adyakhansa Mustika Jagatwanata', '2019638', '648e1b9f4cb2e22a7274a76ea843123f', 1, '2', '2020-03-05 04:59:18'), (25, 'bilqis', 'bilqis', 'de7e54281033030ea78a0537ba1826e5', 1, '1', '2020-03-05 08:05:11'), (27, 'alvin', 'alvin', '9573534ee6a886f4831ac5bcdfe85565', 1, '1', '2020-03-05 08:07:27'), (28, 'Advent Roan Widiyono', '2019637', '407eaead79e124a709cd319dca66c743', 1, '2', '2020-03-05 08:55:12'), (31, 'Adeline Callista Maurren', '2019558', 'abd9c1105440969174d72f855ac0c6c1', 1, '2', '2020-03-05 08:58:55'), (32, 'Amazing Grace Danielle Prakoso', '2019565', '88dd9559f44cdde7b340013aeb323946', 1, '2', '2020-03-05 09:32:33'), (33, 'Alfarezha Prasetya V', '2019644', 'd91b5724c7833821159fe0608841794f', 1, '2', '2020-03-05 09:45:29'), (34, 'Cheyshammah Chalysta Putra', '2019573', '5b8871bc0bbf3bf799823b85b327daf5', 1, '2', '2020-03-05 09:54:59'), (35, 'Afnan Al Kautzar', '2019639', '1fe7ef8408ba2f4226e1f8932778a32d', 1, '2', '2020-03-05 10:13:51'), (36, 'Chris Johannes Ammer', '2019574', '8711616e1fb04a190f1af6f386f5fad0', 1, '2', '2020-03-05 10:23:10'), (37, 'Danish Arfa Indrawan', '2019575', '844078fcabb5a1473120a6ca8ed0b544', 1, '2', '2020-03-05 10:40:19'), (38, 'meric', 'meric', '27fe23a362479a37269587dc4d455fec', 1, '1', '2020-03-06 02:01:17'), (39, 'Benedictus Benfilio Prihadi', '2019570', 'bcd356e892231773269a74de8afa9cb6', 1, '2', '2020-03-06 02:42:56'), (40, 'Benita Videlline Aprilian', '2019571', 'eade60cac191a0543b61fc492c55a58e', 1, '2', '2020-03-06 03:09:38'), (41, 'Abigail Calista', '2019636', '8a3e3b3a74ab2418c8b8c2db8b0865fe', 1, '2', '2020-03-06 04:07:29'), (42, 'Bennett Sean Nugroho ', '2019572', '2e7a952f0eb326b9281421cab52ce5b4', 1, '2', '2020-03-06 04:38:53'), (43, 'Ananda Meisya', '2019646', '0b47907b2c678c8f97be7d57a5b94967', 1, '2', '2020-03-06 04:40:41'), (44, 'Aryoscha Prashantivari Herynanto', '2019650', '3ab80ce1743b754ba6c373d3946476a8', 1, '2', '2020-03-06 05:00:57'), (50, 'Livia Natasha Denise Tunggul Rahardiyo', '2017270', '2f32a5ada374546aee65cbbe25b559a2', 1, '2', '2020-03-09 08:34:04'), (51, 'Naiffa Nurrahma Untsa', '2017277', '013d151a207ac44de0b8a69c72eca53a', 1, '2', '2020-03-09 08:34:39'), (52, 'Perliani Fatima Harum', '2017279', 'd7938f31fc34268e1d053edffc96b9aa', 1, '2', '2020-03-09 08:40:18'), (53, 'Manuel Apriadi', '2017272', '1991621acf9632394639d7e389305c9b', 1, '2', '2020-03-09 08:49:16'), (54, 'Naura Farhana Shifa', '2017278', '9e8b618cb6749af105f1b317b9ae48ad', 1, '2', '2020-03-09 08:50:08'), (55, 'Jonathan Kindangan', '2017262', '611895457e87b581adc5330bf48ffa04', 1, '2', '2020-03-09 08:52:24'), (56, 'Rinaldi Syahputra Pratama', '2017286', '047e44ac4f2ce171d4050bb27b4fdbce', 1, '2', '2020-03-09 08:52:32'), (57, 'Putri Amalia Rahmayani Sinaga', '2017280', 'dd4628521b4879e7f35e02628e4c1d66', 1, '2', '2020-03-09 08:56:07'), (58, 'Raden Monica Silvia', '2017281', 'fcedaa6e19fd917301d0e4e3448cc576', 1, '2', '2020-03-09 09:06:08'), (59, 'Sheryn Rose', '2017291', '1873ef30f12a1aacf1a85ae4b8573029', 1, '2', '2020-03-09 09:07:03'), (60, 'Maansie Shaguffta Kaur', '2017271', 'f49bc1c99594ac62140f27a5ca2e0f64', 1, '2', '2020-03-09 09:08:20'), (62, 'Raka Rasendriya Reswara', '2017284', 'dbee291416d1f0b9a03d9c0f62660ce7', 1, '2', '2020-03-09 09:16:21'), (63, 'Siti Fatimah', '2017292', 'bc2fe6db6677cf17df222414001a7999', 1, '2', '2020-03-09 09:17:52'), (64, 'Justin Andean Sunardi', '2017264', '00c6522521dc22bab8bc30bfe2fd3c33', 1, '2', '2020-03-09 09:19:16'), (65, 'Tirza Theophilia', '2017297', '9be056926daeceb60c94822f491a7797', 1, '2', '2020-03-09 09:19:52'), (66, 'Rendy Juliansyah', '2017285', '9f7632112a9978899bfa220d20f0281a', 1, '2', '2020-03-09 09:26:33'), (67, 'Muhammad Ikraam Mahendra', '2017275', 'fd8e802795e9f846c10ba5cdc5cfaf7c', 1, '2', '2020-03-09 09:28:21'), (68, 'Stanley Nathanael', '2017293', '8333176ca6f825b87e0dccd67174bf5e', 1, '2', '2020-03-09 09:29:28'), (69, 'Theresa Zevanya', '2017296', '8c0f551ca84e0abd8c8431ca7238b369', 1, '2', '2020-03-09 09:29:28'), (70, 'Steven Chen', '2017295', 'f6dc8fa6d45fed317f533affc16464ff', 1, '2', '2020-03-09 09:37:03'), (71, 'Raisha Hapsari', '2017282', '0a71ec98d2e2574dd680c7346616cf51', 1, '2', '2020-03-09 09:39:48'), (72, 'Valencia Anggi Putri', '2017298', '9283d37f5dbd495cdcafd2b1384cd7c8', 1, '2', '2020-03-09 09:43:11'), (73, 'Ryo Adrian Pangestu', '2017298', '9283d37f5dbd495cdcafd2b1384cd7c8', 1, '2', '2020-03-09 09:51:41'), (74, 'Vardian Veronico', '2017299', 'c2f64cf56d55d183777560ec12c18972', 1, '2', '2020-03-09 09:52:23'), (75, 'Salsabila Zaahidiyah Azzahra', '2017288', '04d96735b75151aec7bdba0d43541763', 1, '2', '2020-03-09 09:53:00'), (76, 'Andillie Wiliady', '2017191', '90e01d8cd76b9eab390d6fb886bda555', 1, '2', '2020-03-09 09:55:32'), (77, 'Raissa Cleodora Junia', '2017283', 'fd5a413bb36eb32eca84b6b72f825075', 1, '2', '2020-03-09 10:01:51'), (78, 'Anandeiva Amanda', '2017235', 'a824304ad39d012dd0598ec26f59b461', 1, '2', '2020-03-09 10:02:21'), (79, 'Michelle Zevinca', '2017273', 'f84087be6110e355c7afbec1a58acfc6', 1, '2', '2020-03-09 10:02:45'), (80, 'Andrea Christabella Darmadji', '2017192', 'fde8625a0cd28be53276032b3f42a677', 1, '2', '2020-03-09 10:30:17'), (81, 'Carolline Halim', '2017241', '7dcd7988132803fb76a4d3a0d23dce7f', 1, '2', '2020-03-10 01:40:13'), (82, 'Emmanuela Louis', '2017249', 'a5986c0a71fc96917c06325a410b797b', 1, '2', '2020-03-10 01:42:00'), (84, 'Ashwin Vijay Sarkar', '2017240', '84a740b4c1baf7ba0e6a46e549814877', 1, '2', '2020-03-10 01:46:35'), (85, 'Chirsti Stefani Arita', '2017242', '1f4870a042e4ec3aac8037b5cdfcd7b9', 1, '2', '2020-03-10 01:50:39'), (86, 'Faradisha Lailatul Azari Azhar', '2017251', 'f6be7a1b81cc8b7a18123ba2a2b51f98', 1, '2', '2020-03-10 01:52:07'), (88, 'Dave Adriel', '2017243', '9ac4c9e3a59ecf0de12b7ee860cfe3e4', 1, '2', '2020-03-10 01:59:08'), (89, 'Fatimah Azzahra ', '2017253', '749c07860ca295fdda09cbd2860ffadc', 1, '2', '2020-03-10 02:02:38'), (92, 'Dzaki Alkamal', '2017248', 'f35f963218197e28f99972e3601ca9e5', 1, '2', '2020-03-10 02:07:35'), (93, 'Aloysius Giorgio', '2017234', 'fec817858cf52bc5bade8ccf884070cb', 1, '2', '2020-03-10 02:08:33'), (94, 'Dyssa Chysilla Cathlin', '2017247', 'fa15d5773dbee94b161490cdc805f6fc', 1, '2', '2020-03-10 02:16:23'), (95, 'Faiza Piatunisa', '2017250', '6543272fb308ab43e2148f87c1d972b8', 1, '2', '2020-03-10 02:16:45'), (96, 'Hansen Anthony Hose Wijaya', '2017257', 'c9720f0cd93b4b34cd117f35ff0b4730', 1, '2', '2020-03-10 02:22:21'), (97, 'Helen Evelyn', '2017258', '048700ca6a576b44b0b19d6b825d7ebc', 1, '2', '2020-03-10 02:31:25'), (98, 'Andre Alvino Siauw Ko Peng', '2017238', '1af6a2174ca854828ea27ad150e4838d', 1, '2', '2020-03-10 02:34:46'), (99, 'Fath Fazzu Fahim', '2017252', 'baa250fa2e80bf817b2fdee4b0d90f2e', 1, '2', '2020-03-10 02:36:06'), (100, 'Dizza Azahra Tanuwijaya', '2017246', '2ac1cb2c49da8dbf54ce03fb0b860c01', 1, '2', '2020-03-10 02:47:01'), (101, 'Intan Kirana Wulandari', '2017259', '7e48646f69989f4f0b30d253ec8f7ed5', 1, '2', '2020-03-10 02:49:18'), (102, 'Jason Joserio', '2017260', '46e05e46d356b7551a71f56a8bdacbea', 1, '2', '2020-03-10 02:53:16'), (103, 'Dian Sugandha', '2017244', '6cac66c6e517ce2476b6d0a8d38ddc88', 1, '2', '2020-03-10 02:54:59'), (104, 'Ahmad Shofwan Nizhomi ', '2017233', '4fb1aaf8b279d6eb9ba3edeb4bc9797b', 1, '2', '2020-03-10 02:55:34'), (105, 'Haezel Wahyu Dya Perdana', '2017256', 'a0e7767739fb7dae59938130ea6d557c', 1, '2', '2020-03-10 02:55:50'), (106, 'Dinda Nurlaela Rahma', '2017245', 'd93e42c226487f4cee1f8fd2216c4102', 1, '2', '2020-03-10 03:00:59'), (107, 'Jonah Levi', '2017261', '89104a17c8b0c36aed6dedff8f929dac', 1, '2', '2020-03-10 03:05:30'), (108, 'Alode Kayley Azalia', '2018346', '4afd8938cc043a87c40532cdb7208391', 1, '2', '2020-03-10 03:09:59'), (110, 'Khansa Nazla Syahirah', '2017268', '11217b14c4643c744b2dfdddbc0754f6', 1, '2', '2020-03-10 03:13:23'), (111, 'Agatha Putri Adiningtyas ', '2017231', '392a159e47491e42ad6d617730d5e544', 1, '2', '2020-03-10 03:13:34'), (112, 'Seno Bayu Aji Arinanto', '2017290', '80413f9a97a6ed0161bce4531006e060', 1, '2', '2020-03-10 03:14:27'), (113, 'Alvin Arwoon', '2018347', 'ad742b57bbecec2982ecb66d8cdbb97f', 1, '2', '2020-03-10 03:17:58'), (114, 'Kheyla ramadhani hakim', '2017269', '29a1f26a0558fe32ff6a9b210e648ca8', 1, '2', '2020-03-10 03:23:06'), (116, 'Anastasia Natalia', '2017237', '62721e97cdcef2463d61c68457b529fd', 1, '2', '2020-03-10 03:32:55'), (117, 'Andrew Christian Sinaga', '2018349', '19afd7d7c206e23a8d26be3c86f733f1', 1, '2', '2020-03-10 03:35:45'), (118, 'Khairun Nisa Saliha', '2017267', '547f8293087d7eb4f69a6669c766e329', 1, '2', '2020-03-10 03:35:52'), (119, 'Samuel', '2017289', '96e49c4e4fcf4f3a58ec14666ecd8752', 1, '2', '2020-03-10 03:38:21'), (120, 'Anastasia Amanda', '2020744', '2159a83990ba6097323722a06d10c450', 1, '2', '2020-03-10 03:42:39'), (121, 'Andrew Julian Fawazza Permana', '2018350', '9bfc39fd322af2d995ec033d0c123a8c', 1, '2', '2020-03-10 03:43:27'), (122, 'Kanaesya Putri Wijaya', '2017265', '0b6253fff82f1171b6be9ded070aa5e4', 1, '2', '2020-03-10 03:47:24'), (123, 'Alif Ariel Ramadhan', '2020734', 'c886ba015e3787a935399168e1b1ced3', 1, '2', '2020-03-10 03:51:35'), (124, 'Arthur Christian Anderson', '2018351', '36b14325889684c3a2b123f62a7b880b', 1, '2', '2020-03-10 03:51:37'), (125, 'Ahmad Rusadi', '2017232', 'b006082cbcbf617c9e43cf0e2ac30581', 1, '2', '2020-03-10 03:56:53'), (126, 'Kenny sumihardjo', '2017266', '35850bef5d26bab5dda0aa49ce674ef7', 1, '2', '2020-03-10 04:00:23'), (127, 'Azzam Alifiandra Kosandi', '2018352', '3d4495d3dfc205be937ca7281739931a', 1, '2', '2020-03-10 04:01:48'), (128, 'Ammar Attamimi', '2018394', '39548a7f40c9cb973c18811289e0665d', 1, '2', '2020-03-10 04:09:41'), (129, 'Stefhany Helga Anjelin', '2017294', 'ae0909a324fb2530e205e52d40266418', 1, '2', '2020-03-10 04:10:36'), (130, 'Annethe Viriya Ksanti', '2017239', 'd8dd2d745ace0e33b21a2200d1de2b8b', 1, '2', '2020-03-10 04:17:52'), (131, 'Amira Fathia Putriansyah', '2020748', 'db89eaf8113e7c675262de0d0a1182af', 1, '2', '2020-03-10 04:22:38'), (132, 'Jeanice Tyshia Fayola', '2017202', '439f610722a510c86064858045fb80db', 1, '2', '2020-03-10 04:26:51'), (133, 'Brandon Clifford Shawn', '2018353', 'af96bcb0e0717906f8f4db2f0d386b9a', 1, '2', '2020-03-10 04:29:54'), (134, 'Arya Ramadhana', '2018398', '20d6baf61bde0cc8b7272838b814478f', 1, '2', '2020-03-10 04:34:44'), (135, 'Bungamas Ghania Manai', '2018354', 'f62e361a5fd4dd28b9b080d8b2e80799', 1, '2', '2020-03-10 04:37:16'), (137, 'Anastasia Dinda Prasetya Utami', '2017236', '2108869a51735d5ec316e3e31a2ff628', 1, '2', '2020-03-10 04:46:30'), (138, 'Justyn Aurelius Khong', '2017204', '12b2eeac73e03b701fb241fb7e3f7f93', 1, '2', '2020-03-10 04:50:35'), (140, 'Amadeus Justin Farrell', '2018392', '2f8b50abf824f05afb25136f91d9556c', 1, '2', '2020-03-10 05:07:53'), (141, 'Andrian Ernest Prawira Putra', '2018386', '2b1791a7c76782f5029d1064c23649ae', 1, '2', '2020-03-10 06:20:43'), (143, 'Audrick Liko Tanjaya', '2018400', '3db979669687a49b9a2ccb73725f0d06', 1, '2', '2020-03-10 06:28:04'), (144, 'Christine Sugandha', '2018355', 'e9216c8ab3b5564cbccf97dbff7f52f7', 1, '2', '2020-03-10 06:30:14'), (147, 'Agung Dharmawan', '2018387', 'd4cf2d5209d0f20f11c74d07a274d9d7', 1, '2', '2020-03-10 06:41:07'), (148, 'Erika Sophia Lumban Tobing', '2020735', '83a52223b39fb6afbc418a0564c5ba9b', 1, '2', '2020-03-10 06:46:44'), (149, 'Angel Kurniawan', '2018397', 'a9c69495e7415df9a12dceee3eac551d', 1, '2', '2020-03-10 06:47:47'), (150, 'Arya Tejawijaya', '2018399', '4e5f53929b97c4664c23334aa91f738d', 1, '2', '2020-03-10 06:56:51'), (152, 'Almaida Salwa Putra Rais', '2018391', '9d74681ee53a19e0df0c2106aebae12e', 1, '2', '2020-03-10 07:06:10'), (153, 'Fachry Ghulam Arodana', '2018356', '453995f12a6f3329379a17143b00afc1', 1, '2', '2020-03-10 07:08:54'), (154, 'Alfath Kemal Pasya', '2018390', '1b547386a4acd6135862834a12fbde04', 1, '2', '2020-03-10 07:13:19'), (156, 'Jonathan Ansell Prasetya', '2018361', 'd8e04c8f42142eb911242b8142aa59fd', 1, '2', '2020-03-10 07:24:07'), (157, 'Amalia Ramadhaniyah ADP', '2018393', 'e1c4574263efaa4b617ce4ebfe7bf3eb', 1, '2', '2020-03-10 07:24:39'), (158, 'Gavin Amos Junior', '2018357', 'c5e2015b154581fe50ae3530f469e94c', 1, '2', '2020-03-10 07:27:47'), (159, 'Andiny Shausan Arifin', '2018396', '28b9eb04b3c8bb78beb5dabb6c638af8', 1, '2', '2020-03-10 07:32:06'), (160, 'Laurencius Natanael Sumargo', '2018364', '978523e49a5da003f933a1a112a72916', 1, '2', '2020-03-10 07:36:50'), (161, 'Alessandro Bernard Santoso', '2018389', 'f4ea3c769512d68b437a5e63849ed8d6', 1, '2', '2020-03-10 07:40:39'), (162, 'Joshua Miracle Thomas', '2018362', '71b0af64371616370e057abe0f3855ad', 1, '2', '2020-03-10 07:48:24'), (163, 'Muhammad Darrel Hugo Rabbani', '2020765', '086cf7cdb8ef2af92f443ccf84e1ba1d', 1, '2', '2020-03-10 07:49:17'), (164, 'Agustinus Friki', '2018388', '79bccecdf82792647a38aaae95f45365', 1, '2', '2020-03-10 07:50:31'), (165, 'Muhammad Ghana Hadi', '2018366', '3a6baa871f062517c26ad0d0ff2e5f1e', 1, '2', '2020-03-10 08:03:01'), (166, 'Bilqistha Maysah M.', '2018402', '346f6238437af6656d360bc8575de828', 1, '2', '2020-03-10 08:05:40'), (167, 'Stacy Queency Pandean', '2018381', '59029ce41341beb7cb3f2822f1cf79d3', 1, '2', '2020-03-10 08:10:08'), (168, 'Matthew Claudius', '2018367', '5dbc56e3a6d9f91ef6e1cb328c801feb', 1, '2', '2020-03-10 08:13:36'), (169, 'Kenji Dallas Hong', '2018363', 'caab5163dc8c230b9db5cbed5611fed5', 1, '2', '2020-03-10 08:13:36'), (170, 'Georgiena Raissa Martana', '2018358', '9af4bc013fc770b2769c10f1a2adb34a', 1, '2', '2020-03-10 08:13:40'), (171, 'Theresia Regitha Halim', '2018383', '1ebca14b2b6b5ac5a1a157d83615ee88', 1, '2', '2020-03-10 08:17:29'), (172, 'Bianca Alaasya Putri Nugraha', '2018401', '1fac8ed35973f5246c434d1b555ef42d', 1, '2', '2020-03-10 08:22:02'), (173, 'Viona Gwyn Victor', '2018384', '6a2eb503cff117001fac5d1b8e230211', 1, '2', '2020-03-10 08:25:51'), (174, 'Nicholas Septhian', '2018372', '38014f97ad3bbb12110b0e1ceea09f26', 1, '2', '2020-03-10 08:26:51'), (175, 'Michelle Gracielle Karnadi', '2018368', '9b2b55710339c4d32d921b1524aedeb7', 1, '2', '2020-03-10 08:27:10'), (176, 'Danisha Sofie Tanuwidjaja', '2018404', '138b0d8c2e61e6c156cf4c4d84fd33ae', 1, '2', '2020-03-10 08:31:57'), (177, 'Mohammad Akhtar Amarthya M D', '2018369', 'bc235f44dd19de8b344280300bdcddff', 1, '2', '2020-03-10 08:32:42'), (178, 'Sintha Edlyn Chung', '2018379', '25b4f00672ba79973acf32860619e7a4', 1, '2', '2020-03-10 08:36:02'), (179, 'Muhammad Zaki Ikbaar Ramadhan', '2018371', '7cef37b09774744326cefa89b3b98397', 1, '2', '2020-03-10 08:40:20'), (180, 'Jasson Owen Lipriatna', '2018418', '0cdbb533c9a3816337184d25609c7a73', 1, '2', '2020-03-10 08:40:39'), (181, 'David Rivendell Walalangi', '2018405', '8389bc2849d211eb083348bda1514b04', 1, '2', '2020-03-10 08:42:25'), (182, 'Joshua Torkis Gultom', '2018421', 'b909bf230401bd03f1b87d0f6ae7bc0c', 1, '2', '2020-03-10 08:49:19'), (183, 'Leonardus Billy Adindra', '2018427', '111ab7367ce18901da600dc6032dd0b1', 1, '2', '2020-03-10 08:51:07'), (184, 'Rhenata Hanisa Putri', '2018374', 'ce6b33978dc490bb3492957b86152bd1', 1, '2', '2020-03-10 08:51:29'), (185, 'Enjelita Suwandi', '2018407', 'b861fb759fc0d9cb15f38aa924182ab7', 1, '2', '2020-03-10 08:53:07'), (186, 'Johannes Evan Budiman', '2018419', '0fbddcf6017c165e7e2a42d88b0999c0', 1, '2', '2020-03-10 08:55:59'), (187, 'Siti Aulia Gemilang Maulana', '2018380', '56aec9ad3e65612e8de343f32e23bd57', 1, '2', '2020-03-10 08:59:10'), (188, 'Eda Akman', '2018406', '3c8801b980e4cbfb30176289efef1213', 1, '2', '2020-03-10 09:00:14'), (189, 'Michelle Roan Widiyono', '2018433', '4f4ea514566dc776223bba0268db9581', 1, '2', '2020-03-10 09:03:32'), (190, 'Rianna Callysta Nadien', '2018375', 'db93fa47f5607e37a6ca40316f4cea57', 1, '2', '2020-03-10 09:05:31'), (191, 'Frederico Antonius Mario Labina', '2018413', '5ec949dbe1e38b347f2f01431a295704', 1, '2', '2020-03-10 09:07:19'), (192, 'M Alfarel Ferdi ', '2018428', '2e79da52ae99e1b2d207dc6971d18aac', 1, '2', '2020-03-10 09:10:31'), (193, 'Fanes Timothy', '2018408', 'a6cc95de8b7d45437f7321349e9f445c', 1, '2', '2020-03-10 09:14:37'), (194, 'Malika Hasna Syafira', '2018429', '3911d32258fe38cdd5e186f57105955d', 1, '2', '2020-03-10 09:16:33'), (195, 'Salma Alfira', '2018376', '21959d6d3bc425300970767db0848027', 1, '2', '2020-03-10 09:20:42'), (196, 'Felisia Agata', '2018409', '53d6aa3927e08c99064962a6426526d3', 1, '2', '2020-03-10 09:21:03'), (197, 'Yasmin Mumtaz Lantu', '2018385', 'e8a2792c8d98a94fa318b5a8ef7acc5b', 1, '2', '2020-03-10 09:22:01'), (198, 'Michael Marvin IP', '2018432', '387cce6f6e8a750d736ed78c4cd013dd', 1, '2', '2020-03-10 09:23:45'), (199, 'Justine Anthony Efendy', '2018422', '33832634c2580ea37adc8e3a186be05f', 1, '2', '2020-03-10 09:23:59'), (200, 'Feyla Moira', '2018411', '6d08ba735699e8a966e46a846dd46afb', 1, '2', '2020-03-10 09:30:59'), (201, 'Jessica Priscillia Kim', '2019673', '4b24a9d43aa97d4dba1553a7a638f8f9', 1, '2', '2020-03-10 09:32:11'), (202, 'Michael Jan', '2018431', 'cb7b0fd18aeebd64ba7893d855b88379', 1, '2', '2020-03-10 09:33:15'), (203, 'Ferdy Raihan', '2018410', '42c6d777f501bc23c76e0f8a9e2599e0', 1, '2', '2020-03-10 09:38:10'), (204, 'Katrina Samantha Lastra Mangahas', '2018423', 'b9d9a7160b0f2fb8124fdebaba1277ed', 1, '2', '2020-03-10 09:38:39'), (205, 'Muhammad ThohaBangun', '2018435', 'ce0876b3fec6cd8ecceba8f5953f5b8c', 1, '2', '2020-03-10 09:43:21'), (206, 'Jonathan Jason Junianto', '2018420', 'b00adf6cc6baa6639316afd1ca021a12', 1, '2', '2020-03-10 09:44:21'), (207, 'Firyal Aisyah Zalfa', '2018412', '4e37214577f2e10c904008fdd823997f', 1, '2', '2020-03-10 09:47:30'), (208, 'Sebastian Hans Purnomo', '2018377', '8107fecc08c2b3034bdc4aa7ef6b51f9', 1, '2', '2020-03-10 09:48:23'), (209, 'Muhammad Tsaqif Hilmy Asy Syatri', '2018436', 'e3aafa21366a736f8ce3fdda07d0fc36', 1, '2', '2020-03-10 09:48:34'), (210, 'Kea Adinda Hari', '2018424', 'cb14e3821be68da8d63628906ba4c55c', 1, '2', '2020-03-10 09:51:09'), (211, 'Mohammed Shaquelle A', '2018434', '0f252068d375bfb22a8967a3c42fe4c0', 1, '2', '2020-03-10 09:54:00'), (212, 'Kevin Antonius', '2018425', 'fda7967c88033642c76de9eeb2eb7250', 1, '2', '2020-03-10 09:55:46'), (213, 'Shafadinda Rizkya Ramadanhy', '2018378', 'd3249cf0557fdd30a274afe1fd8cd713', 1, '2', '2020-03-10 09:58:21'), (214, 'Matthew Alexander Panggabean', '2018430', '5b61d68c02300a774d39b9718a4f663c', 1, '2', '2020-03-10 09:58:29'), (215, 'Gabriella Ranti', '2020747', '0200fce6f845e5a55eea5c42e82e644a', 1, '2', '2020-03-11 01:47:20'), (216, 'Grace Abdiella Husada', '2018416', '1d0921a4f51a378c8143142ea2e204b7', 1, '2', '2020-03-11 01:58:50'), (217, 'Giacinta mitchelia dharma', '2018414', 'd5fb564d4ab095053e52597621481c78', 1, '2', '2020-03-11 02:09:24'), (218, 'Gisela Olga Kurniawan', '2018415', 'a3bc277d31cc8ca7ede7b33a455f5374', 1, '2', '2020-03-11 02:20:04'), (219, 'Gracia Listiana Rahayu', '2019668', 'cc43b615dabfe37dfd9296a295d571ee', 1, '2', '2020-03-11 02:28:24'), (220, 'Iqbal Maulana Abrori ', '2018417', 'b052cc6b0a7dcbdcee5e49489e5ac0e1', 1, '2', '2020-03-11 02:35:43'), (221, 'Indra Lesmana', '2019672', 'f3f04535ca1d2162472330ec34e0b414', 1, '2', '2020-03-11 03:12:29'), (223, 'Patricia Ysabel', '2018437', '7588fdf55dec3ac00a43dc7858e1c119', 1, '2', '2020-03-11 03:23:00'), (224, 'Sintia Putri Fajar', '2018447', 'aa306d2ceb4d91e899da153e14b0b313', 1, '2', '2020-03-11 03:30:10'), (225, 'Abel Cicero Markam ', '2018486', '2eff90d2273c30a50c2d77d34f52743f', 1, '2', '2020-03-11 03:33:25'), (226, 'Raihan Addar Quthni ', '2018442', '6f3e2c76ab2680542d341eafabcbba0d', 1, '2', '2020-03-11 03:42:51'), (227, 'Sisilia Jonta', '2018448', '80aa06f1d4bd1a764545ff094783bbeb', 1, '2', '2020-03-11 03:43:44'), (228, 'Audrey Aulia Anindhita Permana', '2018491', '87673e92a7fa1d38fbde297d68167ba5', 1, '2', '2020-03-11 03:44:12'), (229, 'Rafaesa Devani Azzahra', '2018439', '7a44db62a09e766a9a63d70e2078c060', 1, '2', '2020-03-11 03:50:39'), (230, 'Alexander Christian Prabowo', '2018488', '1d983192564bb5a21e9a481dfaa24cf2', 1, '2', '2020-03-11 03:51:53'), (231, 'Sultan Dandhy Alfito', '2018450', '96d86a1344df0188e8e05794346ccccf', 1, '2', '2020-03-11 03:56:12'), (232, 'Rifka Dwi Octavia', '2018445', '227256b64a80e415a3aaebf6aeacfade', 1, '2', '2020-03-11 03:58:33'), (233, 'Ahsan Khairyansyah Adhyatmika', '2018487', '004a7167697f546e97403472ed09a414', 1, '2', '2020-03-11 03:59:46'), (234, 'Reaven Shabian Himawan', '2018443', '09748212db3b3fab7002edf7911b6b44', 1, '2', '2020-03-11 04:06:53'), (235, 'Ardean Arwoon', '2018490', 'c639aa94adb6c2762615a27dda5eae32', 1, '2', '2020-03-11 04:07:31'), (236, 'Shilla Aprodhita', '2018446', '7e48c5368b2d3df92f646439381b146f', 1, '2', '2020-03-11 04:07:41'), (237, 'Rafiqa Umani', '2018441', '6b40fa5d376caa6250eca66f06cae125', 1, '2', '2020-03-11 04:16:06'), (238, 'Angela Prudence Prasetyo', '2018489', '96b17e4a37d6ce6ac6c99a26a2d1cc5b', 1, '2', '2020-03-11 04:16:48'), (239, 'Stefanie Lauw', '2018449', '16ea70acfff386b80497467865e2d35f', 1, '2', '2020-03-11 04:19:56'), (240, 'Bryan Nathanael Abednego H.', '2018492', 'd32f19c0c6a635e93799f4aed9ac8be7', 1, '2', '2020-03-11 04:25:50'), (241, 'Tony Candra Wijaya', '2018451', '59a7ea68e733f59950878d6ea11a0749', 1, '2', '2020-03-11 04:32:46'), (242, 'Rifda Agustin', '2018444', 'ffa46dfbc5b82928ce226957101fbb64', 1, '2', '2020-03-11 04:33:27'), (243, 'Kevin Kartono', '2017205', 'a04bfa6f9069db47f60cb8bdca5e5cb9', 1, '2', '2020-03-11 04:33:54'), (244, 'Cheryl Valerie Hasjim', '2018493', '69012392c3c0c182d20b4fb14c4dddc9', 1, '2', '2020-03-11 04:37:10'), (245, 'Raffi Hilmi Hidayat ', '2018440', 'b9b0035cd0fdb24f716cd4a1ea17231e', 1, '2', '2020-03-11 04:39:41'), (246, 'Vanessa Febry', '2018453', '57087928e849578ea7efa2e33332f572', 1, '2', '2020-03-11 04:43:09'), (247, 'Ekranio Khowarizmi', '2018494', 'b0006b4bbffe36568808a599e3df42b5', 1, '2', '2020-03-11 04:46:38'), (248, 'Melvern Deannova Vimanta', '2017210', '875e48dedb9d8e0a5e95ab6f15d3d2aa', 1, '2', '2020-03-11 04:58:55'), (249, 'Marc Ryanheart ', '2017207', '7dc333d0bc1b63ced10f725a799b69a0', 1, '2', '2020-03-11 05:18:42'), (250, 'Francesco Enzo De Ernesto Puimara', '2019541', 'bf42c16217f5e2d751bef2285ef4eaee', 1, '2', '2020-03-11 06:09:53'), (251, 'Vincenzo Matalino', '2018455', '35e45d4ecf3d07fb37aa74ed2bb173ed', 1, '2', '2020-03-11 06:15:29'), (252, 'Fabian Galih Wibowo', '2018495', '6e922d60441adf78326517d35dd3f317', 1, '2', '2020-03-11 06:21:40'), (253, 'Vania Agustin', '2018454', '918553e0a34752cd2de27b6f219faac9', 1, '2', '2020-03-11 06:21:51'), (254, 'Wedatama Pambudi ', '2018456', '6efe125afa414ee0e79154d1129e8063', 1, '2', '2020-03-11 06:30:33'), (255, 'Gregory Damar Jibben', '2018496', 'a207891d6e72b84eb241c3f44644c14d', 1, '2', '2020-03-11 06:33:11'), (256, 'Antonia Emmanuelle Acirathasa Wibowo', '2020746', '61ab155bd7cb96f990514c6eafb49a62', 1, '2', '2020-03-11 06:43:48'), (257, 'Hannah Felicia Given Lauw', '2018497', 'c1a0396df0f5e23f62217f9f372d5faa', 1, '2', '2020-03-11 06:45:41'), (259, 'Izzati Khansa Hefrizal Putra', '2018498', '92fb0082fae0efcf4ee55c6f35b9a06b', 1, '2', '2020-03-11 06:56:47'), (260, 'Ale Febio Andreansyyah', '2020751', '7253dfc3e60dba6df56292b4b50a74ca', 1, '2', '2020-03-11 07:03:57'), (261, 'Aqila dhawy setyaki', '2018461', '4c3342cf65de6d086a7880673e01ac84', 1, '2', '2020-03-11 07:14:27'), (263, 'Marc Raynerheart Laoh', '2017206', '8e2f56f0badcee96dcacf1c1bba0d382', 1, '2', '2020-03-11 07:37:55'), (264, 'Clyde yvette kho', '2018464', 'e2504ddcde4d3205ca21543f6eb2970a', 1, '2', '2020-03-11 07:44:31'), (266, 'Mikha Aurelia Wiranata', '2017211', '60d7990c2c42718cd3650bdae70a05e7', 1, '2', '2020-03-11 07:54:39'), (267, 'Christopher Andrew Sinaga', '2018463', '367becef03e5c5deabc85ee09a919fcf', 1, '2', '2020-03-11 08:01:06'), (268, 'Darlene Evangeline Lay', '2018465', 'f6ac95b19c94beb33ed0f7efbe6520f0', 1, '2', '2020-03-11 08:02:20'), (269, 'Muhammad Hadi', '2017212', '7b35f293bc11ee39082fa12ba454d185', 1, '2', '2020-03-11 08:06:02'), (270, 'Caroline Roseanne Pramadhwari M.', '2018462', '34f7bcabe8fff9354e5b67bb7f91199f', 1, '2', '2020-03-11 08:15:57'), (271, 'Andi Danendra Daffa Alief', '2018459', 'b8f21b59ac1a6946847cd00dee9b9c44', 1, '2', '2020-03-11 08:24:33'), (272, 'Carlson Constantinelay', '2020732', 'fcae5b20297472bdd993c3f7322609f1', 1, '2', '2020-03-11 08:33:19'), (273, 'Kevin Chen ', '2018503', '2241b8654bbf24eb8822909e6bfc99ad', 1, '2', '2020-03-11 08:47:13'), (274, 'Gita Permata Kristi Perangin.D', '2018468', '8aa69c36954955afb4e8e30bd83e979a', 1, '2', '2020-03-11 08:47:45'), (275, 'Andreas Rama Suresh Sitorus', '2018460', '1f6f05433cbb63d403bf367108429d16', 1, '2', '2020-03-11 08:52:58'), (276, 'Ezar Ilmi Khairan', '2018467', '65e95ed17065094675f93b7218bb9e03', 1, '2', '2020-03-11 08:53:40'), (277, 'Nathanael Clementino Rawis', '2017214', '88bd1093da80c82749b04ca5fd37257a', 1, '2', '2020-03-11 09:02:30'), (278, 'Isaac Rafael Rawis ', '2018470', '807c73f814bb2a6e09956439b30e8ab6', 1, '2', '2020-03-11 09:03:12'), (279, 'Jennifer Jasonnita Toembelaka', '2018499', '267e13cf11fad327f79f1272a15528e1', 1, '2', '2020-03-11 09:07:48'), (280, 'I Gusti Bagus Devarananda M', '2018469', '945e556d786a8d5e7760866c6dbb9325', 1, '2', '2020-03-11 09:12:56'), (281, 'Khadeeja Prisa Azzahra', '2018528', '8843d4e94dc7bcf465bb1fccbd1ba9cc', 1, '2', '2020-03-11 09:18:05'), (282, 'Jane Emelia Veruschka', '2018471', '4eb0ab272bf4bbf8d9b042dc0bdd006f', 1, '2', '2020-03-11 09:18:21'), (283, 'Jovanna Alexandria Gumulya', '2018472', '9d2926b5b7d6dbbaf1cc2f78dcd048ef', 1, '2', '2020-03-11 09:26:56'), (284, 'Amadeo Jova Paundralingga', '2018458', '9f60b5a4e0a142777b16dd72511b89ae', 1, '2', '2020-03-11 09:27:10'), (285, 'John Arthur Benyamin', '2018500', '2a8a0c18a2af948404bef1434a50fc43', 1, '2', '2020-03-11 09:29:36'), (286, 'Livana Yo Belia Sumargo', '2018474', 'db9fe70ed44fd4c89ed0f58b6e08a8ef', 1, '2', '2020-03-11 09:29:45'), (287, 'Eirene Agallia Siregar', '2018466', '9ddae6267716678ebe4f3a14221fde08', 1, '2', '2020-03-11 09:34:51'), (288, 'Kayla Azrina Hanania', '2018473', '862719473643c8df5eae26ebeb97b062', 1, '2', '2020-03-11 09:36:14'), (289, 'Marcos Chenata', '2018475', 'e8f4295dee109b04cc7371036a178fdc', 1, '2', '2020-03-11 09:42:45'), (290, 'Keiko Laquisha Gumulya', '2018526', '7b0db8078b5a385bcb45e27623453de3', 1, '2', '2020-03-11 09:44:39'), (291, 'Anna Marie Lynn', '2017193', 'a76ede75731071105114fc12e4a6ffc0', 1, '2', '2020-03-11 09:55:15'), (292, 'Kaylen yehonala christivend', '2018502', 'a144d05adae87d2a11584424041b723a', 1, '2', '2020-03-11 09:55:19'), (293, 'Agnes davita putri dahana', '2017187', '335abd847a440cac7bc9f0e3ac5c12d2', 1, '2', '2020-03-11 10:23:38'), (294, 'Kaylee yehonala christivend', '2018501', '8c967f32d4939277db5b986d42182fa0', 1, '2', '2020-03-12 02:15:44'), (295, 'Leonard Nathanael Lee', '2018504', '03b0426b6dcfea2dfa7a80119dda3908', 1, '2', '2020-03-12 02:25:05'), (296, 'Luiza Aaliyah Wicaksono', '2018505', 'c8a4bd9b5c0174ddbd19daf57411264b', 1, '2', '2020-03-12 06:46:41'), (297, 'Olivia Roan Widiyono', '2018478', 'ebc8cae720393c5d0d17b2aaf5a9d900', 1, '2', '2020-03-12 06:47:45'), (298, 'Richard Orlando Casterson', '2018481', '2241786e09625b72ec9e2db5d4aed13f', 1, '2', '2020-03-12 06:51:17'), (299, 'Meaghan De Maria Rastana', '2018506', 'f03ff1f9efbf30156c1322d09e9ae9ed', 1, '2', '2020-03-12 06:57:27'), (300, 'Revand Wijaya', '2018480', 'bbd90260d8618580538c2f19315fbfdf', 1, '2', '2020-03-12 06:58:42'), (301, 'Ananda Noah Nathanael ', '2017189', 'e9e6fe77f8413a3a3422e7bc4cc49704', 1, '2', '2020-03-12 07:02:30'), (302, 'Raphael William Suganda', '2018479', '6f48be701f7457f7240f7647c73149c1', 1, '2', '2020-03-12 07:07:13'), (303, 'Michael Jayden Oentoro', '2018507', '988bb4986703d633229401b0ac1034d5', 1, '2', '2020-03-12 07:13:55'), (304, 'Abraham Dominic Nugroho', '2017185', '499c5d593ddcc6510bf3edefc075df0e', 1, '2', '2020-03-12 07:18:10'), (305, 'Sir Leon Maximilllianus Bolang', '2018482', '028c107a7b4aee5dbf555aa2f5b0ae0c', 1, '2', '2020-03-12 07:20:17'), (306, 'Muhammad Khalid', '2018509', 'a3d44e608d34a2df64553bdefb7aa622', 1, '2', '2020-03-12 07:28:03'), (307, 'Alicia', '2019564', '5fa5c01c8ad303d2d832db24d58388eb', 1, '2', '2020-03-12 07:33:00'), (308, 'Narendra Fattah Ari Kusuma ', '2018477', '84a991849c577f5abbe98f15ecea2ecc', 1, '2', '2020-03-12 07:35:02'), (309, 'Adonis Tandal', '2017186', '0e11fd525bdf3653d4c017f2312d12af', 1, '2', '2020-03-12 07:35:31'), (310, 'Michelle Prameswari Sutanto', '2018508', '14b77baa8360af44e1d02403102a7402', 1, '2', '2020-03-12 07:36:16'), (312, 'Nicholas Zubel Ebenhezer Hutasoit', '2017215', '00ce1320cb86aaacd79c2b9e574fa34b', 1, '2', '2020-03-12 07:58:06'), (313, 'Bunga Azalia Fauzia Shafa', '2017195', '987cebde8e864d0207bcd5196fdb74b4', 1, '2', '2020-03-12 07:59:47'), (314, 'Valerie Nightingale', '2018483', 'cc70870e2802fea4b6aff4efbb0474ee', 1, '2', '2020-03-12 08:02:16'), (315, 'Andrew Fabian Prawira Putra', '2019566', '2df8adee8adb5fc62bf3c61e56c7d641', 1, '2', '2020-03-12 08:02:22'), (316, 'Nathanael Joseph Wijaya', '2018510', 'a02d58da1367741d4d66169a0805c7c4', 1, '2', '2020-03-12 08:09:56'), (317, 'Baswara Abi Satria', '2019569', '4b9c00202b52de9e0e34cc8bd079b87e', 1, '2', '2020-03-12 08:11:40'), (318, 'Naomi Allicia Benyamin', '2018476', '875e36cc54d9a6bddebd228f073be0a8', 1, '2', '2020-03-12 08:14:32'), (319, 'Violeta Eunike Seancho', '2018484', 'e086718fb64ce4f453ad68ed18fe3703', 1, '2', '2020-03-12 08:21:42'), (320, 'Princeton Darion Zein', '2018512', 'ad8ee23c481f6cbd9b515f63822f8446', 1, '2', '2020-03-12 08:22:33'), (321, 'Nathan Naufal Wardani', '2017213', 'b5e587cbcf02a20c2566369b6bce4138', 1, '2', '2020-03-12 08:30:32'), (322, 'Petra William Lay ', '2018511', '28ccd3e90dae286a0bba3591f10f0856', 1, '2', '2020-03-12 08:34:56'), (323, 'Felix Alexandro Yap', '2019578', 'bd7240c8abb060bd431c1e1f72bcc153', 1, '2', '2020-03-12 08:38:27'), (324, 'Brigitta Gwyneth Xaviera ', '2017194', '0f25eeb96ccb4f6c3b4875e6ad4683b0', 1, '2', '2020-03-12 08:46:42'), (325, 'Flora Chenita', '2019580', 'd85c1ad171f2ad734c2c79f22cc995bb', 1, '2', '2020-03-12 08:49:02'), (326, 'Rayhana Zulfa Bachmid', '2018513', '47d693d71a756ade0f4d06b85a79ab2d', 1, '2', '2020-03-12 08:50:46'), (327, 'Winston Alden Widjaja', '2018485', 'f5b1c979d47cbdea6f8667e1c5293c56', 1, '2', '2020-03-12 09:00:15'), (328, 'Gunawan Wahyu ', '2019582', '1b481abff210e70c70e582c1fac9bcb4', 1, '2', '2020-03-12 09:22:32'), (329, 'Hanifah Chandra Kurniawati', '2019584', 'df3150bd1458ae580552881565ef9b35', 1, '2', '2020-03-12 09:34:21'), (330, 'Jacqueline Venessa Leifon', '2019587', '48be7b278dff6eb6c5a28db438025552', 1, '2', '2020-03-12 09:39:58'), (331, 'Jeremy Giovanni', '2019591', '1b4a6f2bcba936d5a3f0abaf97d840a1', 1, '2', '2020-03-12 09:40:00'), (332, 'Justin Odilo', '2019594', '5d84dd3ad2666d0037509a2794612d45', 1, '2', '2020-03-12 09:45:36'), (333, 'Jovan Farrel Sumargo', '2019592', '249559da48da32ac44863581d0333fef', 1, '2', '2020-03-12 09:50:29'), (334, 'Kenonwayne Wijaya', '2020749', 'f7785b4132b60b9fe51e74a4ee5ac235', 1, '2', '2020-03-12 09:50:57'), (335, 'Kaisar Ivan Shalimar', '2019595', '3e56fe5ae4dc113b9f99dfa650cef4e5', 1, '2', '2020-03-12 09:55:28'), (336, 'Jasmine Lian Juskiw', '2019589', 'b022b664edee66d74ad7f6cee26cf5c5', 1, '2', '2020-03-12 09:57:26'), (337, 'Reinhard Rich Reagan', '2018514', 'e4d5785573458675948af3531dcebe89', 1, '2', '2020-03-12 09:57:57'), (338, 'Juanito Mannuel Halim', '2019593', 'bb050b3c733b26dd67fa695d63d49f52', 1, '2', '2020-03-12 10:01:16'), (339, 'Orceola Primo Edriatama', '2017217', '8e726bd8c9d38d3f210e1ab26735fd97', 1, '2', '2020-03-12 10:03:19'), (340, 'Omar Ari Olafsoon', '2017216', '3ea5e15f73d5d5f7ab32679b20db5b37', 1, '2', '2020-03-12 10:20:28'), (341, 'Jennifer Gracia Leunura', '2019590', '6fd582182211b4fa6b1a9809cc316ede', 1, '2', '2020-03-13 01:41:11'), (342, 'Maleeka Kendra Adhitia', '2019599', 'ab538157f602f318c6d86c124d47aa65', 1, '2', '2020-03-13 01:54:13'), (343, 'Marciano Emmanuel', '2019600', '8e4b107b18c43cd97aba4f84f41f9182', 1, '2', '2020-03-13 02:01:36'), (344, 'Mohammad Satria Jannatan', '2019603', '0cc4875b6a44e78c21c9e8539fe9b91b', 1, '2', '2020-03-13 02:09:51'), (345, 'Muhammad Sholahuddin Ulya', '2019606', 'a9216624453618fd5696f8243b7145c7', 1, '2', '2020-03-13 02:16:01'), (346, 'Laura Fei Susanto', '2019598', 'a4d15e12718cc998a9b0e5629aabb5fe', 1, '2', '2020-03-13 02:16:11'), (347, 'Sekar Humaera Putranto', '2019619', '3a171f934c7c6c3d67bb5c2dfe5e8fc2', 1, '2', '2020-03-13 02:21:52'), (348, 'Sherina Thu Tiwanie ', '2019621', '4ff87b2a46577fdea0fc5f81e647ccd8', 1, '2', '2020-03-13 02:30:32'), (349, 'Siti Afraisyah', '2019622', '5e83c824410adcd17e4871d693c8998c', 1, '2', '2020-03-13 02:39:17'), (350, 'Siti Zahra Izzati Maulana ', '2019623', 'ba91224f9e7c9558bb66617870b2ef31', 1, '2', '2020-03-13 02:50:33'), (352, 'Nadine Aureora Anzany', '2019607', '1022b394b3251bfb65460d0b91ac91dd', 1, '2', '2020-03-13 02:53:10'), (353, 'Patrick Hermansyah Wihardja', '2017218', '9d5bf9facc0796fca8f65236adb840ba', 1, '2', '2020-03-13 03:14:55'), (354, 'Khatira Nahiza Suharta', '2019596', '4ee2ac91659e9ef9fca63de904cbae55', 1, '2', '2020-03-13 03:18:38'), (355, 'Padhang Moncar Bagus Nalar Pekerti', '2019608', 'd7449c787fa1ebe81f7b3da584e586ed', 1, '2', '2020-03-13 03:26:22'), (356, 'Kyla Petahia', '2019597', 'c379ee4f3ad267da535990b3cc4ec77e', 1, '2', '2020-03-13 03:35:15'), (357, 'Taufiq Husein Bachsin', '2019628', 'b96e364f81c2454ad2f4236f84ea724e', 1, '2', '2020-03-13 04:00:20'), (358, 'Putri Alyssa Manggarsari', '2019609', 'da1401234200e5baa50b5d6867d44a3e', 1, '2', '2020-03-13 04:20:10'), (359, 'Ryan Putra Dwidanda Sutiono', '2019617', '2d35ca709a5896a72f8ea06051902048', 1, '2', '2020-03-13 04:39:16'), (360, 'Pradipta Daffa', '2017219', '4d6945dc1370cb456d05f8d3c882dfe2', 1, '2', '2020-03-13 04:44:13'), (361, 'Theresia Elizabeth Lumban Tobing', '2019629', '14283b6c0d40e810c55782979ad318b5', 1, '2', '2020-03-13 04:48:57'), (362, 'RanggaBiya Ichiro Sahaja Wijaksono', '2019611', 'd7c81912bacf8ec881c96ef14fe4ebaf', 1, '2', '2020-03-13 04:50:54'), (363, 'Adlu Ahmad Fahrezy', '2018300', 'a5fd807fb8517c2605090e431cd01409', 1, '2', '2020-03-13 06:15:03'), (364, 'Timothy Emmanuel Lumban Tobing', '2019630', 'd1074019e0036dedc1e24f5e36cd5e73', 1, '2', '2020-03-13 06:21:27'), (365, 'Alden Ely Pniel ', '2018301', 'b536d3c17680aee1187d92f6b07e80f0', 1, '2', '2020-03-13 06:28:34'), (366, 'Efania Sumanadevi', '2018317', '4ab951e06163d0feae8b3e8777aa771a', 1, '2', '2020-03-13 06:43:19'), (367, 'Aliqqa Kayyisa Noverry', '2018302', 'ed87d2f0b3f42bc99c63dd6223ea0bd9', 1, '2', '2020-03-13 06:46:40'), (368, 'Amelia Arwoon', '2018304', '6b9cd01f4f2d8cd8d5371c4c0cbb1e70', 1, '2', '2020-03-13 06:53:25'), (369, 'Anastasya Cantika Kuswijaya', '2018305', '179f2ed50b79bc3bcf858ed9ad17fe03', 1, '2', '2020-03-13 07:02:03'), (370, 'Marco emmanuel rudtio', '2018330', 'a46070f85546a9faa5517f97ff27dfef', 1, '2', '2020-03-13 07:07:34'), (371, 'Ethan Vincent Pranata', '2018320', 'a829d8bfb54aa106f57b88c9882dccbb', 1, '2', '2020-03-13 07:07:55'), (372, 'Angelyn Callista Sucipto', '2018306', 'a3a1f210529fb0aa90fe1285d33646d8', 1, '2', '2020-03-13 07:08:20'), (373, 'Aurellia Jesslyn', '2018308', '7e468a3d6f151fcf8535b93c8f241f6b', 1, '2', '2020-03-13 07:12:43'), (374, 'Delroy Kumara Djuwono', '2018314', '4fff9d67ca4413d1272baf443e363da7', 1, '2', '2020-03-13 07:17:23'), (375, 'James Alexander Benyamin', '2018326', 'bac3e4118866f49a6b6217c45dba7395', 1, '2', '2020-03-13 07:17:40'), (376, 'Michael Joshua Leunura', '2018332', 'd5cbf7976cce7a0dcae61e1daaff851b', 1, '2', '2020-03-13 07:17:53'), (377, 'Tobiano Rikie Nathanael', '2019631', 'e92ee40d65d46508368d567e0aca29c2', 1, '2', '2020-03-13 07:18:52'), (378, 'Daniel Bep Junior', '2018310', '6a891c3983f600060f356e0dd5790e42', 1, '2', '2020-03-13 07:24:17'), (379, 'Jason Hanan', '2018327', 'd9b441641779ee23847baf560fc4a591', 1, '2', '2020-03-13 07:28:03'), (380, 'Daniel Oliver Wijaya', '2018311', '158d23c7482c14cc93b200cc41798497', 1, '2', '2020-03-13 07:29:31'), (381, 'Michelle Callista Romauli P.', '2018333', '3768a701607445e93adb0674cc983eae', 1, '2', '2020-03-13 07:30:20'), (382, 'Darnel Hadrian', '2018312', 'd7890c09b378646007062474a9d5827b', 1, '2', '2020-03-13 07:35:23'), (383, 'Federico Tjen', '2018321', '6b92e45d9695409617413c0d9d920340', 1, '2', '2020-03-13 07:37:43'), (384, 'Jemimah Ayumi', '2018328', '1ac9bf495d04c08c809cecacecca4db5', 1, '2', '2020-03-13 07:39:21'), (385, 'Drupadi Putri Kurniadi', '2018316', '5d6feb59ae9d2d3cebbd668938e6853a', 1, '2', '2020-03-13 07:40:27'), (386, 'Nizellia Alisya', '2018336', 'c10f9e25c8ac3de3dfc83c2a6abb838c', 1, '2', '2020-03-13 07:40:42'), (387, 'Tristan Evan Aditia', '2019632', '0513a6f0d50d3d471690d0e95748eca4', 1, '2', '2020-03-13 07:42:21'), (388, 'Princesca Daniella', '2018338', '53030f314a0c128c4f26df7785f60d76', 1, '2', '2020-03-13 07:53:22'), (389, 'Karen Glorianne Bunga Piga', '2018329', '25076286a644b93c27e520ea5752ee7a', 1, '2', '2020-03-13 07:54:47'), (390, 'Richard Jordan Harjanto', '2018339', 'a6f57973f1dfd0c7cee9364759d2e55f', 1, '2', '2020-03-13 08:00:53'), (391, 'Gabriel George Gaghana', '2018322', '82a8d06521af0aea46f2e52c27c3f7f0', 1, '2', '2020-03-13 08:05:30'), (392, 'Rr Rania Alinastra Saskiabela', '2018340', '664b8565d15b2a869382f4349429d7bf', 1, '2', '2020-03-13 08:35:59'), (393, 'TImothy', '2018341', 'f1f58707f505b07947a8a5324adcdd64', 1, '2', '2020-03-13 08:41:50'), (394, 'Tisha Emmanuel Chandra', '2018342', 'b1a11b13b218bfb952ef2274aed7cddf', 1, '2', '2020-03-13 08:46:03'), (395, 'Aditya Narayan', '2017151', '38d3f2b57eff9782ee157e8735f08747', 1, '2', '2020-03-16 03:35:06'), (396, 'Darren Dwitaja Yap', '2017159', '9972d037b67bdebe42d0b4e726f062f2', 1, '2', '2020-03-16 03:41:30'), (397, 'Kenneth Robertson Lee', '2017165', 'ad036d9cd1b3278e9a8b3750a6538e69', 1, '2', '2020-03-16 03:43:25'), (398, 'El Zidane Yuska Rusman', '2017160', 'e1abce422b655af48aed19464404122a', 1, '2', '2020-03-16 03:49:52'), (399, 'Angela Beatrice Nichole Tenglewier', '2017152', 'd41f50f46c78ea3d83165b691ba67f69', 1, '2', '2020-03-16 03:50:56'), (400, 'Kho Richard Melvin', '2017166', 'e0d76f5baefc6752c692f3a017f244ce', 1, '2', '2020-03-16 03:55:26'), (401, 'Felix Maximilian Oey', '2017161', '8c454dd6b9de1241ceb92b9041030ba1', 1, '2', '2020-03-16 03:56:33'), (402, 'Calvin wijaya ', '2017155', '2255686415b5a94d54cdda4ede5b5e57', 1, '2', '2020-03-16 04:04:48'), (403, 'Lianutte Amevilla', '2017167', '27b2bd8e25fd558fe038d9dedc5e441b', 1, '2', '2020-03-16 04:08:45'), (404, 'Gerard Anthony Syahlim', '2017162', '36d56bab8f284efdd05a3975cc676055', 1, '2', '2020-03-16 04:13:15'), (405, 'Gwenn Valerie Qiu', '2017163', '66030313f8acc9dc4e0ac844e6ce2a33', 1, '2', '2020-03-16 04:28:41'), (406, 'Cahaya saputra', '2017154', '375103c3f2096857d50a8aeb1058b950', 1, '2', '2020-03-16 04:32:13'), (407, 'Naomi Adriel NG', '2017168', '092f55e4848f3dc94d56fc9a84614b00', 1, '2', '2020-03-16 04:33:45'), (408, 'Hannaniel Rayheart Tarsley', '2017164', '185d9d1ca7579693edd2328cfd3ac7e4', 1, '2', '2020-03-16 04:39:54'), (409, 'Ow Jia En Jocelyn ', '2017170', 'd938cdbafdc9370f17b7f98333265983', 1, '2', '2020-03-16 04:51:42'), (410, 'Phillip Rylan Tian', '2017172', '031b93872f63c3ed330173531afe090d', 1, '2', '2020-03-16 04:52:16'), (411, 'Vincent Louis Wijaya', '2018515', '0d1f776a0d9a2686104c1847ff91146c', 1, '2', '2020-03-16 04:52:26'), (412, 'Carren Annabel Hendra', '2017156', 'caa1cfea7278302b925f51ac05e23f63', 1, '2', '2020-03-16 04:54:38'), (413, 'Reynard Keyfas Nathanel Sitohang', '2017173', 'ab742a34b6b43d8d752b42c5decc5e56', 1, '2', '2020-03-16 05:01:14'), (414, 'Ow Jia Xuan Hasya ', '2017171', '8e453aef92617ad3a55a3bc89b60b3b5', 1, '2', '2020-03-16 06:36:22'), (415, 'Richie Corvinus Tan', '2017174', 'da4bb00ce20db7fed8df2d123cbc40da', 1, '2', '2020-03-16 06:44:14'), (416, 'Allyn Beatrice Yane', '2018519', '82d760a896987e7119c3111da1540283', 1, '2', '2020-03-16 06:47:06'), (417, 'Catherine Anastasia Roeroe', '2017157', '6ebd1004473a581c8161a3bd74091484', 1, '2', '2020-03-16 06:50:02'), (418, 'Valiant Abnegatio Nostri Siahaan', '2017182', '23ed4b20fdc4ac855540b97ebd236a06', 1, '2', '2020-03-16 06:51:26'), (419, 'Zico Xavier Pradipta Chandra ', '2017183', 'e21c49d1655a1e00a1e99e009ed7ddcb', 1, '2', '2020-03-16 06:56:31'), (420, 'Salwa Dhana Azalia', '2017175', '2561e0e26c1ac395f1a9404c01387328', 1, '2', '2020-03-16 06:59:06'), (421, 'Tischka Naiara Priyanka Singh', '2017179', '1eb11a97cc60116c8e418f1ad08c7c30', 1, '2', '2020-03-16 07:05:02'), (422, 'Tobias Benedict Rawis', '2017180', '732eb0de8e78bd98f4136366b73529a5', 1, '2', '2020-03-16 07:10:34'), (423, 'Trinita Elena Lumbantobing ', '2017181', 'd88f592d8a6432d454a961247b0d91da', 1, '2', '2020-03-16 07:21:22'), (424, 'Aletha Joy Hana', '2018518', 'b2b61e03c4236a707c326673e53c07a9', 1, '2', '2020-03-16 07:21:35'), (425, 'Ahmad Reza Fahlefi', '2019535', '02e0d7d9f92bb41dbd1d6d95dd354357', 1, '2', '2020-03-16 07:22:18'), (426, 'Aiko Candyva Khairunnisa Basuki', '2018517', '85be6a39e35c3eb8fcfca06f274ad899', 1, '2', '2020-03-16 07:29:21'), (427, 'Akhtar Bagas Zahid Mustafid', '2019536', '9a4d092ebebd2d0a4c3e0dc93dc1e809', 1, '2', '2020-03-16 07:31:25'), (428, 'Lizzane Leanne Edelweiss Siregar', '2019546', '45ffe997f2b0dadad46802cf4cecf95a', 1, '2', '2020-03-16 07:31:26'), (429, 'Muhammad Ghaazi Allistair Madjid', '2019548', 'd89462c8618fbeb2cb9e4d0128ef0bdf', 1, '2', '2020-03-16 07:37:39'), (430, 'Samuel Lie', '2017176', 'd782beca2a3eaa831f34190daef8f490', 1, '2', '2020-03-16 07:48:15'), (431, 'Sebastian Dosey Ardy', '2017177', '743f1e3ac0bb7a9b39421af3190200da', 1, '2', '2020-03-16 08:06:51'), (432, 'Sir Leon Alexander Bolang', '2017178', '53f83a075cb966352fb258dbd3fb808a', 1, '2', '2020-03-16 08:22:33'), (433, 'Christian samuel tanujaya', '2017196', '78ad2c6f984506fa2ed18e9e8ef6921a', 1, '2', '2020-03-16 10:02:14'), (434, 'Abriel Nathanael Tanadi', '2018516', '3393dbdbc90e76c17c20f7524abbb67', 1, '2', '2020-03-17 02:15:18'), (435, 'Atharizz Sakha Radiansyah ', '2019537', 'a0704480eab8e2207f16016dc7758e7a', 1, '2', '2020-03-17 02:27:20'), (436, 'Rico Putra Hariyanto', '2017221', '61fbdf777b2dafa0c200e82f9b7c2291', 1, '2', '2020-03-17 02:28:06'), (437, 'Anabelle Phoebe Prasetyo', '2018520', '43393dbdbc90e76c17c20f7524abbb67', 1, '2', '2020-03-17 02:28:22'), (438, 'Shine Louislane Sanger', '2017224', '395f8164fec7b71bec452258b77a8b59', 1, '2', '2020-03-17 02:32:03'), (439, 'Bianca khansa putri', '2019538', 'ff87f1ddda04bdbc82e478d460250188', 1, '2', '2020-03-17 02:32:18'), (440, 'Bella Marvelyn Elisabeth Tambunan', '2020730', 'c4fda4ee5c05eddd707a40b618218efa', 1, '2', '2020-03-17 02:38:16'), (442, 'Vanessa Tiffany Santoso', '2017226', 'ab5dbb3f4a769dce3d309ef24d998051', 1, '2', '2020-03-17 04:05:30'), (443, 'Reynard Wibowo', '2017220', '750e33e1bbfacbba3dcbd82bcf8a129d', 1, '2', '2020-03-17 04:10:19'), (444, 'Ruhul Jadid Al Mundzir', '2017223', '6d687a5ff47f05968f4726a21b645396', 1, '2', '2020-03-17 04:27:09'), (445, 'Rodiah Hasan Alaydrus', '2017222', 'f5005f3e2408e5a3b81bd6e0d5b74bf7', 1, '2', '2020-03-17 04:53:02'), (447, 'Victoria Angelica', '2017227', '00fb4c022d8baccc6061a8b8b59a6d3a', 1, '2', '2020-03-17 07:37:30'), (448, 'David Fernando', '2019539', '0e383781857901ee8e88f5a846e9c075', 1, '2', '2020-03-17 07:40:49'), (450, 'Videlin Nikita Pracoyo', '2017228', '76b9f0d85d53655559e27ee51e864c6d', 1, '2', '2020-03-17 07:43:14'), (451, 'Vanes Tan', '2017225', '50fe10cc94b9232b71938ff7404bdbe4', 1, '2', '2020-03-17 07:51:04'), (453, 'Gabrian Nicholas Negoro', '2019542', 'c2f52b7958c4669fdde1fca6180b7b97', 1, '2', '2020-03-17 07:52:07'), (454, 'Vincent Delmora', '2017229', 'eb8a8bb5ee550f9ceb8d692aa9b8fbe1', 1, '2', '2020-03-17 07:55:39'), (455, 'Josiah Aidan Santoso', '2019544', 'd6769a531f7ad5793c2f8c4a6efdc5b5', 1, '2', '2020-03-17 07:59:28'), (456, 'Yeremia aditya Kriscahyadi', '2017230', 'c00f2eb1f93f00e582f39be6d23c3680', 1, '2', '2020-03-17 08:00:47'), (459, 'Krishna Tejawijaya', '2019545', '408c953ee76fcaa9c04c9d4d7bc7a317', 1, '2', '2020-03-17 08:12:20'), (460, 'Darren wirawan', '2017197', '76c54be7e4b0646cad0d511cebd8e64f', 1, '2', '2020-03-17 08:12:30'), (461, 'Erlangga Maula Syahputra', '2017198', 'd8465d0234067badd1a9af51eafba944', 1, '2', '2020-03-17 08:18:57'), (463, 'Evander Jefferey Genaro', '2017199', '1168f1aad8c5bd4df5df5522f9328e4a', 1, '2', '2020-03-17 08:24:38'), (464, 'Maria Stella Fortunata', '2019547', '9fa8d859cca138ea97c75210b87364c1', 1, '2', '2020-03-17 08:24:52'), (466, 'Eliana Alfrada Eirene', '2017300', 'd4e4d7f50d8e265f4f27e6e3201d2a75', 1, '2', '2020-03-17 08:29:59'), (467, 'Gerald Pascalis Wicoady', '2017200', '930aab460cc62a4a8cbd32cbbc03b09e', 1, '2', '2020-03-17 08:34:07'), (469, 'Gloria Angelina', '2017201', '675e9bc6cf4e1b3a4a2a6147dc080673', 1, '2', '2020-03-17 08:39:27'), (471, 'Naradipha A. Sasongko', '2019549', 'bc13e8b4870aaa004e2c92bcb50baca0', 1, '2', '2020-03-17 08:45:40'), (473, 'Raafi Aqila Zein', '2019550', '1998ca4575d86b4599922312b5d520de', 1, '2', '2020-03-17 08:57:15'), (474, 'Maximilian Aldrich Mangiwa', '2018532', 'b0549ad81ee870dc9dbcf0c9a30380dc', 1, '2', '2020-03-17 08:58:02'), (475, 'Richelle everly Thu', '2019551', '539b566b8eeb5de538ae820cb3b1f6bb', 1, '2', '2020-03-17 09:01:53'), (476, 'Raion Judah Ong', '2018533', '11a98bbf09471692e5f742568bd58b68', 1, '2', '2020-03-17 09:04:57'), (477, 'Steven Gunawan', '2018534', '7e705441adc3cd2af773d9fe2d6424cf', 1, '2', '2020-03-17 09:12:43'), (478, 'Mahitala Darma Larasati', '2018531', 'dc338558789287a9fbf97b999c961784', 1, '2', '2020-03-17 09:23:44'), (479, 'Ludwig Amazio Rumengan', '2018530', '13049c2c8eb3e58bbb53844cfb955809', 1, '2', '2020-03-17 09:30:37'), (480, 'Nathanael Liantorin Chahyadi ', '2019706', 'e7dbf062734d279102e23c8926805120', 1, '2', '2020-03-18 02:17:54'), (481, 'Leica Madriani', '2020738', '55d6a090e1485b8b02860057f97df216', 1, '2', '2020-03-18 02:20:13'), (482, ' Lucas Salvacio Husada', '2019678', '0541db4949c3242cd13e1f080888293e', 1, '2', '2020-03-18 02:27:10'), (483, 'Nabila Putri Kusbiantoro ', '2019705', '17033504d15d6d2ae606b7b35b31c56d', 1, '2', '2020-03-18 02:28:23'), (484, 'Luana Intan Rayisha Putri', '2019677', 'febea16b75e688553f44b3b973c7583c', 1, '2', '2020-03-18 02:32:20'), (485, 'Ray Hambali ', '2019712', 'f76e56546ec84c961f8fc624859e1a89', 1, '2', '2020-03-18 02:35:14'), (486, 'Levin ', '2019675', 'b85a45b84c2930381b9e9443413eec52', 1, '2', '2020-03-18 02:36:13'), (487, 'Kirana Putri Anindita', '2018529', 'edce1bdc1db49b28a604eafba97e571c', 1, '2', '2020-03-18 02:41:48'), (489, 'Matthew Pratama Sutanto', '2017209', '45c22046d870bec0a4870f3cbf2d1846', 1, '2', '2020-03-18 02:58:35'), (490, 'Kevin Audric Rajata Elfrankarunya Girsang', '2018527', '314a17b85c0faccdb7a9d0dba7538f72', 1, '2', '2020-03-18 03:01:57'), (492, 'Humayra Cetta Helsyanto', '2018525', '67f9398dbfe57c98074a02319b38c07b', 1, '2', '2020-03-18 03:19:00'), (493, 'Banu Agil', '2019653', 'c16eb86261763c8b8d49902096615634', 1, '2', '2020-03-18 03:23:39'), (494, 'Banu Wafi', '2019654', 'b5246f4318aabdb58938e5c0128035f6', 1, '2', '2020-03-18 03:38:26'), (495, 'Sola Graciano ', '2019720', '78e397011899dcbbfda84978211e2aac', 1, '2', '2020-03-18 04:01:41'), (496, 'Blessando Jeremia Chrishot Hasonangan Manalu', '2019655', '8040b1eed374eeccb8353c6b5c7a8c73', 1, '2', '2020-03-18 04:14:02'), (497, 'Christoper Eleazar Aritonang', '2019658', 'e441cf172bc1e915ba2c1ee0c91805cf', 1, '2', '2020-03-18 04:22:24'), (498, 'Darlane Sharon Princessa', '2019659', '02dfa2f7eab2d9f749b09beecc28d3ed', 1, '2', '2020-03-18 04:38:24'), (499, 'Christopher Andrew Steveson', '2019657', 'ff6163f5b956dde95d6020bd58bcc7fa', 1, '2', '2020-03-18 04:39:47'), (500, 'Cecilia Miracella Setiawan', '2019726', 'e47b2d2ae1c22f95c5dffc2f9bbebb47', 1, '2', '2020-03-18 05:01:18'), (501, 'Tristan Alif Naufal ', '2019722', '735a4b399bfd29581e355081e163ce9a', 1, '2', '2020-03-18 05:03:36'), (502, 'Livia Amelia', '2019676', '2bc5dc5706b6f2ebf53acc8830835fbb', 1, '2', '2020-03-18 06:06:36'), (503, 'Maria Yehezkiel Hedwig Indriyasari', '2019685', 'ca90e125301ea06a74e301023ac60b85', 1, '2', '2020-03-18 06:14:23'), (504, 'William Asido Hamonangan S.', '2019723', '0d01f40f6525a4c117838161f5350e04', 1, '2', '2020-03-18 06:19:13'), (505, 'M Girhan Sardani', '2019680', 'ad48aaf49dbf434e7dfc2e9b769db6e6', 1, '2', '2020-03-18 06:20:05'), (506, 'Michael Chen ', '2019689', '5e9f4f34190ea7a6d12361ee470a9774', 1, '2', '2020-03-18 06:26:53'), (507, 'Muhammad Rafif Taqi', '2019701', 'db42858c86f2754f3ac79338230ec560', 1, '2', '2020-03-18 06:33:01'), (508, 'Made Dhaneswari Kinarya Adhi', '2019682', '350ab976cc3b4f3eecc823f3e2db7bd6', 1, '2', '2020-03-18 06:38:48'), (509, 'Yohanes Immanuel Satya Pradana ', '2019725', 'b393bb7f68c1b2d0a84128e186b8776a', 1, '2', '2020-03-18 06:39:08'), (510, 'Marc Maurice Laoh', '2019728', '6437e0e442409399aec3164767e04c96', 1, '2', '2020-03-18 06:45:10'), (511, 'Marvel Shallom Isaiah', '2019686', '0e859744e03fe1169dbc4b7247f5119e', 1, '2', '2020-03-18 06:50:22'), (512, 'Marcella Erin Damayanti', '2019683', 'ee9eda39670a45a86aa204dbd9274b0b', 1, '2', '2020-03-18 06:55:19'), (513, 'Holiness Yeshua Inosky', '2019702', '87d70c2f332f39e3889abb197f80f21d', 1, '2', '2020-03-18 06:58:54'), (514, 'Muhammad Nashiruddin Alalbani', '2019700', 'e7d8e2e5b5fd4fcf71d4f251fd27855a', 1, '2', '2020-03-18 07:01:29'), (515, 'Yani Mulyani ', '2019724', 'ec68bcdab0c5656b807f10bb9622df7f', 1, '2', '2020-03-18 07:02:48'), (516, 'Ignatius Januar', '2019670', '461efc8133d632d26d2ebd9bc3c76712', 1, '2', '2020-03-18 07:03:03'), (517, 'Felicita Odelia Louise Tambunan', '2019665', '5a4cc2b5b24e1edfe1cb71b7ce5812b2', 1, '2', '2020-03-18 07:32:02'), (518, 'M. Agung Al-Ikhsan', '2019681', 'b73356b689df2e0157586775f504fd7b', 1, '2', '2020-03-18 07:33:29'), (519, 'Fawziya Khairunnisa', '2018523', 'e7611b4e1cb5c37eb8b16347a8bb521e', 1, '2', '2020-03-18 07:39:16'), (520, 'Firdaus Catalina Azzahra', '2018524', '045ed809c34a1495432416c66fb98935', 1, '2', '2020-03-18 07:44:45'), (521, 'Zulaikha Yaffa ', '2019729', '2cd13b12ef9c10163d9eec7bed5d9591', 1, '2', '2020-03-18 07:45:57'), (522, 'Katharina Ailyn Wardojo', '2019674', 'cb5f483e6d38a4cbcb8ab29f62a0edc4', 1, '2', '2020-03-18 07:49:05'), (524, 'Fadhilah', '2018522', '8a568ab79dafe350bdb1f64996e5deb6', 1, '2', '2020-03-18 08:25:08'), (525, 'Geny Grecia', '2017255', '980458f29f410cb115e9a45163c8e3e5', 1, '2', '2020-03-18 08:33:58'), (526, 'Gabriella Giselle', '2017254', 'c7cacb55be8dc47fc6080d31bab7cb2c', 1, '2', '2020-03-18 08:50:09'), (527, 'Moh. Aqiel Aslam Assifa', '2017274', 'd21ec95307bdf3d217f1f25d08690c4a', 1, '2', '2020-03-18 09:09:55'), (528, 'Muhammad Ramadhan Adzhar Somantri', '2017276', '0582e0d68f4d3d7060d66d3d6cf09d82', 1, '2', '2020-03-18 09:25:03'); INSERT INTO `tbl_pengguna` (`pengguna_id`, `pengguna_nama`, `pengguna_username`, `pengguna_password`, `pengguna_status`, `pengguna_level`, `pengguna_register`) VALUES (529, 'Habibie Delumunata', '2020737', 'c88b9439a53e76375000ea39005c3f18', 1, '2', '2020-03-18 10:10:23'), (530, 'Jessica Clarissa Lie ', '2019727', 'd871e9a116acaf45bd5ace86b555404c', 1, '2', '2020-03-19 03:35:10'), (531, 'Ron Jatiman Castillo', '2016040', 'ab3b4d4c3b985ea142ed5a4e11dff930', 1, '2', '2020-03-19 04:08:21'), (532, 'Eugenia Amanda Cherise', '2016021', '85b3b89dd7a43fb455d96c5b48e9a2ee', 1, '2', '2020-03-19 04:11:35'), (533, ' Mega Indira Rajan Putri', '2016034', 'ab8c31488eaf177ca72e2d82572e124b', 1, '2', '2020-03-19 04:13:08'), (534, 'Christabella Martosoetjipto', '2016014', '2710d5bef41488079bcf7424ababc89b', 1, '2', '2020-03-19 04:15:11'), (535, 'Dede Lestari', '2016018', '58207eb6769e14dd84258859aea02d31', 1, '2', '2020-03-19 04:15:12'), (536, 'Dominick Xavier Amadeus Soureka', '2016019', '59585990bd5757e14301e589ddbca440', 1, '2', '2020-03-19 04:19:53'), (537, 'Daffa Ichsan Albana', '2016016', 'aba6123d34a2dfb28cbd3b142cb20b63', 1, '2', '2020-03-19 04:21:21'), (538, 'Patrick Azariel Wajiya', '2016038', 'ed63fbe9bd7d975a8c2140cd01909f50', 1, '2', '2020-03-19 04:26:41'), (539, 'Evangeline Geovana', '2016022', '294e3829404907447edb0daafbca939b', 1, '2', '2020-03-19 04:27:41'), (540, 'Graceya Dana Sugi', '2016028', '7736717fde71ebdab692a714e7db96ec', 1, '2', '2020-03-19 04:30:51'), (541, 'Abisat Paskalis', '2016053', '15e96ce0a6e5bf85408d0d670fcee277', 1, '2', '2020-03-19 04:32:47'), (542, 'Alvin Jovan Surjana', '2016006', '4d68aa58e5a8059f5fbcdde281308393', 1, '2', '2020-03-19 04:42:38'), (543, 'Lucia Monica Angelyn', '2016033', 'bae0beeb675a8b4297e450f27fcb1b94', 1, '2', '2020-03-19 04:58:29'), (544, 'Aisha Bella Ivan Hadar', '2016004', '0c613bc4fd34f926f07fa560427a2366', 1, '2', '2020-03-19 06:47:18'), (545, 'Bintang Hidayat Putra', '2016012', '431bb49ebcaff67a9cd37ab5c15e1c0d', 1, '2', '2020-03-19 06:55:59'), (546, 'Yervant Vikesha', '2016042', '4b6e2ad206d61853d8227b44568ddb79', 1, '2', '2020-03-19 07:06:10'), (548, 'Afifah Ahmad', '2016003', '2c735f519fbdb90a025e23fb4e416467', 1, '2', '2020-03-19 07:12:44'), (549, 'Amannia Wika Ridho Putri', '2016007', 'f6641c8ff6584898ed7cd86260f0921a', 1, '2', '2020-03-19 07:19:11'), (551, 'Al Hafizh Ramadhan', '2016005', 'b204569175f9a842fce6d06520de5b4e', 1, '2', '2020-03-19 07:58:22'), (552, 'Gayatri Candra Kusuma', '2016025', 'ecb4141f974b6aef97ec193615130aea', 1, '2', '2020-03-19 08:14:56'), (553, 'Adnanuzzaki Arif Putra', '2016002', 'ce8048c9acd22f9a6e7f250fc422c565', 1, '2', '2020-03-19 08:26:38'), (554, 'Ammarsyahdi Alhayandi Hamid', '2016008', 'dccda9e7c47bb5e75caff7cba09e67ee', 1, '2', '2020-03-19 08:35:48'), (555, 'Reyhan Amalatu Muskita', '2016039', '87abee971429bf1d09d23f5ecc76f6e2', 1, '2', '2020-03-19 08:44:44'), (556, 'Gracea Linawati Sanjaya', '2016027', 'd465b0e25f5f8cbb32e32125ebe281c2', 1, '2', '2020-03-19 08:51:41'), (557, 'Andra Maulana Syakur', '2016044', 'b83f48d7c9e2f4cb37cb6133504b9605', 1, '2', '2020-03-19 09:03:55'), (558, 'Grace Marlane', '2016026', '4bfc353fe080ef5fb9c61c8d4ee1de63', 1, '2', '2020-03-19 09:12:21'), (559, 'Arthur Audrian Natawirja', '2016011', '999404eea585bb725db75472c9dec738', 1, '2', '2020-03-19 09:21:52'), (560, 'Dea Paskah Jesie Erika Munaiseche', '2016017', '953ea3e6a6396f1755cc2c2fdf6900e6', 1, '2', '2020-03-20 01:51:45'), (561, 'Ikra Zaki Fadilah', '2016029', '8cb269fcabdda0c5ffbe77674b84f9f5', 1, '2', '2020-03-20 02:22:50'), (562, 'Catrice Kesley Kosasi', '2016013', '171fcfbcbb2b73d0ca81506d9530ad52', 1, '2', '2020-03-20 02:26:31'), (563, 'Jane Levina Suhendra', '2016030', '0125d1726a9f22f0306ce0a95e589dbb', 1, '2', '2020-03-20 02:47:20'), (564, 'Christian Tombiling', '2016015', '87105eb9791587ec219e55f8ef60d935', 1, '2', '2020-03-20 03:20:29'), (565, 'Jovin Halim', '2016048', '8beeb167725a184033518f7639649ad1', 1, '2', '2020-03-20 04:30:27'), (567, 'Kezia Dinara', '2016031', '14b61ae283b8878a2606c95f5a78e772', 1, '2', '2020-03-20 04:48:33'), (568, 'Kyra Kiara', '2016032', '6a306b8c0b6338a85eec4f592919a471', 1, '2', '2020-03-20 06:46:47'), (569, 'Faishal Haris', '2016023', 'e4c3e3c8edf67b8d0b45cc9ff812cdcf', 1, '2', '2020-03-20 07:00:03'), (570, 'Aditya Anugerah Akbar', '2016001', '15e96ce0a6e5bf85408d0d670fcee277', 1, '2', '2020-03-20 07:05:30'), (571, 'Eleon Angeleo', '2016020', '96af2cbd2fa820fe429bbe536eb0934e', 1, '2', '2020-03-20 07:19:19'), (572, 'Anissa Maula Shabine', '2016010', 'b1d7310da23f172e74e030b0721d7683', 1, '2', '2020-03-20 07:34:22'), (573, 'Felicia Celine Triesha Martasuprana', '2016024', 'b422f972fbe31b9dfc6728dd56d106c1', 1, '2', '2020-03-20 07:40:23'), (574, 'Angelo Dana Sugi', '2016009', '507be9abb6a6381693d708a81e2a02aa', 1, '2', '2020-03-20 08:25:14'), (575, 'Nicole Ellianne Risakotta', '2016037', 'c317665f5e8530ab252c30dd3c14cf5a', 1, '2', '2020-03-20 08:32:09'), (576, 'Michael Alexander Budiman', '2016036', '8aeee62dc93ef4a229cc1a70d7ead461', 1, '2', '2020-03-23 04:34:01'), (577, 'Zedric Immanuel Abetto', '2016043', 'f7f547dd628d90963f80d52d4421e68f', 1, '2', '2020-03-23 04:49:04'), (578, 'Metta Tjoa', '2016035', 'd3b073d1d584779c0bf3facd9a0a1746', 1, '2', '2020-03-23 05:01:34'), (579, 'Shabilla Rahma Johne', '2016041', '285c1aeb1b49fde08a6e388c6321fc89', 1, '2', '2020-03-23 06:14:28'), (580, 'Mazaya Raina Habibie', '2016052', '82320f08c1059bd4cb10911219d54c53', 1, '2', '2020-03-23 06:49:01'), (581, 'Siti Alifah Fayruz Nurwan Saputra ', '2016046', '9905711dbf02eace78ea3072ecc9ed83', 1, '2', '2020-03-23 07:01:10'), (582, 'Rico Sanjaya ', '2016050', '3d7f22d792061f86b5b625cccee05920', 1, '2', '2020-03-23 07:25:08'), (583, 'Raden Jesica Cassandra', '2016049', '89d86e0b10cbf61cd1cc097fd27dd38f', 1, '2', '2020-03-23 07:38:10'), (584, 'Aurelia Annabelle ', '2016051', '6eebfcb995a5ca9616ae82af1612ae19', 1, '2', '2020-03-23 08:04:28'), (585, 'William Sidharta Adi Wicaksono', '2016045', '71ca07fae81ef607460d618e033b8c50', 1, '2', '2020-03-23 08:13:58'), (586, 'Michael Christain', '2020788', '4a8ee558699d9328f5940b8cc186f54d', 1, '2', '2020-03-26 02:50:34'), (587, 'Ardian Bagus', '2020769', '1d1c785ce88257a4c0998b26c03b4228', 1, '2', '2020-04-02 03:45:12'), (588, 'Cut Safina Amanda Dhawi', '2020743', 'd765679f8b23d62db981baa87faffd3c', 1, '2', '2020-04-02 04:34:14'), (589, 'Naura Farhana Shifa', '2017278', '9e8b618cb6749af105f1b317b9ae48ad', 1, '2', '2020-04-03 01:43:04'), (590, 'bep', 'bep', '919838c9051bea8fdc6aebf00860f764', 1, '1', '2020-04-16 02:45:52'), (591, 'anis', 'anis', '38a1ffb5ccad9612d3d28d99488ca94b', 1, '1', '2020-04-16 05:04:38'), (592, 'Tri Wahyudi', '0000000', '29c3eea3f305d6b823f562ac4be35217', 1, '2', '2020-04-16 07:06:56'), (593, 'Ahmad Najmudin Palapi', '0000100', 'd88ec1bae3412de0a3c3f24c5978db9c', 1, '2', '2020-04-16 07:15:10'), (594, 'Fakih Pajar Tian', '0010100', '7207ae4f68057135413790bd0ae4f819', 1, '2', '2020-04-16 07:22:15'), (595, 'Shandika', '0000200', 'c74fbf1b9689665ba6cb4f21e10c80d9', 1, '2', '2020-04-16 07:38:43'), (596, 'Rahmat', '0000300', 'bb8c2be716be97a60d1dbb8cd6c7f06f', 1, '2', '2020-04-16 07:45:24'), (597, 'Muhamad Saepudin', '0000400', 'ca8053db170ef7ad40ecfd996c225f6c', 1, '2', '2020-04-16 07:52:30'), (598, 'Dhia Uddin', '0000800', '0ffff55d84ef22c9ad901f30790b8fa8', 1, '2', '2020-04-16 08:05:12'), (599, 'Nursan', '0000500', '6f47f81c0e688352ae72d34d599cda3a', 1, '2', '2020-04-16 08:20:56'), (600, 'Denis Darmais', '0000600', '9283e2dadd093015488c6a7af70d3994', 1, '2', '2020-04-16 08:28:42'), (601, 'Bagus Kuniawan', '0000700', '64d414b1adf8b0ea3f66d007fb7fe980', 1, '2', '2020-04-16 08:37:11'), (602, 'Ahmad Fauzie', '0000900', 'fe321a2d6cd57682dcc960af179c30f0', 1, '2', '2020-04-16 08:46:55'), (603, 'Mela Apri Yani', '0001000', '3778bc401454aafa833161481233aeec', 1, '2', '2020-04-16 09:10:32'), (604, 'Ranika Despia', '0002000', '941ae59bccaee9ad41a8b3e495644428', 1, '2', '2020-04-16 09:17:06'), (605, 'Diyah', '0003000', '69012d0eb59c49351cc306bfcd74e775', 1, '2', '2020-04-16 09:23:29'), (606, 'Ridwan', '0100000', 'eff9f52e0c43900e780a2d1ada095111', 1, '2', '2020-04-16 12:03:16'), (607, 'Dini Sapitri', '1000000', '8155bc545f84d9652f1012ef2bdfb6eb', 1, '2', '2020-04-17 01:40:46'), (608, 'Nursan', '0200600', '972c8a466a0f4e75d879eeb0c1657e54', 1, '2', '2020-04-17 01:41:45'), (609, 'Muhammad Ibnu Prakas', '2000000', '805f743866591cb5654b0462e0f5f304', 1, '2', '2020-04-17 01:52:49'), (610, 'Arman Maulana', '3000000', 'badd77cfba9a22aa47016e95b701e940', 1, '2', '2020-04-17 02:02:16'), (611, 'Maulana M.Fikar', '0200601', '14427b551349586efd56262bcd0cb646', 1, '2', '2020-04-17 02:04:52'), (612, 'Fitri Nabilah', '4000000', '9aab88c482a5a4bd37d2d4f567658b99', 1, '2', '2020-04-17 02:10:54'), (613, 'Panji Aryo Wibowa', '0200602', 'b938763984b000f94948d78933d3d6bf', 1, '2', '2020-04-17 02:14:49'), (614, 'Erdis liana Satiar', '0200603', '732d56c01849bf97c06b57b0b985d90d', 1, '2', '2020-04-17 02:22:11'), (615, 'Muhamad Aldi Agustian', '026004', '4625b756eff3604405a8570f0952badf', 1, '2', '2020-04-17 02:31:19'), (616, 'Helda', '5000400', '47645d2983cb84dfad0e4459c8297ce9', 1, '2', '2020-04-17 02:46:43'), (617, 'Mila Susilawati', '0200605', '93ddeee7c9a440cca1834d41ae20c038', 1, '2', '2020-04-17 02:55:54'), (618, 'Muhammad Mulyadi', '7000000', '20d9bb1dc5cafb4a81d900f247034a46', 1, '2', '2020-04-17 03:01:21'), (619, 'Robi Sugara', '0200606', '1a30a7634305bc10e3ae6244ae459e77', 1, '2', '2020-04-17 03:05:57'), (620, 'Roji', '0200607', '9a173aa18cb907dfbd239c12976cf8fe', 1, '2', '2020-04-17 03:14:54'), (621, 'Misnan', '9000000', '48e4e6ac22db9be84820222d57841428', 1, '2', '2020-04-17 03:19:25'), (622, 'Asnan', '0200608', 'c2bbbb83b2b6be5a836cacb5fa5ddd74', 1, '2', '2020-04-17 03:52:06'), (623, 'Rini', '2100000', '26bdfd7fe77b4b324461da650c054d9e', 1, '2', '2020-04-17 03:56:01'), (624, 'Muhamad Firly', '0200609', '601308a207396530c4fb489a93293676', 1, '2', '2020-04-17 04:06:35'), (625, 'Rendiyansah', '2300000', 'abb984f338262bcdb324f4872c3c69e3', 1, '2', '2020-04-17 04:20:27'), (626, 'Abdullah Aziz', '0200610', '5e66d54e6531360e61907c4e9b9a521d', 1, '2', '2020-04-17 04:32:48'), (627, 'Rizky Aditya', '2200000', '41244414833911379537e41197954592', 1, '2', '2020-04-17 04:43:56'), (628, 'Syech Muhammad Risky', '3300000', '5d94b2ce75f4526097128bc8a265e62d', 1, '2', '2020-04-17 04:51:52'), (629, 'Muhamad Lutpi Husain', '0200611', 'd138543ca5611a4298a2f273722645d9', 1, '2', '2020-04-17 04:53:55'), (630, 'Muhammad Husain', '5400000', '989e347956ba009cd5fc6bf6b7052866', 1, '2', '2020-04-17 04:59:23'), (631, 'Muhamad Fajar', '0200612', '6abe66bb0cd0a4a52f8b1bcbceece2c8', 1, '2', '2020-04-17 05:05:08'), (632, 'Audy Anastasya Putri', '7800000', '59745d64a15c62bd6ff404e0f16ce2f9', 1, '2', '2020-04-17 05:08:38'), (633, 'Mohamad Adam Apriyadi', '0200613', 'b44f21756cf61e78c5319c572e7c3d7a', 1, '2', '2020-04-17 05:15:04'), (634, 'Aidah', '5500000', 'aae7134a1bb1e833a14055d6ecf0e24c', 1, '2', '2020-04-17 05:16:31'), (635, 'Muhammad Ridho Pratama', '3500000', '4228fcdeecb6c1c0a0cd991cf1b4c870', 1, '2', '2020-04-17 07:14:11'), (636, 'Guntur Ahmad Dani', '6000000', '11bdc318de45b54e193a9f0c3448b202', 1, '2', '2020-04-17 07:22:33'), (637, 'Tsanul Jamil', '0200614', '21a1f3a072658a6dcc508858008249da', 1, '2', '2020-04-17 07:24:20'), (638, 'Ferry Akbar', '9900000', '673d39f55e750096a4c3df17e36160f3', 1, '2', '2020-04-17 07:29:45'), (639, 'Mohammad Rizki', '8900000', 'c61aef04f7c1c5df2f3932e5ac6325d2', 1, '2', '2020-04-17 07:39:59'), (640, 'Aan Sarnianto', '0200615', 'dc3bdd32d773f43317993740ed68431b', 1, '2', '2020-04-17 07:42:38'), (641, 'Maulana Abdurrahim', '8700000', '0aa9f8ea3753b0aeea3601a567ebd46c', 1, '2', '2020-04-17 07:56:25'), (642, 'Ripki Akbar Alfito', '7700000', '9adaae9cb08eb33255ab2977ed697a34', 1, '2', '2020-04-17 08:02:12'), (643, 'Muhamad Alamsyah', '0200616', '6c67896899f8023de6068d8cb162688a', 1, '2', '2020-04-17 08:15:53'), (644, 'Ajis Kurnia', '0900000', '0dc1224435fa60b1f304d17a4440a345', 1, '2', '2020-04-17 08:18:56'), (645, 'Hilal Ramadhan', '0800000', '3cc7d4c6e4df8cb6a6cdd59cf5a3283a', 1, '2', '2020-04-17 08:31:27'), (646, 'Sahroni', '4500000', '8bcf2fd148deef10e9255e0441f8cb83', 1, '2', '2020-04-17 08:43:11'), (647, 'Alexy Melvina Sharon Kurniawan', '2020745', 'ec8c2f208e952d77c72b4eebe98bcaf7', 1, '2', '2020-04-20 07:23:42'), (648, 'Andrew Christian Prabowo', '2020733', 'e94b0371e9c67f690ecca38fb6c2db20', 1, '2', '2020-04-20 08:55:54'), (649, 'Adine Jani Kartika', '2020791', 'c1d5d50b53ec5cd06a9b648f31551bf2', 1, '2', '2020-04-21 04:45:22'), (650, 'Valdis Ibrahim Ardhinov Putra', '2019554', '6a4b38abebe08473faddb7900f3379c1', 1, '2', '2020-04-21 05:09:00'), (651, 'Dennis Setiawan', '2019540', 'f32a91cf31d2179fa79f810bd8e9b17d', 1, '2', '2020-04-21 06:37:52'), (652, 'Haskell Benedict Oentoro', '2019543', '6144d82f453cbdc2d5dc995bd6d8fdd5', 1, '2', '2020-04-21 07:20:50'), (653, 'Joseph Alvin Benyamin', '2020731', 'e89b0680be3d490d31fabe18da426bc6', 1, '2', '2020-04-21 07:36:31'), (654, 'Rr Radya Aaliyah Salwanabila', '2019552', '73416ac40d6ffb6f2a4dec805ac992fa', 1, '2', '2020-04-21 08:06:57'), (655, 'Tamera Alana Nagara ', '2020742', '254fd09f5ebccec776bf2d1ecbf57cdb', 1, '2', '2020-04-21 09:37:37'), (656, 'ray', 'ray', '070dd72385b8b2b205db53237da57200', 1, '1', '2020-04-22 01:43:57'), (657, 'Al Muqmin Ziqrullah', '2020793', 'f3b3d049a849991153c713f6cd00a846', 1, '2', '2020-04-22 02:03:56'), (658, 'Aditya Ramadhan', '2020794', 'a1fa511241ca786b440bc86b48240b2a', 1, '2', '2020-04-22 02:12:54'), (659, 'Tristan Zachely Famador', '2020736', '5970c7e746162587c4dafb5f42e821d8', 1, '2', '2020-04-22 04:12:06'), (660, 'Michael Praditya Sutanto', '2019601', '346c1d6a968855962d901621b638091b', 1, '2', '2020-04-22 07:55:46'), (661, 'grace', 'grace', '15e5c87b18c1289d45bb4a72961b58e8', 1, '1', '2020-04-23 02:31:44'), (662, 'Boonsak adrian satrianto', '2020790', '113b85e13e7e251b23dc6008b09680a1', 1, '2', '2020-04-24 07:51:35'), (663, 'Edeline Daxilia Pramono', '2018345', 'f2fce521eb81d275522cefac0647cc97', 1, '2', '2020-04-24 08:23:19'), (664, 'Christianus janoko', '2017158', '73130d79a32519163602b884063ec2c1', 1, '2', '2020-04-27 02:53:09'), (665, 'ElleJovanca Patricia Maloring', '2018315', 'c85093212cfbf516d377a4635ffc8b82', 1, '2', '2020-04-27 03:35:34'), (666, 'Yasyavardi Prabu Nagara', '2020741', '61499adf091d9e024a2456b1c1f8e1a7', 1, '2', '2020-04-27 03:52:12'), (667, 'Adriel Mark Steven Yantoro', '2018457', 'fd21d9e7b05a72cdf7f2862b2c164630', 1, '2', '2020-04-30 01:46:52'), (668, 'Muhammad Zulfan Daulhaq Mukti', '2018365', '4f2e96bd39b5f8da275a4e52e500b163', 1, '2', '2020-04-30 02:59:34'), (669, 'Valencia Samatha Indrawan', '2020795', '82d0ba75abc77a600c9a6861fec24559', 1, '2', '2020-04-30 08:17:24'), (670, 'Zidane Khalid Wibowo', '2018344', 'b584db0502082c12cb7fd02a8bd4f6ef', 1, '2', '2020-05-26 07:54:39'), (671, 'Michelle Gabrielle Otniella Berhitoe', '2019602', '012b0f0533fa896df301935176bb6430', 1, '2', '2020-05-26 08:28:38'), (672, 'Naomi Patricia Adi Nugraha', '2020740', '3cd577608abd54902c194a7610aaf4f9', 1, '2', '2020-05-26 08:37:55'), (673, 'Ancella Jovfelly Wijaya', '2017190', 'f66ac83a992890fda0686b931692a36e', 1, '2', '2020-05-26 08:54:52'), (674, 'Maria Audrey Helena', '2017208', '4eb90457c99682108a575a4239e79724', 1, '2', '2020-05-26 09:17:02'), (675, 'Sharleen Jemima Hoo', '2019553', '40b980d41c68894ead3a295133c42aa3', 1, '2', '2020-05-28 03:47:16'), (676, 'Wesley Jericho Nugroho Hoo', '2019634', '7700c1539f519b9db6a94bb8831bef40', 1, '2', '2020-05-28 04:06:20'), (677, 'Muhammad Farraz Al Hanif', '2018370', 'c2aacf50c604045fd2a2dddce8564001', 1, '2', '2020-05-28 06:58:44'), (678, 'Abil Daffansyah', '2017184', '542c42f583f8c14540854119a3a6dd63', 1, '2', '2020-05-28 07:40:40'), (679, 'Tara Kaifa Hayyunisa', '2018382', '9a9d2716c7dfa3d72d2d4b933d79dd35', 1, '2', '2020-05-28 08:19:08'), (680, 'Stefanus Alfares', '2019721', 'ce386d4d919e6f46c6f5c3d10dd7cc81', 1, '2', '2020-05-28 08:32:21'), (681, 'Valen Basel', '2018452', 'f9344363e85c8b7876cfaef0e8041789', 1, '2', '2020-05-28 08:47:16'), (682, 'Imam Maulana Ibrahim S.Kom', 'imam', 'eaccb8ea6090a40a98aa28c071810371', 1, '3', '2020-03-05 04:59:18'), (683, 'Merik Nugroho S.Kom', 'merik', '318875f46fbc4b7a5f9f6286009afe40', 1, '3', '2020-03-05 04:59:18'); -- -------------------------------------------------------- -- -- Table structure for table `tbl_siswa` -- CREATE TABLE `tbl_siswa` ( `siswa_id` int(50) NOT NULL, `siswa_nis` varchar(20) DEFAULT NULL, `siswa_nisn` varchar(20) DEFAULT NULL, `nik_siswa` varchar(25) DEFAULT NULL, `siswa_nama` varchar(100) DEFAULT NULL, `siswa_jenkel` varchar(2) DEFAULT NULL, `siswa_tempat` varchar(125) DEFAULT NULL, `siswa_tgl_lahir` date NOT NULL, `siswa_agama_id` int(11) NOT NULL, `siswa_kewarganegaraan` varchar(3) DEFAULT NULL, `siswa_alamat` varchar(255) DEFAULT NULL, `siswa_email` varchar(125) DEFAULT NULL, `siswa_dokumen` text DEFAULT NULL, `siswa_no_telp` varchar(25) DEFAULT NULL, `siswa_kelas_id` int(11) DEFAULT NULL, `siswa_photo` varchar(500) DEFAULT NULL, `soft_deleted` tinyint(1) NOT NULL DEFAULT 0, `anak_ke` int(2) DEFAULT NULL, `sekolah_asal` varchar(125) DEFAULT NULL, `satelit` int(11) DEFAULT NULL, `oc` tinyint(2) NOT NULL DEFAULT 0, `kc` tinyint(2) NOT NULL DEFAULT 0 ) ENGINE=InnoDB DEFAULT CHARSET=latin1; -- -- Dumping data for table `tbl_siswa` -- INSERT INTO `tbl_siswa` (`siswa_id`, `siswa_nis`, `siswa_nisn`, `nik_siswa`, `siswa_nama`, `siswa_jenkel`, `siswa_tempat`, `siswa_tgl_lahir`, `siswa_agama_id`, `siswa_kewarganegaraan`, `siswa_alamat`, `siswa_email`, `siswa_dokumen`, `siswa_no_telp`, `siswa_kelas_id`, `siswa_photo`, `soft_deleted`, `anak_ke`, `sekolah_asal`, `satelit`, `oc`, `kc`) VALUES (1, '2019638', '2049966773', '0000000000000400', 'Adyakhansa Mustika Jagatwanata', 'P', 'Jakarta', '2004-09-06', 1, 'WNI', 'JALAN RINJANI BLOK A/24 KOMPLEK SERUA PERMAI\r\n', '[email protected]', 'adyakansa-dikompresi.pdf', '08567400617', 11, 'adyakansaphoto.jpg', 0, 3, 'SMP Negri 9 Kota Tangerang Selatan', 1, 1, 1), (2, '2019637', '0043056211', '0000000000000000', 'Advent Roan Widiyono', 'L', 'Tangerang ', '2004-12-05', 3, 'WNI', 'regensi melati mas blok E6 no.17 regensi melati mas blok E6 no.17\ntangerang banten 15323\nIndonesia', '[email protected]', '03-05-2020-16.28_.29_.pdf', '08871847067', 10, 'WhatsApp_Image_2020-03-05_at_4.21_.00_PM_.jpeg', 0, 2, 'PKBM Alfa Omega', 1, 0, 1), (3, '2019558', '2079628928', '0000000000000000', 'Adeline Callista Maurren', 'P', 'Jakarta ', '2007-11-24', 5, 'WNI', 'Green Lake City Asia 15 Nomor 37 Cipondoh Tangerang', '[email protected]', 'adelin_calista.pdf', '0895322475001', 7, 'WhatsApp_Image_2020-03-05_at_15.58_.18_.jpeg', 0, 2, 'Hope for Generations ', 1, 0, 1), (4, '2019565', '0086194139', '0000000000000000', 'Amazing Grace Danielle Prakoso', 'P', 'Jakarta', '2008-09-01', 2, 'WNI', 'Panorama serpong D10 No.20 Jl. Raya Puspiptek Serpong ', '[email protected]', 'amazing.pdf', '0817777673', 7, 'WhatsApp_Image_2020-03-05_at_16.25_.09_.jpeg', 0, 1, 'Sekolah Anak Panah ', 1, 0, 1), (5, '2019644', '0045421810', '0000000000000000', 'Alfarezha Prasetya V', 'L', 'Yogyakarta', '2004-07-24', 1, 'WNI', 'Apartemen Kebagusan City Tower C lt 19 no 20,Jl Baung,RT.2/RW.3,Kebagusan,Kec Ps.Minggu,Kota Jakarta Selatan,Daerah Khusus Ibu Kota Jakarta 12520', '[email protected]', 'alfares.pdf', '087787241700', 11, 'WhatsApp_Image_2020-03-05_at_4.38_.04_PM_.jpeg', 0, 1, 'SMP Pesat Kota Bogor', 1, 1, 1), (6, '2019573', '2074888707', '0000000000000000', 'Cheyshammah Chalysta Putra', 'P', 'Jakarta', '2007-10-24', 2, 'WNI', 'Kompleks Pendidikan, Jl. Melati No. 42 Cilandak Barat, Cilandak\nJakarta Selatan DKI Jakarta 12430\nIndonesia', '[email protected]', 'cheyshammah.pdf', '08112994305', 7, 'WhatsApp_Image_2020-03-05_at_16.45_.24_.jpeg', 0, 3, 'Sekolah Harapan Bangsa ', 1, 0, 1), (7, '2019639', '0041012123', '0000000000000000', 'Afnan Al Kautzar', 'L', 'Tangerang ', '2004-05-24', 1, 'WNI', 'Nusa Loka blok T9 no 16 Sektor XIV - 5 Rawamekar Jaya, Serpong', '[email protected]', 'afnan1.pdf', '081387990729', 11, 'WhatsApp_Image_2020-03-05_at_5.06_.03_PM_.jpeg', 0, 2, 'PKBM Anak Panah', 1, 1, 1), (8, '2019574', '2072395994', '0000000000000000', 'Chris Johannes Ammer', 'L', 'Sorong', '2007-03-31', 2, 'WNI', 'Jalan Gunung Tidar No. 1 Kampung Baru\nSorong Papua Barat 98413\nIndonesia', '[email protected]', 'chris_john_amer.pdf', '081247289903', 7, 'WhatsApp_Image_2020-03-05_at_17.16_.02_.jpeg', 0, 3, 'SD Advent', 1, 0, 0), (9, '2019575', '0079408138', '0000000000000000', 'Danish Arfa Indrawan', 'L', 'Karawang ', '2007-05-19', 1, 'WNI', 'Perumahan Citra Raya Cluster Parkview Y25/28 kelurahan mekar bakti kecamatan panongan kabupaten tangerang', '[email protected]', '05-03-2020-17.28_.01(1)_.pdf', '081315458727', 7, 'WhatsApp_Image_2020-03-05_at_17.30_.57_.jpeg', 0, 1, 'SD Negeri 03 Madiun Lor ', 1, 0, 0), (10, '2019570', '2062172832', '0000000000000000', 'Benedictus Benfilio Prihadi', 'L', 'Jakarta', '2006-10-08', 3, 'WNI', 'Jl Alicante Barat 3 No 12 Cluster Alicante, Gading Serpong\nTangerang Selatan Banten 15810', '[email protected]', '06-03-2020-09.26_.20_.pdf', '081294632297', 7, 'WhatsApp_Image_2020-03-06_at_09.28_.32_.jpeg', 0, 1, 'SD Tarakanita Gading Serpong', 1, 0, 0), (11, '2019571', '0069337219', '0000000000000000', 'Benita Videline Aprillia', 'P', 'perempuan ', '2006-04-30', 2, 'WNI', 'Jl. Kesatrian IX 27G, RT03/RW03 Keb. Manggis, Matraman, Jakarta Timur ', '[email protected]', 'benitta_videlin.pdf', '081717441007', 7, 'WhatsApp_Image_2020-03-06_at_09.53_.02_.jpeg', 0, 1, 'Sekolah Anak Panah', 1, 0, 0), (12, '2019636', '0042591635', '0000000000000000', 'Abigail Calista', 'P', 'Tangerang ', '2004-07-29', 5, 'WNI', 'Jl. Kelapa Sawit XVII BH 5/7 Kelapa Dua, Tangerang', '[email protected]', 'abigail.pdf', '081219838006', 11, 'WhatsApp_Image_2020-03-06_at_10.05_.16_AM_.jpeg', 0, 1, 'PKBM Anak Panah', 1, 1, 0), (13, '2019572', '0078287605', '0000000000000000', 'Bennett Sean Nugroho ', 'L', 'Padang', '2007-03-23', 2, 'WNI', 'Jl. Mangga 24 Blok F No. 140A Duri Kepa, Kebun\nJeruk, DKI Jakarta 11510 ', '[email protected]', 'benette.pdf', '0818857755', 7, 'WhatsApp_Image_2020-03-06_at_10.20_.48_.jpeg', 0, 2, 'Sekolah Anak Panah', 1, 0, 0), (14, '2019646', '2045784036', '0000000000000000', 'Ananda Meisya', 'P', 'Jakarta', '2004-05-27', 2, 'WNI', 'Jl. Pulo Harapan Indah No.220 Cengkareng, Jakarta Barat', '[email protected]', 'ananda_mesya.pdf', '088210612329', 11, 'WhatsApp_Image_2020-03-06_at_11.06_.48_AM_.jpeg', 0, 1, 'PKBM Anak Panah', 1, 0, 0), (15, '2019650', '2048219109', '0000000000000000', 'Aryoscha Prashantivari Herynanto', 'P', 'Jakarta', '2004-03-11', 3, 'WNI', 'DE LATINOS BRAZILLIA FLAMENGO BLOK D5 NO 3\nBSD CITY TANGERANG SELATAN 15318\nIndonesia', '[email protected]', 'KK_Aryoscha-converted.pdf', '087885407448', 11, 'WhatsApp_Image_2020-03-06_at_11.51_.45_AM_.jpeg', 0, 1, 'SMP Anderson', 1, 0, 0), (16, '2017270', '0022361972', '0000000000000000', 'Livia Natasha Denise Tunggul Rahardiyo', 'P', 'Tegal', '2002-12-13', 2, 'WNI', 'Villa Melati Mas Blok G 4/32', '[email protected]', 'Livia_Natasha1.pdf', '0818880399', 15, 'WhatsApp_Image_2020-03-19_at_11.26_.11_AM_1.jpeg', 0, 1, 'PKBM Anak Panah', 1, 0, 0), (17, '2017277', '0020476861', '0000000000000000', 'Naiffa Nurrahma Untsa', 'P', 'Tangerang', '2002-07-13', 1, 'WNI', 'Jl Kecipir 11 No 158 Rt. 004/014. Cibodasari, Cibodas, Kota Tangerang', '[email protected]', 'naifa.pdf', '087718770707', 15, 'WhatsApp_Image_2020-03-20_at_3.39_.58_PM_.jpeg', 0, 1, 'SMPN 9 Kota Tangerang', 1, 0, 0), (18, '2017279', '0022151032', '0000000000000000', 'Pearliani Fatima Harum', 'P', 'Surabaya', '2002-04-29', 1, 'WNI', 'Jl. Papandayan No.16 Mediterania 1 Sentul City', '[email protected]', 'Pearliani_Fatima.pdf', '087888220635', 15, 'WhatsApp_Image_2020-03-19_at_10.57_.10_AM_.jpeg', 0, 3, 'SMP Bina Insani', 1, 0, 0), (19, '2017272', '0025273797', '0000000000000000', 'Manuel Apriadi', 'L', 'Jakarta ', '2002-04-16', 3, 'WNI', 'JL. RUBY II B 4/17 RT 005 RW 001', '[email protected]', 'manuel.pdf', '000', 14, 'Manuel_Apriadi.jpeg', 0, 2, 'SMP NOTRE DAME', 1, 0, 0), (21, '2017262', '0030074956', '0000000000000000', 'Jonathan Kindangan', 'L', 'Manado', '2003-02-09', 2, 'WNI', 'Malendeng Lingkungan V RT 024 RW 005 Kecamatan Tikala Kelurahan Malendeng , Kota Manado. Sulawesi Utara 95128', '[email protected]', 'jonathan.pdf', '085394999210', 14, 'Jonathan_Kindangen.jpeg', 0, 3, 'MTS.NEGERI 4 JAKARTA', 1, 0, 0), (22, '2017286', '9993447464', '0000000000000000', 'Rinaldi Syahputra Pratama', 'L', 'Jakarta', '1999-02-14', 1, 'WNI', 'Bank I/9, 007/007, Pela mampang, mampang prapatan, Jakarta Selatan', '[email protected]', 'rinaldi.pdf', '081314228068', 13, 'Screenshot_7.png', 0, 2, 'Cognitive Challenge', 1, 0, 0), (23, '2017280', '0028578014', '0000000000000000', 'Putri Amalia Rahmayani Sinaga', 'P', 'Bekasi', '2002-11-18', 1, 'WNI', 'Citra Raya Cluster Taman Raya Jl. Musik 8 Blok M No.35 RT21/RW05 Dukuh Tangerang', '[email protected]', 'putri.pdf', '081266663737', 15, 'WhatsApp_Image_2020-03-20_at_9.56_.45_AM_.jpeg', 0, 2, 'SMP Citra Berkat', 1, 0, 0), (24, '2017281', '9988749707', '0000000000000000', 'Raden Monica Silvia', 'P', 'Ciamis', '1998-05-21', 1, 'WNI', 'Jl. IR. H Juanda', '[email protected]', 'raden_monica.pdf', '085322649805', 14, 'Raden_Monica1.jpeg', 0, 1, 'Anak Panah', 1, 0, 0), (25, '2017291', '0001106687', '0000000000000000', 'Sheryn Rose', 'P', 'Surabaya', '2000-11-30', 2, 'WNI', 'KP. Gebang RT001 RW006', '[email protected]', 'Soal_Ujian_SD_Bahasa_Indonesia_2018.pdf', '', 15, 'tidur-dengan-kucing.jpg', 0, 1, 'SMP Stella Maris ', 1, 0, 0), (26, '2017271', '0025475041', '0000000000000000', 'Maansie Shaguffta Kaur', 'P', 'Jakarta', '2002-06-21', 4, 'WNI', 'Jl. Bungur Raya No.5 RT/RW 01/01 Kebayoran Lama Selatan, Jakarta Selatan', '[email protected]', 'shaguftah.pdf', '081291282794', 14, 'Maansie_Shaguffa.jpeg', 0, 2, 'SMP BINA NUSANTARA', 1, 0, 0), (28, '2017284', '0024966861', '0000000000000000', 'Raka Rasendriya Reswara', 'L', 'Tangerang', '2002-05-22', 1, 'WNI', 'Jl. Darma Putra VI No 24 Komp. Kostrad RT 07/07, Kebayoran lama', '[email protected]', 'Raka_Rasendriya_Reswara.pdf', '085893222415', 15, 'Raka_Rasendriya1.jpeg', 0, 1, 'SMP Islam Plus Baitul Maal Kota Tangerang', 1, 0, 0), (29, '2017292', '9986274415', '0000000000000000', 'Siti Fatimah', 'P', 'Jakarta', '1998-03-07', 1, 'WNI', 'Jl. Kebon Pala II RT11/RW004 Kampung Melayu Jatinegara Jakarta Timur', '[email protected]', 'Siti_Fatimah.pdf', '085788587982', 15, 'Siti_Fatimah.jpeg', 0, 2, 'SMPN 26 Jakarta Timur', 1, 0, 0), (30, '2017264', '0024240588', '0000000000000000', 'Justin Andean Sunardi', 'L', 'Jakarta', '2002-06-07', 2, 'WNI', 'Jl. Jamblang Indah II/12 RT 013 RW 002 Kelurahan Duri Selatan Kecamatan Tambora, Kota Jakarta Barat DKI Jakarta 11270', '[email protected]', 'justin.pdf', '12345678', 15, 'Justin_Andean.jpeg', 0, 1, 'Smp Kristen 2 Penabur', 1, 0, 0), (31, '2017297', '0029369713', '0000000000000000', 'Tirza Theophilia', 'P', 'Bandung', '2002-06-21', 2, 'WNI', 'Jl Wakeke 24 Lingkungan II Rt 002/002 Wenang Utara, Kota Manado', '[email protected]', 'Tirza_Theophilia.pdf', '0817436626', 14, 'WhatsApp_Image_2020-03-17_at_3.04_.50_PM_.jpeg', 0, 2, 'SMP Kristen Ebenhaezar 2 Manado', 1, 0, 0), (32, '2017285', '0025984039', '0000000000000000', 'Rendy Juliansyah', 'L', 'Tangerang', '2002-07-27', 1, 'WNI', 'Jl. Beruang II No 82 RT 01/02, Ciputat timur, Kota Tangerang Selatan ', '[email protected]', 'rendy_juliansah.pdf', '0817162449', 15, 'Rendy_Juliansyah1.jpeg', 0, 4, 'Anak Panah', 1, 0, 0), (33, '2017275', '0015875755', '0000000000000000', 'Muhammad Ikraam Mahendra', 'L', 'Bandung', '2001-07-26', 2, 'WNI', 'Jl. Babakan Periuk I No.8 RT/RW 001/006', '[email protected]', 'ikraam.pdf', '08122008947', 14, 'WhatsApp_Image_2020-03-20_at_2.42_.07_PM_.jpeg', 0, 1, 'SMP MUTIARA BUNDA', 1, 0, 0), (34, '2017293', '0020994122', '0000000000000000', 'Stanley Nathanael', 'L', 'Tangerang', '2002-05-27', 2, 'WNI', 'Jl. Pal Merah Barat No. 21 RT001/RW005 Grogol Utara Kebayoran Lama Jakarta Selatan', '[email protected]', 'stanley_nathanael.pdf', '083875200857', 14, 'Stanley_Nathanael.jpeg', 0, 2, 'SMP Swasta Athalia Kota Tangerang Selatan', 1, 0, 0), (35, '2017296', '0015845787', '0000000000000000', 'Theresa Zevanya', 'P', 'Jakarta', '2001-06-28', 2, 'WNI', 'Bukit Pamulang Indah Blok E 16 No.3 Rt. 002/005 Pamulang Timur, Kota Tangerang Selatan', '[email protected]', 'Theresa_Zevanya.pdf', '089636949886', 15, 'WhatsApp_Image_2020-03-19_at_10.50_.06_AM_.jpeg', 0, 2, 'PKBM Kak Seto', 1, 0, 0), (36, '2017295', '0023094252', '0000000000000000', 'Steven Chen', 'L', 'Pematang Siantar', '2002-09-22', 3, 'WNI', 'Bukit Serpong Mas Blok D-1/20 RT003/RW007 Pakulonan Serpong Utara Kota Tangerang Selatan', '[email protected]', 'Soal_Ujian_SD_Bahasa_Indonesia_2018.pdf', '', 14, 'tidur-dengan-kucing.jpg', 1, 1, 'SMP Menara Tirza', 1, 0, 0), (37, '2017282', '0017661202', '0000000000000000', 'Raisha Hapsari', 'P', 'Tangerang', '2001-10-18', 1, 'WNI', 'Kp.Parabon RT 02/03 Ciloto, Cipanas, Cianjur', '[email protected]', 'Raisha_Hapsari1.pdf', '081221747891', 15, 'Raisha_Hapsari1.jpeg', 0, 1, 'SMPIT Daarul Hasan', 1, 0, 0), (38, '2017298', '0012694762', '0000000000000000', 'Valencia Anggi Putri', 'P', 'Tangerang', '2001-02-15', 2, 'WNI', 'Jl Danau Toba Raya No. 40 Rt.004/008 Bencongan Kelapa Dua Tangerang', '[email protected]', 'valencia_angi1.pdf', '081218327657', 14, 'Valencia2.jpeg', 0, 3, 'SMP Strada Slamet Riyadi Kota Tangerang', 1, 0, 0), (39, '2017287', '0016469246', '0000000000000000', 'Ryo Adrian Pangestu', 'L', 'Jakarta', '2001-12-16', 2, 'WNI', 'Cluster IL Rosa Jl. Rosa 5 Blok O 52', '[email protected]', 'ryo_adrian.pdf', '081314039006', 15, 'Ryo_Adrian.jpeg', 0, 1, 'SMA Kristen IPEKA BSD', 1, 0, 0), (40, '2017299', '0002885795', '0000000000000000', 'Vardian Veronico', 'L', 'Bireuen ', '2000-05-01', 2, 'WNI', 'Jl. Kh Moch Mansyur Blok 15F No 18 Rt 10/02 Duri Pulo, Gambir', '[email protected]', 'Vardian_Veronico.pdf', '08111651905', 14, 'Vardian_Veronico.jpeg', 0, 3, 'SMP Kristen Samaria Grogol', 1, 0, 0), (41, '2017288', '0013071953', '0000000000000000', 'Salsabila Zaahidiyah Azzahra', 'P', 'Surabaya', '2001-01-20', 1, 'WNI', 'Kedung Banteng RT002/RW001 Kedung Banteng Tanggulangin Sidoarjo 61272 Jawa Timur', '[email protected]', 'salsabila1.pdf', '081311736295', 14, 'Salsabilla_Zaadiyah.jpeg', 0, 1, 'PKBM 25 Kuningan', 1, 0, 0), (42, '2017191', '0057673276', '0000000000000000', 'Andillie Wiliady', 'L', 'Jakarta ', '2005-02-11', 3, 'WNI', 'BATUJAYA SELATAN rt1/1 Desa / Kelurahan : Batujaya Kode Pos : 15121', '[email protected]', '09-03-2020-15.57_.29_.pdf', '0817738830', 9, 'Andilie.jpeg', 0, 3, 'SD Mutiara Bangsa ', 1, 0, 0), (43, '2017283', '0022442795', '0000000000000000', 'Raissa Cleodora Junia', 'P', 'Tangerang', '2002-06-18', 2, 'WNI', 'Perum tm Adiyasa Ruko L1-2 Cikasungka Solear ', '[email protected]', 'Raissa_Cleodora_Junia1.pdf', '081382652555', 14, 'WhatsApp_Image_2020-03-20_at_5.36_.08_PM_1.jpeg', 0, 3, 'SMP Strada Tunas Harapan', 1, 0, 0), (44, '2017235', '2991925707', '0000000000000000', 'Anandeiva Amanda', 'P', 'Jakarta', '1999-09-18', 1, 'WNI', 'Jl.Guntur Blok A/24 RT 004 RW 014 Kelurahan Jati Makmur Kecamatan Pondok Gede, Kota Bekasi Jawa Barat 17413', '[email protected]', 'anandeiva1.pdf', '08881029642', 14, 'Anandeiva.jpeg', 0, 1, 'Smp Negeri 9 Kota Bekasi', 1, 0, 0), (45, '2017273', '0022282338', '0000000000000000', 'Michelle Zevinca', 'P', 'Jakarta', '2002-03-15', 3, 'WNI', 'Komp. Delta Kedoya Blok G/9 RT/RW 05/03', '[email protected]', 'michele_zevincha.pdf', '08557535995', 15, 'Michelle_Zevinca.jpeg', 0, 1, 'SMP KATOLIK SANG TIMUR', 1, 0, 0), (46, '2017192', '0046961156', '0000000000000000', 'Andrea Christabella Darmadji', 'P', 'Tangerang ', '2004-08-03', 2, 'WNI', 'Banara Serpong Ambara D2/11\nTangerang Tangerang Selatan 15314\n', '[email protected]', '09-03-2020-17.10_.10_.pdf', '081210105209', 9, 'Andrea_Darmaji.jpeg', 0, 1, 'PKBM Geliat Bocah Kampoeng Program', 1, 0, 0), (47, '2017241', '0023689300', '0000000000000000', 'Carolline ', 'P', 'Jakarta', '2002-11-06', 3, 'WNI', 'gang masjid III RT 005/007 Angke, Tambora, Jakarta Barat', '[email protected]', 'caroline.pdf', '081882005085', 15, 'WhatsApp_Image_2020-03-20_at_5.28_.32_PM_.jpeg', 0, 1, 'PKBM Hasanah Ilmu', 1, 0, 0), (48, '2017249', '2093204937', '0000000000000000', 'Emmanuela Louis', 'P', 'Bogor', '2002-10-10', 2, 'WNI', 'Jl. DR. Angka Komp. Ruko PD 2/15-16 001/011, Purwokerto utara, Banyumas', '[email protected]', 'emanuela_louis.pdf', '08176695510', 15, 'Emmanuela_Louis1.jpeg', 0, 2, 'SMPN 3 Bahasa Putera Harapan', 1, 0, 0), (50, '2017240', '0021878678\r\n', '0000000000000000', 'Ashwin Vijay Sarkar', 'L', 'Jakarta', '2002-08-09', 1, 'WNI', 'Talagasari RT 007 RW 003 Kelurahan Talagasari Kecamatan Cikupa, Kota Tangerang. Banten 15710', '[email protected]', 'ashwin-compressed.pdf', '081295261118', 15, 'WhatsApp_Image_2020-03-20_at_5.19_.58_PM_.jpeg', 0, 1, 'Sekolah Citra Berkat', 1, 0, 0), (51, '2017242', '0028519836', '0000000000000000', 'Christi Stefani Arita', 'P', 'Jambi', '2002-09-17', 2, 'WNI', 'Jl Cipinang Cempedak IV No 47 RT 11 RW 03 Cipinang Jakarta Timur', '[email protected]', 'chisty_final.pdf', '08117297000', 14, 'WhatsApp_Image_2020-03-17_at_3.20_.16_PM_.jpeg', 0, 1, 'SMP Kristen BPK Penabur', 6, 0, 0), (52, '2017251', '0022640803', '0000000000000000', 'Faradisha Lailatul Azari Azhar', 'P', 'Pekan Baru', '2002-12-20', 1, 'WNI', 'Jl. Sultan Syarif Qasim Gang keluarga No 09 Rintis, Limapuluh', '[email protected]', 'faradisha.pdf', '085156303546', 15, 'Faradisha1.jpeg', 0, 1, 'SMP Swasta Sains Tahfizh Islamic Center', 1, 0, 0), (54, '2017243', '0018578372', '0000000000000000', 'Dave Adriel', 'L', 'Jakarta', '2001-12-20', 3, 'WNI', 'Villa Melati Mas Blok Vista II/42 Rt 003/006 Jelupang Serpong Utara', '[email protected]', 'dave_adriel.pdf', '081316022081', 14, 'Dave_Adriel.jpeg', 0, 3, 'PKBM Alfa Omega', 1, 0, 0), (55, '2017253', '0029858432', '0000000000000000', 'Fatimah Azzahra ', 'P', 'Riau', '2002-05-05', 1, 'WNI', 'Jl. Sukajadi No 7 RT 07/03 Sukabungah, Kota Bandung', '[email protected]', 'fatimah_azzahra.pdf', '082386069190', 15, 'WhatsApp_Image_2020-03-20_at_2.33_.10_PM_1.jpeg', 0, 2, 'SMPN 12 Bandung', 1, 0, 0), (58, '2017248', '0018581452', '0000000000000000', 'Dzaki Alkamal', 'L', 'Tasikmalaya', '2001-05-08', 1, 'WNI', 'Cluster Syailendra No 73, Perumahan Grantaruma, Kab, Karawang', '[email protected]', 'dzaki_akmal.pdf', '085717768666', 15, 'Dzaki_Alkamal.jpg', 0, 1, 'PKBM Cepat Tepat', 1, 0, 0), (59, '2017234', '0028328936', '0000000000000000', 'Aloysius Giorgio', 'L', 'Tangerang', '2002-02-18', 3, 'WNI', 'Bsd Blok N-7 sektor 1-2 RT 002 RW 004 Kelurahan/ Desa Rawabuntu Kecamatan Serpong, Kota Tangerang. Banten 15318', '[email protected]', 'aloysius.pdf', '08811054834', 14, 'Aloysius_Giorgio.jpeg', 0, 1, 'SMP Santa Laurensia', 1, 0, 0), (60, '2017247', '0021076548', '0000000000000000', 'Dyssa Chysilla Cathlin', 'P', 'Jakarta', '2002-01-26', 1, 'WNI', 'Jl Tenis IV No 101 Rt 06/08 Kapuk Jakarta Utara', '[email protected]', 'dyasa.pdf', '089661554012', 15, 'Dyssa.jpeg', 0, 1, 'SMPN 273 Jakarta Pusat', 1, 0, 0), (61, '2017250', '0022499109', '0000000000000000', 'Faiza Piatunisa', 'P', 'Jakarta', '2002-03-31', 1, 'WNI', 'Kp. Pondok Randu RT 13/02 Duri kosambi, Jakarta barat', '[email protected]', 'faiza.pdf', '089602568884', 15, 'WhatsApp_Image_2020-03-17_at_3.08_.14_PM_1.jpeg', 0, 1, 'SMPN 176 Jakarta', 6, 0, 0), (62, '2017257', '0023962777', '0000000000000000', 'Hansen Anthony Hose Wijaya', 'L', 'Bandung', '2002-11-13', 2, 'WNI', 'Lingk Cimenyan I RT02/RW01 Mekar Sari Banjar', '[email protected]', 'hansen_antony.pdf', '081323381999', 15, 'WhatsApp_Image_2020-03-20_at_5.23_.45_PM_.jpeg', 0, 3, 'SMPN 1 Banjar', 1, 0, 0), (63, '2017258', '0022036530', '0000000000000000', 'Helen Evelyn', 'P', 'Tangerang', '2002-10-10', 5, 'WNI', 'Jl. Pademangan III GG.12 RT003/RW007 Pademangan Jakarta Utara DKI Jakarta', '[email protected]', 'helen_final.pdf', '081271477489', 14, 'Helen_Evelyn.jpeg', 0, 1, 'SMP Tarakanita Citra Raya', 1, 0, 0), (64, '2017238', '0015799774', '0000000000000000', 'Andre Alvino Siauw Ko Peng', 'L', 'Tangerang', '2001-10-13', 3, 'WNI', 'JL. Janur Kuning I BF 15/17 RT 002 RW 013 Kelurahan Pakulonan Barat Kecamatan Kelapa Dua, Kota Tangerang. Banten 15812', '[email protected]', 'andre_alvino.pdf', '08111540113', 14, 'WhatsApp_Image_2020-03-19_at_11.46_.44_AM_.jpeg', 0, 1, 'SMP Pahoa', 1, 0, 0), (65, '2017252', '0024801233', '0000000000000000', 'Fath Fazzu Fahim', 'L', 'Jakarta', '2002-03-20', 1, 'WNI', 'Komplek Wisuda Mas Blok C1 No 11 RT 03/10 ', '[email protected]', 'fath.pdf', '0811174857', 15, 'WhatsApp_Image_2020-03-20_at_9.41_.59_AM_1.jpeg', 0, 1, 'PKBM KAK SETO', 1, 0, 0), (66, '2017246', '0029380007', '0000000000000000', 'Dizza Azahra Tanuwijaya', 'P', 'Jakarta', '2002-05-02', 1, 'WNI', 'Jl Nurul Yaqin Rt 04/04 Poris Palawad Indah Tangerang', '[email protected]', 'dizza_final.pdf', '081911005380', 14, 'Dizza_Azzahra.jpeg', 0, 1, 'SMP Batavia Kota Tangerang', 1, 0, 0), (67, '2017259', '0011154949', '0000000000000000', 'Intan Kirana Wulandari', 'P', 'Jakarta', '2001-09-23', 1, 'WNI', 'Jl. Bambu Betung 5 No.9 RT03/RW011 Cilendek Bogor', '[email protected]', 'intant_kirana_final.pdf', '085880455467', 15, 'WhatsApp_Image_2020-03-20_at_3.22_.53_PM_.jpeg', 0, 3, 'SMPN 14 Bogor', 1, 0, 0), (68, '2017260', '0021723776', '0000000000000000', 'Jason Joserio', 'L', 'Jakarta', '2002-11-05', 5, 'WNI', 'Jl. Samarosa III 06/05, Angke, Tambora, Jakarta Barat', '[email protected]', 'jason.pdf', '081296903133', 15, 'WhatsApp_Image_2020-03-19_at_2.09_.04_PM_1.jpeg', 0, 2, 'SMP Tunas Mulia', 1, 0, 0), (69, '2017244', '0020476035', '0000000000000000', 'Dian Sugandha', 'P', 'Jakarta', '2002-07-08', 2, 'WNI', 'Bojong Larang Rt 01/04, Bojong Jaya Tangerang', '[email protected]', 'diansuganda.pdf', '08970007661', 14, 'WhatsApp_Image_2020-03-20_at_11.47_.41_AM_.jpeg', 0, 1, 'SMP Kristen Kanaan', 1, 0, 0), (70, '2017233', '0024628111', '0000000000000000', 'Ahmad Shofwan Nizhomi ', 'L', 'Tangerang', '2002-03-01', 1, 'WNI', 'Taman Mangu Indah E.13/2 RT 003 RW 006 Kelurahan Pondok Aren Kecamatan Pondok Aren, Kota Tangerang Selatan. Banten 15424', '[email protected]', 'ahmad_sofwan-compressed.pdf', '081296903490', 15, 'Ahmad_Sofwan.jpeg', 0, 1, 'SMP Islam Plus Baitul Maal', 1, 0, 0), (71, '2017256', '0023978051', '0000000000000000', 'Haezel Wahyudya Perdana', 'L', 'Magelang', '2002-01-30', 2, 'WNI', 'Dusun Bulu Lor RT004/RW002 Podosoko Sawangan Magelang Jawa Tengah 56481', '[email protected]', 'haezel1.pdf', '', 15, 'Haezel.jpeg', 0, 1, 'SMPN 3 Sleman', 1, 0, 0), (72, '2017245', '0020450340', '0000000000000000', 'Dinda Nurlaela Rahma', 'P', 'Tasikmalaya', '2002-01-29', 1, 'WNI', 'Jl Taruna Jaya No 28 Rt 04/03', '[email protected]', 'Dinda_Nurlela_Rahma.pdf', '0', 15, 'Dinda_Nurlaela.jpeg', 0, 1, 'SMA Quantum Indonesia', 1, 0, 0), (73, '2017261', '2029069865', '0000000000000000', 'Jonah Levi', 'L', 'Bogor', '2002-04-10', 2, 'WNI', 'Jl. Bukit Nirwana Raya No. 27 RT 02/12 Kota Bogor selatan', '[email protected]', 'jonah_levi.pdf', '082111526297', 15, 'WhatsApp_Image_2020-03-20_at_3.27_.29_PM_1.jpeg', 0, 1, 'SMA Regina Pacis', 1, 0, 0), (74, '2018346', '0061528273', '0000000000000000', 'Alodie Kayley Azalia', 'P', 'Tangerang', '2006-05-07', 1, 'WNI', 'Jln Taman Legian 3 Nomor 3 Lippo Karawaci Tangerang', '[email protected]', 'Contoh.pdf', '089622222606', 8, 'Alodie.jpeg', 0, 2, 'SD Hilaris Kecamatan Kelapa Dua', 1, 0, 0), (76, '2017268', '0024383209', '0000000000000000', 'Khansa Nazla Syahirah', 'P', 'Pekan Baru', '2002-05-22', 1, 'WNI', 'Griya Jakarta Jl. Kemang 7 Blok B 1 No 58 05/08, Pamulang, Kota tangerang', '[email protected]', 'khansa.pdf', '081289832490', 14, 'Khansa_Nazla1.jpeg', 0, 1, 'SMA Al-Wildan Islamic School Gading Serpong', 1, 0, 0), (77, '2017231', '0015816493', '0000000000000000', 'Agatha Putri Adiningtyas ', 'P', 'Tangerang', '2001-03-04', 3, 'WNI', 'Permata Pamulang Blok G-14/12 RT 006 RW 005 Kelurahan Bakti Jaya Kecmatan Setu, Kota Tangerang.Banten 15315', '[email protected]', 'aghata.pdf', '12345678', 15, 'Agatha_Putri.jpeg', 0, 1, 'SMP Mater Dei', 1, 0, 0), (78, '2017290', '2021801696', '0000000000000000', 'Seno Bayu Aji Arinanto', 'L', 'Giriklopo Mulyo', '2002-05-09', 1, 'WNI', 'Demangan, 001/003, Ngunggahan, Eromoko, Wonogiri, 57663. Jawa Tengah', '[email protected]', 'seno_aji.pdf', '082260050574', 14, 'WhatsApp_Image_2020-03-19_at_10.11_.56_AM_.jpeg', 0, 2, 'SMA WIDYA GAMA', 5, 0, 0), (79, '2018347', '0063041634', '0000000000000000', 'Alvin Arwoon', 'L', 'Jakarta', '2006-03-06', 5, 'WNI', 'Apartement City Park Tower A Lantai 8 No 1\nCengkareng Timur\nJakarta Barat', '[email protected] ', 'alvin_arwoon.pdf', '089604282632', 8, 'Screenshot_6.png', 0, 2, 'SDS Impian Bunda', 1, 0, 0), (80, '2017269', '0025603737', '0000000000000000', 'Kheyla ramadhani hakim', 'P', 'Jakarta', '2002-12-04', 1, 'WNI', 'Jl. H. Saabun Kav. 15 RT 09/05, Jati Padang, Pasar Minggu, Jakarta Selatan', '[email protected]', 'kheyla.pdf', '0812 8716 0761', 14, 'WhatsApp_Image_2020-03-19_at_1.51_.31_PM_1.jpeg', 0, 2, 'SMP HighScope Indonesia Bintaro', 1, 0, 0), (82, '2017237', '0001527686', '0000000000000000', 'Anastasia Natalia', 'P', 'Jakarta', '2000-12-26', 2, 'WNI', 'Komplek Sekneg RT 001 RW 006 Kelurahan Grogol Selatan Kecamatan Kebayoran Lama, Kota Jakarta Selatan. DKI Jakarta', '[email protected]', 'anastasia.pdf', '081806035566', 15, 'Anastasia_Natalia.jpeg', 0, 1, 'SMP Pangudi Luhur', 1, 0, 0), (83, '2018349', '0068298168', '0000000000000000', 'Andrew Christian Sinaga', 'L', 'Jakarta', '2006-03-01', 2, 'WNI', 'Taman Surya 3 Blok K1 No.3 Jakarta Barat', '[email protected]', 'andres_sinaga.pdf', '087886472065', 8, 'Andrew_Christian.jpeg', 0, 1, 'SD Kasih Immanuel', 1, 0, 0), (84, '2017267', '0023796353', '0000000000000000', 'Khairun Nisa Saliha', 'P', 'Balikpapan', '2002-02-18', 1, 'WNI', 'Jl. sumatra Blok H.1 No 4 Nusa Loka BSD RT 02/05 Rawamekar Jaya', '[email protected]', 'khairunisa_saliha.pdf', '081399284599', 14, 'Khairun_Nisa1.jpeg', 0, 2, 'SMP Sinar Cendekia', 1, 0, 0), (85, '2017289', '0017234792', '0000000000000000', 'Samuel', 'L', 'Jakarta', '2001-03-03', 2, 'WNI', 'Jl. Kp. Rawa Seli No.21 RT/RW 10/04 Kel. Kampung Rawa, Jakarta Pusat', '[email protected]', 'Samuel.pdf', '08986876958', 14, 'Samuel.jpeg', 0, 2, 'SMP MAHANAIM BEKASI', 1, 0, 0), (86, '2020744', '0030675573', '0000000000000000', 'Anastasia Amanda', 'P', 'JAKARTA', '2003-03-18', 3, 'WNI', 'Kemuning Utama II Blok A10/10 Kosambi Jakarta Barat', '[email protected]', 'Anastasia_Amanda_Doc.pdf', '087877376510', 12, 'Anastasia_Amanda.jpg', 0, 2, 'SMP Santo Leo II Cengkareng', 1, 0, 0), (87, '2018350', '2057947803', '0000000000000000', 'Andrew Julian Fawazza Permana', 'L', 'Balikpapan', '2006-07-27', 1, 'WNI', 'Apartemen Waterplace Residences Tower F 1810 JL Pakuwon Indah Lakarsantri 60213', '[email protected] ', 'andrew_julian_permana.pdf', '082195953388', 8, 'Andrew_Julian.jpeg', 0, 1, 'PKBM Anak Panah', 1, 0, 0), (88, '2017265', '0022550751', '0000000000000000', 'Kanaesya Putri Wijaya', 'P', 'Sukaharjo', '2002-10-14', 1, 'WNI', 'Pemuda Residence I, Jl Pemuda II no 1 Rt 08/09 Srengseng sawah, Jakarta Selatan', '[email protected]', 'khanaesa.pdf', '081296948000', 15, 'Kanaesya_Putri1.jpeg', 0, 1, 'Anak Panah', 1, 0, 0), (89, '2020734', '0033360061', '0000000000000000', 'Alif Ariel Ramadhan', 'L', 'Surabaya', '2003-11-22', 1, 'WNI', 'Cluster Riviera No.28 Palemsemi Bencongan Kelapa Dua Tangerang', '[email protected]', 'Alif_Ariel_Ramadhan.pdf', '08111342030', 13, 'tidur-dengan-kucing.jpg', 0, 1, 'SMP Plus Islamic Village', 1, 0, 0), (90, '2018351', '0067867138', '0000000000000000', 'Arthur Christian Anderson', 'L', 'Tangerang', '2006-04-24', 2, 'WNI', 'Jl Tanah Sereal I/14A-74 Tambora Jakarta Barat', '[email protected]', 'arthur_anderson.pdf', '0818754388', 8, 'Arthur_Christian.jpeg', 0, 1, 'SD Kristen Tunas Bangsa', 1, 0, 0), (91, '2017232', '0030138860', '0000000000000000', 'Ahmad Rusadi', 'L', 'Samarinda', '2003-04-04', 1, 'WNI', 'Jl. KH. Harun Nafsi No.09 RT12/- Kelurahan Rapak Dalam Kecamatan Loa Janan Ilir, Kota Samarinda. Kalimantan Timur 75132', '[email protected]', 'ahmad_rusadi-compressed.pdf', '081805896745', 15, 'Ahmad_Rusadi.jpeg', 0, 2, 'SMP Negeri 36 Samarinda', 1, 0, 0), (92, '2017266', '0024387626', '0000000000000000', 'Kenny sumihardjo', 'L', 'Jakarta', '2002-06-15', 3, 'WNI', 'Jl.Cimanuk No 43 RT 08/01 Cideng Jakarta Pusat', '[email protected]', 'Kenny_Sumihardjo1.pdf', '0811153533', 15, 'Kenny_Sumihardjo1.jpeg', 0, 2, 'Cambidge International School', 1, 0, 0), (93, '2018352', '0064483907', '0000000000000000', 'Azzam Alifiandra Kosandi', 'L', 'Kyoto', '2006-11-13', 1, 'WNI', 'Jl PLN Duren Tiga Pancoran Jakarta Selatan', '[email protected] ', 'azzam_kosandi.pdf', '0', 8, 'Azzam.jpeg', 0, 2, 'PKBM Bina Insan Mandiri', 1, 0, 0), (94, '2018394', '2039284861', '0000000000000000', 'Ammar Attamimi', 'L', 'Solo', '2003-03-22', 1, 'WNI', 'PSSI National Youth Tranning Centre', '[email protected]', 'Ammar_Attamimi_doc.pdf', '', 13, 'Ammar.JPG', 0, 1, 'SMPN 18 Malang', 1, 0, 0), (95, '2017294', '0021351689', '0000000000000000', 'Stefhany Helga Anjelin', 'P', 'Bandar Lampung', '2002-02-06', 3, 'WNI', 'Taman Puspita Blok I.17/18 RT/RW 008/002 Kel. Cikupa, Tangerang Banten.', '[email protected]', 'Stefhany_helga_anjelin_IPS_baru.pdf', '085213152935', 15, 'Stefhany_Helga.jpeg', 0, 3, 'SMP STRADA PELITA II ', 1, 0, 0), (96, '2017239', '2018925618', '0000000000000000', 'Annethe Viriya Ksanti', 'P', 'Magelang', '2001-02-03', 5, 'WNI', 'Jl. Diponegoro 30 A RT 001 RW 005 Kelurahan Temanggung 1 Kecamatan Temanggung, Kota Temanggung. Jawa Tengah 56212', '[email protected]', 'annet-compressed.pdf', '08119993989', 14, 'WhatsApp_Image_2020-03-20_at_4.52_.18_PM_.jpeg', 0, 1, 'PKBM Anugrah Bangsa', 1, 0, 0), (97, '2020748', '0030095908', '0000000000000000', 'Amira Fathia Putriansyah', 'P', 'Jakarta', '2003-03-07', 1, 'WNI', 'Jl. Carita Blok AB No. 4 Depok Mulya II RT001/RW016 Kel. Beji Kota Depok', ') [email protected]', 'amira.pdf', '087776522907', 13, 'amira_fatha.jpg', 0, 2, 'SMP Santa Theresia', 1, 0, 0), (98, '2017202', '0053565887', '0000000000000000', 'Jeanice Tyshia Fayola', 'P', 'Jakarta', '2005-10-12', 3, 'WNI', 'Poris Indah Blok F7 No 39 Cipondoh Tangerang', '[email protected]', 'Jeanice_Tyshia.pdf', '082128602985', 9, '159472fd-9af0-4f18-a3b8-d2afb517087b.jpg', 0, 2, 'SD Maria Immaculata', 1, 0, 0), (99, '2018353', '0061728771', '0000000000000000', 'Brandon Clifford Shawn', 'L', 'Jakarta', '2006-01-05', 2, 'WNI', 'Perumahan Green lake City, Cluster Europe 9 no 68, rt 002 010, kelurahan ketapang, kecamatan Cipondoh, Kota Tangerang, Banten 15147', '[email protected] ', 'brandon.pdf', '089512081115', 8, 'Brandon_Clifford.jpeg', 0, 3, 'PKBM Anak Panah', 1, 0, 0), (100, '2018398', '0023133947', '0000000000000000', 'Arya Ramadhana', 'L', 'Sidoarjo', '2002-11-14', 1, 'WNI', 'Jl. Sri Endah No.1 RT008/RW008 Ancol Regol Kota Bandung', '[email protected]', 'Arya_Ramadhan_Doc.pdf', '0811339308', 12, 'arya_ramadhan.jpg', 0, 1, 'SMP Taruna Bakti', 1, 0, 0), (101, '2018354', '0068519464', '0000000000000000', 'Bungamas Ghania Manai', 'P', 'Tangerang', '2006-07-25', 1, 'WNI', 'De Latinos Cluser Brazilia D6/02', '[email protected]', 'Contoh.pdf', '085778373151', 8, 'Bunga_mas.jpeg', 0, 1, 'PKBM Technosa', 1, 0, 0), (103, '2017236', '0020133029', '0000000000000000', 'Anastasia Dinda Prasetya Utami', 'P', 'Palembang ', '2002-01-31', 3, 'WNI', 'Balikpapan baru Blok L3/21 Kelurahan Damai Baru Kecamatan Balikpapan Selatan, Kota Balikpapan. Kalimantan Timur', '[email protected]', 'anastasia_dinda.pdf', '082148687040', 15, 'Anastasia_Dinda_Prasetya.jpeg', 0, 2, 'SMP Negeri 1 Balikpapan', 1, 0, 0), (104, '2017204', '0058543814', '0000000000000000', 'Justyn Aurelius Khong', 'L', 'Jakarta', '2005-10-28', 5, 'WNI', 'Jalan Starling Timur 3 Nomor 9 Cluster Starling Perumahan Gading Serpong Tangerang Selatan', '[email protected]', 'Justyn_Aurelius_Khong.pdf', '082114426141', 9, 'WhatsApp_Image_2020-03-10_at_11.41_.20_AM_.jpeg', 0, 2, 'SD Swasta Stella Maris', 1, 0, 0), (106, '2018392', '0023602623\r\n', '0000000000000000', 'Amadeus Justin Farrell', 'L', 'Jakarta', '2003-12-03', 5, 'WNI', 'Grand Grisenda Blok 60 RT007/RW003 Kapuk Muara Penjaringan Jakarta Utara', '[email protected]', 'amadeus_justine_.pdf', '087883300816', 13, 'amadeus_justin.jpg', 0, 1, 'SMPK 6 Penabur', 1, 0, 0), (107, '2018386', '3273191407020001', '0000000000000000', 'Andrian Ernest Prawira Putra', 'L', 'Bandung', '2002-07-14', 3, 'WNI', 'Jl. Sunda 6 No.93 RT001/RW001 Merdeka Sumur Bandung Kota Bandung', '[email protected]', 'Soal_Ujian_SD_Bahasa_Indonesia_2018.pdf', '', 12, 'tidur-dengan-kucing.jpg', 1, 2, 'Unknown', 1, 0, 0), (109, '2018400', '0033646287', '0000000000000000', 'Audrick Liko Tanjaya', 'L', 'Jakarta', '2003-08-16', 5, 'WNI', 'Jl. Kemenangan II No. 26 RT004/RW002 Glodok Taman Sari Jakarta Barat', '[email protected]', 'Audrick_Liko_Tanjaya.pdf', '08556688000', 12, 'Audrick_liko.jpeg', 0, 1, 'PKBMN 16 Rawa Sari', 1, 0, 0), (110, '2018355', '0061071011', '0000000000000000', 'Christine Sugandha', 'P', 'Jakarta', '2006-03-21', 2, 'WNI', 'Bojong Larang RT 001 RW 004 Kelurahan Bojong Jaya Kecamatan Karawaci, Kota Tangerang. Banten 15115', '[email protected]', 'Christine_Sugandha.pdf', '08970007661', 8, 'Christien_Sugandha.jpeg', 0, 2, 'SD Swasta Hilaris Nasional Plus', 1, 0, 0), (113, '2018387', '2033929116', '0000000000000000', 'Agung Dharmawan', 'L', 'Bau Bau', '2003-09-30', 1, 'WNI', 'Jl. Sao-sao No.222F RT009/RW003 Bandu Kodia Kota Kendari', '[email protected]', 'agung_darmawan_akta-converted.pdf', '', 13, 'agung_darmawan.JPG', 0, 2, 'SMPN 1 Kendari', 1, 0, 0), (114, '2020735', '0059129142', '0000000000000000', 'Erika Sophia Lumban Tobing', 'P', 'Jakarta', '2006-05-02', 2, 'WNI', 'JL. Delima 1 No.21 RT 003 RW 003 Kelurahan Malaka Sari Kecamatan Duren Sawit, Kota Jakarta Timur. DKI Jakarta 13460', ' [email protected]', 'erika_IJazah-converted.pdf', '08118873576', 8, 'Erika_Sophia.jpeg', 0, 2, 'SMP Negeri 27 Jakarta', 1, 0, 0), (115, '2018397', '0032590631', '0000000000000000', 'Angel Kurniawan', 'P', 'Tangerang', '2003-01-23', 2, 'WNI', 'Jl. Crystal Timur A No.18 RT001/RW003 Pakulonan Barat Kelapa Dua Tangerang', '[email protected]', 'angel_kurniawan1.pdf', '', 13, 'angel_kurniawan.jpg', 0, 2, 'SMP Pahoa', 1, 0, 0), (116, '2018399', '0039920235', '0000000000000000', 'Arya Tejawijaya', 'L', 'Makassar', '2003-11-06', 5, 'WNI', 'Jl. Mangga 27 No.1/A RT05/RW03 Duri Kepa Jakarta Barat', '[email protected]', 'Arya_Tejawijaya.pdf', '081808082136', 12, 'arya_teja.jpg', 0, 1, 'SMP Narada', 1, 0, 0), (118, '2018391', '0027319487', '0000000000000000', 'Almaida Salwa Putra Rais', 'P', 'Jakarta', '2002-04-02', 1, 'WNI', 'Griya Serpong Asri Anyelir 5/9 Suradita RT05/RW08 Suradita Tangerang 15343', '[email protected]', 'ALmaida_Salwa.pdf', '081311012319', 13, 'almaida_salwa.jpg', 0, 2, 'PKBM Bina Mandiri', 1, 0, 0), (119, '2018356', '0061935570', '0000000000000000', 'Fachry Ghulam Arodana', 'L', 'Jakarta', '2006-09-19', 1, 'WNI', 'Cendana Residence blok C8/2 Pondok Benda, Pamulang, Tangsel 15416', '[email protected]', 'Fachry_Ghulam_Aradana.pdf', '12345678', 8, 'Fachry_ghulam,.JPG', 0, 1, 'SD Al-Zahra Indonesia', 1, 0, 0), (120, '2018390', '0030695397', '0000000000000000', 'Alfath Kemal Pasya', 'L', 'Jakarta', '2003-05-03', 1, 'WNI', 'Jl. Bangka VIII A/23 RT01/RW12 Pela Mampang Jakarta Selatan', '[email protected]', 'alfath.pdf', '081280129318', 13, 'alfath_kemal.jpg', 0, 1, 'MI Al-Hikmah', 1, 0, 0), (122, '2018361', '0034368486', '0000000000000000', 'Jonathan Ansell Prasetya', 'L', 'Tangerang', '2003-11-28', 3, 'WNI', 'Jade Selatan no.3 Pondok Hijau Golf Summarecon Serpong Gading Serpong Tangerang 15810', '[email protected]', 'Jonathan_ansel.pdf', '081222372247', 8, 'Jonathan_Ansell.JPG', 0, 1, 'SD Kristen Penabur Gading Serpong', 1, 0, 0), (123, '2018393', '0017378026', '0000000000000000', 'Amalia Ramadhaniyah ADP', 'P', 'Sukabumi', '2001-12-07', 1, 'WNI', 'KP. Kadudampit RT12/RW03 Sukabumi Jawa Barat 43153', '[email protected]', 'Amalia_Ramadhaniyah.pdf', '085720812520', 12, 'amalia_ramadaniah.jpg', 0, 2, 'SMPN 1 Cisaat', 1, 0, 0), (124, '2018357', '0055147497', '0000000000000000', 'Gavin Amos Junior', 'L', 'Tangerang', '2005-10-14', 2, 'WNI', 'KP. Buaran Barat RT 015 RW 005 Kelurahan Jelupang Kecamatan Serpong Utara, Kota Tangerang Selatan. Banten', '[email protected]', 'Scan_Museum_Anatomi.pdf', '12345678', 8, 'Chrysanthemum.jpg', 1, 2, 'PKBM Sukses', 1, 0, 0), (125, '2018396', '2024011212', '0000000000000000', 'Andiny Shausan Arifin', 'P', 'Jakarta', '2002-08-06', 1, 'WNI', 'Perum Serpong Jaya Cluster The Garden Blok GD 11', '[email protected]', 'Andiny_shausan.pdf', '', 12, 'andiny.jpg', 0, 1, 'SMPK Penabur Bintaro Jaya', 1, 0, 0), (126, '2018364', '0058323854', '0000000000000000', 'Lourencius Natanael Sumargo', 'L', 'Tangerang', '2005-12-28', 2, 'WNI', 'l. Permai 35 No.21\nKomplek margahayu permai\nBandung', '[email protected]', 'Laurensius1.pdf', '087889008311', 8, 'Lourencius_Sumargo.jpeg', 0, 1, 'Tunas Bina Bangsa', 1, 0, 0), (127, '2018389', '0031137651', '0000000000000000', 'Alessandro Bernard Santoso', 'L', 'Jakarta', '2003-07-14', 3, 'WNI', 'Taman Brawijaya Jl. Kemang No.5 Lippo Karawaci', '[email protected]', 'Alesandri_Bernard.pdf', '087878855757', 12, 'alessandro_benard.jpg', 0, 2, 'SMP Mardi Yuana Cirebon', 1, 0, 0), (128, '2018362', '0062849436', '0000000000000000', 'Joshua Miracle Thomas', 'L', 'Manado', '2006-03-27', 2, 'WNI', 'Lingkungan III -/003 Kel. Bahu, Manado', '[email protected] ', 'joshua_miracle.pdf', '0812934711975', 8, '296899_Harpindo-Bunga-Mawar-Biru-79-CM_SnxMDcx96Dd32QMM_1567781404.PNG', 0, 2, 'PKBM Anak Panah', 1, 0, 0), (129, '2020765', '0057140981', '0000000000000000', 'Muhammad Darrel Hugo Rabbani', 'L', 'Depok', '2005-11-03', 1, 'WNI', 'Jl. Swadaya no.58 RT06/RW02 Kel.Limo, Kec.Limo, Depok, Jawa Barat 16515', '[email protected]', 'muhammad_darel.pdf', '', 8, 'Darrel_Hugo.jpeg', 0, 2, 'SD Islam Sinar Cendekia', 1, 0, 0), (130, '2018388', '0014826161\r\n', '0000000000000000', 'Agustinus Friki', 'L', 'Cibinong', '2001-05-20', 3, 'WNI', 'Commercial III Blok B1 No.1-1A Sektor1.5 BSD City RT07/RW08 Lengkong Gudang Timur Tangerang Selatan 15318', '[email protected]', 'agustinus_fikri.pdf', '081290744894', 13, 'agustinus_friki.jpg', 0, 1, 'SMP Sint Joseph', 1, 0, 0), (131, '2018366', '2065030126', '0000000000000000', 'Muhammad Ghana Hadi', 'L', 'Depok', '2006-07-08', 1, 'WNI', 'Komp Poin Mas Blok E No 2 Pancoran Mas, Kota Depok', '[email protected]', 'muhammad_ghana_hadi1.pdf', '087881848300', 8, 'Screenshot_8.png', 0, 2, 'SD Perjuangan Terpadu Kecamatan Pancoran mas', 1, 0, 0), (132, '2018402', '0012667213', '0000000000000000', 'Bilqistha Maysah M.', 'P', 'Surabaya', '2001-05-09', 1, 'WNI', 'Jl. H. Mochtar KP. Pondok Randu RT13/RW02 Duri Kosambi Jakarta Barat 11750', '[email protected]', 'BIlqistha1.pdf', '08994366822', 13, 'bilaista.jpg', 0, 1, 'SDI Al-Ikhwan', 1, 0, 0), (133, '2018381', '0066892835', '0000000000000000', 'Stacy Queency Pandean', 'P', 'Manado', '2006-06-25', 2, 'WNI', 'BTN Puskopad Blok A16 Perkamil Manado', '[email protected] ', 'stacy_quency.pdf', '081356656342', 8, 'Stacy_Qeency.jpeg', 0, 3, 'SD Katolik 3 Frater ', 1, 0, 0), (134, '2018367', '0069062468', '0000000000000000', 'Matthew Claudius', 'L', 'Jakarta', '2005-04-03', 3, 'WNI', 'Villa Resort Mediterania no. A9i. ', '[email protected] ', NULL, '085718888337', 8, 'Matthew_Claudius.jpeg', 0, 1, 'SD The Woodlands Montessori Primary School', 1, 0, 0), (135, '2018363', '0054981753', '0000000000000000', 'Kenji Dallas Hong', 'L', 'Medan', '2005-02-24', 5, 'WNI', 'jL.R. Junjungan Lubis no.35 Sibolga, Sumatera Utara', '[email protected]', 'kenji1.pdf', '085261273534', 8, '296899_Harpindo-Bunga-Mawar-Biru-79-CM_SnxMDcx96Dd32QMM_1567781404.PNG', 0, 1, 'SD Tri Ratna ', 1, 0, 0), (136, '2018358', '0066651217', '0000000000000000', 'Georgiena Raissa Martana', 'P', 'Surabaya', '2006-08-09', 2, 'WNI', 'Jalan : TAMAN KEBON JERUK BLOK U 9 NOMOR 10 rt.04/06 \n', '[email protected]', 'Scan_Museum_Anatomi.pdf', '12345678', 8, 'Geogina_raissa.jpeg', 0, 2, 'SD Swasta Stella Maris', 1, 0, 0), (137, '2018383', '0064469202', '0000000000000000', 'Theresia Regitha Halim', 'P', 'Jakarta', '2006-08-12', 3, 'WNI', 'Jl Dr. Muwardi Raya No 22 Grogol Jakarta Barat', '[email protected]', 'theresia.pdf', '08161158187', 8, 'Theresia_Regita.jpeg', 0, 3, 'SMP Kemurnian II', 1, 0, 0), (138, '2018401', '2035965400', '0000000000000000', 'Bianca Alaasya Putri Nugraha', 'P', 'Tangerang', '2003-05-09', 1, 'WNI', 'Perumahan Alam Sutera, Jl. Sutera Elok 1/6 Serpong Tangerang', '[email protected]', 'BIANCA_ALASYA.pdf', '081288826533', 12, 'bianca.jpg', 0, 1, 'SDN Ngelempong Sleman', 1, 0, 0), (139, '2018384', '0057912761', '0000000000000000', 'Viona Gwyn Victor', 'P', 'Jakarta', '2005-06-03', 2, 'WNI', 'Gelong Baru Tengah No 19 Tomang Jakarta Barat', '[email protected] ', 'viona.pdf', '081383155554', 8, 'Viona_Gwyn.jpeg', 0, 1, 'SDS Woodlands Montessori', 1, 0, 0), (140, '2018372', '0057562625', '0000000000000000', 'Nicholas Septhian', 'L', 'Jakarta', '2005-09-11', 2, 'WNI', 'Jl. Kerukunan 1 blok F2 no 15 Jak Bar', '[email protected] ', 'nicholas.pdf', '081216877782', 8, 'Nichiolas_Septian.jpeg', 0, 1, 'PKBM Anak Panah', 1, 0, 0), (141, '2018368', '0065158415', '0000000000000000', 'Michelle Gracielle Karnadi', 'P', 'Jakarta', '2006-12-24', 2, 'WNI', 'Jl.Kembang Sepatu No 27 11/01 Kel Kramat, Jakarta pusat', '[email protected] ', 'Michelle_Graciella_K81.pdf', '', 8, 'Michelle_graciella.jpeg', 0, 3, 'SMPK 2 Penabur', 1, 0, 0), (142, '2018404', '0034377502', '0000000000000000', 'Danisha Sofie Tanuwidjaja', 'P', 'Tangerang', '2003-11-29', 1, 'WNI', 'Jl. Peta Selatan Blok I No.32 Jakarta Kalideres 11840', '[email protected] ', 'Danisha_ijazah-converted.pdf', '081383447006', 12, 'danisha_safie.jpg', 0, 2, 'SMP Bonavita', 1, 0, 0), (143, '2018369', '0065556998', '0000000000000000', 'Mohammad Akhtar Amarthya M D', 'L', 'Jakarta', '2006-09-25', 1, 'WNI', 'Taman Permata I Bintaro HG 16 no 7. Bintaro Jaya Sektor 9. Tangerang Selatan 15227', '[email protected]', 'M_akhtar1.pdf', '087876127345', 8, 'Screenshot_4.png', 0, 2, 'Anak Panah', 1, 0, 0), (144, '2018379', '2084182271', '0000000000000000', 'Sintha Edlyn Chung', 'P', 'Jakarta', '2006-08-24', 3, 'WNI', 'Bukit Serpong Mas Blok D 6 no 20', '[email protected]', 'shinta_.pdf', '089651961041', 8, 'Sintha_Edelyn.jpeg', 0, 2, 'PAHOA', 1, 0, 0), (145, '2018371', '0054490800', '0000000000000000', 'Muhammad Zaki Ikbaar Ramadhan', 'L', 'Surabaya', '2005-10-08', 1, 'WNI', 'Tambak Seragan No 66 04/09 Kel Rangkah, Surabaya', '[email protected]', 'zaki1.pdf', '087853101981', 8, 'M_zaki.jpeg', 0, 1, 'Anak Panah', 1, 0, 0), (146, '2018418', '2778520858', '0000000000000000', 'Jasson Owen Lipriatna', 'L', 'Jakarta', '2002-08-15', 2, 'WNI', 'Jl Prof Dr Latumelen V No.23 Jakarta Barat', '[email protected]', 'jasseon_owen.pdf', '0', 13, 'Screenshot_6.png', 0, 1, 'SMPK 2 Penabur', 1, 0, 0), (147, '2018405', '0033591757', '0000000000000000', 'David Rivendell Walalangi', 'L', 'Makassar', '2003-05-10', 3, 'WNI', 'Jl. Boulevard Tulip C1/5 RT03/RW05 Panakkukang Masale Makassar', '[email protected]', 'Soal_Ujian_SD_Bahasa_Indonesia_2018.pdf', '0811469690', 13, 'david_rivendell.jpg', 0, 1, 'SMP Dian Harapan', 1, 0, 0), (148, '2018421', '0035756509', '0000000000000000', 'Joshua Torkis Gultom', 'L', 'Tangerang', '2003-06-09', 2, 'WNI', 'Villa Melati Mas Blok V.10/16 Rt. 57/08 Jelupang, Serpong Utara, Tangerang Selatan', '[email protected]', 'josua_torkis.pdf', '0', 15, 'joshua_torkis.jpg', 0, 2, 'SMP Efata Serpong', 1, 0, 0), (149, '2018427', '0036911321', '0000000000000000', 'Leonardus Billy Adindra', 'L', 'Jakarta', '2001-01-23', 3, 'WNI', 'Commercial III blok B1 No 1 Sekt 1,5 RT 07/08 Lengkang Gudang TImur, Serpong', '[email protected]', NULL, '', 13, 'leonardus_billy.jpg', 0, 7, 'Anak Panah', 1, 0, 0), (150, '2018374', '0068577354', '0000000000000000', 'Rhenata Hanisa Putri', 'P', 'Depok', '2006-06-08', 1, 'WNI', 'Jalan : PERUM BCI BLOKA 6 NO.22 rt.04/26 \n', '[email protected] ', 'Scan_Museum_Anatomi.pdf', '087781413293', 8, 'Rhenata.jpeg', 0, 1, 'PKBM Anak Panah', 1, 0, 0), (151, '2018407', '0035747350', '0000000000000000', 'Enjelita Suwandi', 'P', 'Jakarta', '2003-08-21', 5, 'WNI', 'APT Mansion Blok JD28/K RT007/RW011 Pademangan Timur Jakarta Timur', '[email protected]', 'enjelita_sumandi.pdf', '0816889890', 13, 'enejlita_suwadi.jpg', 0, 1, 'SMP Universal School', 1, 0, 0), (152, '2018419', '0031873789', '0000000000000000', 'Johannes Evan Budiman', 'L', 'Jakarta', '2003-06-18', 2, 'WNI', 'Apartemen Green Palm lt. 7/A05 Jl Kresek Raya Duri Kosambi Jakarta Barat', '[email protected]', 'evan_budiman.pdf', '08998371190', 13, 'Screenshot_6.png', 0, 3, 'SMP Efata Serpong', 1, 0, 0), (153, '2018380', '0068527055', '0000000000000000', 'Siti Aulia Gemilang Maulana', 'P', 'Jakarta', '2006-04-26', 1, 'WNI', 'perumahan sakura regency 1 Blok G 14 jatiasih bekasi 17423', '[email protected] ', 'siti_aulia.pdf', '089683064839', 8, 'Siti_Aulia.jpeg', 0, 1, 'SD Tunas Jakasampurna', 1, 0, 0), (154, '2018406', '0032497573', '0000000000000000', 'Eda Akman', 'P', 'Tangerang', '2003-07-15', 3, 'WNI', 'Taman Ubud Loka VII No.16 Lippo Karawaci Kelurahan Binong Tangerang', '[email protected]', 'Soal_Ujian_SD_Bahasa_Indonesia_2018.pdf', '', 12, 'tidur-dengan-kucing.jpg', 0, 1, 'PKBMN 29 Cempaka Baru', 1, 0, 0), (155, '2018433', '0031930834', '0000000000000000', 'Michelle Roan Widiyono', 'P', 'Jakarta', '2003-07-23', 3, 'WNI', 'Regensi Melati Mas Blok E6/17 Tangerang Selatan', '[email protected]', 'michelle_roan1.pdf', '', 12, 'michelle_roan_w.jpg', 0, 1, 'PKBM Alfa Omega', 1, 0, 0), (156, '2018375', '2061375954', '0000000000000000', 'Rianna Callysta Nadien', 'P', 'Serang', '2005-09-18', 1, 'WNI', 'ln Adhyaksa VI RT 04/05 Karang Tengah- Karang Mulya. Tangerang.', '[email protected]', 'rianna_nadien.pdf', '0813 1847 8268', 8, 'Tulips.jpg', 0, 3, 'SDN Begeg', 1, 0, 0), (157, '2018413', '2014659446', '0000000000000000', 'Frederico Antonius Mario Labina', 'L', 'Tangerang', '2001-10-20', 3, 'WNI', 'Medang Lestari Blok C IV/A71 RT007/RW009 Medang Pagedangan Tangerang', '[email protected]', 'fredrico.pdf', '', 13, 'tidur-dengan-kucing.jpg', 0, 1, 'SMP Bendemper Secondary School', 1, 0, 0), (158, '2018428', '2034556976', '0000000000000000', 'M Alfarel Ferdi ', 'L', 'Padang', '2003-02-20', 1, 'WNI', 'Perum Mutiara Putih R/7 Padang', '[email protected]', 'Muhammad_Alfarel_Ferdi1.pdf', '', 13, 'Screenshot_4.png', 0, 2, 'Plus Marhamah padang', 1, 0, 0), (159, '2018408', '0033319808', '0000000000000000', 'Fanes Timothy', 'L', 'Jakarta', '2003-12-19', 2, 'WNI', 'Centro Havana M3/10 De Latinos BSD RT005/RW018 Rawa Buntu Serpong Tangerang', '[email protected]', 'Soal_Ujian_SD_Bahasa_Indonesia_2018.pdf', '081806398766', 12, 'fanes_timothy.jpg', 0, 3, 'SMPK IPEKA BSD', 1, 0, 0), (160, '2018429', '0034717225', '0000000000000000', 'Malika Hasna Syafira', 'P', 'Pekalongan', '2003-08-24', 1, 'WNI', 'Jl. Manunggal XVII No 103 Jakarta Timur', '[email protected]', NULL, '', 12, 'Screenshot_6.png', 0, 1, 'SMAN 113 Jakarat', 1, 0, 0), (161, '2018376', '0068130310', '0000000000000000', 'Salma Alfira', 'P', 'Tangerang', '2006-01-28', 1, 'WNI', ' Jalan Akasia Raya K. 4-5 rt.07/12 \n', '[email protected]', 'salma_alfira.pdf', '0811909311', 8, 'Tulips.jpg', 0, 2, 'PKBM Anak Panah', 1, 0, 0), (162, '2018409', '0034378710', '0000000000000000', 'Felisia Agata', 'P', 'Tangerang', '2003-09-27', 3, 'WNI', 'Jl. Jamblang III No.75 RT003/RW015 Cibodas Tangerang', '[email protected]', 'felicis_agata.pdf', '', 13, 'felisia_agata.jpg', 0, 3, 'SMP Citra Kasih Kota Tangerang', 1, 0, 0), (163, '2018385', '0', '0000000000000000', 'Yasmin Mumtaz Lantu', 'P', 'Jakarta', '2006-09-28', 1, 'WNI', 'Prumpung Tengah RT/RW 004/006 Cipinang besar utara, Jatinegara, Jakarta Timur', '[email protected] ', 'yasmin.pdf', '081210447044', 8, 'Yasmin_Mumtaz.jpeg', 0, 2, 'MI Tunas Mulia', 1, 0, 0), (164, '2018432', '0032496407', '0000000000000000', 'Michael Marvin IP', 'L', 'Jakarta', '2003-10-05', 3, 'WNI', 'BRBJ Cluster Fedura Blok J 20/16 RT 06/15, Pakujaya, Serpong Utara', '[email protected]', 'marvin1.pdf', '', 12, 'Screenshot_81.png', 0, 1, 'SMP Tarakanita Gading Serpong', 1, 0, 0), (165, '2018422', '0020887761', '0000000000000000', 'Justine Anthony Efendy', 'L', 'Jakarta', '2002-03-12', 5, 'WNI', 'Villa Gading Indah Blok I No 26, Rt 05/14 Kelapa Gading Jakarta Utara', '[email protected]', 'justine_anthony1.pdf', '081808377688', 13, 'justine.jpg', 0, 2, 'SMP Tunas Karya', 1, 0, 0), (166, '2018411', '0021130115', '0000000000000000', 'Feyla Moira', 'P', 'Denpasar', '2002-06-26', 1, 'WNI', 'Jl. Gunung Lempuyangan V No.04 BR/LINK. Bhuana Sari Tegal Karta Denpasar 80119', '[email protected]', 'Soal_Ujian_SD_Bahasa_Indonesia_2018.pdf', '081933113037', 13, 'feyla_moira.jpg', 0, 1, 'SMP Muhammadiyah 2 Denpasar', 1, 0, 0), (167, '2019673', '0031268621', '0000000000000000', 'Jessica Priscillia Kim', 'P', 'Bogor', '2003-11-11', 1, 'WNI', 'Grand Cilegon Residence Jl Bougenville Raya No 19', '[email protected]', 'Contoh.pdf', '085218071448', 11, 'Screenshot_6.png', 0, 1, 'SMP 1 Cilegon', 1, 0, 0), (168, '2018431', '0033491559', '0000000000000000', 'Michael Jan', 'L', 'Jakarta', '2003-10-27', 3, 'WNI', 'Taman Kebon Jeruk B 1/43 02/09 Srengseng, Kembangan, Jakarta Barat', '[email protected]', 'michael_jan1.pdf', '', 12, 'michae_jan.jpg', 0, 1, 'SMP Katolik Abdi siswa 11', 1, 0, 0), (169, '2018410', '0025158149', '0000000000000000', 'Ferdy Raihan', 'L', 'Jakarta', '2002-10-20', 1, 'WNI', 'Jl. Panca Warga 1 RT011/RW03 No.5 Jakarta Timur 13410', '[email protected]', 'Soal_Ujian_SD_Bahasa_Indonesia_2018.pdf', '087775774200', 13, 'ferdy.jpg', 0, 2, 'SMPN 149 Jakarta Timur', 1, 0, 0), (170, '2018423', '2033400023', '0000000000000000', 'Katrina Samantha Lastra Mangahas', 'P', 'Filipina', '2003-03-03', 2, 'WNI', 'Jl Danau Batur Raya 40B Taman Griya Jimbaran', '[email protected]', 'katrina.pdf', '0', 12, 'katrina_samanta.jpg', 0, 2, 'SMP Cipta Dharma Denpasar', 1, 0, 0), (171, '2018435', '0024743884', '0000000000000000', 'Muhammad ThohaBangun', 'L', 'Berastogi', '2002-06-04', 1, 'WNI', 'Alamat Jalan : DOLAT RAYAT Desa / Kelurahan : Dolat Rayat Kode Pos : 22171\n', '[email protected]', 'toha_bangun1.pdf', '', 12, 'm_thoha_bangun.jpg', 0, 2, 'SMPN 1 Berastogi', 1, 0, 0), (172, '2018420', '0031657261', '0000000000000000', 'Jonathan Jason Junianto', 'L', 'Palangkaraya', '2003-09-05', 3, 'WNI', 'Jl Raya BD Utara Ruko Paramount Blue No 19 Rt 001/020 Kelapa Dua', '[email protected]', 'jason_junianto1.pdf', '0', 12, 'jonatha_jason.jpg', 0, 1, 'SMP Pahoa', 1, 0, 0); INSERT INTO `tbl_siswa` (`siswa_id`, `siswa_nis`, `siswa_nisn`, `nik_siswa`, `siswa_nama`, `siswa_jenkel`, `siswa_tempat`, `siswa_tgl_lahir`, `siswa_agama_id`, `siswa_kewarganegaraan`, `siswa_alamat`, `siswa_email`, `siswa_dokumen`, `siswa_no_telp`, `siswa_kelas_id`, `siswa_photo`, `soft_deleted`, `anak_ke`, `sekolah_asal`, `satelit`, `oc`, `kc`) VALUES (173, '2018412', '0038550861', '0000000000000000', 'Firyal Aisyah Zalfa', 'P', 'Jakarta', '2003-03-22', 1, 'WNI', 'Jl. Paradise Rasamala I Blok16/22 RT02/RW07 Babakan Serpong City Tangerang Selatan 15315', '[email protected]', 'Firyal_Aisyah.pdf', '0895344091315', 13, 'firyal_aisyah.jpg', 0, 2, 'SMP Taruna Mandiri', 1, 0, 0), (174, '2018377', '0063064077', '0000000000000000', 'Sebastian Hans Purnomo', 'L', 'Jakarta', '2006-01-04', 3, 'WNI', ' JLN.KRISTAL PERMATA HIJAU BLOK G/6 rt.08/13 \n', '[email protected]', 'Sebastian_Hans.pdf', '08161988876', 8, 'Sebastian_Hans.jpeg', 0, 1, 'SD Swasta Regina Pacis', 1, 0, 0), (175, '2018436', '0029886675', '0000000000000000', 'Muhammad Tsaqif Hilmy Asy Syatri', 'L', 'Jakarta', '2002-09-18', 1, 'WNI', 'Alamat Jalan : JL. NUH RAYA NO.8 rt.05/05 Desa / Kelurahan : Sukabumi Utara Kode Pos : 11540\n', '[email protected]', NULL, '089688494641', 12, 'muhammad_tsaqif_hilmy.jpg', 0, 2, 'SMPN 127 Jakarta', 1, 0, 0), (176, '2018424', '2133893769', '0000000000000000', 'Kea Adinda Hari', 'P', 'Jakarta', '2003-06-25', 3, 'WNI', 'Jl Banyuwangi No 5 Rt 04/05 Menteng Jakarta Pusat', '[email protected]', 'kea1.pdf', '081290744894', 13, 'hea_adinda_itari.jpg', 0, 2, 'PKBM Anak Panah', 1, 0, 0), (177, '2018434', '0036306956', '0000000000000000', 'Mohammed Shaquelle A', 'L', 'Dubai', '2003-10-29', 1, 'WNI', 'Alamat Jalan : CLUSTER MICHELIA JL. MICHELIA 10 NO.5 GADING SERPONG rt.03/08\n', '[email protected]', NULL, '', 12, 'm_shaquelle.jpg', 0, 1, 'SMPS SYafana Islamis School', 1, 0, 0), (178, '2018425', '0031930823', '0000000000000000', 'Kevin Antonius', 'L', 'Jakarta', '2003-07-09', 3, 'WNI', 'Jl Tangki Lio Timur 46B', '[email protected]', 'kevin_antonius.pdf', '0', 12, 'Screenshot_6.png', 0, 1, 'Binus School Serpong', 1, 0, 0), (179, '2018378', '2055723917', '0000000000000000', 'Shafadinda Rizkya Ramadanhy', 'P', 'Jakarta', '2005-09-06', 1, 'WNI', 'JALAN PALMERAH BARAT 1 NOMOR 38 rt.07/07 \n', '[email protected]', 'Shafadinda.pdf', '087822949393', 8, 'Shafadinda.jpeg', 0, 4, 'SD Negeri Palmerah 07 Pagi', 1, 0, 0), (180, '2018430', '0038216337', '0000000000000000', 'Matthew Alexander Panggabean', 'L', 'Jakarta', '2003-06-04', 2, 'WNI', 'Alamat Jalan : JL DUREN TIGA BARAT NO 11 rt.04/01 Desa / Kelurahan : Duren Tiga\n', '[email protected]', NULL, '', 13, 'matthew_alex.jpg', 0, 1, '', 1, 0, 0), (181, '2020747', '0033616136', '0000000000000000', 'Gabriella Ranti', 'P', 'Tangerang', '2003-01-15', 2, 'WNI', 'Jl. Empu Kanwa II No.36 RT006/RW006 Cibodas Baru Cibodas Kota Tangerang 15138', '[email protected]', 'Soal_Ujian_SD_Bahasa_Indonesia_2018.pdf', '081213966659', 12, 'tidur-dengan-kucing.jpg', 0, 1, 'SMP Swasta Surya Bangsa', 1, 0, 0), (182, '2018416', '2031472634', '0000000000000000', 'Grace Abdiella Husada', 'P', 'Delft', '2003-12-29', 2, 'WNI', 'Jl. Cempaka Putih Barat 2H/7E RT010/RW003 Kel. Cempaka Putih Barat Kec. Cempaka Putih Jakarta Pusat DKI Jakarta', '[email protected]', 'Soal_Ujian_SD_Bahasa_Indonesia_2018.pdf', '', 12, 'tidur-dengan-kucing.jpg', 1, 2, 'PKBM Alfa Omega', 1, 0, 0), (183, '2018414', '0038290298', '0000000000000000', 'Giacinta mitchelia dharma', 'P', 'Samarinda', '2003-10-19', 3, 'WNI', 'Jl. Dewi Sartika RT008 Kel. Bontang Baru Kec. Bontang Utara Kota Bontang 75313 Kalimantan Timur', '[email protected]', 'giacinta.pdf', '0811581003', 12, 'tidur-dengan-kucing.jpg', 0, 1, 'SMPN 1 Bontang', 1, 0, 0), (184, '2018415', '0018698649', '0000000000000000', 'Gisela Olga Kurniawan', 'P', 'Tangerang', '2001-12-31', 3, 'WNI', 'Jl. Kelapa Puan XX AH.6 No.9 RT08/RW12 Kel. Pakulonan Barat Kota Tangerang 15812', '[email protected]', 'Gisela_Olga_Kurniawan.pdf', '082122221163', 13, 'gisela_olga.jpg', 0, 2, 'SMP Swasta Pahoa', 1, 0, 0), (185, '2019668', '2043584770', '0000000000000000', 'Gracia Listiana Rahayu', 'P', 'Ungaran', '2004-04-30', 2, 'WNI', 'Br. Sorongga Kelod Sorongga Gianyar Bali 80561', '[email protected]', 'Gracia_Listiana_Rahayu.pdf', '', 11, 'tidur-dengan-kucing.jpg', 0, 2, '', 1, 0, 0), (186, '2018417', '2038949816', '0000000000000000', 'Iqbal Maulana Abrori ', 'L', 'Situbondo', '2003-03-23', 1, 'WNI', 'Unknown', '[email protected]', 'iqbal_maulana_abrori.pdf', '', 13, 'tidur-dengan-kucing.jpg', 0, 1, 'SMPN 1 Kendit', 1, 0, 0), (187, '2019672', '9931453504\r\n', '0000000000000000', 'Indra Lesmana', 'L', 'Bogor', '1993-11-07', 1, 'WNI', 'KP. Nanggela RT003/RW006 Kel. Sukamaja Kec. Tajurhalang Kota Bogor 16320', '[email protected]', 'Soal_Ujian_SD_Bahasa_Indonesia_2018.pdf', '089611421793', 13, 'tidur-dengan-kucing.jpg', 1, 1, 'SMPN 1 Bojong Gede', 1, 0, 0), (189, '2018437', '0012742564', '0000000000000000', 'Patricia Ysabel', 'P', 'Salatiga', '2001-12-08', 2, 'WNI', 'Jl. Alpukat Blok XB No 19 Harapan Indah RT 2/20 Pejuang, Medan Satria, Kota Bekasi', '[email protected]', 'patricia_ysabel1.pdf', '1212121212121', 13, 'patricia_xsabel.jpg', 0, 2, 'PKBM Negeri 29 Cempaka', 1, 0, 0), (190, '2018447', '0027507801', '0000000000000000', 'Sintia Putri Fajar', 'P', 'Purbalingga', '2002-04-30', 1, 'WNI', 'Karangbanjar rt 1/1, Bojongsari, Purbalingga, Jawa Tengah \n', '[email protected]', 'sintia_putri.pdf', '0895379048664', 12, 'sintia_putri_fajar.jpg', 0, 2, 'SMP Negeri 2 Kutasari', 1, 0, 0), (191, '2018486', '0094905047', '0000000000000000', 'Abel Cicero Markam ', 'L', 'Jakarta ', '2009-06-06', 1, 'WNI', 'KP. Pondok Randu RT013/RW002 Kel. Duri Kosambi Kec. Cengkareng Jakarta Barat 11750', '[email protected] ', 'Soal_Ujian_SD_Bahasa_Indonesia_2018.pdf', '082310742720', 3, 'Abel._C_._M_.jpg', 0, 5, 'PKBM Anak Panah HS', 1, 0, 0), (192, '2018442', '2108820179', '0000000000000000', 'Raihan Addar Quthni ', 'L', 'Bondowoso', '2000-03-29', 1, 'WNI', 'Alamat Jalan : JALAN HEBRAS NOMOR 245 rt.02/06 Desa / Kelurahan : Jatimulya\n', '[email protected]', 'Raihan_Addar_quthni1.pdf', '12121212121', 13, 'raihan_addar1.JPG', 0, 2, 'MI Negeri Malang I', 1, 0, 0), (193, '2018448', '0038120642', '0000000000000000', 'Sisilia Jonta', 'P', 'Makassar', '2003-05-29', 5, 'WNI', 'Alamat Jalan : CLUSTER BOSTON VILLAGE JALAN BOSTON BARAT rt.01/33 Desa / Kelurahan : Kelebet Kode Pos : 15334 \n', '[email protected]', 'Scan_Museum_Anatomi.pdf', '12345678', 12, 'sisilia_jantra.jpg', 0, 1, 'SMP Katolik Rajawali Makassar', 1, 0, 0), (194, '2018491', '0111560833', '0000000000000000', 'Audrey Aulia Anindhita Permana', 'P', 'Jakarta', '2011-06-12', 1, 'WNI', 'Dolok Merangir Simalungun Sumatera Utara', '[email protected]', 'audrey.pdf', '08116244664', 3, 'Audrey_Aulia_Anindita_Permana.jpg', 0, 2, 'PKBM Anak Panah HS', 1, 0, 0), (195, '2018439', '0034638769', '0000000000000000', 'Rafaesa Devani Azzahra', 'P', 'Jakarta', '2003-03-17', 1, 'WNI', 'Alamat Jalan : CLUSTER SEVILLA BLOK AK/21 BSD CITY rt.01/13 Desa / Kelurahan : Rawa Mekar\n', '[email protected]', 'rafaesa_21.pdf', '12121212121', 12, 'Screenshot_7.png', 0, 1, 'SMP Sinar Cendekia', 1, 0, 0), (196, '2018488', '0113375235', '0000000000000000', 'Alexander Christian Prabowo', 'L', 'Tangerang', '2011-01-04', 2, 'WNI', 'Jl. Porto 2 No.1 Sektor 6 Gading Serpong', '[email protected]', 'Alexander_Christian_.pdf', '081212623322', 3, 'Alexander_Christian.jpg', 0, 2, 'PKBM Anak Panah HS', 1, 0, 0), (197, '2018450', '2032819203', '0000000000000000', 'Sulthan Dandhy Alfito', 'L', 'Jakarta', '2003-07-12', 1, 'WNI', 'Alamat Jalan : JALAN PALMERAH BARAT 1 NOMOR 38 rt.07/07 Desa / Kelurahan : Palmerah Kode Pos : 11480 \n', '[email protected]', 'sulthan_akta-converted.pdf', '12345678', 13, 'sultan_dandry.jpg', 0, 3, 'SMP Negeri 88 Jakarta', 1, 0, 0), (198, '2018445', '0020456571', '0000000000000000', 'Rifka Dwi Octavia', 'P', 'Tangerang', '2002-10-08', 1, 'WNI', 'Alamat Jalan : BUANA PERMAI BLOK 1-14 rt.03/09 Desa / Kelurahan : Cipondoh Kode Pos : 15148\n', '[email protected]', NULL, '08174860558', 13, 'rifka_dwi_oktavia.jpg', 0, 2, 'SMPN 1 Tangerang', 1, 0, 0), (199, '2018487', '0113951432', '0000000000000000', 'Ahsan Khairyansyah Adhyatmika', 'L', 'Jakarta', '2011-07-05', 1, 'WNI', 'Jl. Raya Malaka No.54 RT002/RW008 Kel. Malaka Sari Kec. Duren Sawit Jakarta Timur 13460', '[email protected]', 'ahsan.pdf', '087877047795', 3, 'Ahsan.jpg', 0, 1, 'PKBM Anak Panah HS', 1, 0, 0), (200, '2018443', '0022239581', '0000000000000000', 'Reaven Shabian Himawan', 'L', 'Jakarta', '2002-04-26', 2, 'WNI', 'Alamat Jalan : JL LONTAR TMR NO.17A rt.10/06 Desa / Kelurahan : Tanjung Duren Utara\n', '[email protected]', NULL, '083876302788', 13, 'reaven.jpg', 0, 3, 'Anak Panah', 1, 0, 0), (201, '2018490', '0104191940', '0000000000000000', 'Ardean Arwoon', 'L', 'Jakarta', '2010-05-19', 5, 'WNI', 'Apartement City Park Tower A Lantai 8 No 1', '[email protected]', 'arden_arwon.pdf', '082123928889', 3, 'Ardean._A_.jpg', 0, 4, 'PKBM Anak Panah HS', 1, 0, 0), (202, '2018446', '0032013694', '0000000000000000', 'Shilla Aprodhita', 'P', 'Bogor', '2003-01-10', 1, 'WNI', 'JALAN KELAPA SAWIT 12 BLOK BF-8 NO 02 rt.04/13 Desa / Kelurahan : Pakulonan Barat Kode Pos : 15812 \n', '[email protected]', 'Scan_Museum_Anatomi.pdf', '12345678', 13, 'Tulips.jpg', 1, 2, 'SMA Tunas Mulia', 1, 0, 0), (203, '2018441', '0022777473', '0000000000000000', 'Rafiqa Imani', 'P', 'Tangerang', '2002-11-11', 1, 'WNI', 'Alamat Jalan : KP.PARABON rt.02/03 Desa / Kelurahan : Ciloto Kode Pos : 43255\n', '[email protected]', 'Rafiqa_Imani.pdf', '081388097227', 12, 'rariqa.jpg', 0, 2, 'SMPIT Daarul Hasan', 1, 0, 0), (204, '2018489', '0101892013', '0000000000000000', 'Angela Prudence Prasetyo', 'P', 'Jakarta', '2010-11-29', 3, 'WNI', 'Bukit Rivaria sektor 5 blok i5 no 2 Sawangan Depok', '[email protected]', 'anggela_prudence.pdf', '081228094179', 3, 'Angela_Prudence_Prasetyo.jpg', 0, 1, 'PKBM Anak Panah HS', 1, 0, 0), (205, '2018449', '0028707324', '0000000000000000', 'Stefanie Lauw', 'P', 'Tangerang', '2002-06-21', 2, 'WNI', 'Jalan : KP. BUARAN BARAT rt.15/05 Desa / Kelurahan : Jelupang Kode Pos : 15323 \n', '[email protected]', 'Scan_Museum_Anatomi.pdf', '081399113322', 13, 'Tulips.jpg', 1, 2, 'PKBM 21 Tebet Timur', 1, 0, 0), (206, '2018492', '0108365292', '0000000000000000', 'Bryan Nathanael Abednego H.', 'L', 'Denpasar', '2010-12-15', 2, 'WNI', 'Perum. Graha Bagasasi Blok G4 No 1. Sindang Mulya. Cibarusah. Kab. Bekasi.', '[email protected] ', 'bryan_hutasoit.pdf', '081237812868', 3, 'Bryan_Nathanael_Abednego.jpg', 0, 2, 'PKBM Anak Panah HS', 1, 0, 0), (207, '2018451', '0029268268', '0000000000000000', 'Tony Candra Wijaya', 'L', 'Tangerang', '2002-09-17', 5, 'WNI', 'CLUSTER ANGELONIA BLOK A.I/H.27 rt.05/15 Desa / Kelurahan : Medang \n', '[email protected]', 'Scan_Museum_Anatomi.pdf', '087741617276', 13, 'tony_candra_wajaya.jpg', 0, 2, 'SMP Perguruan Budhi', 1, 0, 0), (208, '2018444', '0020128256', '0000000000000000', 'Rifda Agustin', 'P', 'Tangerang', '2002-08-13', 1, 'WNI', 'Alamat Jalan : JL.FALAQI 1 BLOK C NO.85 VILA ILHAMI rt.08/13\n', '[email protected]', 'rifda1.pdf', '12121212121', 13, 'rifda_agustin_auliani.jpg', 0, 2, 'SMPN 1 Tenjolya', 1, 0, 0), (209, '2017205', '0045192463', '0000000000000000', 'Kevin Kartono', 'L', 'Jakarta', '2004-10-17', 3, 'WNI', 'Jl. Teuku Cik Ditiro no 76 PAV , Jakarta Pusat, Menteng', '[email protected]', 'Kevin_Kartono.pdf', '085691099817', 9, 'WhatsApp_Image_2020-03-11_at_11.26_.28_AM_.jpeg', 0, 2, 'SD Swasta Santo Ignatius', 1, 0, 0), (210, '2018493', '0107457991', '0000000000000000', 'Cheryl Valerie Hasjim', 'P', 'Jakarta', '2010-10-06', 2, 'WNI', 'Taman Ratu Indah Blok A. 1 No.38 RT001/RW013 Kel. Duri Kepa Kec. Kebon Jeruk Jakarta Pusat', '[email protected]', 'cherryl.pdf', '02129020651', 3, 'Cheryl_Valete.jpg', 0, 1, 'SDS Woodlands Montessori', 1, 0, 0), (211, '2018440', '2037083314', '0000000000000000', 'Raffi Hilmi Hidayat ', 'L', 'Tasik malaya', '2003-03-28', 1, 'WNI', 'Alamat Jalan : JL. CEMPAKAWARNA NO.4/55 rt.01/08 Desa / Kelurahan : Cilembang Kode Pos : 46123\n', '[email protected]', NULL, '12121212121', 13, 'Screenshot_7.png', 0, 1, 'MTs Negeri 1 Tasik Malaya', 1, 0, 0), (212, '2018453', '0034494946', '0000000000000000', 'Vanessa Febry', 'P', 'Pontianak', '2003-02-28', 3, 'WNI', 'TAMAN SEMANAN INDAH BLOK E7 NOMOR 39 rt.13/12 \n', '[email protected] ', 'vanesa_ferby.pdf', '087789281666', 13, 'Vannesa_febri.jpg', 0, 2, 'SMP Kristen Kasih Kemuliaan', 1, 0, 0), (213, '2018494', '0106022436', '0000000000000000', 'Ekranio Khowarizmi', 'L', 'Jakarta', '2010-02-17', 1, 'WNI', 'Lorong O No.7 \nRT/RW: 011 / 005 KOJA\nJakarta Utara', '[email protected]', 'ekraino_2.pdf', '085219344344', 3, 'Ekranio_Khowarismi.jpg', 0, 1, 'PKBM Anak Panah HS', 1, 0, 0), (214, '2017210', '0060130788', '0000000000000000', 'Melvern Deannova Vimanta', 'L', 'Jakarta', '2005-04-28', 2, 'WNI', 'Jl. Kelapa Lilin Utara IV Blok DF - 6 No 07, Kelapa Dua, Tangerang', '[email protected]', 'Melvern_Deannova.pdf', '08159005217', 9, 'WhatsApp_Image_2020-03-11_at_11.53_.05_AM_.jpeg', 0, 1, 'SD Surya Bangsa', 1, 0, 0), (215, '2017207', '2058811854', '0000000000000000', 'Marc Ryanheart Laoh', 'L', 'Jakarta', '2005-03-18', 2, 'WNI', 'Jl. Lempuyang VI E. 24/25. Komp. Mega Cinere blok L\nCinere - Depok', '[email protected]', 'Marc_Ryanheart.pdf', '081314097339', 9, 'WhatsApp_Image_2020-03-11_at_12.08_.59_PM_.jpeg', 0, 2, 'SMP Madania', 1, 0, 0), (216, '2019541', '12345678', '0000000000000000', 'Francesco Enzo De Ernesto Puimara', 'L', 'Lampung Tengah', '2012-05-24', 3, 'WNI', 'Komp. Puri Serpong I Blok D-7/2 RT008/RW002 Kel. Setu Kec. Setu Kota Tangerang Selatan 15343', '[email protected]', 'enzo.pdf', '081282670682', 3, 'Francesco_Erzo.jpg', 0, 1, 'PKBM Anak Panah HS', 1, 0, 0), (217, '2018455', '0047239265', '0000000000000000', 'Vincenzo Matalino', 'L', 'Jakarta', '2004-03-21', 3, 'WNI', 'TELUK GONG TIMUR NO.50 rt.04/09 , Pejagalan', '[email protected]', 'Doc1.docx', '0', 13, NULL, 0, 1, 'SMP Narada', 1, 0, 0), (218, '2018495', '0094684840', '0000000000000000', 'Fabian Galih Wibowo', 'L', 'Jakarta', '2009-06-07', 1, 'WNI', 'Grand Kahuripan Cluster Sumeru Blok HL-10 RT008/RW006 Cileungsi Bogor', '[email protected]', 'fabian_galih.pdf', '085881250610', 3, 'Fabian_Galih.jpg', 0, 1, 'MI Muhammdiyah II', 1, 0, 0), (219, '2018454', '0020128255', '0000000000000000', 'Vania Agustin', 'P', 'Jakarta', '2002-08-13', 1, 'WNI', 'JL.FALAQI 1 BLOK C NO.85 VILA ILHAMI rt.08/13\n', '[email protected]', 'vania.pdf', '0817894056', 13, 'vania_agustin_auliani.jpg', 0, 1, 'SMP IC Magnet', 1, 0, 0), (220, '2018456', '3023860910', '0000000000000000', 'Wedatama Pambudi ', 'P', 'Bogor', '2002-04-23', 1, 'WNI', ' JALAN SERDANG BARU NOMOR 2 rt.14/05, Serdang', '[email protected]', 'wedatama_IJAZAH-converted1.pdf', '0811261532', 13, 'wedatama.jpg', 0, 1, 'PKBM Anak Panah', 1, 0, 0), (221, '2018496', '0116271265', '0000000000000000', 'Gregory Damar Jibben', 'L', 'Sukabumi', '2011-10-27', 2, 'WNI', 'Perum Dasana Indah Blok RA.4 No. 8-9 RT001/RW017 Kel. Bojong Nangka Kec. Kelapa Dua Kota Tangerang 15812', '[email protected]', 'gregory.pdf', '123456', 3, 'Gregory_Damar.jpg', 0, 2, 'SD Yuwati Bhakti', 1, 0, 0), (222, '2020746', '1', '0000000000000000', 'Antonia Emmanuelle Acirathasa Wibowo', 'P', 'Jakarta', '2009-01-18', 3, 'WNI', 'kompleks pamulang permai 1, jalan matoa, blok A37 no 5', '[email protected]', 'Antonia_Emmanuelle1.pdf', '087878724282', 4, 'Antonio_Emmanuella_K4.jpg', 0, 1, 'PKBM Aluna', 1, 0, 0), (223, '2018497', '0119022113', '0000000000000000', 'Hannah Felicia Given Lauw', 'P', 'Bekasi', '2011-08-31', 2, 'WNI', 'Foresta Naturale Blok M.9/6 BSD City RT002/RW003 Kec. Pagedangan Kab. Tangerang Tangerang 15850', '[email protected] ', 'Soal_Ujian_SD_Bahasa_Indonesia_2018.pdf', '081283456244', 3, 'tidur-dengan-kucing.jpg', 0, 2, 'PKBM Anak Panah HS', 1, 0, 0), (225, '2018498', '0113389133', '0000000000000000', 'Izzati Khansa Hefrizal Putra', 'P', 'Tangerang', '2011-02-17', 1, 'WNI', 'Fortune Breeze D5/F10 RT005/RW001 Kel. Tajur Kota Tangerang 15152', '[email protected]', 'izzati.pdf', '082119567599', 3, 'Izzati.jpg', 0, 2, 'PKBM Anak Panah HS', 1, 0, 0), (226, '2020751', '9879', '0000000000000000', 'Ale Febio Andreansyyah', 'L', 'Bogor', '2009-02-02', 1, 'WNI', 'Kp. Nanggela Tajurhalang Bogor', '[email protected]', 'kolom soal.docx', '085739686988', 11, 'Screenshot_6.png', 0, 1, 'SMP Tunas Harapan', 1, 0, 0), (227, '2018461', '2094667873', '0000000000000000', 'Aqila dhawy setyaki', 'L', 'Tangerang', '2009-07-09', 1, 'WNI', 'Jl.sunset road no 39 C seminyak kuta badung Bali Kuta badung Bali 80361\n', '[email protected]', 'Aqila_Dhawy_Setyaki.pdf', '081283236888', 4, 'Aqila_Dhawy.jpeg', 0, 1, 'SD Al Madinah Islamic Center', 1, 0, 0), (229, '2017206', '0050679559', '0000000000000000', 'Marc Raynerheart Laoh', 'L', 'Jakarta', '2005-03-18', 2, 'WNI', 'Jl. Lempuyang VI E. 24/25. Komp. Mega Cinere blok L\nCinere - Depok', '[email protected]', '03-10-2020-10.58_.28(8)_.pdf', '081311989793', 9, 'WhatsApp_Image_2020-03-11_at_2.32_.09_PM_.jpeg', 0, 2, 'SMP Madania', 1, 0, 0), (230, '2018464', '0091673268', '0000000000000000', 'Clyde yvette kho', 'L', 'Jakarta', '2009-05-31', 3, 'WNI', 'Galeri Niaga Mediterania D/8J', '[email protected]', 'Clyde_KK-merged.pdf', '081283221926', 4, 'Clyde.jpeg', 0, 2, 'SDS Woodlands Montessori', 4, 0, 0), (232, '2017211', '0052618748', '0000000000000000', 'Mikha Aurelia Wiranata', 'P', 'Jakarta', '2005-03-20', 2, 'WNI', 'JL. KR Kwitang I H No 52, Kwitang, Senen, Jakarta Pusat', '[email protected]', 'Mikha_Aurelia.pdf', '087786374841', 9, 'WhatsApp_Image_2020-03-11_at_11.38_.04_AM_.jpeg', 0, 1, 'SMP Kristen 3 Penabur', 1, 0, 0), (233, '2018463', '0107020518', '0000000000000000', 'Christopher Andrew Sinaga', 'L', 'Kisaran', '2010-06-20', 2, 'WNI', 'Angsana Hijau IV Blok G6/21 Rt. 003/009 Duri Kosambi Jakarta Barat', '[email protected]', 'Christopher_andrew_sinaga.pdf', '087886472065', 4, 'Christoper_Andrew_K4.jpg', 0, 2, '-', 1, 0, 0), (234, '2018465', '0104686731', '0000000000000000', 'Darlene Evangeline Lay', 'P', 'Makassar', '2010-01-16', 2, 'WNI', 'perumahan Taman Metropolitan, jl Green Garden Utara no 30 Tanjung Bunga Makassar 90224', '[email protected] ', 'Darlene_Evangeline_Lay.pdf', '081234625280', 4, 'Darlane_evangeline_lay.jpeg', 0, 1, 'Sekolah Dian Harapan Makassar.', 1, 0, 0), (235, '2017212', '0034858025', '0000000000000000', 'Muhammad Hadi', 'L', 'Jakarta', '2003-08-13', 1, 'WNI', 'JL. Berdikari GG. Rayong, Kebon Jeruk, Jakarta Barat', '[email protected]', 'Muhammad_Hadi.pdf', '081290487782', 9, 'WhatsApp_Image_2020-03-11_at_2.57_.46_PM_.jpeg', 0, 2, 'PKBM Anak Panah', 1, 0, 0), (236, '2018462', '0097883249', '0000000000000000', 'Caroline Roseanne Pramadhwari M.', 'P', 'Sleman', '2009-11-19', 1, 'WNI', 'Pramanditya Andi Wardhana\n\nJalan Ramin 3 \nGang Demak no: 1B\nKel.Panarung\nKec. Pahandut\nPalangkaraya\nKalimantan Tengah \nKode pos 73111\nNo hp: 08562770666', '[email protected]', 'Carolline_Roseanne.pdf', '08156870583', 4, 'CAroline_Roseane.jpeg', 0, 1, '-', 1, 0, 0), (237, '2018459', '0093481206', '0000000000000000', 'Andi Danendra Daffa Alief', 'L', 'Jakarta', '2009-10-26', 1, 'WNI', 'Jl. Falaqi 2 C 97, Villa Ilhami - Tangerang\n', '[email protected]', 'Andi_Danendra_Daffa_Alief.pdf', '0818909628', 4, 'Andi_Danendra.jpeg', 0, 1, 'PKBM Anak Panah', 1, 0, 0), (238, '2020732', '34567', '0000000000000000', 'Carlson Constantine Lay', 'L', 'Jakarta', '2010-05-22', 5, 'WNI', 'Perum Permata Buana Jl Pantara Blok P4/63', '[email protected]', 'Carlson_Constantine_Lay.pdf', '0', 4, 'Carlson.jpeg', 0, 2, 'SDS Woodlands Montessori', 4, 0, 0), (239, '2018503', '2094490729', '0000000000000000', 'Kevin Chen ', 'L', 'Tasikmalaya', '2009-08-15', 2, 'WNI', 'Taman Kopo Indah III Blok D.1 No.108 Kel. Rahayu Kec. Margaasih Bandung 40218', ' [email protected]', 'Kevin_Chen.pdf', '082116858889', 3, 'Kevin_Chen.jpeg', 0, 2, 'SD Joy Kids Nasional Plus', 1, 0, 0), (240, '2018468', '0107543306', '0000000000000000', 'Gita Permata Kristi Perangin.D', 'P', 'Jakarta', '2010-04-25', 2, 'WNI', 'Vila Melati Mas H 16 no. 8A Serpong Tangerang Selatan Banten 51114 \n', '[email protected]', 'Gita_Permata_Kristi_Perangin_Angin_Damanik1.pdf', '081319632718', 4, 'Gita_Permata_Kristi_K4.jpg', 0, 1, 'Anak Panah', 1, 0, 0), (241, '2018460', '0099526365', '0000000000000000', 'Andreas Rama Suresh Sitorus', 'L', 'Bekasi', '2009-06-22', 2, 'WNI', 'Perumahan Taman Century 2 blok D no 19. Pekayon - Bekasi \n', '[email protected] ', 'Andreas_Rama_Suresh_Sitorus.pdf', '08881880028', 4, 'Andreas_Rama_Sitorus.jpeg', 0, 3, 'TK Permata Preschool-Bekasi', 1, 0, 0), (242, '2018467', '2123129518', '0000000000000000', 'Ezar Ilmi Khairan', 'L', '0', '2009-11-25', 1, 'WNI', 'GG Mawar No.90 003/004, Tanjung Barat Jagakarsa, Jakarta Selatan', '[email protected]', 'Ezar_Ilmi_Khairan.pdf', '081213171338', 4, 'Ezar_Ilmi.jpeg', 0, 1, '0', 1, 0, 0), (243, '2017214', '0056434465', '0000000000000000', 'Nathanael Clementino Rawis', 'L', 'Jakarta', '2005-12-28', 2, 'WNI', 'Apartemen City Garden Jl. Kamal Raya Cengkareng Jakarta Barat', '[email protected]', 'Nathannael_Clementino_Rawis.pdf', '083897005155', 9, 'Nathanael_Clementino_Rawis.jpeg', 0, 1, 'Homeschooling Primagama', 1, 0, 0), (244, '2018470', '2104183430', '0000000000000000', 'Isaac Rafael Rawis ', 'L', 'Jakarta', '2010-09-06', 2, 'WNI', 'Apartment city garden Unit 1510. Kapuk Cengkareng Jakarta Barat\n', '[email protected]', 'Isaac_Rafael_Rawis1.pdf', '12121212121', 4, 'Isaac1.jpeg', 0, 3, 'Homeschooling Primagama', 1, 0, 0), (245, '2018499', '0117478232', '0000000000000000', 'Jennifer Jasonnita Toembelaka', 'P', 'Jakarta', '2011-06-10', 5, 'WNI', 'Jl. Samarasa I Dalam No.2 RT012/RW005 Kel. Angke Kec. Tambora Jakarta Barat 11330', '[email protected] ', 'jenifer.pdf', '081514350527', 3, 'Jennifer_Jasonnita_Toembelaka.jpg', 0, 1, 'PKBM Anak Panah HS', 1, 0, 0), (246, '2018469', '0083395739', '0000000000000000', 'I Gusti Bagus Devarananda M', 'L', 'Denpasar', '2008-11-23', 4, 'WNI', 'Jl.Kenanga No.11 Tabanan - Bali \n', '[email protected] ', 'IGB_Devarananda1.pdf', '081338991115', 4, 'I_gusti_bagus1.jpeg', 0, 2, 'Anak Panah', 1, 0, 0), (247, '2018528', '0124494947', '0000000000000000', 'Khadeeja Prisa Azzahra', 'P', 'Jakarta', '2012-05-11', 1, 'WNI', 'Jl. Pinang Suasa 4 Blok UZ 6-7 RT014/RW003 Kel. Pondok Pinang Jakarta Selatan', '[email protected]', 'khadeeja_.pdf', '08070003390', 2, 'Khadeeja.jpg', 0, 2, 'PKBM Anak Panah HS', 1, 0, 0), (248, '2018471', '0101772335', '0000000000000000', 'Jane Emelia Veruschka', 'P', 'Semarang', '2010-07-23', 2, 'WNI', 'JL. PERINTIS KEMERDEKAAN. PERUMAHAN PALM TOWN HOUSE NO. C9 TEGAL JAWA TENGAH 52125 ', '[email protected]', 'akte_n_KK_Jane_Emelia_Veruschka_(_kelas_4_DL_)(2).pdf', '081911608099', 4, 'Jane_Emelia.jpeg', 0, 2, 'PKBM Kak Seto ', 1, 0, 0), (249, '2018472', '0121645132', '0000000000000000', 'Jovanna Alexandria Gumulya', 'P', 'Jakarta', '2010-06-25', 3, 'WNI', 'Jl. Tambora I No. 21 C, RT 009/002, Tambora, Jakarta Barat 11220 \n', ' [email protected]', 'Jovanna_Alexandria.pdf', '08111767567', 4, 'Jovanna_Alexandria_Gumulya_K.4_.jpg', 0, 1, 'SD St. Leo', 1, 0, 0), (250, '2018458', '0111206030', '0000000000000000', 'Amadeo Jova Paundralingga', 'L', 'Davis', '2011-06-28', 2, 'WNI', 'The Boulevard Apartment Unit 17M Jl. Fachruddin Raya No. 5 Tanah Abang Jakarta Pusat 10250 \n', '[email protected]', 'Amadeo_Jova.pdf', '082143197230', 4, 'Amadeo_Jova_Paundra_L_K4.jpg', 0, 1, 'PKBM Anak Panah', 1, 0, 0), (251, '2018500', '0115704336', '0000000000000000', 'John Arthur Benyamin', 'L', 'Jakarta', '2011-09-27', 2, 'WNI', 'Jl. Cipayung RT005/RW003 Kel. Cipayung Kec. Cipayung Jakarta Timur 15152', '[email protected]', 'john_arthur.pdf', '082119567599', 3, 'John_Arthur.jpg', 0, 2, 'PKBM Anak Panah HS', 1, 0, 0), (252, '2018474', '0104939824', '0000000000000000', 'Livana Yo Belia Sumargo', 'P', 'Tangerang', '2010-03-09', 2, 'WNI', 'Jl. Permai 35 no 21\nKomplek Margahayu Permai\nBandung', '[email protected]', 'Livana_Yo_Belia_Sumargo1.pdf', '087889008311', 4, 'Livana_Yo_Belia_Sumargo_K4.jpg', 0, 3, 'SD Tunas Bina Bangsa', 1, 0, 0), (253, '2018466', '0107788697', '0000000000000000', 'Eirene Agallia Siregar', 'P', 'Surabaya', '2010-03-30', 2, 'WNI', 'Bluru Permai C-21 RT/RW 006/009, Kel. Bluru Kidul, Sidoarjo', '[email protected]', 'Eirene_Agalia_Siregar.pdf', '082336063222', 4, 'Eirene.jpeg', 0, 1, 'TK Providensia', 1, 0, 0), (254, '2018473', '0107052192', '0000000000000000', 'Kayla Azrina Hanania', 'P', 'Jakarta', '2010-03-27', 1, 'WNI', 'Jl Sabar No 25 Rt. 009/ 004 Petukangan Jakarta', '[email protected]', 'Kayla_Azrina_Hanania.pdf', '0818675172', 4, 'Kayla_Azrina_Hanania_K4.jpg', 0, 2, 'PKBM Anak Panah', 1, 0, 0), (255, '2018475', '0097485024', '0000000000000000', 'Marcos Chenata', 'L', 'Medan', '2009-12-04', 5, 'WNI', 'Foresta fiore blok B7 no. 23 bsd city Tangerang Banten 15311\n', '[email protected]', 'Marcos_Chenata1.pdf', '081361518538', 4, 'Marcos1.jpeg', 0, 2, 'IPEKA', 1, 0, 0), (256, '2018526', '0121725956', '0000000000000000', 'Keiko Laquisha Gumulya', 'P', 'Jakarta', '2012-01-25', 3, 'WNI', 'Jl Tambora I No 21 C Rt 009/002, Tambora Jakarta Barat', ' [email protected]', 'keikko.pdf', '081295744255', 2, 'Keiko_Laauisha.jpg', 0, 2, 'TK St Leo 2', 1, 0, 0), (257, '2017193', '0051556768', '0000000000000000', 'Anna Marie Lynn', 'P', 'Jakarta', '2005-06-25', 3, 'WNI', 'Komp. Dept. Hub Jl. Elang No. 26 RT 006/ RW\n010, Kebayoran Lama, Jakarta Selatan 12240 ', '[email protected]', 'anne_marie.pdf', '000', 9, 'index.jpg', 0, 1, 'SD Swasta Pangudi Luhur ', 1, 0, 0), (258, '2018502', '2108412467', '0000000000000000', 'Kaylen yehonala christivend', 'P', 'Jambi', '2010-04-03', 3, 'WNI', 'Jl. Permata Medang Cluster Barleria B1 G33', '[email protected]', 'Kayleen.pdf', '081254066066', 3, 'Kaylen.jpg', 0, 2, 'PKBM Anak Panah HS', 1, 0, 0), (259, '2017187', '0073585671', '0000000000000000', 'Agnes davita putri dahana', 'P', 'Depok', '2004-11-16', 2, 'WNI', 'Griya lembah depok Blok G4 no 7\nDepok Jawa Barat 16411\nIndonesia', '[email protected]', 'Agnes_Davita1.pdf', '082213139722', 9, 'index.jpg', 0, 1, 'SD Holy Faithful Obedient', 1, 0, 0), (260, '2018501', '0103071878', '0000000000000000', 'Kaylee yehonala christivend', 'L', 'Jambi', '2010-04-03', 3, 'WNI', 'Jl. Permata Medang Cluster Barleria B1 G33', '[email protected]', 'Kaylee.pdf', '081254066066', 3, 'Kaylen.jpg', 0, 1, 'PKBM Anak Panah HS', 1, 0, 0), (261, '2018504', '0117779290', '0000000000000000', 'Leonard Nathanael Lee', 'L', 'Jakarta', '2011-02-01', 3, 'WNI', 'Jl. Mangga Besar I No. 98 A RT001/RW003 Kel. Mangga Besar Kec. Taman Sari Jakarta Barat', '[email protected]', 'Leonard_Nathanael_Lee.pdf', '0818768867', 3, 'Leonard_Nathanael_Lee.jpg', 0, 2, 'PKBM HSPG Meruya', 1, 0, 0), (262, '2018505', '0105342004', '0000000000000000', 'Luiza Aaliyah Wicaksono', 'P', 'Jakarta', '2010-07-07', 1, 'WNI', 'Pulo Asem Utara III No. 6A Jakarta Timur', '[email protected]', 'Luiza_Akta-converted.pdf', '081294993233', 3, 'Luiza_Aliyah_Wicaksono.jpg', 0, 1, 'PKBM Anak Panah HS', 1, 0, 0), (263, '2018478', '0107189150', '0000000000000000', 'Olivia Roan Widiyono', 'P', 'Tangerang', '2009-11-17', 3, 'WNI', 'Regensi Melati Mas Blok E-6/17 002/011 Jelupang', '[email protected]', 'Olivia_Roan_Widiyono.pdf', '08170174817', 4, 'Olivia_Roan.jpeg', 0, 3, 'PKBM Alfa Omega', 1, 0, 0), (264, '2018481', '0099227013', '0000000000000000', 'Richard Orlando Casterson', 'L', 'Jakarta', '2009-07-07', 5, 'WNI', 'Jl Mangga 16BB No 22 B Duri Kepa Jakarta Barat Jakarta 11510\n', ' [email protected]', 'RIchard_Orlando_Casterson.pdf', '082112484012', 4, 'Richard_Orlando.jpeg', 0, 1, 'Ichthus School', 1, 0, 0), (265, '2018506', '0113717869', '0000000000000000', 'Meaghan De Maria Rastana', 'P', 'Surabaya', '2010-05-22', 2, 'WNI', 'Bukit Duri Tanjakan Gang SD No. 54 A Bukit Duri Tanjakan Tebet', ' [email protected]', 'meghan.pdf', '081385935295', 3, 'tidur-dengan-kucing.jpg', 0, 2, 'PKBM Anak Panah HS', 1, 0, 0), (266, '2018480', '0104166740', '0000000000000000', 'Revand Wijaya', 'L', 'Tangerang', '2010-03-13', 5, 'WNI', 'Perum Legok permai..Cluster Kaliandra Blok : K2 No.A2\nLegok - Tangsel', '[email protected]', 'Revand_Wijaya.pdf', '08562225533', 4, 'Revan_Wijaya_K.4_.jpg', 0, 2, 'TK Mutiara Bangsa', 1, 0, 0), (267, '2017189', '0043068358', '0000000000000000', 'Ananda Noah Nathanael ', 'L', 'Jakarta', '2004-11-14', 2, 'WNI', 'Melati Mas Vista V9/21, Melati Mas Residence,\nJelupang. ', '[email protected]', 'Ananda_Noah1.pdf', '08159926033', 9, 'WhatsApp_Image_2020-03-12_at_13.47_.27_.jpeg', 0, 1, 'SD Stella Maris ', 1, 0, 0), (268, '2018479', '0107189150', '0000000000000000', 'Raphael William Suganda', 'L', 'Jakarta', '2010-10-06', 2, 'WNI', 'Jalan Vanda 3 nomor 5 \n', '[email protected]', 'Raphael.pdf', '08176895195', 4, 'Rafael_William_K4.jpg', 0, 1, 'SDK Penabur Gading Serpong', 1, 0, 0), (269, '2018507', '0115807852', '0000000000000000', 'Michael Jayden Oentoro', 'L', 'Tangerang', '2011-09-30', 2, 'WNI', 'Jl. Kelapa Puan XIII AF - 6/18 RT005/RW012 Pakulonan Barat Tangerang\n', '[email protected]', 'michael_jayden.pdf', '0818855149', 3, 'Michael_Jayden.jpg', 0, 1, 'PKBM Anak Panah HS', 1, 0, 0), (270, '2017185', '0042649156', '0000000000000000', 'Abraham Dominic Nugroho', 'L', 'Padang', '2004-11-14', 2, 'WNI', 'Jl. Mangga 24 Blok F No.140a. Duri Kepa Kebun\nJeruk Jakarta Barat 11510 Indonesia ', '[email protected]', 'Abraham_Dominic_Nugroho1.pdf', '087820041411', 9, 'WhatsApp_Image_2020-03-12_at_14.08_.40_.jpeg', 0, 1, 'SMP Widuri Jaya ', 1, 0, 0), (271, '2018482', '0103327655', '0000000000000000', 'Sir Leon Maximilllianus Bolang', 'L', 'Balikpapan', '2010-06-17', 2, 'WNI', 'Perum Kencana Loka 1 Blok F1/39 RT. 002/ RW.014 - BSD City; Kelurahan Rawa Buntu Kec. Serpong 15318', '[email protected]', 'Sir_Leon_Maximillianus_Bolang.pdf', '082254813348', 4, 'Sir_leon.jpeg', 0, 1, 'Kalimantan International christian School', 1, 0, 0), (272, '2018509', '0108242901', '0000000000000000', 'Muhammad Khalid', 'L', 'Bantul', '2010-12-04', 1, 'WNI', 'Jl. Pendustrian I No. 64 Lr. Jati RT001/RW001 Kel. Kebun Bunga Palembang', '[email protected]', 'M_khalid.pdf', '085740631858', 3, 'Muhammad_Khalid.jpg', 0, 1, 'PKBM Anak Panah HS', 1, 0, 0), (273, '2019564', '2065231130', '0000000000000000', 'Alicia', 'P', 'Jakarta', '2006-09-17', 2, 'WNI', 'Taman ubud cendana 2 no.10 lippo karawaci Tanggerang Banten 15810\n', '[email protected]', 'alicia.pdf', '0', 7, 'Screenshot_6.png', 0, 2, 'SD Strada', 1, 0, 0), (274, '2018477', '0072600857', '0000000000000000', 'Narendra Fattaah Ari Kusuma', 'L', 'Yogyakarta', '2007-03-26', 1, 'WNI', 'The Mansion Jasmine Tower Bellavista Unit JB36B Jl Trembesi Blok D Pademangan Kemayoran Jakarta Utara 14410 \n', ' [email protected]', 'Narendra_Fattah.pdf', '081228971477', 5, 'Narendra_Fattah.jpeg', 0, 2, 'Tumbuh Primary School', 7, 0, 0), (275, '2017186', '0046575938', '0000000000000000', 'Adonis Tandal', 'L', 'Jakarta', '2004-05-05', 5, 'WNI', 'Perumahan Citra Garden 5 blok E6 no. 11 Jakarta\nBarat 11840 ', '[email protected]', 'Adonis_Tandal1.pdf', '08161147336', 9, 'WhatsApp_Image_2020-03-12_at_14.25_.21_.jpeg', 0, 1, 'Sekolah Mahabodhi Vidya', 1, 0, 0), (276, '2018508', '0108176319', '0000000000000000', 'Michelle Prameswari Sutanto', 'P', 'Jakarta', '2010-07-01', 3, 'WNI', 'Jl. Duri Kencana Raya 13 RT005/RW007 Kel. Duri Kepa Jakarta Barat', '[email protected]', 'michelle_prameswari.pdf', '082211764575', 3, 'Michelle_Prameswari_Sutanto.jpg', 0, 3, 'Sekolah Pilar Bangsa', 1, 0, 0), (278, '2017215', '0053072362', '0000000000000000', 'Nicholas Zubel Ebenhezer Hutasoit', 'L', 'Denpasar', '2005-04-21', 2, 'WNI', 'PRM Balangan Pratama BB VI. No 10 Lingk. Cengiling , Jimbaran, Kuta Selatan', '[email protected]', 'Nicholas_Zubel.pdf', '082118803182', 9, 'WhatsApp_Image_2020-03-12_at_2.22_.54_PM_.jpeg', 0, 1, 'SD Tunas Bangsa', 1, 0, 0), (279, '2017195', '2047651208', '0000000000000000', 'Bunga Azalia Fauzia Shafa', 'P', 'Surakarta', '2004-11-06', 1, 'WNI', 'Vila Dago Cluster Maribaya E06/24 RT004/020, Benda Baru, Pamulang\nTangerang Selatan Banten 15416\nIndonesia', '[email protected]', '12-03-2020-14.37_.19_.pdf', '088233984003', 9, 'WhatsApp_Image_2020-03-12_at_14.41_.22_.jpeg', 0, 1, 'SD Al-Zahra Indonesia', 1, 0, 0), (280, '2018483', '0102748768', '0000000000000000', 'Valerie Nightingale', 'P', 'Jakarta', '2010-01-19', 2, 'WNI', 'JL. DR. Semeru Rays No.65 RT/RW 010/010 Kel. Grogol, Jakarta Barat', '[email protected]', 'valerie1.pdf', '081380687898', 4, 'Valerie_Nightingale_k4.jpg', 0, 1, '0', 1, 0, 0), (281, '2019566', '0', '0000000000000000', 'Andrew Fabian Prawira Putra', 'L', 'Bandung', '2007-01-06', 2, 'WNI', 'Jl Sunda No 93 Rt 001/001 Kel. Merdeka, Kec. Sumur Bandung\n', '[email protected]', 'Contoh.pdf', '0', 7, 'Screenshot_6.png', 0, 3, 'PKBM Anak Panah', 1, 0, 0), (282, '2018510', '0118984129', '0000000000000000', 'Nathanael Joseph Wijaya', 'L', 'New York', '2011-06-19', 2, 'WNI', 'jalan sumatera nomor 3 medan belawan sumatera utara 20411', '[email protected]', 'Nathanael_J_Akta-converted.pdf', '081210566533', 3, 'Nathanael_Joseph_Wijaya.jpg', 0, 1, 'PKBM Anak Panah HS', 1, 0, 0), (283, '2019569', '0073592295', '0000000000000000', 'Baswara Abi Satria', 'L', 'Yogyakarta', '2007-02-28', 1, 'WNI', 'apartement Mediterania Palace, Kemayoran \n', '[email protected] ', 'baswara_adi.pdf', '0', 7, 'Baswara.jpeg', 0, 1, 'PKBM Anak Panah', 1, 0, 0), (284, '2018476', '0104030197', '0000000000000000', 'Naomi Allicia Benyamin', 'P', 'Jakarta', '2010-04-06', 2, 'WNI', 'Perum Jati Asih Indah Blok D6 / 110 Bekasi Selatan \n', '[email protected]', 'Joseph_Alvin_Benyamin.pdf', '08561776052', 4, 'Naomi_Alicia_K4.jpg', 0, 2, 'PKBM Anak Panah', 1, 0, 0), (285, '2018484', '0107712392', '0000000000000000', 'Violeta Eunike Seancho', 'P', 'Jakarta', '2010-10-08', 2, 'WNI', 'Taman Palem Lestari Blok E 16 no. 11', '[email protected]', 'Violeta_Eunike_Seancho.pdf', '08998884569', 4, 'Violeta_Eunike_K4.jpg', 0, 1, '0', 1, 0, 0), (286, '2018512', '2095325924', '0000000000000000', 'Princeton Darion Zein', 'L', 'Jakarta', '2009-03-06', 2, 'WNI', 'City Resort APT Tower Alamanda Lt.11/16', '[email protected]', 'princenton.pdf', '0818172961', 3, 'Princeton.jpg', 0, 2, 'sds woodlands', 1, 0, 0), (287, '2017213', '0055732850', '0000000000000000', 'Nathan Naufal Wardani', 'L', 'Tangerang ', '2005-01-27', 1, 'WNI', 'Jl. Labu I Blok G3 No 3 Sektor I.6 Griya Loka BSD, Rawabuntu', '[email protected]', 'nathan_nauval.pdf', '081386317168', 9, 'WhatsApp_Image_2020-03-12_at_3.06_.42_PM_.jpeg', 0, 1, 'SMP Islam Cikal Harapan 1', 1, 0, 0), (288, '2018511', '0113291398', '0000000000000000', 'Petra William Lay ', 'L', 'Makassar', '2011-06-08', 2, 'WNI', 'perumahan Taman Metropolitan, jl Green Garden Utara no 30 Tanjung Bunga Makassar 90224', '[email protected]', 'petra_lay.pdf', '082192909989', 3, 'Petra_William_Lay.jpg', 0, 2, 'PKBM Anak Panah HS', 1, 0, 0), (289, '2019578', '0075542191', '0000000000000000', 'Felix Alexandro Yap', 'L', 'Tangerang', '2007-02-03', 5, 'WNI', 'Simprug poris e3 no 5 RT 6 Rw 3 Poris jaya \n', '[email protected]', 'felix.pdf', '081281819173', 7, 'WhatsApp_Image_2020-04-22_at_13.51_.55_.jpeg', 0, 1, 'PKBM Anak Panah', 1, 0, 0), (290, '2017194', '0043056156', '0000000000000000', 'Brigitta Gwyneth Xaviera ', 'P', 'Jakarta', '2004-08-10', 3, 'WNI', 'Taman Aries A-5/3 Rt. 04/Rw. 09 Meruya Utara,\nJakarta Barat ', '[email protected]', '12-03-2020-15.30_.18_.pdf', '08111097802', 9, 'WhatsApp_Image_2020-03-12_at_15.33_.10_.jpeg', 0, 5, 'Sekolah Harapan Bangsa', 1, 0, 0), (291, '2019580', '0077805529', '0000000000000000', 'Flora Chenita', 'P', 'Medan', '2007-02-19', 2, 'WNI', 'Komplek foresta - fiore blok B7 no.23 bsd city Tangerang Banten 15311 \n', '[email protected]', 'FLORA.pdf', '081519616318', 7, 'Screenshot_6.png', 0, 1, 'SD Ipeka BSD', 1, 0, 0), (292, '2018513', '2108820179', '0000000000000000', 'Rayhana Zulfa Bachmid', 'P', 'Bacan ', '2010-10-10', 1, 'WNI', 'Jalan Hebras desa jatimulya nomor 245 rt 02 rw 06 kecamatan tambun selatan kabupaten bekasi 17510', '[email protected]', 'rayhana.pdf', '085885665886', 3, 'Rayhana.jpg', 0, 1, 'SDAT TAMAN FIRDAUS', 1, 0, 0), (293, '2018485', '0092506771', '0000000000000000', 'Winston Alden Widjaja', 'L', 'Jakarta', '2009-05-19', 2, 'WNI', 'JL. Graha Sunter Pratama Blok F No.6', '[email protected]', 'Winston_Alden.pdf', '08118800072', 4, 'Winston_Alden_K4.jpg', 0, 2, 'Stars School', 1, 0, 0), (294, '2019582', '0065532969', '0000000000000000', 'Gunawan Wahyu ', 'L', 'Tangerang', '2006-11-22', 1, 'WNI', 'JALAN SWADAYA DALAM Rt 11 RW 2kel Wijaya kusuma 11460\n', '[email protected] ', 'gunawan_wahyu_widodo.pdf', '0', 7, 'gunawan_wahyu.JPG', 0, 1, 'SD Negeri Wijaya Kusuma 05', 1, 0, 0), (295, '2019584', '2077314594', '0000000000000000', 'Hanifah Chandra Kurniawati', 'P', 'Cilegon', '2007-03-29', 1, 'WNI', 'Lingkungan Pagebangan Rt 012/03 Desa Ketileng Cilegon ', '[email protected]', 'Contoh.pdf', '0', 7, 'Screenshot_6.png', 1, 7, 'SDN 1 Cilegon', 1, 0, 0), (296, '2019587', '2074493332', '0000000000000000', 'Jacqueline Venessa Leifon', 'P', 'Tangerang', '2007-02-26', 2, 'WNI', 'canary timur 3 no.42 gading serpong 15810\n', '[email protected]', 'Jacqueline.pdf', '12345678', 7, 'WhatsApp_Image_2020-03-20_at_11.41_.23_.jpeg', 0, 1, 'SD Pahoa', 1, 0, 0), (297, '2019591', '0078142885', '0000000000000000', 'Jeremy Giovanni', 'L', 'Jakarta', '2007-03-02', 2, 'WNI', 'Taman Palem Lestari Blok E13 Nomor 2 RT 02 RW 15 Cengkareng Barat', '[email protected]', 'JEREMY.pdf', '08176355598', 7, 'WhatsApp_Image_2020-03-20_at_13.53_.51_.jpeg', 0, 2, 'SD Kasih Imannuel School', 1, 0, 0), (298, '2019594', '0', '0000000000000000', 'Justin Odilo', 'L', 'Medan', '2005-12-29', 2, 'WNI', 'APE Green Palm Lt 9 Blok A No 7 Rt 05/013 Jakarta', '[email protected]', 'justin_odilo.pdf', '0', 7, 'WhatsApp_Image_2020-04-22_at_14.27_.33_.jpeg', 0, 3, 'PKBM Anak Panah', 1, 0, 0), (299, '2019592', '0075381236', '0000000000000000', 'Jovan Farrel Sumargo', 'L', 'Tangerang', '2007-07-07', 2, 'WNI', 'Jalan Permai 35 nomor 21 Komplek Margahayu Permai Bandung', '[email protected]', 'jovan_farrel1.pdf', '083140639024', 7, 'WhatsApp_Image_2020-04-22_at_14.12_.35_.jpeg', 0, 2, 'PKBM Anak Panah', 1, 0, 0), (300, '2020749', '123', '0000000000000000', 'Kenonwayne Wijaya', 'L', 'Banyuwangi', '2006-04-23', 5, 'WNI', 'Ruby Utara 1 no 7 Kelapa Dua Tangerang', '[email protected]', 'Contoh.pdf', '0', 7, 'Screenshot_6.png', 0, 1, 'SD Bina Nusantara Serpong', 1, 0, 0), (301, '2019595', '0075547739', '0000000000000000', 'Kaisar Ivan Shalimar', 'L', 'Jakarta', '2007-05-06', 2, 'WNI', 'Pulo Asem Timur I No. 10 A, Rt 001/ Rw 002, Jak-Tim', '[email protected]', 'kaisar_ivan.pdf', '081382079555', 7, 'WhatsApp_Image_2020-03-20_at_14.24_.57_.jpeg', 0, 1, 'SDS Global Sevilla Pulo Mas', 1, 0, 0), (302, '2019589', '0072931917', '0000000000000000', 'Jasmine Lian Juskiw', 'P', 'Denpasar', '2007-01-26', 3, 'WNA', 'Jalan tukad badung 17 no 27, Renon Denpasar Bali 80226 Indonesia \n', '[email protected]', 'Scan_Museum_Anatomi.pdf', '08999029128', 7, 'WhatsApp_Image_2020-03-20_at_14.27_.12_.jpeg', 0, 1, 'PKBM Anak Panah', 1, 0, 0), (303, '2018514', '12345678', '0000000000000000', 'Reinhard Rich Reagan', 'L', 'Tangerang', '2011-09-17', 2, 'WNI', 'Cikahuripan RT005/RW006 Kel. Neglasari Kec. Neglasari Tangerang 15129', '[email protected]', 'reinhard_rich.pdf', '081213700888', 3, 'Reinard_Rich_Reagan.jpg', 0, 3, 'SDK Plus Penabur Cirebon', 1, 0, 0), (304, '2019593', '0076959153', '0000000000000000', 'Juanito Mannuel Halim', 'L', 'Jakarta', '2007-02-28', 2, 'WNI', 'Puri Bintaro PB.33/123 RT.009 RW.009 Sawah Baru Ciputat, Tangerang Selatan', '[email protected]', 'juanito.pdf', '0811936402', 7, 'WhatsApp_Image_2020-03-20_at_11.54_.48(1)_.jpeg', 0, 1, 'SD Highscope Indonesia Bintaro', 1, 0, 0), (305, '2017217', '0052536602', '0000000000000000', 'Orceola Primo Edriatama', 'L', 'Jakarta', '2005-01-14', 3, 'WNI', 'JL PETOJO VTY V NO. 22 rt.13/06, Desa / Kelurahan : Cideng,Kode Pos : 10150\n', '[email protected]', 'Orceola_Primo.pdf', '08118991245', 9, 'Orceola.jpeg', 0, 1, 'PKBM Anak Panah', 1, 0, 0), (306, '2017216', '0058712499', '0000000000000000', 'Omar Ari Olafsoon', 'L', 'Jakarta', '2005-07-31', 1, 'WNI', 'Cluster alicante blok ABT nomor 100 gading serpong Tangerang', '[email protected]', 'Omar_Ari.pdf', '081296465032', 9, 'WhatsApp_Image_2020-03-12_at_5.06_.15_PM_.jpeg', 0, 1, 'Junior High School Stella Maris', 1, 0, 0), (307, '2019590', '0069592027', '0000000000000000', 'Jennifer Gracia Leunura', 'P', 'Serang', '2006-12-24', 2, 'WNI', 'Taman Lopang Indah, Jl. Anyelir, Block C 38 No.1 Serang Banten 42112\n', '[email protected]', 'Jennifer_Gracia_Leunura1.pdf', '081288681381', 7, 'Jennifer_gracia.jpeg', 0, 1, 'SD Swasta Evfia land', 1, 0, 0), (308, '2019599', '0071074442', '0000000000000000', 'Maleeka Kendra Adhitia', 'P', 'Jakarta', '2007-11-15', 1, 'WNI', 'Apartemen Taman Rasuna. Tower 9 unit 14C. Jl HR Rasuna Said. Jakarta Selatan', '[email protected]', 'maleeka1.pdf', '085892595985', 7, 'WhatsApp_Image_2020-03-20_at_14.13_.05_.jpeg', 0, 1, 'Al Azhar Syifa Budi, Kemang Jakarta Selatan.', 1, 0, 0), (309, '2019600', '2073769566', '0000000000000000', 'Marciano Emmanuel Chandra', 'L', 'Jakarta', '2007-03-26', 2, 'WNI', 'Perumahan Garden Aryana Blok B3/15, Binong, kelurahan Sukabakti, Desa kadu, kecamatan curug, Tangerang 15810 \n', '[email protected]', 'marciano.pdf', '081319838652', 7, 'Marciano.jpeg', 0, 1, 'Anak Panah', 1, 0, 0), (310, '2019603', '2073582542', '0000000000000000', 'Mohammad Satria Jannatan', 'L', 'Surabaya', '2007-04-20', 1, 'WNI', 'JL. PAPANDAYAN NO. 16, MEDITERANIA 1, SENTUL CITY Jl. Papandayan no. 16, Mediterania Golf 1, Kecamatan Babakan Madang, Sentul City\n', '[email protected]', NULL, '12121212121', 7, 'Penguins.jpg', 0, 4, 'SD Bina Insani', 1, 0, 0), (311, '2019606', '0061671015', '0000000000000000', 'Muhammad Sholahuddin Ulya', 'L', 'Berebes', '2006-07-15', 1, 'WNI', 'Jl. H muri salim raya no 2 Rt 6 Rw 2 Pondok Bulak, Pisangan, Ciputat Tangsel\n', '[email protected]', 'ulya1.pdf', '081260680019', 7, 'WhatsApp_Image_2020-03-20_at_11.43_.59_.jpeg', 0, 1, 'PPS Daarul Quran', 1, 0, 0), (312, '2019598', '0062052551', '0000000000000000', 'Laura Fei Susanto', 'P', 'Purworejo', '2006-07-14', 2, 'WNI', 'JL GN PUTRI NO 12, TAMAN RT 002 RW 008 BROMO, LIPPO VILLAGE SENTRAL , KELAPA DUA\n', '[email protected]', 'laura_fei1.pdf', '081905057650', 7, 'WhatsApp_Image_2020-04-22_at_14.40_.25_.jpeg', 0, 1, 'SD Mutiara Ibu', 1, 0, 0), (313, '2019619', '0072402150', '0000000000000000', 'Sekar Humaera Putranto', 'P', 'Jakarta', '2006-04-10', 1, 'WNI', 'Jalan Pejaten Indah 1 F11 Pancoran Jakarta Selatan', '[email protected]', 'sekar1.pdf', '085695778373', 7, 'Penguins1.jpg', 0, 1, 'Anak Panah', 1, 0, 0), (314, '2019621', '0074880389', '0000000000000000', 'Sherina Thu Tiwanie ', 'P', 'Tangerang', '2007-07-10', 1, 'WNI', 'GADING SERPONG 7B DD 5 NOMOR 22 RT 4 RW 3 Curug sangereng \n', '[email protected] ', 'sherina1.pdf', '12121212121', 7, 'WhatsApp_Image_2020-03-20_at_14.19_.11_.jpeg', 0, 1, '0', 1, 0, 0), (315, '2019622', '0071761102', '0000000000000000', 'Siti Afraisyah', 'P', 'Balikpapan', '2007-10-18', 1, 'WNI', 'Ahmad yani karang jawa dalam Karang jawa dalma no 2 rt 11 rw 4 Balikpapan Balikpapan tengah 76123 \n', '[email protected]', 'siti_af1.pdf', '081912341998', 7, 'WhatsApp_Image_2020-03-20_at_14.08_.40_.jpeg', 0, 2, 'Anak Panah', 1, 0, 0), (316, '2019623', '0071742259', '0000000000000000', 'Siti Zahra Izzati Maulana ', 'P', 'Jakarta', '2007-10-24', 1, 'WNI', 'perumahan sakura regency 1 Blok G 14 jatiasih bekasi 17423', '[email protected]', 'SITI_ZAHRA1.pdf', '089683064839', 7, 'Siti_zahra.JPG', 0, 2, '0', 1, 0, 0), (318, '2019607', '0072085374', '0000000000000000', 'Nadine Aureora Anzany', 'P', 'Tangerang', '2007-04-05', 1, 'WNI', 'Komp Amarapura Blok C1 No.7, Kel Kademangan, Kec Setu Tangerang Selatan \n', '[email protected]', 'nadine.pdf', '081908346700', 7, 'WhatsApp_Image_2020-04-22_at_14.58_.01_.jpeg', 0, 2, 'PKBM Anak Panah', 1, 0, 0), (319, '2017218', '0052351507', '0000000000000000', 'Patrick Hermansyah Wihardja', 'L', 'Jakarta', '2005-07-25', 2, 'WNI', 'Jl. Kelapa Puan XXVI Blok AK 6/1 Sektor 1 G. RT 06/RW.010 \nKecamatan Pakulonan Barat \nKelurahan Kelapa Dua\nGading Serpong Tangerang 15811', '[email protected]', 'Pradipta_Daffa.pdf', '08111998089', 9, 'WhatsApp_Image_2020-03-13_at_9.32_.47_AM_.jpeg', 0, 1, 'Sekolah Anak Panah', 1, 0, 0), (320, '2019596', '0077105460', '0000000000000000', 'Khatira Nahiza Suharta', 'P', 'Jakarta', '2007-04-04', 1, 'WNI', 'Griya Jakarta, Jl. Kemang 7 Blok B1 No.58', '[email protected]', 'Latihan_Pra_USBN_Bahasa_Indonesia.pdf', '0', 7, '296899_Harpindo-Bunga-Mawar-Biru-79-CM_SnxMDcx96Dd32QMM_1567781404.PNG', 1, 3, 'SDIT Nur Fatahillah', 1, 0, 0), (321, '2019608', '0074520693', '0000000000000000', 'Padhang Moncar Bagus Nalar Pekerti', 'L', 'Depok', '2007-12-24', 1, 'WNI', 'Jl. Pembangunan No 6. Hankam RT 003 RW 002 Desa/Kelurahan Pasir Gunung Selatan Kecamatan Cimanggis, Kota Depok. Jawa Barat 16951', '[email protected]', 'padhang.pdf', '12345678', 7, 'WhatsApp_Image_2020-04-22_at_15.00_.41_.jpeg', 0, 1, 'Sekolah Musik Yayasan Pendidikan Musik', 1, 0, 0), (322, '2019597', '0079240801', '0000000000000000', 'Kyla Petahia', 'P', 'Jakarta', '2007-01-10', 2, 'WNI', 'jalan s kemanggisan pulo nomor 6b rt 07 rw 17 palmerah jakarta barat 11480', '[email protected]', 'kyla.pdf', '081383767084', 7, 'WhatsApp_Image_2020-03-20_at_14.10_.24_.jpeg', 0, 1, 'SDS Tunas Muda IKKT', 1, 0, 0), (323, '2019628', '0078586176', '0000000000000000', 'Taufiq Husein Bachsin', 'L', 'Jakarta', '2007-07-17', 1, 'WNI', 'Jln Putri tunggal no 8A,Harjamukti,cimanggis,Depok', '[email protected]', 'Taufik_Husein.pdf', '0818101747', 7, 'WhatsApp_Image_2020-03-20_at_14.29_.11_.jpeg', 0, 2, 'Sd Semut-Semut', 1, 0, 0), (324, '2019609', '0074481342', '0000000000000000', 'Putri Alyssa Manggarsari', 'P', 'Depok', '2007-08-23', 1, 'WNI', 'Perum BCI Blok A 6 No.22 RT 004 RW 026 Desa/Kelurahan Sukatani Kecamatan Tapos, Kota Depok. Jawa Barat 16454', '[email protected]', 'putri_alisya.pdf', '12345678', 7, 'Tulips.jpg', 0, 2, 'sekolah dasar cita persada', 1, 0, 0), (325, '2019617', '0', '0000000000000000', 'Ryan Putra Dwidanda Sutiono', 'L', 'Jakarta', '2005-11-12', 2, 'WNI', 'Tebet Timur Dlm VE/6 RT 004 RW 005 Desa/Kelurahan Tebet Timur Kecamatan Tebet, Kota Jakarta Selatan. DKI Jakarta ', '[email protected]', 'Scan_Museum_Anatomi.pdf', '081218444711', 7, 'Tulips.jpg', 0, 3, 'SDS Notre Dame', 1, 0, 0), (326, '2017219', '0050832649', '0000000000000000', 'Pradipta Daffa', 'L', 'Tangerang ', '2005-03-22', 1, 'WNI', 'DUTA BINTARO KINTAMANI BLOK B10/1 rt.03/07, Desa / Kelurahan : Kunciran, Kode Pos : 15144\n', '[email protected]', '03-13-2020-09.27_.11(1)_.pdf', '089668329234', 9, 'WhatsApp_Image_2020-03-13_at_11.30_.23_AM_.jpeg', 0, 2, 'SMP Islam Az Zamir', 1, 0, 0), (327, '2019629', '0073834616', '0000000000000000', 'Theresia Elizabeth Lumban Tobing', 'P', 'Jakarta', '2007-01-10', 2, 'WNI', 'Bukit Cengkeh Berbunga Blok C4 No.9 Baktijaya RT 4 RW 24, Kecamatan Sukmajaya Depok, Jawa Barat 16418', '[email protected]', 'theresia.pdf', '081361625319', 7, 'WhatsApp_Image_2020-03-20_at_12.03_.22_.jpeg', 0, 1, 'PKBM Anak Panah', 1, 0, 0), (328, '2019611', '0063794543', '0000000000000000', 'RanggaBiya Ichiro Sahaja Wijaksono', 'L', 'Jakarta', '2006-10-24', 2, 'WNI', 'Griya Suradita Indah, Blok O12/3, Suradita Cisauk - Tangerang \n', '[email protected]', 'Ranggabiya_Ichiro.pdf', '081219743998', 7, 'WhatsApp_Image_2020-03-20_at_14.23_.33_.jpeg', 0, 1, 'SD Waskito', 1, 0, 0), (329, '2018300', '0987654', '0000000000000000', 'Adlu Ahmad Fahrezy', 'L', 'Jakarta', '2008-01-31', 1, 'WNI', 'Kota wisata cluster Belleveu blok SF 6 No 15 kel Ciangsana kec gunung putri Bogor Jawa barat 16968', '[email protected]', 'Adlu_Ahmad_Fahrezi.pdf', '081293132781', 5, 'adlu.jpg', 0, 2, 'SDN Penggilingan 9', 1, 0, 0), (330, '2019630', '0071769877', '0000000000000000', 'Timothy Emmanuel Lumban Tobing', 'L', 'Jakarta', '2007-01-10', 2, 'WNI', 'Bukit Cengkeh Berbunga Blok C4 No.9 Baktijaya RT 4 RW 24, Kecamatan Sukmajaya Depok, Jawa Barat 16418', '[email protected]', 'timoty.pdf', '081319305777', 7, 'WhatsApp_Image_2020-03-20_at_14.11_.40_.jpeg', 0, 2, 'PKBM Anak Panah', 1, 0, 0), (331, '2018301', '0096370511', '0000000000000000', 'Alden Ely Pniel ', 'L', 'Gampong Cot', '2009-05-05', 2, 'WNI', 'Desa Neusu Aceh, Ulee Jurong: Tuan Meunasah, Jln.Tandi, Toke Haji. Kecamatan: Baiturrahman, Kota Banda Aceh. Kode Pos. 23244', '[email protected]', 'Alden_Ely_Peniel.pdf', '081321445370', 5, 'Alden_K.5_.jpg', 0, 1, 'PKBM Anak Panah', 1, 0, 0), (332, '2018317', '2095903197', '0000000000000000', 'Efania Sumanadevi', 'P', 'Jakarta', '2009-07-14', 5, 'WNI', 'jl KH syahdan no 40A , Palmerah, Jakarta Barat\n', '[email protected]', 'Efania_Sumanadevi.pdf', '089503687168', 5, 'Efania_Sumanadevi_K.5_.jpg', 0, 1, 'Global Sevilla Puri Indah', 1, 0, 0), (333, '2018302', '0099366486', '0000000000000000', 'Aliqqa Kayyisa Noverry', 'P', 'Jakarta', '2009-04-02', 1, 'WNI', 'JL.. Rasamala VII No.25 RT 001/010 Menteng Dalam Tebet Jakarta Selatan\n', '[email protected]', 'Aliqqa_Kayissa.pdf', '0', 5, 'Aliqqa_Kayyisa_K.5_.jpg', 0, 2, 'SD Kupu Kupu', 1, 0, 0); INSERT INTO `tbl_siswa` (`siswa_id`, `siswa_nis`, `siswa_nisn`, `nik_siswa`, `siswa_nama`, `siswa_jenkel`, `siswa_tempat`, `siswa_tgl_lahir`, `siswa_agama_id`, `siswa_kewarganegaraan`, `siswa_alamat`, `siswa_email`, `siswa_dokumen`, `siswa_no_telp`, `siswa_kelas_id`, `siswa_photo`, `soft_deleted`, `anak_ke`, `sekolah_asal`, `satelit`, `oc`, `kc`) VALUES (334, '2018304', '0087654550', '0000000000000000', 'Amelia Arwoon', 'P', 'Jakarta', '2008-05-18', 5, 'WNI', 'Apartement City Park Tower A Lantai 8 No 1', '[email protected]', 'Amelia_Arwoon.pdf', '089604282632', 5, 'Amelia_A._K_.5_.jpg', 0, 1, 'PKBM Anak Panah', 1, 0, 0), (335, '2018305', '0091060058', '0000000000000000', 'Anastasya Cantika Kuswijaya', 'P', 'Tangerang', '2009-06-21', 1, 'WNI', 'Komp citra raya. Taman puspa blok D 1 no 19 cikupa tangerang \n', '[email protected]', 'Anastasia_Cantika_Kuswijaya.pdf', '081212949481', 5, 'Anastasya_Cantika_K.5_.jpg', 0, 1, 'PKBM Anak Panah', 1, 0, 0), (336, '2018330', '2092055913', '0000000000000000', 'Marco emmanuel rudtio', 'L', 'Jakarta', '2009-08-22', 2, 'WNI', 'Green lake city, cluster East Asia 2 no. 26 Tangerang\n\n', '[email protected]', 'Marco_Emmanuel_Ruditio1.pdf', '12121212121', 5, 'Marco_Em_K.5_.jpg', 0, 1, 'Grow Beyond Academy', 1, 0, 0), (337, '2018320', '0082163268', '0000000000000000', 'Ethan Vincent Pranata', 'L', 'Jakarta', '2008-11-22', 2, 'WNI', 'Jl. Pascal Barat 1 No. 1 Cluster Pascal Scientia Garden Summarecon Serpong Tangerang \n', '[email protected]', 'Ethan_Vincent_Pranata.pdf', '0818783880', 5, 'Ethan_Vincent_P._K5_.jpg', 0, 1, 'PKBM Anak Panah', 1, 0, 0), (338, '2018306', '0092129043', '0000000000000000', 'Angelyn Callista Sucipto', 'P', 'Jakarta', '2009-08-05', 2, 'WNI', 'claster faraday selatan 3 No.9 sumarecon serpong tanggerang banten 15811\n', '[email protected]', 'Angelyn_Callista_Sucipto.pdf', '082114999777', 5, 'Angelyn_Callista_Sucipto_K.5_.jpg', 0, 1, 'PKBM Anak Panah', 1, 0, 0), (339, '2018308', '0084648120', '0000000000000000', 'Aurellia Jesslyn', 'P', 'Jember', '2008-09-08', 2, 'WNI', 'Porto2 No.1 sektor 6 Gading Serpong \n', '[email protected]', 'Aurellia_Jesslyn_21.pdf', '081212623322', 5, 'Aurellia_Jesslyn_K.5_.jpg', 0, 1, 'PKBM Anak Panah', 1, 0, 0), (340, '2018314', '0083837954', '0000000000000000', 'Delroy Kumara Djuwono', 'L', 'Jakarta', '2008-12-18', 2, 'WNI', 'taman ratu blok dd 6 no 21-23 jakarta barat DKI Jakarta 11520\n', '[email protected]', 'Delroy_Kumara_Djuwono.pdf', '0', 5, 'Delroy_Kumara_K.5_.jpg', 0, 1, 'SDK 11 Penabur', 1, 0, 0), (341, '2018326', '0082904932', '0000000000000000', 'James Alexander Benyamin', 'L', 'Jakarta', '2008-06-16', 2, 'WNI', 'Botania Lake Residence Blok C 1 Sawangan Depok', '[email protected]', 'James_Alexander_Benyamin1.pdf', '081298881986', 5, 'James_Alexander_Benyamin_K5.jpg', 0, 1, 'Anak Panah', 1, 0, 0), (342, '2018332', '2096846334', '0000000000000000', 'Michael Joshua Leunura', 'L', 'Serang', '2009-01-18', 2, 'WNI', 'Taman Lopang Indah, Jl. Anyelir, Block C38, No. 1 Serang Banten 42112\n', '[email protected]', 'Michael_Joshua_Leunura1.pdf', '12121212121', 5, 'Michael_Josua_K.5_1.jpg', 0, 2, 'EvFIA LAND School', 1, 0, 0), (343, '2019631', '0067404372', '0000000000000000', 'Tobiano Rikie Nathanael', 'L', 'Jakarta', '2006-04-08', 2, 'WNI', 'Fiordini F2 No.70 Gading serpong, RT 001/RW 010, Curug Sangereng, Tangerang', '[email protected]', 'tobiano.pdf', '0', 7, '296899_Harpindo-Bunga-Mawar-Biru-79-CM_SnxMDcx96Dd32QMM_1567781404.PNG', 0, 2, 'PKBM Anak Panah', 1, 0, 0), (344, '2018310', '0092838157', '0000000000000000', 'Daniel Bep Junior', 'L', 'Tangerang', '2009-12-28', 1, 'WNI', 'Jl. Jomas Rt.2 rw. 5 meruya utara \n', '[email protected]', 'Daniel_BEP_Junior.pdf', '08119222467', 5, 'Daniel_Bep_Junior.jpg', 0, 2, 'PKBM Anak Panah', 1, 0, 0), (345, '2018327', '2094954053', '0000000000000000', 'Jason Hanan', 'L', 'Tangerang', '2009-04-21', 2, 'WNI', 'Jl.chadna utama blok F1 no 17, cluster chadna, the avani, BSD', '[email protected]', 'Jason_Hanan1.pdf', '087871111922', 5, 'Koala.jpg', 0, 1, 'SD Hosana Ranca Bungur', 1, 0, 0), (346, '2018311', '0093475301', '0000000000000000', 'Daniel Oliver Wijaya', 'L', 'Jambi', '2009-06-15', 3, 'WNI', 'Jl. Dr. Sumbiyono no 19 Kecamatan Jelutung Jambi 36136 \n', '[email protected]', 'Daniel_Oliver_Wijaya.pdf', '081274996899', 5, 'Screenshot_6.png', 0, 1, 'PKBM Anak Panah', 1, 0, 0), (347, '2018333', '0008522566', '0000000000000000', 'Michelle Callista Romauli P.', 'L', 'Jakarta', '2009-07-29', 2, 'WNI', 'Cluster Beryl. Jln Beryl Timur 1 no.1 Gading Serpong Tangerang selatan Banten 15811 \n', '[email protected]', 'Michelle_Callista1.pdf', '12121212121', 5, 'Koala.jpg', 0, 2, 'Anak Panah', 1, 0, 0), (348, '2018312', '0097741908', '0000000000000000', 'Darnel Hadrian', 'L', 'Jakarta', '2009-07-17', 1, 'WNI', 'Emerald Terrace A-18, Bintaro Jaya, Tangerang Selatan', '[email protected]', 'darnel.pdf', '081314390999', 5, 'Darnel_Hadrian_K.5_.jpg', 0, 3, 'PKBM Anak Panah', 1, 0, 0), (349, '2018321', '0093056854', '0000000000000000', 'Federico Tjen', 'L', 'Jakarta', '2009-03-30', 2, 'WNI', 'Gg manggis 14 no 4 rt.007/04 Tanjung duren \n', '[email protected]', 'Federico_Tjen.pdf', '081288880131', 5, 'Federico_Tjen_K.5_.jpg', 0, 1, 'Sekolah Kristen Rahmani II', 1, 0, 0), (350, '2018328', '0099197143', '0000000000000000', 'Jemimah Ayumi', 'P', 'Tangerang', '2009-08-26', 2, 'WNI', 'Jl.pasar serpong no.77 \n', '[email protected]', 'Jemimah_Ayumi1.pdf', '0811883270', 5, 'Jemimah_Ayumi_K.5_.jpg', 0, 1, 'IPEKA', 1, 0, 0), (351, '2018316', '0088547093', '0000000000000000', 'Drupadi Putri Kurniadi', 'P', 'Jakarta', '2008-09-18', 2, 'WNI', 'Kav DKI blok 142 no. 8, Kembangan, Meruya Selatan, Jakarta Barat', '[email protected]', 'Drupadi_Putri_Kurniadi.pdf', '0', 5, 'Screenshot_6.png', 0, 2, 'PKBM Anak Panah', 1, 0, 0), (352, '2018336', '0092805248', '0000000000000000', 'Nizellia Alisya', 'P', 'Tangerang', '2009-02-28', 1, 'WNI', 'Green leaf Residence jl.Raya cadas kec.Rajeg kel.Mekarsari kab.Tangerang 15540 \n', '[email protected]', 'Nizellia_Alisya_2.pdf', '087778501670', 5, 'Nizelia_Aisyah_K.5_.jpg', 0, 1, 'SDN SUKATANI III', 1, 0, 0), (353, '2019632', '0071696806', '0000000000000000', 'Tristan Evan Aditia', 'L', 'Jakarta', '2007-06-12', 2, 'WNI', 'JL. Pulau Sebaru VIII Blok L-7/21 Jakarta Barat', '[email protected]', 'Latihan_Pra_USBN_Bahasa_Indonesia1.pdf', '0', 7, NULL, 1, 1, 'Springfield School', 1, 0, 0), (354, '2018338', '0098718592', '0000000000000000', 'Princesca Daniella', 'P', 'Jakarta', '2009-05-10', 3, 'WNI', 'Jl puyuh barat blok EF 4 no 15 Bintaro Jaya sektor 5 Tangerang selatan Banten 15224\n', '[email protected]', 'princesca1.pdf', '087775071705', 5, 'Princesca_Daniella_K.5_.jpg', 0, 1, 'Anak Panah', 1, 0, 0), (355, '2018329', '0109646426', '0000000000000000', 'Karen Glorianne Bunga Piga', 'P', 'Jakarta', '2010-06-04', 2, 'WNI', 'Perumahan Kosambi Baru\nJl. Flamboyan Jingga 1A Blok C15 No. 20 \nDuri Kosambi\nCengkareng\nJakarta Barat 11750', '', 'Karen_Gloriane_Bunga_Piga1.pdf', '0819 9895 9393 ', 5, 'Koala.jpg', 0, 1, 'Anak Panah', 1, 0, 0), (356, '2018339', '0102589523', '0000000000000000', 'Richard Jordan Harjanto', 'L', 'Jakarta', '2010-02-11', 2, 'WNI', 'Jl. SMPN Satu Kemang no. 97 RT.003 RW.001 Desa Tegal Kampung Kandang Kec. Kemang Kab. Bogor 16310 \n', '[email protected]', 'Richard_Jordan_Harjanto1.pdf', '12121212121', 5, 'Richard_Jordan_Harjanto_K.5_.jpg', 0, 1, 'Anak Panah', 1, 0, 0), (357, '2018322', '0091590495', '0000000000000000', 'Gabriel George Gaghana', 'L', 'Jakarta', '2009-09-09', 2, 'WNI', 'Taman Permata Parahyangan VII no 15 Lippo Karawaci \n', '[email protected]', 'Scan_Museum_Anatomi.pdf', '08118499590', 5, 'Tulips.jpg', 1, 2, 'PKBM Anak Panah', 1, 0, 0), (358, '2018340', '2099902122', '0000000000000000', 'Rr Rania Alinastra Saskiabela', 'P', 'Bogor', '2009-05-18', 1, 'WNI', 'Mutiara Sentul blok Q no 6 jl alternative sentul 88 Nanggewer Cibinong Kab Bogor', '[email protected]', 'Raden_Roro_Rania1.pdf', '081389679049', 5, 'RR_Rania_K.5_.jpg', 0, 2, 'SD CIpta Cendekia', 1, 0, 0), (359, '2018341', '0099829906', '0000000000000000', 'TImothy', 'L', 'Jakarta', '2009-02-28', 3, 'WNI', 'taman ratu cc 2 no 17 Jakarta Barat DKI Jakarta 52110\n', ' [email protected]', 'Timothy_Collin1.pdf', '0811 1101116', 5, 'Timothy_Collin_K.5_.jpg', 0, 3, 'Anak Panah', 1, 0, 0), (360, '2018342', '0094499146', '0000000000000000', 'Tisha Emmanuela Chandra', 'L', 'Jakarta', '2009-04-21', 2, 'WNI', ' Perumahan Garden Aryana Blok B3/15, Binong, kelurahan Sukabakti, Desa kadu, kecamatan curug, Tangerang 15810\n', '[email protected]', 'Tisha_Emmanuella_Chandra.pdf', '0878 8373 0865', 5, 'Tisha_Immanuella_C_K5.jpg', 0, 2, 'SD Gracia', 1, 0, 0), (361, '2017151', '0065085319', '0000000000000000', 'Aditya Narayan', 'L', 'Jakarta', '2006-10-15', 5, 'WNI', 'jalan Duri.Selatan IA No. 26F\nKelurahan Duri Selatan\nKecamatan Tambora\nJakarta 11270', '[email protected]', 'Aditya_Narayan.pdf', '087886927034', 6, 'Aditya_Narayan_k6.jpg', 0, 2, 'Anak Panah', 1, 0, 0), (362, '2017159', '0086660040', '0000000000000000', 'Darren Dwitaja Yap', 'L', 'Jakarta', '2008-05-13', 5, 'WNI', 'Simprug poris e3 no 5 RT 02 RW 04 Tangerang\n', '[email protected]', 'Darren_Dwijaya_Yap.pdf', '081281819173', 6, 'Darren_k6.jpg', 0, 2, 'PKBM Anak Panah', 1, 0, 0), (363, '2017165', '0082362154', '0000000000000000', 'Kenneth Robertson Lee', 'L', 'Jakarta', '2008-07-28', 3, 'WNI', 'JL MANGGA BESAR 1 NO 98 A rt.01/03,Desa / Kelurahan : Mangga Besar, Kode Pos : 11180', '[email protected]', 'Kenneth_Robertson_Lee1.pdf', '0810000000', 6, 'Kenneth_Robertoson_K6.jpg', 0, 1, 'Homeschooling Primagama', 1, 0, 0), (364, '2017160', '2086481441', '0000000000000000', 'El Zidane Yuska Rusman', 'L', 'Jakarta', '2008-01-31', 1, 'WNI', 'Jl Alle Raya No 54 Rt 006/008 Repoa, Tangerang Selatan', '[email protected]', 'El_Zidane_Yuska_Rusman.pdf', '0', 6, 'Screenshot_6.png', 0, 2, 'PKBM Anak Panah', 1, 0, 0), (365, '2017152', '0083105064', '0000000000000000', 'Angela Beatrice Nichole Tenglewier', 'P', 'Bogor', '2008-09-11', 2, 'WNI', 'Jl.Layungsari I No 29', '[email protected]', 'Angela_Beatrice.pdf', '12121212121', 6, 'Desert.jpg', 0, 1, 'Anak Panah', 1, 0, 0), (366, '2017166', '0097884774', '0000000000000000', 'Kho Richard Melvin', 'L', 'Jakarta', '2009-02-18', 2, 'WNI', 'Amerika latin blvd no 18 green lake city cipondoh tangerang', '[email protected]', 'Kho_Richard_Melvin1.pdf', '08111258258', 6, 'Khoricard_Melvin_K6.jpg', 0, 2, 'SD Notre Dame', 1, 0, 0), (367, '2017161', '0086021828', '0000000000000000', 'Felix Maximillian Oey', 'L', 'Tangerang', '2008-03-08', 2, 'WNI', ' JL. TAMAN BUNGA V BLOK J. 3 NO. 14 MDL rt.03/03 , Kelapa Indah\n', '[email protected]', 'Felix_Maximillian_Oey.pdf', '08128283595', 6, 'Felix_k6.jpg', 0, 1, 'PKBM Anak Panah', 1, 0, 0), (368, '2017155', '0076155425', '0000000000000000', 'Calvin wijaya ', 'L', 'Tangerang', '2007-11-11', 5, 'WNI', 'Perum Legok Permai Cluster Kaliandra Blok K2/A2 RT 04/08\nKecamatan Legok\nKabupaten Tangerang\n15821', '[email protected]', 'Calvin_WIjaya1.pdf', '12121212121', 6, 'Calvin_Wijaya_k6.jpg', 0, 1, 'Yayasan Bina Wirawan', 1, 0, 0), (369, '2017167', '0073574726', '0000000000000000', 'Lianutte Amevilla', 'P', 'Jakarta', '2007-11-10', 2, 'WNI', 'JL DR SEMERU RAYA NO 65 rt.10/10, Desa / Kelurahan : Grogol,Kode Pos : 11450', '[email protected]', 'lianute.pdf', '081380687898', 6, 'Lianuette_Amevilla_k6.jpg', 0, 2, 'Anak Panah', 1, 0, 0), (370, '2017162', '0075074291', '0000000000000000', 'Gerard Anthony Syahlim', 'L', 'Jakarta', '2008-09-12', 3, 'WNI', 'Mitra Gading Vila Blok D1/19 Rt 001/007 Kelapa Gading Jakarta Utara', '[email protected]', 'Gerard_Anthony_Syahlim.pdf', '087808878388', 6, 'Gerard_Anthony_Syahlim_K6.jpg', 0, 2, 'Satori monttessori school', 1, 0, 0), (371, '2017163', '0089184147', '0000000000000000', 'Gwenn Valerie Qiu', 'P', 'Jakarta', '0008-10-24', 2, 'WNI', 'JALAN TURQUIOSE TIMUR 1 NOMOR 22 - PHG rt.01/06 , Curug Sangereng\n', '[email protected]', 'Gwen_Valeria_Qiu.pdf', '0', 6, 'Gwenn_K.6_.jpg', 0, 1, 'PKBM Anak Panah', 1, 0, 0), (372, '2017154', '2084930543', '0000000000000000', 'Cahaya saputra', 'L', 'Tangerang', '2008-07-12', 5, 'WNI', 'Sumareccon serpong, Perum Pondok Hijau Golf, Cluster topaz barat no.12 Gading serpong- Tangerang No telp : 08170988885.', '[email protected]', 'cahaya1.pdf', '082122620688', 6, 'Cahaya_Saputra_K6.jpg', 0, 2, 'SD PAHOA', 1, 0, 0), (373, '2017168', '0087691166', '0000000000000000', 'Naomi Adriel NG', 'P', 'Jakarta', '2008-11-11', 5, 'WNI', 'JL BANDENGAN UTARA 1 NOMOR 35 rt.05/12 Desa / Kelurahan : Pekojan,Kode Pos : 11240', ' [email protected]', 'Naomi_Adriel_Ng1.pdf', '087787770122', 5, 'Jellyfish.jpg', 0, 1, 'Bunda Mulia School', 1, 0, 0), (374, '2017164', '0073424703', '0000000000000000', 'Hananniel Rayheart Tarsley', 'L', 'Jakarta', '2007-11-25', 2, 'WNI', ' JL KEMANGGISAN PULO rt.08/17 , Palmerah,Kode Pos : 11480\n', '[email protected]', 'Hananniel.pdf', '081931062728', 6, 'Hananniel_K6.jpg', 0, 1, 'SDS Tunas Muda IKKT', 1, 0, 0), (375, '2017170', '0071666213', '0000000000000000', 'Ow Jia En Jocelyn ', 'P', 'Singapore', '2007-04-03', 2, 'WNI', 'JL UTAMA RAYA NO.21 rt.04/03, Desa / Kelurahan : Cengkareng Barat,Kode Pos : 11730', '[email protected]', 'Ow_Jia_En_Jocelyn1.pdf', '081210272277', 6, 'Ow_Jia_En_Jocelyn_k6.jpg', 0, 1, 'Horizon School Singapore', 1, 0, 0), (376, '2017172', '0085368778', '0000000000000000', 'Phillip Rylan Tian', 'L', 'Jakarta', '2008-03-19', 5, 'WNI', ' JLN PARANG TRITIS IV/5 rt.03/11, : Ancol,14430\n', '[email protected]', 'Phillip_Rylan_Tian.pdf', '081699083', 6, 'Phillips_Rylan_Tian_K6.jpg', 0, 1, 'SDS Bunda Mulia', 1, 0, 0), (377, '2018515', '2108821255', '0000000000000000', 'Vincent Louis Wijaya', 'L', 'Jakarta', '2010-06-23', 3, 'WNI', 'Metro Permata 1, blok D5 no.12A, Karang Tengah. Karang Mulia-Ciledug Tangerang', '[email protected]', 'vincent_louis_.pdf', '0217332641', 3, 'Vincent_Louis.jpg', 0, 1, 'SDS Woodlands Montesori', 1, 0, 0), (378, '2017156', '0089445569', '0000000000000000', 'Carren Annabel Hendra', 'P', 'Bandung', '2008-08-14', 2, 'WNI', 'KOMP PARAHYANGAN PERMAI BLOK M NO 4 rt.02/08, Desa / Kelurahan : Ciwaruga,Kode Pos : 40559\n', '[email protected]', 'carren.pdf', '08986443210', 6, 'Carren_Annabel_k6.jpg', 0, 2, 'SD Kristen 2 Bina Bakti', 1, 0, 0), (379, '2017173', '0088188413', '0000000000000000', 'Reynard Keyfas Nathanel Sitohang', 'L', 'Jakarta', '2008-08-13', 3, 'WNI', 'TAMAN SARI PESONA BALI BA.8 PISANGAN rt.01/15 , Pisangan, Ciputat Timur, Tangerang Selatan', '[email protected]', 'Reynard_Keyfas.pdf', '08118071717', 6, 'Reynard_Keyfas_k6.jpg', 0, 1, 'PKBM Anak Panah', 1, 0, 0), (380, '2017171', '0071713235', '0000000000000000', 'Ow Jia Xuan Hasya ', 'P', 'Singapore', '2007-04-03', 2, 'WNI', 'JL UTAMA RAYA NO.21 rt.04/03, Desa / Kelurahan : Cengkareng Barat,Kode Pos : 11730\n', '[email protected]', 'Ow_Jia_Xuan_Hasya1.pdf', '081210272277', 6, 'Ow_Jia_Xuan_Hasya_k6.jpg', 0, 2, 'Horizon School Singapore', 1, 0, 0), (381, '2017174', '0089757650', '0000000000000000', 'Richie Corvinus Tan', 'L', 'Jakarta', '2008-04-15', 2, 'WNI', 'Branz BSD Tower C Unit 2702\nJl. BSD Boulevard Parcel 55F\nTangerang 15339 Banten', '[email protected]', 'Richie_Corvinus_Tan.pdf', '0816289224', 6, 'Richie_Corvinus_k6.jpg', 0, 2, 'PKBM Anak Panah', 1, 0, 0), (382, '2018519', '0127813701', '0000000000000000', 'Allyn Beatrice Yang', 'P', 'Jakarta', '2012-01-13', 5, 'WNI', 'Taman Palem Lestari Blok B11 No.56 RT009/RW003 Cengkareng Jakarta Barat', '[email protected]', 'alyn.pdf', '02155963829', 2, 'Allyn_Beatrice_Yang.jpg', 0, 2, 'SDS Woodlans Montessori', 1, 0, 0), (383, '2017157', '0082525779', '0000000000000000', 'Catherine Anastasia Roeroe', 'P', 'Manado', '2008-10-05', 2, 'WNI', 'Vila Nusa Indah 2 Blok AA1 nomor 86 Jatiasih Bekasi 17423', '[email protected]', 'roe_roe.pdf', '082292058899', 6, 'Catherine_Anastasia_Roeroe.jpg', 0, 0, 'Anak Panah', 1, 0, 0), (384, '2017182', '0076307783', '0000000000000000', 'Valiant Abnegatio Nostri Siahaan', 'L', 'Tangerang', '2007-10-16', 2, 'WNI', 'Griya Soka Blok U No 16 Cimahpar, Bogor Utara, Kota Bogor', '[email protected]', 'Valiant_Abnegetio.pdf', '081219594041', 6, 'Valiant_Abnegatio_Nostri_S_K6.jpg', 0, 1, 'PKBM Anak Panah', 1, 0, 0), (385, '2017183', '0079539524', '0000000000000000', 'Zico Xavier Pradipta Chandra ', 'L', 'Jakarta', '2007-12-19', 1, 'WNI', 'Jalan Sapta Taruna 2 Dalam Nomor 7 RT 4 RW 10 Kelurahan Pondok Pinang Kecamatan Kebayoran Lama', '[email protected]', 'Zico_Xavier.pdf', '085691172164', 6, 'Zico_k6.jpg', 0, 1, 'SDN Pondok Pinang 10 Pagi', 1, 0, 0), (386, '2017175', '0077442353', '0000000000000000', 'Salwaa Dhana Azalia', 'P', 'Surabaya', '2007-08-07', 1, 'WNI', 'TAMBAK SEGARAN NO. 66 rt.04/09. Desa / Kelurahan : Rangkah,Kode Pos : 60135', '[email protected]', 'Salwaa1.pdf', '087853101981', 6, 'Salwa_k6.jpg', 0, 2, 'SD Muhammadiyah 3', 1, 0, 0), (387, '2017179', '0089036832', '0000000000000000', 'Tischka Naiara Priyanka Singh', 'P', 'Jakarta', '2008-04-24', 3, 'WNI', 'JL DELMAN ASRI III/18 rt.06/11, Kebayoran Lama Utara\n', '[email protected]', 'Tishcka_Naira.pdf', '08128348488', 6, 'Tischa_k6.jpg', 0, 3, 'German School Jakarta', 1, 0, 0), (388, '2017180', '0076377430', '0000000000000000', 'Tobias Benedict Rawis', 'L', 'Jakarta', '2007-09-22', 2, 'WNI', 'JL DELMAN ASRI III/18 rt.06/11,kel.Kebayoran Lama Utara,12240\n', '[email protected]', 'Tobias_Benedict_Rawis.pdf', '0', 6, 'Tobias_Benedict_Rawis.jpg', 0, 2, 'PKBM Anak Panah', 1, 0, 0), (389, '2017181', '0084182087', '0000000000000000', 'Trinita Elena Lumbantobing ', 'P', 'Jakarta', '2008-06-04', 2, 'WNI', 'CIPINANG BARU BUNDER VII/36 rt.05/01, Cipinang, 13240\n', '[email protected]', 'Trinita_Elena_Lumbantobing.pdf', '081361625319', 6, 'Trinita_Elina_Lumban_Tobing_k6.jpg', 0, 3, 'PKBM Anak Panah', 1, 0, 0), (390, '2018518', '01201071802502', '0000000000000000', 'Aletha Joy Hana', 'P', 'Malinau', '2012-01-07', 2, 'WNI', 'Jl. Tandi Lorong Toke Haji no 5. Gampong Neusu Aceh. Kec. Baiturrahman. Kota Banda Aceh', '[email protected]', 'aletha.pdf', '081321445370', 2, 'Aleeha.jpg', 0, 2, 'PKBM Anak Panah HS', 1, 0, 0), (391, '2019535', '0', '0000000000000000', 'Ahmad Reza Fahlefi', 'L', 'Tangerang', '2008-06-14', 1, 'WNI', 'Jl. Tanah Manisan no.96 Rt03/Rw09 Cip Cemp Jatinegara, Jak Tim\n', '[email protected]', 'Ahmad_Reza1.pdf', '08129231896', 1, 'Lighthouse1.jpg', 0, 2, '0', 1, 0, 0), (392, '2018517', '0118635224', '0000000000000000', 'Aiko Candyva Khairunnisa Basuki', 'P', 'Jakarta', '2011-01-23', 1, 'WNI', 'Taman Royal 2 Cluster Parahyangan 1 No.25 RT04 / RW 16 Poris Pelawad Indah Cipondoh Tangerang Banten 15141', '[email protected]', 'aiko.pdf', '08119000393', 2, 'Aiko_Candyva.jpg', 0, 2, 'PKBM Anak Panah HS', 1, 0, 0), (393, '2019536', '2127987746', '0000000000000000', 'Akhtar Bagas Zahid Mustafid', 'L', 'Semarang', '2012-10-12', 1, 'WNI', 'Jl. Rawamangun Muka VIII no.6 RT 14/RW 12, Rawamangun, Jakarta Timur.', '[email protected]', 'Akhtar.pdf', '081215933131', 1, 'Akhtar_Bagas.jpg', 0, 1, '0', 1, 0, 0), (394, '2019546', '0134070493', '0000000000000000', 'Lizzane Leanne Edelweiss Siregar', 'P', 'Surabaya', '2013-04-26', 2, 'WNI', 'Perumaham GPI Jl. Delima B no. 56 A, kec. MAPANGET, Kota Manado, SULUT, 95252\n', ' [email protected]', 'Lizzane_leanne.pdf', '081212587993', 1, 'Lizzane_Lianne.jpg', 0, 2, ' PAUD Glow Gerizim School', 1, 0, 0), (395, '2019548', '2133311215', '0000000000000000', 'Muhammad Ghaazi Allistair Madjid', 'L', 'illinois', '2013-02-18', 1, 'WNI', 'Jl. Swadaya no.58 RT06/RW02 Kelurahan Limo - Kecamatan Limo - Depok - Jawa Barat - 16515', '[email protected]', 'Ghazzi.pdf', '089603689694', 1, 'M._Gaazi_.jpg', 0, 3, 'PKBM Anak Panah', 1, 0, 0), (396, '2017176', '0052501489', '0000000000000000', 'Samuel Lie', 'L', 'Jakarta', '2005-11-23', 2, 'WNI', 'sektor 6 jl kelapa hibrida utara blok GC 3 no 7.tangerang gading serpong 15810.', '[email protected]', 'Samuel_Lie1.pdf', '0810000000', 6, 'Samuel_Lie.jpg', 0, 2, 'PKBM Alfa Omega', 1, 0, 0), (397, '2017177', '0084856376', '0000000000000000', 'Sebastian Dosey Ardy', 'L', 'Jakarta', '2008-09-24', 3, 'WNI', 'KAV. PORLI JL. A 7/37 rt.03/03, Desa / Kelurahan : Ragunan,Kode Pos : 12550', '[email protected]', 'dosey.pdf', '0818904034', 6, 'Sebastian_Dosiy_Ardy.jpg', 0, 2, 'SD Strada Wiyatasana', 1, 0, 0), (398, '2017178', '0078243185', '0000000000000000', 'Sir Leon Alexander Bolang', 'L', 'Balikpapan', '2007-07-20', 2, 'WNI', 'Perum Kencana Loka 1 Blok F1/39 RT. 002/ RW.014 - BSD City; Kelurahan Rawa Buntu Kec. Serpong 15318', '[email protected]', 'sirleonalexanderbolang.pdf', '082254813348', 6, 'Sirleon_Alexando_K6.jpg', 0, 1, 'Kalimantan International School', 1, 0, 0), (399, '2017196', '0053872822', '0000000000000000', 'Christian samuel tanujaya', 'L', 'Jakarta', '2005-06-01', 2, 'WNI', 'Apartm the mansion jasmine tower capilano jc17b kemayoran jakpus', '[email protected]', '16-03-2020-16.36_.13_.pdf', '08129234233', 9, 'index.jpg', 0, 2, 'SMP Christen Calvin', 1, 0, 0), (400, '2018516', '01111011802556', '0000000000000000', 'Abriel Nathanael Tanadi', 'L', 'Manado', '2011-11-01', 2, 'WNI', 'Jl. Lingkungan 1 RT003/RW001 Kel. Bitung Timur Kota Bitung 9522 Sulawesi Utara', '[email protected]', 'abriel.pdf', '08128281885', 2, 'Abriel_N._Tahadi_.jpg', 0, 1, 'PKBM Anak Panah HS', 1, 0, 0), (401, '2019537', '2126361788', '0000000000000000', 'Atharizz Sakha Radiansyah ', 'L', 'Tangerang', '2012-05-05', 1, 'WNI', 'Perumahan dasana indah blok ub2 no.4 tangerang\n', '[email protected]', 'Atharizz1.pdf', '082211857079', 1, 'Atharizz.jpg', 0, 1, 'Tk insan aulia madani bekasi', 1, 0, 0), (402, '2017221', '0042611326', '0000000000000000', 'Rico Putra Hariyanto', 'L', 'Jakarta', '2004-01-20', 3, 'WNI', 'Jl. Abdul Muis No.96 RT 2/ RW 1 Perojo Selatan, Jakarta Pusat', '[email protected]', 'Rico_Putra.pdf', '0811191163', 9, '296899_Harpindo-Bunga-Mawar-Biru-79-CM_SnxMDcx96Dd32QMM_1567781404.PNG', 0, 1, 'SD Sint. Joseph', 1, 0, 0), (403, '2018520', '01201121802470', '0000000000000000', 'Annabelle Phoebe Prasetyo', 'P', 'Jakarta', '2012-01-12', 3, 'WNI', 'Perum Bukit Rivaria Sektor V Blok I5 No. 2 Bedahan Sawangan Depok Jawa Barat 16519', '[email protected]', 'annabelle.pdf', '085868223378', 2, 'Annabelle_Phoebe.jpg', 0, 2, 'TK Holy Faithful Obedient', 1, 0, 0), (404, '2017224', '0068122583', '0000000000000000', 'Shine Louislane Sanger', 'P', 'Bandung', '2006-09-01', 2, 'WNI', 'Alamat Jalan : JL. RAWA SELATAN IV NO.3 rt.06/07 , Desa / Kelurahan : Kampung Rawa, Kode Pos : 10560 \n', '[email protected]', 'Shine_Louislane_Sanger.pdf', '08118822275', 9, 'Tulips.jpg', 0, 3, 'PKBM Anak Panah', 1, 0, 0), (405, '2019538', '0111392953', '0000000000000000', 'Bianca khansa putri', 'P', 'Tangerang', '2011-10-13', 1, 'WNI', 'Jl.sunset road no 39.C seminyak,kuta badung Bali 80361', '[email protected]', 'Bianca1.pdf', '081283236888', 1, 'Bianca_Khansa_Putri.jpg', 0, 2, 'Anak Panah', 1, 0, 0), (406, '2020730', '0122896664', '0000000000000000', 'Bella Marvelyn Elisabeth Tambunan', 'L', 'Tangerang Selatan', '2012-05-05', 2, 'WNI', 'Delatinos Cluster De Rio Blok B.8/16 BSD RT008/RW018 Kel. Rawa Buntu Kec. Serpong Kota Tangerang Selatan 15318 Banten', '[email protected]', 'bella_marvel.pdf', '081281126960', 2, 'Bella_Marvelyn_Tambunan.jpg', 0, 1, 'SD Kristen IPEKA', 1, 0, 0), (407, '2018521', '01203041802586', '0000000000000000', 'Erlangga Guevara Permata Perangin Angin Damanik', 'L', 'Jakarta', '2012-03-04', 2, 'WNI', 'Jl. Villa Melati Emas H16 No. 8A Serpong Tangerang Selatan Banten 51114', ' [email protected]', 'erlangga_guevara.pdf', '08128841110', 2, 'Erlangga_Guevara_Permata._P_._D_.jpg', 0, 2, 'PKBM Anak Panah HS', 1, 0, 0), (408, '2017226', '0058604872', '0000000000000000', 'Vanessa Tiffany Santoso', 'P', 'Sydney', '2005-02-01', 2, 'WNI', 'Cluster Hylands FB 6/2 Greenwich Park ,BSD\nLengkong Kulon, Pagedangan, Tangerang\n15331', '[email protected]', 'Vanessa_Tiffany_Santoso.pdf', '087885575475', 9, 'Tulips.jpg', 0, 1, 'SD Swasta Kristen 1 Penabur ', 1, 0, 0), (409, '2017220', '0056649487', '0000000000000000', 'Reynard Wibowo', 'L', 'Tegal', '2005-03-31', 1, 'WNI', 'Jl. Jejeg RT 05/RW 01 Jejeg Tegal.', '[email protected]', 'Reynard_Wibowo.pdf', '083811137419', 9, '296899_Harpindo-Bunga-Mawar-Biru-79-CM_SnxMDcx96Dd32QMM_1567781404.PNG', 0, 1, 'SD Spring Field', 1, 0, 0), (410, '2017223', '2043889440', '0000000000000000', 'Ruhul Jadid Al Mundzir', 'L', 'Jakarta', '2004-11-18', 1, 'WNI', 'Perumahan Vila Rizki Ilhami, Blok A1 no 26, RT 1 RW 35, kel Bojong Nangka, kec Kelapa Dua, Tangerang', '[email protected]', 'Ruhul1.pdf', '62 881-0246-36471', 9, '296899_Harpindo-Bunga-Mawar-Biru-79-CM_SnxMDcx96Dd32QMM_1567781404.PNG', 0, 1, 'PKBM Kak Seto', 1, 0, 0), (411, '2017222', '0054347179', '0000000000000000', 'Rodiah Hasan Alaydrus', 'P', 'Jakarta', '2005-04-19', 1, 'WNI', 'Perum Gardu Asri No.A4 Jl.Gardu Rt.007/003 Condet Jakarta Timur.', '[email protected]', 'Rodiah_Hasan.pdf', '087783257705', 9, '96fb7d1f-fa8c-4445-9450-e63d7837c6a0.jpg', 0, 2, 'SDS Global Islamic School', 1, 0, 0), (413, '2017227', '0054141406', '0000000000000000', 'Victoria Angelica', 'P', 'Singapura', '2005-09-02', 2, 'WNI', 'JL. SEKOLAHAN INTER. I C-3/8 rt.06/09 , Sambikerep, 60217\n', '[email protected]', 'Victoria_Angelica.pdf', '085858119058', 9, 'Screenshot_6.png', 0, 1, 'SD Lentera Kasih Bali', 1, 0, 0), (414, '2019539', '0108472403', '0000000000000000', 'David Fernando', 'L', 'Serang', '2010-08-15', 5, 'WNI', 'Taman Lopang Indah Blok F8 No.19\n', '[email protected]', 'David_Fernando1.pdf', '081288681381', 1, 'David_Fernando.jpg', 0, 1, 'TK Harapan Bangsa, Serang - Banten', 1, 0, 0), (416, '2017228', '0052351482', '0000000000000000', 'Videlin Nikita Pracoyo', 'P', 'Jakarta', '2005-06-10', 3, 'WNI', 'Chrysocolla Utara 1 no 17 PHG - Gading Serpong\nKode Pos 15811', '[email protected]', 'Videlin_Nikita_Pracoyo.pdf', '085104677297', 9, 'Screenshot_6.png', 0, 1, 'SD Pahoa', 1, 0, 0), (417, '2017225', '0060178550', '0000000000000000', 'Vanes Tan', 'L', 'Tangerang', '2006-01-07', 5, 'WNI', 'JL MANGGA BESAR VI.C / 75 rt.02/04, Taman Sari, 11150', '[email protected]', 'Vaness_Tan.pdf', '0811191163', 9, 'Screenshot_6.png', 0, 1, 'SD Sint Joseph', 1, 0, 0), (419, '2019542', '2146734874', '0000000000000000', 'Gabrian Nicholas Negoro', 'L', 'Jakarta', '2014-04-21', 2, 'WNI', 'Jl. Melati Indah CB/12A Harapan Indah\n', '[email protected]', 'gabrian_nicholas.pdf', '087878477454', 1, 'Gabrian_Nicholas.jpg', 0, 1, 'Anak Panah', 1, 0, 0), (420, '2017229', '0049948752', '0000000000000000', 'Vincent Delmora', 'L', 'Jakarta', '2004-09-15', 1, 'WNI', 'JL RAYA DURI KOSAMBI NO.2 rt.03/03 , Duri Kosambi, 11750\n', '[email protected]', 'Vincent_Delmora.pdf', '087886864426', 9, 'Screenshot_6.png', 0, 1, 'SDN Kebalenan', 1, 0, 0), (421, '2019544', '0139750665', '0000000000000000', 'Josiah Aidan Santoso', 'L', 'Jakarta', '2013-04-30', 2, 'WNI', 'Regency melati mas F3/37\n', '[email protected]', 'Josiah1.pdf', '081283606082', 1, 'Josiah.jpg', 0, 1, 'Sekolah Athalia', 1, 0, 0), (422, '2017230', '0058455136', '0000000000000000', 'Yeremia aditya Kriscahyadi', 'L', 'Jakarta', '2005-06-27', 2, 'WNI', 'Jl.surya widuri 1 blok 3 k no.12\nSunrise garden\nJakarta 11520', '[email protected]', 'Yeremia_Aditya.pdf', '085781195540', 9, 'Screenshot_6.png', 0, 3, 'SMP Kristen BPK Penabur', 1, 0, 0), (425, '2019545', '0', '0000000000000000', 'Krishna Tejawijaya', 'L', 'Jakarta', '2013-02-06', 5, 'WNI', 'Green Lake City, Cluster Australia, Jl. Australia 1 No. 7 Tangerang Banten 15147\n', '[email protected]', 'Khrisna1.pdf', '081398980038', 1, 'Khrisna_Tejawijaya.jpg', 0, 2, 'Anak Panah', 1, 0, 0), (426, '2017197', '0', '0000000000000000', 'Darren wirawan', 'L', 'Jakarta', '2005-07-29', 2, 'WNI', 'apartement ruby tower 3#05. jl jendral sudirman no 47, balikpapan superblock', '[email protected]', 'Darren_Wirawan.pdf', '0', 7, 'Screenshot_6.png', 0, 1, 'SD Kristen IPEKA Balikpapan', 1, 0, 0), (427, '2017198', '0054862275', '0000000000000000', 'Erlangga Maula Syahputra', 'L', 'Jakarta', '2005-05-18', 1, 'WNI', 'jln Delima Jaya rt 02/rw 08 nmer 5A', '[email protected]', 'erlangga_maula.pdf', '0', 9, 'Screenshot_6.png', 0, 3, 'SDN Rempoa 1 Ciputat', 1, 0, 0), (429, '2017199', '0052715233', '0000000000000000', 'Evander Jefferey Genaro', 'L', 'Sukoharjo', '2005-01-24', 2, 'WNI', 'JL PAGEBANGAN NO. 52 rt.03/10 , Jombang Wetan, 42111\n', '[email protected]', 'Evander_Jeffrey.pdf', '081296013334', 9, 'Screenshot_6.png', 0, 1, 'SD Mardi Yuana ', 1, 0, 0), (430, '2019547', '2117109144', '0000000000000000', 'Maria Stella Fortunata Satriatama', 'P', 'kediri', '2011-12-13', 3, 'WNI', 'Perumahan Puri Kedaton A-10 \n', '[email protected]', 'maria_Stella1.pdf', '0856-0478-3891', 1, 'Maria_Stella.jpg', 0, 1, 'Anak Panah', 1, 0, 0), (432, '2017300', '189371293', '0000000000000000', 'Eliana Alfrada Eirene', 'P', 'Sukabumi', '2005-11-20', 2, 'WNI', 'Perum Dasana Indah Blok RA 4, No. 8-9, Kelapa Dua, Tangerang', '[email protected]', 'Eliana_Alfreda.pdf', '0', 9, 'Eliana_Alfreda.jpeg', 0, 1, 'SD Dian Harapan', 1, 0, 0), (433, '2017200', '0053898569', '0000000000000000', 'Gerald Pascalis Wicoady', 'L', 'Makasar', '2005-03-26', 3, 'WNI', ' JL YOS SUDARSO RUKO NO.300 A7 rt.04/05 , Tabaringan, 90165\n', '[email protected]', 'Contoh.pdf', '082190667766', 9, 'Screenshot_6.png', 1, 3, 'SD Zion GKKA-Up', 1, 0, 0), (435, '2017201', '0052590668', '0000000000000000', 'Gloria Angelina', 'P', 'Singapura', '2005-09-02', 2, 'WNI', 'JL. SEKOLAHAN INTER. I C-3/8 rt.06/09 , Sambikerep, 60217', '[email protected]', 'Gloria_Angelina.pdf', '085858119058', 9, 'Screenshot_6.png', 0, 1, 'SD Lentera Kasih Bali', 1, 0, 0), (437, '2019549', '0', '0000000000000000', 'Naradipha A. Sasongko', 'L', 'Jakarta', '2011-11-04', 1, 'WNI', 'Pondok Dukuh Indah 5 No. 14, Jakarta Timur\n', '[email protected]', 'Naradhipa1.pdf', '0811985432', 1, 'Naradipha_A_Sasangho.jpg', 0, 2, 'TK Mentari Montessori', 1, 0, 0), (439, '2019550', '0122557751', '0000000000000000', 'Raafi Aqila Zein', 'L', 'Jakarta', '2012-09-15', 1, 'WNI', 'Perum Nuansa Asri Cinangka Blok B10 Jl pendidikan cinangka sawangan\n', '[email protected]', 'Raafi1.pdf', '081210833305', 1, 'Raali_Aqila.jpg', 0, 2, 'Anak Panah', 1, 0, 0), (440, '2018532', '2126421861', '0000000000000000', 'Maximilian Aldrich Mangiwa', 'L', 'Jakarta', '2012-10-04', 3, 'WNI', 'Kavling Kelinci 76 No. 22 Jl. Kelinci RT007/RW006 Jakarta Selatan 12630', '[email protected]', 'maximillian.pdf', '081282151618', 2, 'tidur-dengan-kucing1.jpg', 0, 1, 'SD Strada Wiyatasana', 1, 0, 0), (441, '2019551', '2138293538', '0000000000000000', 'Richelle Everly Thu', 'P', 'Jakarta', '2013-08-13', 5, 'WNI', 'Jl. Duri mas 4a blok P no.340 Duri kepa\n', '[email protected]', 'Richelle_everly.pdf', '12121212121', 1, 'Penguins.jpg', 0, 1, 'Anak Panah', 1, 0, 0), (442, '2018533', '0125448628', '0000000000000000', 'Raion Judah Ong', 'L', 'Tangerang Selatan', '2012-06-16', 2, 'WNI', 'Cimanggis RT003/RW002 Kel. Cipayung Kec. Ciputat Kota Tangerang Selatan 15411', '[email protected]', 'Raion.pdf', '081311230305', 2, 'Raion_Judah_Ong.jpg', 0, 2, 'PKBM Anak Panah HS', 1, 0, 0), (443, '2018534', '2117527070', '0000000000000000', 'Steven Gunawan', 'L', 'Jakarta', '2011-12-30', 5, 'WNI', 'Jl. Darussalam Raya, Kompleks Griya Indah No.55 ', '[email protected]', 'steven_gunawan.pdf', '085217355259', 2, 'Steven_Gunawan.jpg', 0, 2, ' SDN 66', 1, 0, 0), (444, '2018531', '0122865914', '0000000000000000', 'Mahitala Darma Larasati', 'P', 'Kediri', '2012-08-02', 2, 'WNI', 'Villa Mutiara Serpong Jl. Cermai Blok D1 No.54 Pondok Jagung Timur Kec. Serpong Utara Tangerang Selatan 15326', '[email protected]', 'mahitala.pdf', '08118859399', 2, 'Mahitala.jpg', 0, 1, 'PKBM Anak Panah HS', 1, 0, 0), (445, '2018530', '2128579780', '0000000000000000', 'Ludwig Amazio Rumengan', 'L', 'Manado', '2012-04-23', 2, 'WNI', 'Apartemen Gading Nias, tower Emerald, Jl. Pegangsaan II no 3', '[email protected]', 'ludwig.pdf', '081399058980', 2, 'Ludwig_Amazio.jpg', 0, 2, 'PKBM Anak Panah HS', 1, 0, 0), (446, '2019706', '0048081062', '0000000000000000', 'Nathanael Liantorin Chahyadi ', 'L', 'Jakarta', '2004-08-17', 2, 'WNI', 'Alamat Jalan : JL H MALI rt.07/01 Desa / Kelurahan : Duri Kosambi Kode Pos : 11750\n', '[email protected]', 'Nathanael_Liantorin1.pdf', '0816750889', 10, 'Nathanael_Liantorin.jpeg', 0, 1, 'Anak Panah', 1, 0, 0), (447, '2020738', '248', '0000000000000000', 'Leica Madriani', 'P', 'Jakarta', '2004-03-02', 1, 'WNI', 'Kp Sanggrahan, Rt 10/03, Kembangan, Jakarta Barat', '[email protected]', 'Leica.pdf', '0', 11, 'Screenshot_6.png', 0, 1, 'SMP Yaspen Tugu Ibu 1 Depok', 1, 0, 0), (448, '2019678', '2055050894', '0000000000000000', 'Lucas Salvacio Husada', 'L', 'Delft', '2006-10-25', 2, 'WNI', 'Jl Cempaka Putih Barat 2H/7E, Cempaka Putih, Jakarta Pusat', '[email protected]', 'lucas_salvacio_husada.pdf', '0', 10, 'Screenshot_6.png', 0, 2, 'PKBM Alfa Omega', 1, 0, 0), (449, '2019705', '0049939476', '0000000000000000', 'Nabila Putri Kusbiantoro ', 'P', 'Jakarta', '2004-03-20', 1, 'WNI', 'Alamat Jalan : JL. KARYA BAKTI rt.08/03 Desa / Kelurahan : Srengseng\n', '[email protected]', 'nabila1.pdf', '0811508638', 11, 'Lighthouse1.jpg', 0, 1, 'Anak Panah', 1, 0, 0), (450, '2019677', '0040518769', '0000000000000000', 'Luana Intan Rayisha Putri', 'P', 'Semarang', '2004-06-23', 1, 'WNI', 'Citra Indah Bukit Agave I-21/5, Bogor, Jawa Barat', '[email protected]', 'Contoh.pdf', '0', 10, 'Luana_Intan.jpeg', 0, 1, 'SMP Adzkia Islamic School', 1, 0, 0), (451, '2019712', '0049139403', '0000000000000000', 'Ray Hambali ', 'L', 'Tangerang', '2004-05-04', 3, 'WNI', 'Alamat Jalan : JL.S.W PRANOTO NO.11.R rt.11/03\n', '[email protected]', NULL, '12121212121', 10, 'Ray_Hambali.jpeg', 0, 1, 'SMP Setia Bakhti', 1, 0, 0), (452, '2019675', '0032590719', '0000000000000000', 'Levin ', 'L', 'Jakarta', '2003-05-07', 3, 'WNI', 'JALAN CHALCEDONY TIMUR 6 NOMOR 8 rt.01/06, Kelapa Dua, Tangerang\n', '[email protected]', 'levin.pdf', '081806795608', 11, 'Levin.jpeg', 0, 2, 'SMP Pahoa', 1, 0, 0), (453, '2018529', '0127147870', '0000000000000000', 'Kirana Putri Anindita', 'P', 'Depok', '2012-03-08', 1, 'WNI', 'Taman Manggis Indah Blok L No. 1 Depok Timur Depok Jawa Barat 16415', '[email protected]', 'Soal_Ujian_SD_Bahasa_Indonesia_2018.pdf', '082111910117', 2, 'Kirana.jpg', 0, 3, 'TK Cita Persada', 1, 0, 0), (455, '2017209', '0043566185', '0000000000000000', 'Matthew Pratama Sutanto', 'L', 'Canada', '2004-10-08', 3, 'WNI', 'Jl. Duri Kencana Raya/13 RT 005/007', '[email protected]', 'Matthew_Pratama_Sutanto.pdf', '081280857919', 9, '296899_Harpindo-Bunga-Mawar-Biru-79-CM_SnxMDcx96Dd32QMM_1567781404.PNG', 0, 1, 'SDS Pilar Bangsa', 1, 0, 0), (456, '2018527', '2115970648', '0000000000000000', 'Kevin Audric Rajata Elfrankarunya Girsang', 'L', 'Medan', '2011-10-06', 2, 'WNI', 'Villa Bulurukeng Indah Blok D4 Jl. Batu Tambung Pai Biringkanaya Makassar 90243', '[email protected]', 'kevin_audric.pdf', '081361700429', 2, 'Kevin_Audric_Girsang.jpg', 0, 1, 'PKBM Anak Panah HS', 1, 0, 0), (458, '2018525', '0125608786', '0000000000000000', 'Humayra Cetta Helsyanto', 'P', 'Jakarta', '2012-07-28', 1, 'WNI', 'Jl. Raden Sanim Grand Putra Mandiri Blok E11 Depok 16426', '[email protected]', 'humayra.pdf', '081290744894', 2, 'Humayra.jpg', 0, 2, 'PKBM Anak Panah HS', 6, 0, 0), (459, '2019653', '0043659352', '0000000000000000', 'Banu Agil', 'L', 'Jakarta', '2004-01-02', 1, 'WNI', 'GD Peluru Blok D/118 RT 001/003', '[email protected]', 'Banu_Agil.pdf', '081316450044', 10, 'Banu_Agil.jpeg', 0, 1, 'SMP Jakarta Islamic School', 1, 0, 0), (460, '2019654', '2046506924', '0000000000000000', 'Banu Wafi', 'L', 'Jakarta', '2020-03-18', 1, 'WNI', 'GD Peluru Blok D/118 RT/RW 001/003', '[email protected]', 'Latihan_Pra_USBN_Bahasa_Indonesia.pdf', '08551091090', 11, 'Banu_Wafi.jpeg', 0, 2, 'SMP Jakarta Islamic School', 1, 0, 0), (461, '2019720', '0033433812', '0000000000000000', 'Sola Graciano ', 'L', 'Jakarta', '2003-03-19', 2, 'WNI', 'Alamat Jalan : JALAN BINTARO PERMAI GG PONGTIKU NOMOR 2 rt.07/09\n', '[email protected]', NULL, '12121212121', 11, 'Penguins.jpg', 0, 1, 'Anak Panah', 1, 0, 0), (462, '2019655', '0037845929', '0000000000000000', 'Blessando Jeremia Chrishot Hasonangan Manalu', 'L', 'Jakarta', '2003-09-14', 1, 'WNI', 'Jl. H. Rijin No.5 RT 1/11 Tugu Kelapa Dua Cimanggis Depok', '[email protected]', 'blesando.pdf', '081326560935', 10, '296899_Harpindo-Bunga-Mawar-Biru-79-CM_SnxMDcx96Dd32QMM_1567781404.PNG', 0, 1, 'PKBM Mashaghi', 1, 0, 0), (463, '2019658', '0048862639', '0000000000000000', 'Christoper Eleazar Aritonang', 'L', 'Tangerang', '2004-06-14', 2, 'WNI', ' PURI SERPONG 1 BLOK G 1 NOMOR 33 rt.05/02 \n', '[email protected]', 'Christopher_Eleazar.pdf', '083819177081', 11, 'Christopher_Eleazar.jpeg', 0, 1, 'SMP Erenos, Kota Tangerang Selatan', 1, 0, 0), (464, '2019659', '0045069310', '0000000000000000', 'Darlane Sharon Princessa', 'P', 'Jakarta', '2004-09-29', 2, 'WNI', 'Jl. Prof. Dr. Latumenten V no.23 RT/RW 012/005', '[email protected]', 'Latihan_Pra_USBN_Bahasa_Indonesia.pdf', '081283770221', 11, '296899_Harpindo-Bunga-Mawar-Biru-79-CM_SnxMDcx96Dd32QMM_1567781404.PNG', 0, 2, 'BPK Penabur', 1, 0, 0), (465, '2019657', '0041771143', '0000000000000000', 'Christopher Andrew Steveson', 'L', 'Jakarta', '2004-06-13', 3, 'WNI', 'TAMAN MODERN BLOK G NOMOR 4 DAN 18 rt.14/06 \n', '[email protected]', 'Scan_Museum_Anatomi.pdf', '081218614548', 10, 'Tulips.jpg', 0, 1, 'SMP Pahoa', 1, 0, 0), (466, '2019726', '2049216092', '0000000000000000', 'Cecilia Miracella Setiawan', 'P', 'Jakarta', '2004-10-13', 2, 'WNI', 'Villa Kapuk Mas blok h no. 10-12 pejaringan, jakut \n', '[email protected]', 'Cecilia_Miracella1.pdf', '081288757584', 11, 'Cecilia_Miracella.png', 0, 1, 'SMP Mutiara Bangsa 3', 1, 0, 0), (467, '2019722', '0042566308', '0000000000000000', 'Tristan Alif Naufal ', 'L', 'Jakarta', '2004-12-12', 1, 'WNI', 'Alamat Jalan : JL RAYA KODAM NO.7 BINTARO rt.05/04\n', '[email protected]', 'tristan.pdf', '081808880530', 11, 'Lighthouse.jpg', 0, 1, 'Mashaghi', 1, 0, 0), (468, '2019676', '0042591661', '0000000000000000', 'Livia Amelia', 'P', 'Jakarta', '2004-08-23', 3, 'WNI', 'JL. CHALDEONY TIMUR 5 NO.8 rt.01/08 Kelapa Dua, Tangerang', '[email protected]', 'Livia_Amelia.pdf', '085778269582', 11, 'Livia_Amelia.jpeg', 0, 3, 'SMP Pahoa', 1, 0, 0), (469, '2019685', '2044893880', '0000000000000000', 'Maria Yehezkiel Hedwig Indriyasari', 'P', 'Bekasi', '2004-12-23', 3, 'WNI', 'PERUM. LIA JL. LIA 5 BLOK A/5 NO.9 rt.03/15, Bekasi', '[email protected]', 'maria_yehez.pdf', '0', 11, 'Screenshot_6.png', 0, 1, 'SMP Strada', 1, 0, 0), (470, '2019723', '0037483090', '0000000000000000', 'William Asido Hamonangan S.', 'L', 'Jakarta', '2003-10-23', 2, 'WNI', 'Alamat Jalan : BSD KENCANA LOKA BLOK K.5/18 SEKT.XII rt.06/14\n', '[email protected]', NULL, '08129635687', 11, 'Lighthouse.jpg', 0, 1, 'Anak Panah', 1, 0, 0), (471, '2019680', '0056003896', '0000000000000000', 'M Girhan Sardani', 'L', 'Ternate', '2005-04-03', 1, 'WNI', 'LINGK. CEMPAKA PUTIH rt.03/04, Santiong, Ternate, 97722\n', '[email protected]', 'Contoh.pdf', '0', 11, 'Screenshot_6.png', 0, 1, 'SMPN 18 Malang', 5, 0, 0), (472, '2019689', '0039068699', '0000000000000000', 'Michael Chen ', 'L', 'Bandung', '2003-03-16', 2, 'WNI', 'TAMAN KOPO INDAH 3 BLOK D 1 NOMOR 108 rt.04/16, Bandung, Jawa Barat\n', '[email protected]', 'michael_chen.pdf', '082127451520', 11, 'Screenshot_6.png', 0, 1, 'SMP Bina Bakti Plus', 1, 0, 0), (473, '2019701', '0049631643', '0000000000000000', 'Muhammad Rafif Taqi', 'L', 'Jakarta', '2004-10-27', 1, 'WNI', 'JALAN MANUNGGAL 2 NOMOR 312 rt.11/06, Cipinang Melayu, Jakarta Utara', '[email protected]', 'rafif_taqi.pdf', '087786051527', 11, 'Muhammad_Rafif_Taqi.jpeg', 0, 2, 'PKBM Persada', 1, 0, 0), (474, '2019682', '2029974366', '0000000000000000', 'Made Dhaneswari Kinarya Adhi', 'P', 'Jakarta', '2002-09-28', 4, 'WNI', 'PERUM NERADA BLOK B 8 NOMOR 11 rt.02/10,Ciputat, Tangerang Selatan', '[email protected]', 'Contoh.pdf', '0', 10, 'Screenshot_6.png', 0, 2, 'SMP Tarakanita 1', 1, 0, 0), (475, '2019725', '0025792910', '0000000000000000', 'Yohanes Immanuel Satya Pradana ', 'L', 'Magelang', '2002-12-20', 3, 'WNI', 'Alamat Jalan : JATINEGARA INDAH BLOK AC NOMOR 33 rt.15/12\n', '[email protected]', 'Yohanes_imanuele.pdf', '082141688359', 11, 'Yohanes_Imanuel.jpeg', 0, 1, 'SMPN 1 Tangerang', 1, 0, 0), (476, '2019728', '0037064420', '0000000000000000', 'Marc Maurice Laoh', 'L', 'Jakarta', '2003-01-05', 1, 'WNI', 'Jl Lempuyang VI E 24/25\nKomp Mega Cinere blok L\nCinere - Depok', '[email protected]', 'Marc_Maurice_Laoh.pdf', '0881024542069', 11, 'Marc_Maurice.jpeg', 0, 1, 'SMP Madania', 1, 0, 0), (477, '2019686', '0045992318', '0000000000000000', 'Marvel Shallom Isaiah', 'L', 'Jakarta', '2004-07-28', 2, 'WNI', 'Alamat Jalan : JL PULAU TIDUNG IV BLOK B-3/6 rt.18/09, Jakarta Barat', '[email protected]', 'marvel.pdf', '085724086252', 11, 'Screenshot_6.png', 0, 2, 'PKBM Anak Panah', 1, 0, 0), (478, '2019683', '0046348657', '0000000000000000', 'Marcella Erin Damayanti', 'P', 'Jakarta', '2004-01-12', 3, 'WNI', 'KOMPLEK SEKNEG NOMOR 39 A rt.08/11, Kebayoran Lama, Jakarta Selatan\n', '[email protected]', 'marcela_erin.pdf', '08558116007', 11, 'Screenshot_6.png', 0, 2, 'PKBM Anak Panah', 1, 0, 0), (479, '2019702', '0041097764', '0000000000000000', 'Holiness Yeshua Inosky', 'L', 'Tangerang', '2004-10-20', 2, 'WNI', 'JL. Dato Tonggara RT RW 007/011, Kramat Jati, Jakarta Timur', '[email protected]', 'Latihan_Pra_USBN_Bahasa_Indonesia.pdf', '087838682778', 11, 'Holliness.jpeg', 0, 7, 'PKBM Alfa Omega', 1, 0, 0), (480, '2019700', '0', '0000000000000000', 'Muhammad Nashiruddin Alalbani', 'L', 'Surakarta', '2002-07-04', 1, 'WNI', 'Jl Panorama No 7 Rt 03/05 Sidang Barang, Bogor', '[email protected]', 'Contoh.pdf', '087835064836', 11, 'Screenshot_6.png', 0, 2, 'PKBM Anak Panah', 1, 0, 0), (481, '2019724', '0041296900', '0000000000000000', 'Yani Mulyani ', 'P', 'Tangerang', '2004-06-04', 1, 'WNI', 'Alamat Jalan : TAMAN ELANG BLOK M NOMOR 25 rt.03/10\n', '[email protected]', NULL, '12121212121', 10, 'Penguins.jpg', 0, 3, 'SMPN 1 Tangerang', 1, 0, 0), (482, '2019670', '2044219531', '0000000000000000', 'Ignatius Januar', 'L', 'Bekasi', '2004-01-11', 3, 'WNI', 'COMMERCIAL 3 BLOK B.1 NO 1-1A SEKTOR 1,5 BSD CITY \n', '[email protected]', 'Ignatius_Januar.pdf', '12345678', 11, 'Ignatius_Januar.jpeg', 0, 0, '0', 1, 0, 0), (483, '2019665', '0040831020', '0000000000000000', 'Felicita Odelia Louise Tambunan', 'P', 'Jakarta', '2004-10-30', 1, 'WNI', 'Jl. Kemuning Rt.002/004 Kel. Utan Kayu Selatan', '[email protected]', 'Felicita_Odelia.pdf', '08161950461', 10, 'Felicita_Odelia.jpeg', 0, 1, 'PKBM Homeschooling Tunas Karya Bangsa', 1, 0, 0), (484, '2019681', '2043705211', '0000000000000000', 'M. Agung Al-Ikhsan', 'L', 'Palembang', '2004-08-01', 1, 'WNI', 'KOMPLEK PASUNDAN PERMAI BLOK D 23 rt.01/02 , Kalidoni, Sumatera Selatan\n', '[email protected]', 'M_agung_icksan.pdf', '081319057211', 10, 'M._Agung_Al_Ikhsan_.jpeg', 0, 2, 'PKBM Anak Panah', 1, 0, 0), (485, '2018523', '2115541383', '0000000000000000', 'Fawziya Khairunnisa Taqiyya', 'P', 'Tangerang', '2011-08-19', 1, 'WNI', 'Jl. Pondok Pinang 3 RT003/RW002 No. 51A Pondok Pinang Kebayoran Lama Jakarta Selatan', '[email protected]', 'fawziya.pdf', '08170017990', 2, 'Fawziya.jpg', 0, 2, 'PKBM Anak Panah', 1, 0, 0), (486, '2018524', '0103240974', '0000000000000000', 'Firdaus Catalina Azzahra', 'P', 'Malang', '2010-04-03', 1, 'WNI', 'Forest Hill A6 /12B, Citraland BSB City, Kelurahan Pesantren, Kecamatan Mijen, Kota Semarang, Jawa Tengah', '[email protected]', 'firdaus_catlina.pdf', '08977720002', 2, 'Firdaus_Catalina.jpg', 0, 1, 'PKBM Anak Panah', 1, 0, 0), (487, '2019729', '0044780946', '0000000000000000', 'Zulaikha Yaffa', 'L', 'Depok', '2004-03-31', 1, 'WNI', 'Bungur Emerald Town House blok A1 Jl Bungur 1 no.5 Rt 02 Rw 08, Kukusan Beji Depok 16425', '[email protected]', 'zulaika1.pdf', '021-77207342', 11, 'WhatsApp_Image_2020-04-22_at_11.05_.24_1.jpeg', 0, 1, 'Anak Panah', 1, 0, 0), (488, '2019674', '0033763549', '0000000000000000', 'Katharina Ailyn Wardojo', 'P', 'Jakarta', '2003-11-10', 1, 'WNI', 'Jelambar Fajar Jl.1 no.56 AL RT/RW 008/017', '[email protected]', 'Latihan_Pra_USBN_Bahasa_Indonesia.pdf', '087875172377', 10, '296899_Harpindo-Bunga-Mawar-Biru-79-CM_SnxMDcx96Dd32QMM_1567781404.PNG', 0, 2, 'PKBM Anak Panah', 1, 0, 0), (490, '2018522', '2122771142', '0000000000000000', 'Fadhilah', 'L', 'Jambi', '2012-03-08', 1, 'WNI', 'Cluster Virginia Village - Norton 09 Jl. Boulevard Gading Raya Serpong Kec. Kelapa Dua Kel. Curug Sangereng Tangerang Selatan Banten 15810', '[email protected]', 'Fadhilah.pdf', '081283249733', 2, 'Fadillah.jpg', 0, 3, 'PKBM Anak Panah HS', 1, 0, 0), (491, '2017255', '0006213931', '0000000000000000', 'Geny Grecia', 'P', 'Jakarta', '2000-05-29', 3, 'WNI', 'Taman Cibodas JL Soka VI Blok J 1 no.15 RT/RW 09/07', '[email protected]', 'genygrecia.pdf', '085591139836', 15, '296899_Harpindo-Bunga-Mawar-Biru-79-CM_SnxMDcx96Dd32QMM_1567781404.PNG', 0, 3, 'SMP Fajar Indah', 1, 0, 0), (492, '2017254', '2027774914', '0000000000000000', 'Gabriella Giselle', 'P', 'Jakarta', '2002-06-11', 2, 'WNI', 'Tmn. KB. Jeruk Blok U 9/10 004/006 Srengseng Kembangan, Jakarta Barat, 11630', '[email protected]', 'gabriela.pdf', '081333578888', 14, 'Gabriella_Giselle.jpeg', 0, 1, 'SMP Stella Maris', 1, 0, 0), (493, '2017274', '0015918320', '0000000000000000', 'Moh. Aqiel Aslam Assifa', 'L', 'Serang', '2001-07-31', 1, 'WNI', 'JL. Let U Sumadi No.10 RT 001/016 Kel. Sumur Pecung, Serang', '[email protected]', 'moh_aqiel.pdf', '085283217646', 15, 'WhatsApp_Image_2020-03-19_at_11.17_.02_AM_.jpeg', 0, 1, 'SMPN 7 Kota Serang', 1, 0, 0), (494, '2017276', '0014554957', '0000000000000000', 'Muhammad Ramadhan Adzhar Somantri', 'L', 'Bandung', '2001-12-06', 1, 'WNI', 'Jl. Labu IV No.16 RT/RW 03/03 Cibodasari, Tangerang', '[email protected]', 'MUHAMMAD_RAMADHAN_ADZHAR_SOMANTRI.pdf', '081318707230', 15, 'WhatsApp_Image_2020-03-20_at_11.23_.35_AM_.jpeg', 0, 1, 'SMPN 19 Tangerang', 1, 0, 0), (495, '2020737', '0092159898', '0000000000000000', 'Habibie Delumunata', 'L', 'Bengkulu', '2009-12-25', 1, 'WNI', 'Duri Kosambi RT 008 RW 005 Desa/Kelurahan Duri Kosambi Kecamatan Cengkareng, Kota Jakarta Barat - DKI Jakarta 11750', '[email protected]', 'Habibie_Akta-merged.pdf', '082286709239', 4, 'Habibie_Delumunata.jpeg', 0, 1, '0', 1, 0, 0), (496, '2019727', '2037913266', '0000000000000000', 'Jessica Clarissa Lie ', 'P', 'Jakarta', '2003-06-24', 2, 'WNI', 'sektor 6 jl kelapa hibrida utara blok GC 3 no 7.tangerang gading serpong 15810.\n', '[email protected]', 'jessica_lie.pdf', '08119071888', 13, 'jessica_lie.jpg', 0, 2, '0', 1, 0, 0), (497, '2016040', '0041999368', '0000000000000000', 'Ron Jatiman Castillo', 'L', 'California', '2006-12-31', 1, 'WNI', 'Jl Kangkung No 59, RT 14/11 Grogol Selatan, Jakarta Selatan', '[email protected]', 'Contoh.pdf', '0818410476', 17, 'Screenshot_6.png', 0, 1, 'PKBM Anak Panah', 1, 0, 0), (498, '2016021', '0014554546', '0000000000000000', 'Eugenia Amanda Cherise', 'P', 'Tangerang', '2001-11-12', 2, 'WNI', 'JL Kelapa Sawit XI BG. 7 NO.3 RT RW 009/003', '[email protected]', 'Latihan_Pra_USBN_Bahasa_Indonesia.pdf', '0', 18, '296899_Harpindo-Bunga-Mawar-Biru-79-CM_SnxMDcx96Dd32QMM_1567781404.PNG', 0, 1, 'SMP SWASTA PAHOA', 1, 0, 0), (499, '2016034', '0052351410', '0000000000000000', ' Mega Indira Rajan Putri', 'P', 'Medan', '2005-03-01', 4, 'WNI', 'Citra Raya , Cikupa Cluster Pesona Atlantis, Blok L16/17\n', '[email protected]', 'Contoh.pdf', '081212091367', 17, 'Screenshot_6.png', 0, 1, 'PKBM Anak Panah', 1, 0, 0), (500, '2016014', '0046662791', '0000000000000000', 'Christabella Martosoetjipto', 'P', 'Jakarta', '2004-11-12', 5, 'WNI', 'Jl. Kelapa Lilin Utara II Blok DF 4/3', '[email protected]', NULL, '0812837700221', 18, 'Screenshot_3.png', 0, 1, 'Anak Panah', 1, 0, 0), (501, '2016018', '1741254', '0000000000000000', 'Dede Lestari', 'P', 'Jakarta', '2006-12-02', 1, 'WNI', 'Kp. Panghalan', '[email protected]', 'Contoh.pdf', '0', 18, 'Screenshot_6.png', 0, 2, 'PKBM Anak Panah', 1, 0, 0), (502, '2016019', '0042091075', '0000000000000000', 'Dominick Xavier Amadeus Soureka', 'L', 'Bogor', '2004-09-14', 3, 'WNI', 'Komplek Griya Loka BSD SKTR 1.4 Jl. Cempaka 6 Blok H2/54 RT004/RW005 Rawa Buntu Serpong Tangerang Selatan 15318', '[email protected]', 'Prediksi_UN_EKONOMI.pdf', '08127006639', 17, 'tidur-dengan-kucing.jpg', 0, 1, 'PKBM Anak Panah HS', 1, 0, 0), (503, '2016016', '3055691864', '0000000000000000', 'Daffa Ichsan Albana', 'L', 'Depok', '2005-04-20', 1, 'WNI', 'Lingkungan Cibuntu, Rt 004/008, Kertasari, Ciamis', '[email protected]', 'Contoh.pdf', '081220895093', 16, 'Screenshot_6.png', 0, 1, 'PKBM Anak Panah', 1, 0, 0), (504, '2016038', '0072430385', '0000000000000000', 'Patrick Azariel Wajiya', 'L', 'Jakarta', '2007-03-18', 1, 'WNI', 'Agung Permai III Blok C-10/12A, Sunter Agung, Jakarta Utara', '[email protected]', 'Contoh.pdf', '08158139206', 16, 'Screenshot_6.png', 0, 2, 'PKBM Anak Panah', 1, 0, 0), (505, '2016022', '0017098693', '0000000000000000', 'Evangeline Geovana', 'P', 'Jakarta', '2001-03-06', 3, 'WNI', 'Perumahan Scientia Garden. Cluster Newton, Jl. Newton Barat 2, Blok NB2/07, Gading Serpong, Tangerang\n', '[email protected]', 'Latihan_Pra_USBN_Bahasa_Indonesia.pdf', '0', 18, '296899_Harpindo-Bunga-Mawar-Biru-79-CM_SnxMDcx96Dd32QMM_1567781404.PNG', 0, 2, 'SMP Kristen 4 Penabur Jakarta', 1, 0, 0); INSERT INTO `tbl_siswa` (`siswa_id`, `siswa_nis`, `siswa_nisn`, `nik_siswa`, `siswa_nama`, `siswa_jenkel`, `siswa_tempat`, `siswa_tgl_lahir`, `siswa_agama_id`, `siswa_kewarganegaraan`, `siswa_alamat`, `siswa_email`, `siswa_dokumen`, `siswa_no_telp`, `siswa_kelas_id`, `siswa_photo`, `soft_deleted`, `anak_ke`, `sekolah_asal`, `satelit`, `oc`, `kc`) VALUES (506, '2016028', '0050451955', '0000000000000000', 'Graceya Dana Sugi', 'P', 'Tangerang', '2005-02-11', 5, 'WNI', 'Jl. Beryl Timur 1/8 RT 1/17 Pakulonan Barat.', '[email protected]', NULL, '08111730080', 17, 'Screenshot_7.png', 0, 2, 'Anak Panah', 1, 0, 0), (507, '2016053', '0044752259', '0000000000000000', 'Abisat Paskalis', 'L', 'Sidoarjo', '2004-12-25', 2, 'WNI', 'Griya Kartika B-43 RT018/RW005 Kel. Cemandi Kec. Sedati Kab. Sidoarjo Jawa Timur 61253', '[email protected]', 'Prediksi_UN_EKONOMI.pdf', '123456789', 18, 'tidur-dengan-kucing.jpg', 0, 2, 'SDN Cemandi 267', 1, 0, 0), (508, '2016006', '0042591561', '0000000000000000', 'Alvin Jovan Surjana', 'L', 'Tangerang', '2004-05-05', 5, 'WNI', '', '[email protected]', 'Prediksi_UN_EKONOMI.pdf', '123456789', 16, 'tidur-dengan-kucing.jpg', 0, 1, 'SD Swasta Pahoa', 1, 0, 0), (509, '2016033', '0041780463', '0000000000000000', 'Lucia Monica Angelyn', 'P', 'Jakarta', '2004-08-21', 3, 'WNI', 'Jl. Pademangan Timur VIII RT007/RW010 Kel. Pademangan Timur Jakarta Utara 14410', '[email protected]', 'Prediksi_UN_EKONOMI.pdf', '087782650990', 17, 'tidur-dengan-kucing.jpg', 0, 1, 'SD Swasta Vlanney', 1, 0, 0), (510, '2016004', '0042499461', '0000000000000000', 'Aisha Bella Ivan Hadar', 'P', 'Jakarta', '2004-10-19', 1, 'WNI', 'Teratai XIII Blok P8 Tanjung Barat Indah RT006/RW006 Kel. Rawajati Jakarta Selatan 12750', '[email protected]', 'Prediksi_UN_EKONOMI.pdf', '082281819919', 17, 'tidur-dengan-kucing.jpg', 0, 1, 'PKBM Anak Panah HS', 1, 0, 0), (511, '2016012', '123456789', '0000000000000000', 'Bintang Hidayat Putra', 'L', 'Tangerang', '2004-11-10', 1, 'WNI', 'Jl. Flourite Timur No. 18 Gd. Serpong', '[email protected]', 'Prediksi_UN_EKONOMI.pdf', '123456789', 16, 'tidur-dengan-kucing.jpg', 0, 1, 'PKBM Anak Panah HS', 1, 0, 0), (512, '2016042', '0040673811', '0000000000000000', 'Yervant Vikesha', 'L', 'Jakarta', '2004-08-06', 3, 'WNI', 'Poris Indah Blok F7/39 RT013/RW001 Cipondoh Indah Tangerang 15148', '[email protected]', 'Prediksi_UN_EKONOMI.pdf', '081510905079', 17, 'tidur-dengan-kucing.jpg', 0, 1, 'PKBM Anak Panah HS', 1, 0, 0), (514, '2016003', '0043132006', '0000000000000000', 'Afifah Ahmad', 'P', 'Timika', '2004-06-08', 1, 'WNI', 'Jl. Panorama No.7 Bogor Barat RT003/RW005 Kel. Duri Selatan Jakarta Barat 11270', '[email protected]', 'Soal_Ujian_SD_Bahasa_Indonesia_2018.pdf', '081281283111', 17, 'tidur-dengan-kucing.jpg', 0, 1, 'SD YPJ Tembagapura', 1, 0, 0), (515, '2016007', '0041299406', '0000000000000000', 'Amannia Wika Ridho Putri', 'P', 'Karang Anyar', '2004-12-20', 1, 'WNI', 'Citra Raya Blok L.2/19 RT017/RW002 Kel. Dukuh Tangerang 15710', '[email protected]', 'Soal_Ujian_SD_Bahasa_Indonesia_2018.pdf', '081510000343', 17, 'tidur-dengan-kucing.jpg', 0, 2, 'SD Swasta Citra Islami', 1, 0, 0), (517, '2016005', '0003141808', '0000000000000000', 'Al Hafizh Ramadhan', 'L', 'Jakarta', '2000-12-11', 1, 'WNI', 'CITRA INDAH BUKTI AGAVE BLOK 1-25 NO. 09 RT 007 RW 009 DESA/KELURAHAN SUKAMAJU KECAMATAN JONGGOL, BOGOR- JAWA BARAT 16830\n', '[email protected]', 'Scan_Museum_Anatomi1.pdf', '0', 18, NULL, 0, 2, 'SMP Cikal Harapan II, Kab. Bogor', 1, 0, 0), (518, '2016025', '0012175601', '0000000000000000', 'Gayatri Candra Kusuma', 'P', 'Jakarta', '2001-05-22', 1, 'WNI', 'Jl. KH. Mukmin RT 003/009, Belendung, Benda, Tangerang Banten, 15123\n', '[email protected]', 'Latihan_Pra_USBN_Bahasa_Indonesia.pdf', '0', 18, '296899_Harpindo-Bunga-Mawar-Biru-79-CM_SnxMDcx96Dd32QMM_1567781404.PNG', 0, 1, 'SMP 7 Tangerang', 1, 0, 0), (519, '2016002', '0015815399', '0000000000000000', 'Adnanuzzaki Arif Putra', 'L', 'Tangerang', '2001-07-21', 1, 'WNI', 'Komp. Taman Kedaung Jl. Mawar XIV Blok D-7/2 RT 005 RW 007 Desa/Kelurahan Kedaung Kecamatan Pamulang, Kota Tangerang - Banten 15415', '[email protected]', 'Scan_Museum_Anatomi.pdf', '0', 18, 'Tulips.jpg', 0, 2, 'SMP Islam Al Syukro Universal', 1, 0, 0), (520, '2016008', '0', '0000000000000000', 'Ammarsyahdi Alhayandi Hamid', 'L', 'Jakarta', '2000-09-18', 1, 'WNI', 'Bumi Pesanggrahan Mas Blok K.1 RT 007 RW 008 Desa/Kelurahan Pesanggrahan, Jakarta Selatan - DKI Jakarta', '[email protected]', 'Scan_Museum_Anatomi.pdf', '12345678', 18, 'Tulips.jpg', 0, 1, '0', 1, 0, 0), (521, '2016039', '0019305568', '0000000000000000', 'Reyhan Amalatu Muskita', 'L', 'Tangerang', '2001-11-20', 3, 'WNI', 'River park GH. 1/9 Binjay RT 005 RW 002 Kelurahan/Desa JR. Mangu Barat Kecamatan Pondok Aren, Tangerang Selatan - Banten 15223', '[email protected]', 'Scan_Museum_Anatomi.pdf', '12345678', 18, 'Tulips.jpg', 0, 1, 'SMP Swasta Syafana Islamic School', 1, 0, 0), (522, '2016027', '9998589161', '0000000000000000', 'Gracea Linawati Sanjaya', 'P', 'Jakarta', '1999-11-24', 2, 'WNI', 'Jl. H Sanusi GG H. Rabbi RT/RW 2/13 Duri Kosambi, Jakarta Barat', '[email protected]', 'Latihan_Pra_USBN_Bahasa_Indonesia.pdf', '0', 18, '296899_Harpindo-Bunga-Mawar-Biru-79-CM_SnxMDcx96Dd32QMM_1567781404.PNG', 0, 1, 'SMP Yapindo', 1, 0, 0), (523, '2016044', '0012552590', '0000000000000000', 'Andra Maulana Syakur', 'L', 'Bekasi', '2001-10-26', 1, 'WNI', 'Perum Telaga Harapan blok D2 no.6 Cikarang Barat Kab.Bekasi Jawa Barat 17520 Indonesia\n', '[email protected]', 'Scan_Museum_Anatomi.pdf', '0895349107748', 18, 'Tulips.jpg', 0, 1, 'SMP Islam Al- Munawwaroh, Cikarang Barat', 1, 0, 0), (524, '2016026', '0019167649', '0000000000000000', 'Grace Marlane', 'L', 'Jatibening Estate C-40 No.17', '2002-02-05', 2, 'WNI', 'Taman Sabilano. 9 Jl. Ratna Jatikramat, Jatiasih, Bekasi, 17421\n', '[email protected]', 'Latihan_Pra_USBN_Bahasa_Indonesia.pdf', '0811951150', 18, '296899_Harpindo-Bunga-Mawar-Biru-79-CM_SnxMDcx96Dd32QMM_1567781404.PNG', 0, 3, 'PKBM Negeri 4 Tomang', 1, 0, 0), (525, '2016011', '0014436650', '0000000000000000', 'Arthur Audrian Natawirja', 'L', 'Jakarta', '2001-01-14', 2, 'WNI', 'Bogor Nirwana Residence Blok I No. 36 RT 001 RW 010 Kecamatan Kota Bogor Selatan, Kota Bogor - Jawa Barat 16135', '[email protected]', 'Scan_Museum_Anatomi.pdf', '0', 18, 'Tulips.jpg', 0, 3, 'SMP Kesatuan, Bogor', 1, 0, 0), (526, '2016017', '0021055174', '0000000000000000', 'Dea Paskah Jesie Erika Munaiseche', 'P', 'Manado', '2002-01-12', 2, 'WNI', 'Citraland Lingkungan III RT - RW 003 Desa/Kelurahan Winangun Satu Kecamatan Malalayang, Kota Manado - Sulawesi Utara', '[email protected]', 'Scan_Museum_Anatomi.pdf', '12345678', 18, 'Tulips.jpg', 0, 1, 'SMP Advent 1 Tikala', 1, 0, 0), (527, '2016029', '0028899749', '0000000000000000', 'Ikra Zaki Fadilah', 'L', 'Jakarta', '2000-12-13', 1, 'WNI', 'JL. Ros No.1 B RT RW 012/003 Cipete Selatan, Cilandak', '[email protected]', 'Latihan_Pra_USBN_Bahasa_Indonesia1.pdf', '0', 18, NULL, 0, 2, 'SMP Swasta Bina Nusantara Serpong', 1, 0, 0), (528, '2016013', '0013878688', '0000000000000000', 'Catrice Kesley Kosasi', 'P', 'Medan', '2001-05-14', 5, 'WNI', 'Jl. Crystal Timur 2 No.15 RT 001 RW 018 Desa/Kelurahan Pakulonan Barat Kecamatan Kelapa Dua, Tangerang - Banten 15812', '[email protected]', 'Scan_Museum_Anatomi.pdf', '0', 18, 'Tulips.jpg', 0, 2, 'SMP Pahoa', 1, 0, 0), (529, '2016030', '0013637386', '0000000000000000', 'Jane Levina Suhendra', 'P', 'Jakarta', '2001-11-07', 2, 'WNI', 'Jl. Veteran 1 RT/RW 003/005', '[email protected]', 'Latihan_Pra_USBN_Bahasa_Indonesia.pdf', '0', 18, '296899_Harpindo-Bunga-Mawar-Biru-79-CM_SnxMDcx96Dd32QMM_1567781404.PNG', 0, 1, 'SMAN 19 Jakarta', 1, 0, 0), (530, '2016015', '0022334375', '0000000000000000', 'Christian Tombiling', 'L', 'Denpasar', '2002-04-02', 2, 'WNI', 'Jaga X Desa/Kelurahan Matungkas, Minahasa Utara - Sulawesi Utara', '[email protected]', 'Scan_Museum_Anatomi.pdf', '0', 18, 'Tulips.jpg', 0, 1, 'SMP Negeri 1 Manado', 1, 0, 0), (531, '2016047', '9966492777', '0000000000000000', 'Jovin Halim', 'L', 'Jakarta', '1996-06-01', 2, 'WNI', 'Foresta Cluster Naturale M.3 No.10 BSD City RT RW 001/003 Pagedangan Tangerang Banten', '[email protected]', 'Latihan_Pra_USBN_Bahasa_Indonesia.pdf', '0', 18, '296899_Harpindo-Bunga-Mawar-Biru-79-CM_SnxMDcx96Dd32QMM_1567781404.PNG', 0, 1, 'SMP Santa Ursula Bandung', 1, 0, 0), (532, '2016048', '0001243314', '0000000000000000', 'Benedicto Matthew Watulingas', 'L', 'Tangerang', '2020-03-20', 2, 'WNI', 'Jl. Bukit III No. 3 RT 005 RW 012 Desa/Kelurahan Mulyaharja Kecamatan Kota Bogor, Kota Bogor - Jawa Barat 16132', '[email protected]', 'Scan_Museum_Anatomi.pdf', '12345678', 18, 'Tulips.jpg', 0, 1, 'SMP Taruna Bangsa', 1, 0, 0), (533, '2016031', '0016098449', '0000000000000000', 'Kezia Dinara', 'P', 'Bandung', '2001-07-10', 2, 'WNI', 'Jl. Ibrahim Adji No. 418, Rt 01 Rw 09 Binong, Batununggal, Bandung Jawa barat 40275\n', '[email protected]', 'Latihan_Pra_USBN_Bahasa_Indonesia.pdf', '0', 18, '296899_Harpindo-Bunga-Mawar-Biru-79-CM_SnxMDcx96Dd32QMM_1567781404.PNG', 0, 3, 'SMP Santa Ursula Bandung', 1, 0, 0), (534, '2016032', '0017890388', '0000000000000000', 'Kyra Kiara', 'P', 'Jakarta', '2001-10-03', 1, 'WNI', 'JL. Camar V Blok AG.40 RT RW 004/008 Kel. Pondok Betung, Kec. Pondok Aren, Tangerang', '[email protected]', 'Latihan_Pra_USBN_Bahasa_Indonesia.pdf', '0', 18, '296899_Harpindo-Bunga-Mawar-Biru-79-CM_SnxMDcx96Dd32QMM_1567781404.PNG', 0, 2, 'SMP AN-NISA', 1, 0, 0), (535, '2016023', '9991909227', '0000000000000000', 'Faishal Haris', 'L', 'Jakarta', '2000-01-24', 1, 'WNI', 'Gading Serpong Sek.7A DC-2 No.10 RT RW 006/003 Kel. Curug Sngereng, Kelapa Dua Tangerang', '[email protected]', 'Latihan_Pra_USBN_Bahasa_Indonesia.pdf', '0', 18, '296899_Harpindo-Bunga-Mawar-Biru-79-CM_SnxMDcx96Dd32QMM_1567781404.PNG', 0, 2, 'SMP Islam Terpadu Insan Harapan', 1, 0, 0), (536, '2016001', '0017711463', '0000000000000000', 'Aditya Anugerah Akbar', 'L', 'Jakarta', '2001-04-29', 1, 'WNI', 'Pondok Sawah Indah Blok O No 4 RT 004 RW 002 Desa/Kelurahan Sawah Kecamatan Ciputat, Kota Tangerang Selatan - Banten', '[email protected]', 'Scan_Museum_Anatomi.pdf', '0', 18, 'Tulips.jpg', 0, 3, 'SMP Islam Al-Falah', 1, 0, 0), (537, '2016020', '0015855316', '0000000000000000', 'Eleon Angeleo', 'L', 'Tangerang', '2001-04-19', 2, 'WNI', 'Regensi Melati Mas Blok C4/07 RT RW 002/017 Pondok Jagung, Serpong Utara', '[email protected]', 'Latihan_Pra_USBN_Bahasa_Indonesia.pdf', '0', 18, '296899_Harpindo-Bunga-Mawar-Biru-79-CM_SnxMDcx96Dd32QMM_1567781404.PNG', 0, 1, 'SMP Swasta Kristen Penabur Gading Serpong', 1, 0, 0), (538, '2016010', '0013144994', '0000000000000000', 'Anissa Maulia Shabine', 'P', 'Palembang', '2001-06-14', 1, 'WNI', 'Jl. Batu Merah III RT 007 RW 002 Desa/Kelurahan Pejaten Timur Kecamatan Pasar Minggu, Jakarta Selatan - DKI Jakarta 12510', '[email protected]', 'Scan_Museum_Anatomi1.pdf', '0', 18, NULL, 0, 2, 'SMPS Harapan Utama', 1, 0, 0), (539, '2016024', '9990481077', '0000000000000000', 'Felicia Celine Triesha Martasuprana', 'P', 'Tangerang', '1999-02-10', 3, 'WNI', 'JL. Sukamulya Raya No.31 RT RW 004/005 Sukasari, Tangerang', '[email protected]', NULL, '0', 18, '296899_Harpindo-Bunga-Mawar-Biru-79-CM_SnxMDcx96Dd32QMM_15677814041.PNG', 0, 1, 'SMP Strada Santa Maria 2', 1, 0, 0), (540, '2016009', '2016009', '0000000000000000', 'Angelo Dana Sugi', 'L', 'Tangerang', '2001-02-27', 5, 'WNI', 'Jl. Beryl Timur 1/8 RT 001 RW 017 Desa/Kelurahan Pakulonan Barat Kecamatan Kelapa dua, Tangerang - Banten 15812', '[email protected]', 'Scan_Museum_Anatomi.pdf', '0', 18, 'Tulips.jpg', 0, 1, 'SMP Stella Maris School', 1, 0, 0), (541, '2016037', '20577110', '0000000000000000', 'Nicole Ellianne Risakotta', 'L', 'Surabaya', '2001-03-17', 2, 'WNI', 'Dusun Krajan RT RW 01/06 Sebaung Probolinggo', '[email protected]', 'Latihan_Pra_USBN_Bahasa_Indonesia.pdf', '087855530800', 18, '296899_Harpindo-Bunga-Mawar-Biru-79-CM_SnxMDcx96Dd32QMM_1567781404.PNG', 0, 2, 'SMP KRISTEN ELIA', 1, 0, 0), (542, '2016036', '0010312055', '0000000000000000', 'Michael Alexander Budiman', 'L', 'Tarakan', '2001-11-24', 3, 'WNI', 'Cluster Fiore B7 no.8 Foresta BSD City, Serpong, Tangerang Banten, 15339\n', '[email protected]', 'Scan_Museum_Anatomi.pdf', '081346616600', 18, 'Tulips.jpg', 0, 1, 'SMP Swasta Athalia', 1, 0, 0), (543, '2016043', '0015835451', '0000000000000000', 'Zedric Immanuel Abetto', 'L', 'Jakarta', '2001-09-25', 1, 'WNI', 'Jl Amal No.7 RT RW 09/01 Cipadu Jaya Kota Tangerang', '[email protected]', 'Latihan_Pra_USBN_Bahasa_Indonesia.pdf', '081290965349', 18, '296899_Harpindo-Bunga-Mawar-Biru-79-CM_SnxMDcx96Dd32QMM_1567781404.PNG', 0, 1, 'SMP Cendrawasih II', 1, 0, 0), (544, '2016035', '0', '0000000000000000', 'Metta Tjoa', 'P', 'Sydney', '2000-12-16', 5, 'WNI', 'Jl. Keagungan No. 8 RT 001 RW 008 Desa/Kelurahan Keagungan Kecamatan Taman Sari, Jakarta Barat - DKI Jakarta 11130', '[email protected]', 'Scan_Museum_Anatomi.pdf', '08129811570', 18, 'Tulips.jpg', 0, 4, 'PKBM Bina Insani Kamil ', 1, 0, 0), (545, '2016041', '0001403047', '0000000000000000', 'Shabilla Rahma Johne', 'L', 'Cilegon', '2000-11-18', 1, 'WNI', 'Taman Ubud Cempaka Selatan 3-No.6, Curug, Tangerang.', '[email protected]', 'Latihan_Pra_USBN_Bahasa_Indonesia.pdf', '0', 18, '296899_Harpindo-Bunga-Mawar-Biru-79-CM_SnxMDcx96Dd32QMM_1567781404.PNG', 0, 1, 'SMPTK Charisma Global School', 1, 0, 0), (546, '2016052', '0001353230', '0000000000000000', 'Mazaya Raina Habibie', 'L', 'Jakarta', '2000-07-24', 1, 'WNI', 'JL. Cipete V No. 9 RT 008 RW 003 Desa/Kelurahan Cipete Selatan Kecamatan Cilandak, Jakarta Selatan - DKI Jakarta 12410', '[email protected]', 'Scan_Museum_Anatomi.pdf', '12345678', 18, 'Tulips.jpg', 0, 1, 'SMP Islam Al-ikhlas', 1, 0, 0), (547, '2016046', '0033316376', '0000000000000000', 'Siti Alifah Fayruz Nurwan Saputra ', 'P', 'Jakarta', '2003-05-02', 1, 'WNI', 'Jl. Flamboyan II No. 27 Desa/Kelurahan Menteng Dalam Kecamatan Tebet, Jakarta Selatan - DKI Jakarta 12870', '[email protected]', 'Scan_Museum_Anatomi.pdf', '081808612323', 18, 'Tulips.jpg', 0, 1, '0', 1, 0, 0), (548, '2016050', '9999682879', '0000000000000000', 'Rico Sanjaya ', 'L', 'Jakarta', '1999-05-06', 3, 'WNI', 'Binong Permai Blok H 29/11 Desa/Kelurahan Binong Kecamatan Curug, Tangerang - Banten 15810', '[email protected]', 'Scan_Museum_Anatomi.pdf', '12345678', 18, 'Tulips.jpg', 0, 1, 'SMP Lentera Harapan Curug', 1, 0, 0), (549, '2016049', '0008298627', '0000000000000000', 'Raden Jesica Cassandra', 'P', 'Ciamis', '2000-10-15', 1, 'WNI', 'Jl. IR H Juanda No 120 RT 001 RW 007 Kelurahan/Desa Ciamis Kecamatan Ciamis, Ciamis - Jawa Barat 046211', '[email protected]', 'Scan_Museum_Anatomi.pdf', '085322649805', 18, 'Tulips.jpg', 0, 2, 'SMP Negeri 1 Tasikmalaya', 1, 0, 0), (550, '2016051', '0006649771', '0000000000000000', 'Aurelia Annabelle ', 'P', 'Tangerang', '2000-11-17', 3, 'WNI', 'Kelapa Puan XXI AJ-8/23 RT 001 RW 012 Desa/Kelurahan Pakulonan Barat Kecamatan Kelapa dua, Tangerang - Banten 15812', '[email protected]', 'Scan_Museum_Anatomi.pdf', '12345678', 18, 'Tulips.jpg', 0, 1, 'SMP Swasta Kristen Penabur Gading Serpong', 1, 0, 0), (551, '2016045', '0012356489', '0000000000000000', 'William Sidharta Adi Wicaksono', 'L', 'Jakarta', '2001-11-19', 3, 'WNI', 'JL. Bojong Raya 24 RT 007 RW 004 Desa/Kelurahan Rawa Buaya Kecamatan Cengkareng, Jakarta Barat - DKI Jakarta 11740', '[email protected]', 'Scan_Museum_Anatomi.pdf', '08117779610', 18, 'Tulips.jpg', 0, 1, 'SMP Vianney', 1, 0, 0), (552, '2020788', '0020891020', '0000000000000000', 'Michael Christian', 'L', 'Tangerang ', '2002-09-02', 2, 'WNI', 'Jl. Rajawali Selt Blok B/4 Gunung Sahari Utara, Sawah Besar, Jakarta Pusat', '[email protected]', 'michael_christian.pdf', '0816761151', 14, 'Michael_Christian.jpeg', 0, 2, 'PKBM Anak Panah', 1, 0, 0), (553, '2020769', '0040454770', '0000000000000000', 'Ardian Bagus', 'L', '081297816549', '2004-07-05', 1, 'WNI', 'Jln. Gongseng raya rt 08 rw 09 no.50 kelurahan baru, kecamatan pasar rebo\nJakarta timur DKI Jakarta 13780\nIndonesia', '[email protected]', 'Ardian_Bagus.pdf', '081297816549', 10, 'Ardian_Bagus.jpeg', 0, 2, 'SMAN 99 Jakarta', 1, 0, 0), (554, '2020743', '0034955273', '0000000000000000', 'Cut Safina Amanda Dhawi', 'P', 'Tangerang ', '2003-12-31', 1, 'WNI', 'kompl. paninggilan permai blok i no 7', '[email protected]', 'Cut_Safina.pdf', '089686585616', 11, 'Cut_Safina.jpeg', 0, 1, 'sma 63 petukangan selatan', 1, 0, 0), (555, '2017278', '0022109043', '0000000000000000', 'Naura Farhana Shifa', 'P', 'Surabaya', '2002-03-12', 1, 'WNI', 'Jalan Widya Kencana Blok V.8 No.5 BSD', '[email protected]', 'naura.pdf', '08979791978', 14, 'Naura_Farhana.jpeg', 0, 1, 'Alia Islamic School', 1, 0, 0), (556, '0', '0000000000000', '0000000000000000', 'Tri Wahyudi', 'L', 'Bogor', '2000-05-10', 1, 'WNI', 'Kp. Nanggela RT 004 RW 007, Sukmajaya, Tajurhalang, Bogor', '[email protected]', NULL, '0811111111', 11, 'Hydrangeas1.jpg', 0, 2, '-', 2, 0, 0), (557, '0000020', '0000000000', '0000000000000000', 'Ahmad Najmudin Palapi', 'L', 'Bogor', '2002-11-11', 1, 'WNI', 'Kp. Neglasari RT 009 RW 004 Mekarwangi, Cariu, Bogor', '[email protected]', NULL, '085624463700', 11, 'Desert.jpg', 0, 2, 'SMK Dharma Bakti Tonjong', 2, 0, 0), (558, '0000032', '0000000000', '0000000000000000', 'Fakih Pajar Tian', 'L', 'Bogor', '2003-06-03', 1, 'WNI', 'Kp. Nanggela 002/004, Sukmajaya, Tajurhalang, Bogor', '[email protected]', NULL, '089611542142', 11, 'Desert.jpg', 0, 3, '-', 2, 0, 0), (559, '0000021', '0000000000', '0000000000000000', 'Shandika', 'L', 'Bogor', '2002-03-05', 1, 'WNI', 'Kp. Nanggela 002/004 Sukmajaya Tajurhalang', '[email protected]', '01_Soal_Bhs._Indonesia_Kls_7_.pdf', '0811111111', 11, 'Jellyfish.jpg', 0, 2, 'SMP Tunas Harapan', 2, 0, 0), (560, '0000022', '0000000000', '0000000000000000', 'Rahmat', 'L', 'Bogor', '1994-06-24', 1, 'WNI', 'Kp. Nanggela 002/003 Sukmajaya Tajurhalang', '[email protected]', '01_Soal_Bhs._Indonesia_Kls_7_.pdf', '0811111111', 11, 'Desert.jpg', 0, 5, '-', 2, 0, 0), (561, '0000023', '0000000000', '0000000000000000', 'Muhamad Saepudin', 'L', 'Bogor', '2000-02-19', 1, 'WNI', 'Kp. Nanggela 004/003 Sukmajaya Tajurhalang', '[email protected]', '01_Soal_Bhs._Indonesia_Kls_7_.pdf', '0811111111', 11, 'Desert.jpg', 0, 2, '-', 2, 0, 0), (562, '0000027', '0000000000', '0000000000000000', 'Dhia Uddin', 'L', 'Depok', '2002-04-22', 1, 'WNI', 'Kp. Nangggela 005/004 Sukmajaya Tajurhalang', '[email protected]', '01_Soal_Bhs._Indonesia_Kls_7_.pdf', '0811111111', 11, 'Hydrangeas.jpg', 0, 5, '-', 2, 0, 0), (564, '0000025', '0000000000', '0000000000000000', 'Denis Darmais', 'L', 'Bogor', '1996-12-05', 1, 'WNI', 'Kp. Nanggela 003/001 Sukmajaya Tajurhalang', '[email protected]', '01_Soal_Bhs._Indonesia_Kls_7_.pdf', '081292496372', 13, 'Desert.jpg', 0, 2, 'SMP Tonjong', 2, 0, 0), (565, '0000026', '0000000000', '0000000000000000', 'Bagus Kuniawan', 'L', 'Bogor', '2000-01-15', 1, 'WNI', 'Kp Susukan 002/001 Susukan Bojonggede', '[email protected]', '01_Soal_Bhs._Indonesia_Kls_7_.pdf', '0811111111', 11, 'Jellyfish.jpg', 0, 6, '-', 2, 0, 0), (566, '0000028', '0000000000', '0000000000000000', 'Ahmad Fauzie', 'L', 'Jakarta', '1991-05-21', 1, 'WNI', 'Kp Nanggela 002/003 Sukmajaya Tajurhalang ', '[email protected]', '01_Soal_Bhs._Indonesia_Kls_7_.pdf', '0811111111', 13, 'Hydrangeas.jpg', 0, 7, '-', 2, 0, 0), (567, '0000029', '0000000000', '0000000000000000', 'Mela Apri Yani', 'P', 'Bogor', '2001-04-10', 1, 'WNI', 'Kp. Nanggela 003/001 Sukmajaya Tajurhalang', '[email protected]', '01_Soal_Bhs._Indonesia_Kls_7_.pdf', '0811111111', 11, 'Jellyfish.jpg', 0, 2, 'MTS Hidayatut Tholibin', 2, 0, 0), (568, '0000030', '0000000000', '0000000000000000', 'Ranika Despia', 'P', 'Jakarta', '1998-07-11', 1, 'WNI', 'Tanah Baru 002/007 beji Depok', '[email protected]', '01_Soal_Bhs._Indonesia_Kls_7_.pdf', '08994794149', 11, 'Desert.jpg', 0, 1, 'SMP Teladan', 2, 0, 0), (569, '0000031', '0000000000', '0000000000000000', 'Diyah', 'P', 'Bogor', '1999-03-12', 1, 'WNI', 'Kp Nanggela 002/004 Sukmajaya Tajurhalang', '[email protected]', '01_Soal_Bhs._Indonesia_Kls_7_.pdf', '0811111111', 11, 'Hydrangeas.jpg', 0, 1, '-', 2, 0, 0), (570, '0000034', '00000000000', '0000000000000000', 'Ridwan', 'L', 'Bogor', '1999-12-12', 1, 'WNI', 'Kp Nanggela 002/006 Sukmajaya Tajurhalang ', '[email protected]', 'Soal_IPA_Kelas_1_SD_Bab_6_Benda_Langit_dan_Kunci_Jawaban_(www.bimbelbrilian_.com)_.pdf', '08987368007', 13, 'download.jpg', 0, 2, 'MTS Hidayatut Tholibin ', 2, 0, 0), (571, '0000054', '0000000000', '0000000000000000', 'Dini Sapitri', 'P', 'Bogor', '2004-11-20', 1, 'WNI', 'Kp Nanggela 002/002 Sukmajaya Tajurhalang', '[email protected]', '01_Soal_Bhs._Indonesia_Kls_7_.pdf', '0811111111', 11, 'Hydrangeas.jpg', 0, 1, 'MTs Ar Roffiqy', 2, 0, 0), (572, '0000035', '00000000000000', '0000000000000000', 'Nursan', 'L', 'Bogor', '1984-04-04', 1, 'WNI', 'Kp.Nanggela RT 02/05 Desa Sukmajaya Kec.Tajurhalang Kab.Bogor', '[email protected]', 'document.pdf', '085718135348', 13, 'Chrysanthemum.jpg', 0, 2, 'SLTP Tunas Harapan', 2, 0, 0), (573, '0000024', '0000000000', '0000000000000000', 'Muhammad Ibnu Prakas', 'L', 'Bogor', '2002-07-21', 1, 'WNI', 'Kp Nanggela 003/007 Sukmajaya Tajurhalang', '[email protected]', '01_Soal_Bhs._Indonesia_Kls_7_.pdf', '0811111111', 11, 'Chrysanthemum.jpg', 0, 1, '-', 2, 0, 0), (574, '0000016', '0000000000', '0000000000000000', 'Arman Maulana', 'L', 'Bogor', '2002-04-16', 1, 'WNI', 'Kp. Nanggela 004/003 Sukmajaya Tajurhalang', '[email protected]', '01_Soal_Bhs._Indonesia_Kls_7_.pdf', '089605241766', 11, 'Jellyfish.jpg', 0, 1, 'MTs Nurus Syafa`ah', 2, 0, 0), (575, '0000036', '000000000000', '0000000000000000', 'Maulana M.Fikar', 'L', 'Bogor', '2007-04-08', 1, 'WNI', 'Kp.Bojonggede Rt 04/05 Desa Bojonggede Kec.Bojonggede Kab.Bogor', '[email protected]', 'document.pdf', '081111111111', 5, 'Desert.jpg', 0, 3, 'PKBM Anak Panah', 2, 0, 0), (576, '0000013', '0000000000', '0000000000000000', 'Fitri Nabilah', 'P', 'Bogor', '2003-11-30', 1, 'WNI', 'Kp. Nanggela 006/005 Sukmajaya Tajurhalang', '[email protected]', '01_Soal_Bhs._Indonesia_Kls_7_.pdf', '0811111111', 11, 'Penguins.jpg', 0, 1, 'SMP Tunas Harapan', 2, 0, 0), (577, '0000037', '0000000000000', '0000000000000000', 'Panji Aryo Wibowa', 'L', 'Jakarta', '2005-01-04', 1, 'WNI', 'Kp.Perigi RT 02/02 Desa Bojonggede Kec.Bojonggede Kab.Bogor', '[email protected]', 'document.pdf', '081111111111', 5, 'Chrysanthemum.jpg', 0, 2, 'PKBM Anak Panah', 2, 0, 0), (578, '0000038', '0000000000000', '0000000000000000', 'Erdis liana Satiar', 'L', 'Bogor', '2000-04-03', 1, 'WNI', 'Kp.Kelapa Dua Rt 01/02 Desa Bojonggede Kec.Bojonggede Kab.Bogor', '[email protected]', 'document.pdf', '081111111111', 5, 'Desert.jpg', 0, 1, 'PKBM Anak Panah', 2, 0, 0), (579, '0000051', '00000000000000', '0000000000000000', 'Muhamad Aldi Agustian', 'L', 'Jakarta', '1999-08-02', 1, 'WNI', 'Jl.Kenari 1 no.21 Rt10/ 03 Jakarta', '[email protected]', 'document.pdf', '081111111111', 5, 'Chrysanthemum.jpg', 0, 3, 'PKBM Anak Panah', 2, 0, 0), (580, '0000011', '0000000000', '0000000000000000', 'Helda', 'P', 'Bogor', '2004-04-07', 1, 'WNI', 'Kp Nanggela 004/002 Sukmajaya Tajurhalang', '[email protected]', '01_Soal_Bhs._Indonesia_Kls_7_.pdf', '0811111111', 11, 'Jellyfish.jpg', 0, 1, 'MTs Ar Roffiqy', 2, 0, 0), (581, '0000039', '000000000000', '0000000000000000', 'Mila Susilawati', 'P', 'Bekasi', '1993-01-18', 1, 'WNI', 'Kp.Nanggela Rt 02/01 Desa Sukmajaya Kec tajurhalang Kab.Bogor', '[email protected]', 'document.pdf', '081111111111', 11, 'Hydrangeas.jpg', 0, 5, '-', 2, 0, 0), (582, '0000007', '0000000000', '0000000000000000', 'Muhammad Mulyadi', 'L', 'Bogor', '1996-03-03', 1, 'WNI', 'Kp Nanggela 001/006 Sukmajaya Tajurhalang', '[email protected]', '01_Soal_Bhs._Indonesia_Kls_7_.pdf', '089605823626', 13, 'Lighthouse.jpg', 0, 2, 'SMP Tunas Harapan', 2, 0, 0), (583, '0000040', '000000000000', '0000000000000000', 'Robi Sugara', 'L', 'Bogor', '1982-07-26', 1, 'WNI', 'Kp.Nanggela Rt 02/01 Desa Sukmajaya Kec. Tajurhalang Kab. Bogor', '[email protected]', 'document.pdf', '081111111111', 13, 'Chrysanthemum.jpg', 0, 1, '-', 2, 0, 0), (584, '0000041', '085778693225', '0000000000000000', 'Roji', 'L', 'Bogor', '1990-08-22', 1, 'WNI', 'Kp.Nanggela RT 06/03 Desa Sukmajaya Kec.Tajurhalang Kab.Bogor', '[email protected]', 'document.pdf', '081111111111', 13, 'Chrysanthemum.jpg', 0, 1, 'SLTP Tunas Harapan', 2, 0, 0), (585, '0000002', '0000000000', '0000000000000000', 'Misnan', 'L', 'Bogor', '2001-08-02', 1, 'WNI', 'Kp Nanggela 004/003 Sukmajaya Tajurhalang', '[email protected]', '01_Soal_Bhs._Indonesia_Kls_7_.pdf', '0811111111', 11, 'Desert.jpg', 0, 3, 'SMP Tunas Harapan', 2, 0, 0), (586, '0000042', '000000000000', '0000000000000000', 'Asnan', 'L', 'Bogor', '1977-03-20', 1, 'WNI', 'Kp.Nanggela RT 02/04 Desa Sukmajaya Kec.Tajurhalang Kab.Bogor', '[email protected]', 'document.pdf', '085811262707', 13, 'Chrysanthemum.jpg', 0, 4, 'PKBM Anak Panah', 2, 0, 0), (587, '0000019', '0000000000', '0000000000000000', 'Rini', 'P', 'Bogor', '1992-03-14', 1, 'WNI', 'Kp Nanggela 002/001 Sukmajaya Tajurhalang', '[email protected]', '01_Soal_Bhs._Indonesia_Kls_7_.pdf', '089662614089', 8, 'Penguins.jpg', 0, 3, 'MI Hidayatut Tholibin', 2, 0, 0), (588, '0000043', '0000000000000000', '0000000000000000', 'Muhamad Firly', 'L', 'Bogor', '2004-06-15', 1, 'WNI', 'Kp.Nanggela Rt 03/06 Desa Sukmajaya Kec.Tajurhalang Kab.Bogor', '[email protected]', 'document.pdf', '081111111111', 7, 'Chrysanthemum.jpg', 0, 1, '-', 2, 0, 0), (589, '0000017', '0000000000', '0000000000000000', 'Rendiyansah', 'L', 'Bogor', '2004-04-04', 1, 'WNI', 'Kp Mutiara Baru 002/011 Kedungwaringin Bojonggede', '[email protected]', '01_Soal_Bhs._Indonesia_Kls_7_.pdf', '0811111111', 7, 'Penguins.jpg', 0, 7, '-', 2, 0, 0), (590, '0000044', '0000000000000', '0000000000000000', 'Abdullah Aziz', 'L', 'Jakarta', '2000-05-19', 1, 'WNI', 'Jl. Keramat Pulo GG. I/B.26 RT 02/03 Desa Kramat Kec.Senen Jakarta Pusat', '[email protected]', 'document.pdf', '081111111111', 7, 'Desert.jpg', 0, 5, '-', 2, 0, 0), (591, '0000018', '0000000000', '0000000000000000', 'Rizky Aditya', 'L', 'Bogor', '2003-12-01', 1, 'WNI', 'Bojonggede Timur 004/012 Bojonggede Bogor', '[email protected]', '01_Soal_Bhs._Indonesia_Kls_7_.pdf', '0811111111', 7, 'Chrysanthemum.jpg', 0, 1, '-', 2, 0, 0), (592, '0000015', '0000000000', '0000000000000000', 'Syech Muhammad Risky', 'L', 'Depok', '2003-04-18', 1, 'WNI', 'Bojong Bambon 007/005 Bojong Pondok Terong, Cipayung, Depok', '[email protected]', '01_Soal_Bhs._Indonesia_Kls_7_.pdf', '0811111111', 7, 'Penguins.jpg', 0, 1, 'SDN Pondok Terong 4', 2, 0, 0), (593, '0000045', '000000000000', '0000000000000000', 'Muhamad Lutpi Husain', 'L', 'Bogor', '2004-02-29', 1, 'WNI', 'Kp.Nanggela Rt 03/07 Desa Sukmajaya Kec.Tajurhalang kab.Bogor', '[email protected]', 'document.pdf', '081111111111', 7, 'Desert.jpg', 0, 1, '-', 2, 0, 0), (594, '0000010', '0000000000', '0000000000000000', 'Muhammad Husain', 'L', 'Tasikmalaya', '2004-02-15', 1, 'WNI', 'Kp Nanggela 002/006 Sukmajaya Tajurhalang', '[email protected]', '01_Soal_Bhs._Indonesia_Kls_7_.pdf', '085289639657', 7, 'Tulips.jpg', 0, 2, 'MI Ar Roffiqy', 2, 0, 0), (595, '0000046', '0000000000000', '0000000000000000', 'Muhamad Fajar', 'L', 'Bogor', '2004-04-07', 1, 'WNI', 'Kp.Perigi RT 02/02 Desa Bojonggede Kec.Tajurhalang Kab.Bogor', '[email protected]', 'document.pdf', '081111111111', 7, 'Chrysanthemum.jpg', 0, 2, 'SDN Bojonggede 4', 2, 0, 0), (596, '0000005', '0000000000', '0000000000000000', 'Audy Anastasya Putri', 'P', 'Bogor', '2004-08-05', 1, 'WNI', 'Bojonggede Dalam 003/012 Bojonggede Bogor', '[email protected]', '01_Soal_Bhs._Indonesia_Kls_7_.pdf', '0811111111', 7, 'Desert.jpg', 0, 1, 'SDN Bojonggede 4', 2, 0, 0), (597, '0000047', '0000000000000', '0000000000000000', 'Mohamad Adam Apriyadi', 'L', 'Bogor', '2004-04-23', 1, 'WNI', 'Bojonggede', '[email protected]', 'document.pdf', '081111111111', 7, 'Chrysanthemum.jpg', 0, 3, '-', 2, 0, 0), (598, '0000009', '0000000000', '0000000000000000', 'Aidah', 'P', 'Bogor', '2002-12-28', 1, 'WNI', 'Kp Tajurhalang 001/002 Tajurhalang Bogor', '[email protected]', '01_Soal_Bhs._Indonesia_Kls_7_.pdf', '0811111111', 7, 'Koala.jpg', 0, 2, 'SDN Kandang Panjang 3', 2, 0, 0), (599, '0000014', '0000000000', '0000000000000000', 'Muhammad Ridho Pratama', 'L', 'Jakarta', '2005-05-24', 1, 'WNI', 'Gg. Hidayah No 19 L 005/006 Lenteng Agung Jagakarsa ', '[email protected]', '01_Soal_Bhs._Indonesia_Kls_7_.pdf', '0811111111', 7, 'Jellyfish.jpg', 0, 1, '-', 2, 0, 0), (600, '0000008', '0000000000', '0000000000000000', 'Guntur Ahmad Dani', 'L', 'Purbalingga', '2004-01-06', 1, 'WNI', 'Kp Nanggela 001/007 Sukmajaya Tajurhalang', '[email protected]', '01_Soal_Bhs._Indonesia_Kls_7_.pdf', '089651242089', 7, 'Tulips.jpg', 0, 2, 'SDN Bojonggede 3', 2, 0, 0), (601, '0000048', '000000000000', '0000000000000000', 'Tsanul Jamil', 'L', 'Bogor', '2004-04-19', 1, 'WNI', 'Kp.Mutiara Baru RT02/11 Desa Kedungwaringin Kec.Bojonggede Kab.Bogor', '[email protected]', 'document.pdf', '081111111111', 7, 'Chrysanthemum.jpg', 0, 1, '-', 2, 0, 0), (602, '0000001', '0000000000', '0000000000000000', 'Ferry Akbar', 'L', 'Bogor', '2001-02-15', 1, 'WNI', 'Kp Bojonggede 004/012 Bojonggede Bogor', '[email protected]', '01_Soal_Bhs._Indonesia_Kls_7_.pdf', '0811111111', 7, 'Tulips.jpg', 0, 1, 'SDN Kedungwaringin 3', 2, 0, 0), (603, '0000003', '0000000000', '0000000000000000', 'Mohammad Rizki', 'L', 'Depok', '2004-09-03', 1, 'WNI', 'Gg Kingkit IX No 19 RT/RW 005/004 Kebon Kelapa Gambir ', '[email protected]', '01_Soal_Bhs._Indonesia_Kls_7_.pdf', '0811111111', 7, 'Hydrangeas.jpg', 0, 3, '-', 2, 0, 0), (604, '0000049', '000000000000', '0000000000000000', 'Aan Sarnianto', 'L', 'Wonogiri', '1976-04-12', 1, 'WNI', 'Jl. Kp. Pulo Mangga No. 46 E RT 07/05 Desa Grogol Kec. Limo Kota Depok', '[email protected]', 'document.pdf', '081111111111', 8, 'Chrysanthemum.jpg', 0, 1, 'SDN Jeblogan 1', 2, 0, 0), (605, '0000004', '0000000000', '0000000000000000', 'Maulana Abdurrahim', 'L', 'Bogor', '2004-11-22', 1, 'WNI', 'Kp Tajurhalang 002/001 Tajurhalang Bogor', '[email protected]', '01_Soal_Bhs._Indonesia_Kls_7_.pdf', '081286904264', 7, '81c333fd1c519d337a4bd2e71ad033ba.jpg', 0, 6, 'SDIT Al Hasanah', 2, 0, 0), (606, '0000006', '0000000000', '0000000000000000', 'Ripki Akbar Alfito', 'L', 'Bogor', '2004-11-26', 1, 'WNI', 'Jl. Kalibata Timur 003/001 Kalibata Pancoran Jakarta Selatan', '[email protected]', '01_Soal_Bhs._Indonesia_Kls_7_.pdf', '0811111111', 7, '81c333fd1c519d337a4bd2e71ad033ba.jpg', 0, 2, 'SDN Surakarya 2', 2, 0, 0), (607, '0000050', '000000000000', '0000000000000000', 'Muhamad Alamsyah', 'L', 'Bogor', '2004-09-27', 1, 'WNI', 'Kp.Bojonggede Timur Jl. Curug Mas RT 04/12 Kec. Bojonggede Kab. Bojonggede', '[email protected]', 'document.pdf', '081111111111', 7, 'Chrysanthemum.jpg', 0, 1, '-', 2, 0, 0), (608, '0000053', '0000000000', '0000000000000000', 'Ajis Kurnia', 'L', 'Bogor', '2001-04-22', 1, 'WNI', 'Kp Nanggela 003/007 Sukmajaya Tajurhalang', '[email protected]', '01_Soal_Bhs._Indonesia_Kls_7_.pdf', '0811111111', 7, '81c333fd1c519d337a4bd2e71ad033ba.jpg', 0, 5, '-', 2, 0, 0), (609, '0000052', '0000000000', '0000000000000000', 'Hilal Ramadhan', 'L', 'Jakarta', '2004-10-23', 1, 'WNI', 'Jl. manggarai Utara 2 012/004 Manggarai Tebet ', '[email protected]', '01_Soal_Bhs._Indonesia_Kls_7_.pdf', '0811111111', 7, '81c333fd1c519d337a4bd2e71ad033ba.jpg', 0, 3, '-', 2, 0, 0), (610, '0000012', '0000000000', '0000000000000000', 'Sahroni', 'L', 'Bogor', '1997-10-22', 1, 'WNI', 'Kp Nanggela 002/004 Sukmajaya Tajurhalang ', '[email protected]', '01_Soal_Bhs._Indonesia_Kls_7_.pdf', '0811111111', 11, '81c333fd1c519d337a4bd2e71ad033ba.jpg', 0, 1, 'SMP Tunas Harapan', 2, 0, 0), (611, '2020745', '0121419541', '0000000000000000', 'Alexy Melvina Sharon Kurniawan', 'P', 'Jayapura', '2012-04-09', 2, 'WNI', 'Jayapura', '[email protected]', 'Alexy_Melvina.pdf', '082238517175', 1, 'Koala.jpg', 0, 1, 'Tidak Ada', 1, 0, 0), (612, '2020733', '3124159729', '0000000000000000', 'Andrew Christian Prabowo', 'L', 'Tangerang', '2011-01-04', 2, 'WNI', 'Jalan Porto 2 Nomor 1 Gading Serpong Sektor 8A', '[email protected]', 'Andrew_Prabowo.pdf', '087877047795', 1, 'Desert.jpg', 0, 2, 'TIdak Ada', 1, 0, 0), (613, '2020791', '1234', '0000000000000000', 'Adine Jani Kartika', 'P', 'Kota Batam ', '2012-11-16', 1, 'WNI', 'Binong 1 Residence Blok H 05\nTangerang Tangerang 15810', '[email protected]', 'Adine_Jani.pdf', '081287277590', 1, 'Adine_Jani.jpeg', 0, 3, 'SD Plus Islamic Village', 1, 0, 0), (614, '2019554', '2121449533', '0000000000000000', 'Valdis Ibrahim Ardhinov Putra', 'L', 'Jakarta ', '2012-10-28', 1, 'WNI', ' Perumahan Serpong Garden Cluster Green River Blok D5 No. 14\nKabupaten Tangerang Banten 15344', '[email protected]', 'valdis_2.pdf', '085694319731', 1, 'Valdis.jpeg', 0, 2, 'Sekolah Anak Panah', 1, 0, 0), (615, '2019540', '2138795738', '0000000000000000', 'Dennis Setiawan', 'L', 'Jakarta ', '2013-05-05', 3, 'WNI', 'Kemanggisan komplek DPR RI no.34 rt.03 rw.13\nJakarta Jakarta Barat 11480\nIndonesia', '[email protected]', 'denis_setiawan.pdf', '[email protected]', 1, 'Dennis_Setiawan.jpeg', 0, 2, 'TK Mitra Penabur', 1, 0, 0), (616, '2019543', '0134018697', '0000000000000000', 'Haskell Benedict Oentoro', 'L', 'Tangerang', '2013-08-10', 2, 'WNI', 'Jl. Kelapa Puan XIII blok AF6/ 18 sektor 1 A Gading Serpong Tangerang 15810', '[email protected]', 'Hazkel.pdf', '081297970085', 1, 'Haskel.jpeg', 0, 2, 'TKK Penabur', 1, 0, 0), (617, '2020731', '2133199525', '0000000000000000', 'Joseph Alvin Benyamin', 'L', 'Tangerang', '2013-10-03', 2, 'WNI', 'Botania Lake Residence Blok C No. 1 Sawangan Depok\nDepok Depok 1651', '[email protected]', 'Joseph_.pdf', '085776584478', 1, 'Joseph_Alvin.jpeg', 0, 4, 'Sekolah Anak Panah', 1, 0, 0), (618, '2019552', '2125949897', '0000000000000000', 'Rr Radya Aaliyah Salwanabila', 'P', 'Bogor', '2012-04-17', 1, 'WNI', 'Mutiara Sentul blok Q no 6 jl alternatif sentul baru 88 Nanggewer Cibinong Kab Bogor', '[email protected]', 'raden_roro_radya.pdf', '087888444341', 1, 'RR_Radya.jpeg', 0, 3, 'Sekolah Anak Panah', 1, 0, 0), (619, '2020742', '0121470526', '0000000000000000', 'Tamera Alana Nagara ', 'P', 'Bekasi ', '2012-09-06', 1, 'WNI', 'Allura 2 Residence No.9c Jl.Caman Raya Utara 2, Jakasampurna, Bekasi Barat\nBekasi Jawa Barat 17145', '[email protected]', 'tamera.pdf', '081586800688', 2, 'Tamera.jpeg', 0, 2, 'Global Prestasi School', 1, 0, 0), (620, '2020793', '000000000000', '0000000000000000', 'Al Muqmin Ziqrullah', 'L', 'Jakarta', '2001-01-21', 1, 'WNI', 'Meruya Utara No 13 RT/RW 004/011 Kembangan Jakarta Barat', '[email protected]', 'al_muqmin_ziqurullah.pdf', '08123456789', 11, 'Untitled.jpg', 0, 1, 'SMP Negeri 4 Pasarkemis', 5, 0, 0), (621, '2020794', '000000000000', '0000000000000000', 'Aditya Ramadhan', 'L', 'Bekasi', '2003-11-14', 1, 'WNI', 'Villa Mutiara Cikarang 2 Blok N 1 No 15 RT/RW 001/008 Suka Sejati Cikarang Selatan', '[email protected]', 'aditya_ramadhhan(1).pdf', '08123456789', 11, 'Untitled.jpg', 0, 1, '-', 5, 0, 0), (622, '2020736', '0084931005', '0000000000000000', 'Tristan Zachely Famador', 'L', 'Jakarta', '2008-12-17', 1, 'WNI', 'Jl. Pondok Surya Blok D No.1 Karang tengah-Tangerang', '[email protected]', 'tristan_zachel.pdf', '08118072828', 3, 'Tristan_Zack.jpeg', 0, 1, 'Sekolah Mutiara Harapan International School', 1, 0, 0), (623, '2019601', '0069087759', '0000000000000000', 'Michael Praditya Sutanto', 'L', 'Jakarta', '2006-08-23', 3, 'WNI', 'Jl. Duri Kencana Raya', '[email protected]', 'michael.pdf', '0', 7, 'WhatsApp_Image_2020-04-22_at_14.52_.48_.jpeg', 0, 2, 'Anak Panah', 1, 0, 0), (624, '2020790', '12345', '0000000000000000', 'Boonsak adrian satrianto', 'L', 'Kota Batam', '2009-11-03', 1, 'WNI', 'Binong 1 Residence Blok H 05\nTangerang Tangerang 15810', '[email protected]', 'boonsak.pdf', '081287277590', 3, 'BOONSAK.jpeg', 0, 2, 'SDN BINONG II', 1, 0, 0), (625, '2018345', '0093351471', '0000000000000000', 'Edeline Daxilia Pramono', 'P', 'PALU', '2009-04-09', 2, 'WNI', 'Teluk Gong jl.Lele Blok H3 No.1\nJakarta Utara Pejagalan 14450\nIndonesia', '[email protected]', 'Edeline_Daxilia.pdf', '082298285856', 5, 'Edeline.jpeg', 0, 2, 'SD Stella Maris', 1, 0, 0), (626, '2017158', '0049722633', '0000000000000000', 'Christianus janoko', 'L', 'Jakarta ', '2004-11-29', 3, 'WNI', 'Jl. Pane no.37 Cihideung Gambir Jakarta Pusat', '[email protected]', 'Christianus_Janoko_compressed.pdf', '08111774527', 5, 'Christianus_Janoko.jpeg', 0, 3, 'SD TARSISIUS 1', 1, 0, 0), (627, '2018315', '2094539607', '0000000000000000', 'Elleasha Jovanca Patricia maloring', 'P', 'Manado ', '2009-12-02', 2, 'WNI', 'kompleks Fiordini gading serpong kec.curug ', '[email protected]', 'Elleasha.pdf', '0896-3031-9831', 5, 'index.jpg', 0, 3, 'Sekolah Anak Panah', 1, 0, 0), (628, '2020741', '3102766355', '0000000000000000', 'Yasyavardi Prabu Nagara', 'L', 'Bekasi', '2010-02-02', 1, 'WNI', 'Allura 2 Residence No.9c Jl.Caman Raya Utara 2, Jakasampurna, Bekasi Barat\nBekasi Jawa Barat 17145', '[email protected]', 'Yasyavardi_Prabu.pdf', '081586800688', 5, 'YAsyavardi.jpeg', 0, 1, ' Global Prestasi School Bekasi', 1, 0, 0), (629, '2018457', '0103159981', '0000000000000000', 'Adriel Mark Steven Yantoro', 'L', 'Jakarta', '2010-04-20', 2, 'WNI', 'Jl AR HAKIM NO 69 Tegal Jawa Tengah 52123', '[email protected]', 'Adriel_mark_k4.pdf', '081902501623', 4, 'Untitled.jpg', 0, 1, 'Anak Panah', 1, 0, 0), (630, '2018365', '2066484492', '0000000000000000', 'Muhammad Zulfan Djiaulhaq Mukti', 'L', 'Bogor', '2006-12-09', 1, 'WNI', 'Kampung Pemagarsari RT 1 RW 1 Parung ', '[email protected]', 'muhammad_zulfan_compressed.pdf', '0', 8, 'Untitled.jpg', 0, 2, 'SD Negeri Parung 3', 5, 0, 0), (631, '2020795', '2020205', '0000000000000000', 'Valencia Samatha Indrawan', 'P', 'Jakarta', '2007-11-07', 5, 'WNI', 'Teluk Gong Timur Nomor 50 RT 04 RW 09 Pejagalan Jakarta Utara', '[email protected]', 'Valencia_Samatha_Indrawan.pdf', '082136080808', 7, 'WhatsApp_Image_2020-04-30_at_15.15_.35_.jpeg', 0, 2, '-', 1, 0, 0), (632, '2018344', '2088930446', '0000000000000000', 'Zidane Khalid Wibowo', 'L', 'Jakarta', '2008-12-02', 1, 'WNI', 'Rajawali Timur IX No 15 RT 05 Rw 08 Pancoran Jakarta Selatan', '[email protected]', 'Daftar_Siswa_Th_Ajaran_2019.2020_._.pdf', '0', 5, 'Untitled.jpg', 0, 2, '-', 1, 0, 0), (633, '2019602', '0076311754', '0000000000000000', 'Michelle Gabrielle Otniella Berhitoe', 'P', 'Jakarta', '2007-04-01', 2, 'WNI', 'Jl. Pulo Mas Utara No 2 RT 03 Rw 13 Kayu Putih, Pulo Gadung, Jakarta Timur', '[email protected]', 'Daftar_Siswa_Th_Ajaran_2019.2020_._.pdf', '0', 7, 'Untitled.jpg', 0, 1, 'Anak Panah', 1, 0, 0), (634, '2020740', '0071058641', '0000000000000000', 'Naomi Patricia Adi Nugraha', 'P', 'Jakarta', '2007-05-14', 2, 'WNI', 'Jl. Hang Jebat III RT 04 RW 08 Gunung Kebayoran Baru Jakarta Selatan', '[email protected]', 'Daftar_Siswa_Th_Ajaran_2019.2020_._.pdf', '0', 7, 'Untitled.jpg', 0, 2, 'SD Negeri Durenseribu 04', 1, 0, 0), (635, '2017190', '0059266754', '0000000000000000', 'Ancella Jovfelly Wijaya', 'P', 'Jakarta', '2005-07-05', 2, 'WNI', 'Daan Mogot Baru Blok LB No 22 RT/RW 001/017, Kalideres, Jakarta Barat', '[email protected]', 'Daftar_Siswa_Th_Ajaran_2019.2020_._.pdf', '0', 7, 'Untitled.jpg', 0, 1, 'IPEKA', 1, 0, 0), (636, '2017208', '0042995719', '0000000000000000', 'Maria Audrey Helena', 'P', 'Jakarta', '2004-06-14', 3, 'WNI', 'Jl. Gading X Blok Z No 914 RT/RW 14/10 Pondok Bambu Duren Sawit Jakarta Timur', '[email protected]', 'Daftar_Siswa_Th_Ajaran_2019.2020_._.pdf', '0', 7, 'Untitled.jpg', 0, 2, 'SD Santa Ursula BSD', 1, 0, 0), (637, '2019553', '0133041451', '0000000000000000', 'Sharleen Jemima Hoo', 'P', 'Tangerang Selatan', '2013-06-03', 2, 'WNI', 'Jl.Flourite Timur No 02 RT/RW 001/019 Pakulonan Barat Kelapa Dua Tangerang', '[email protected]', 'Daftar_Siswa_Th_Ajaran_2019.2020_._.pdf', '0', 1, 'Untitled.jpg', 0, 3, '-', 1, 0, 0), (638, '2019634', '2076527828', '0000000000000000', 'Wesley Jericho Nugroho Hoo', 'L', 'Semarang', '2007-08-02', 2, 'WNI', 'Jl.Flourite Timur No 02 RT/RW 001/019 Pakulonan Barat Kelapa Dua Tangerang', '[email protected]', 'Daftar_Siswa_Th_Ajaran_2019.2020_._.pdf', '0', 7, 'Untitled.jpg', 0, 2, '-', 1, 0, 0), (639, '2018370', '2066154812', '0000000000000000', 'Muhammad Farraz Al Hanif', 'L', 'Jakarta', '2006-03-10', 1, 'WNI', 'jl Damai No 26 RT/RW 003/002 Kunciran Pinang Kota Tangerang', '[email protected]', 'Daftar_Siswa_Th_Ajaran_2019.2020_._.pdf', '0', 8, 'Untitled.jpg', 0, 1, 'SD Islam Baitturachman', 1, 0, 0), (640, '2017184', '0048517448', '0000000000000000', 'Abil Daffansyah', 'L', 'Jakarta', '2004-08-29', 1, 'WNI', 'Kedoya Selatan RT/RW 013/001 Kebon Jeruk Jakarta Barat', '[email protected]', 'Daftar_Siswa_Th_Ajaran_2019.2020_._.pdf', '0', 8, 'Untitled.jpg', 0, 1, 'SDN Pondok Kacang Barat 04', 1, 0, 0), (641, '2018382', '0051210355', '0000000000000000', 'Tara Kaifa Hayyunisa', 'P', 'Sleman', '2005-06-01', 1, 'WNI', 'Bausasran DN 3/950 RT/RW 047/012 Danurejan Kota Yogyakarta', '[email protected]', 'Daftar_Siswa_Th_Ajaran_2019.2020_._.pdf', '0', 8, 'Untitled.jpg', 0, 1, '-', 1, 0, 0), (642, '2019721', '0022144239', '0000000000000000', 'Stefanus Alfares', 'L', 'Jakarta', '2002-09-21', 3, 'WNI', 'Jl.Kramat Raya No 134 RT/RW 001/009 Kenari Senen Jakarta Pusat', '[email protected]', 'Daftar_Siswa_Th_Ajaran_2019.2020_._.pdf', '0', 11, 'Untitled.jpg', 0, 4, 'Anak Panah', 1, 0, 0), (643, '2018452', '0022435988', '0000000000000000', 'Valen Basel', 'P', 'Bandung', '2002-09-11', 2, 'WNI', '-', '[email protected]', 'Daftar_Siswa_Th_Ajaran_2019.2020_._.pdf', '0', 13, 'Untitled.jpg', 0, 1, 'SMP Mardi Waluya 2', 1, 0, 0); -- -------------------------------------------------------- -- -- Table structure for table `tbl_soal` -- CREATE TABLE `tbl_soal` ( `soal_id` bigint(20) NOT NULL, `soal_modul_id` bigint(20) NOT NULL, `soal_detail` text CHARACTER SET utf8 DEFAULT NULL, `soal_tipe` smallint(4) NOT NULL COMMENT '1=pilgan,2=truefalse,3=esay,4=jawabansingkat, 5=mencocokan jawaban', `soal_pg` text CHARACTER SET utf8 DEFAULT NULL COMMENT 'untuk pilgan', `soal_kunci` text CHARACTER SET utf8 DEFAULT NULL COMMENT 'jawaban untuk true false,pilgan, dan mencocokan jawaban', `soal_lampiran` text CHARACTER SET utf8 COLLATE utf8_unicode_ci DEFAULT NULL COMMENT 'gambar, audio,video' ) ENGINE=InnoDB DEFAULT CHARSET=latin1; -- -- Dumping data for table `tbl_soal` -- INSERT INTO `tbl_soal` (`soal_id`, `soal_modul_id`, `soal_detail`, `soal_tipe`, `soal_pg`, `soal_kunci`, `soal_lampiran`) VALUES (1, 1, 'Apakah kepanjangan dari SMK ? tipe PG', 1, 'a:4:{i:0;a:2:{s:13:\"kunci_jawaban\";s:1:\"a\";s:7:\"jawaban\";s:21:\"Sekolah Menengah Ata1\";}i:1;a:2:{s:13:\"kunci_jawaban\";s:1:\"b\";s:7:\"jawaban\";s:22:\"Sekolah Menengah Bawa1\";}i:2;a:2:{s:13:\"kunci_jawaban\";s:1:\"c\";s:7:\"jawaban\";s:21:\"Sekolah Menengah Kir1\";}i:3;a:2:{s:13:\"kunci_jawaban\";s:1:\"d\";s:7:\"jawaban\";s:22:\"Sekolah Menengah Kana1\";}}', 'a', 'a:2:{s:4:\"tipe\";s:5:\"video\";s:4:\"link\";s:82:\"https://drive.google.com/file/d/1HJmcAcmVdiDp5WVx-XNroB5Fy82oTBrS/view?usp=sharing\";}'), (2, 1, 'Apakah kepanjangan dari SMA ? tipe esay', 3, NULL, NULL, 'a:2:{s:4:\"tipe\";s:6:\"gambar\";s:4:\"link\";s:82:\"https://drive.google.com/file/d/1-uOP0BEMy5exY44tNoeIEEcN2rv0gO2Y/view?usp=sharing\";}'), (3, 1, 'jawabannya true tipe true false', 2, NULL, 'true', NULL), (4, 1, '3x4 jawaban singkat', 4, NULL, '12', NULL), (5, 1, 'Jelaskan apa yang dimaksud dengan Jomblo ?', 3, NULL, NULL, NULL), (6, 1, 'Cocokan jawaban type 5', 5, NULL, 'a:5:{i:0;a:2:{s:3:\"row\";s:5:\"apple\";s:6:\"column\";s:5:\"fruit\";}i:1;a:2:{s:3:\"row\";s:5:\"truck\";s:6:\"column\";s:7:\"vehicle\";}i:2;a:2:{s:3:\"row\";s:8:\"computer\";s:6:\"column\";s:4:\"tech\";}i:3;a:2:{s:3:\"row\";s:7:\"teacher\";s:6:\"column\";s:6:\"helper\";}i:4;a:2:{s:3:\"row\";s:4:\"cake\";s:6:\"column\";s:6:\"desert\";}}', NULL); -- -- Indexes for dumped tables -- -- -- Indexes for table `tbl_agama` -- ALTER TABLE `tbl_agama` ADD PRIMARY KEY (`agama_id`); -- -- Indexes for table `tbl_log_soal` -- ALTER TABLE `tbl_log_soal` ADD PRIMARY KEY (`id_log`); -- -- Indexes for table `tbl_mapel` -- ALTER TABLE `tbl_mapel` ADD PRIMARY KEY (`kd_mapel`); -- -- Indexes for table `tbl_modul` -- ALTER TABLE `tbl_modul` ADD PRIMARY KEY (`id_modul`); -- -- Indexes for table `tbl_pelajaran` -- ALTER TABLE `tbl_pelajaran` ADD PRIMARY KEY (`id_pelajaran`); -- -- Indexes for table `tbl_pengajar` -- ALTER TABLE `tbl_pengajar` ADD PRIMARY KEY (`id_pengajar`); -- -- Indexes for table `tbl_pengguna` -- ALTER TABLE `tbl_pengguna` ADD PRIMARY KEY (`pengguna_id`); -- -- Indexes for table `tbl_siswa` -- ALTER TABLE `tbl_siswa` ADD PRIMARY KEY (`siswa_id`), ADD UNIQUE KEY `siswa_nis` (`siswa_nis`); -- -- Indexes for table `tbl_soal` -- ALTER TABLE `tbl_soal` ADD PRIMARY KEY (`soal_id`); -- -- AUTO_INCREMENT for dumped tables -- -- -- AUTO_INCREMENT for table `tbl_agama` -- ALTER TABLE `tbl_agama` MODIFY `agama_id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=7; -- -- AUTO_INCREMENT for table `tbl_log_soal` -- ALTER TABLE `tbl_log_soal` MODIFY `id_log` bigint(25) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=5; -- -- AUTO_INCREMENT for table `tbl_mapel` -- ALTER TABLE `tbl_mapel` MODIFY `kd_mapel` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=18; -- -- AUTO_INCREMENT for table `tbl_modul` -- ALTER TABLE `tbl_modul` MODIFY `id_modul` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=5; -- -- AUTO_INCREMENT for table `tbl_pelajaran` -- ALTER TABLE `tbl_pelajaran` MODIFY `id_pelajaran` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=210; -- -- AUTO_INCREMENT for table `tbl_pengajar` -- ALTER TABLE `tbl_pengajar` MODIFY `id_pengajar` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=3; -- -- AUTO_INCREMENT for table `tbl_pengguna` -- ALTER TABLE `tbl_pengguna` MODIFY `pengguna_id` int(255) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=684; -- -- AUTO_INCREMENT for table `tbl_siswa` -- ALTER TABLE `tbl_siswa` MODIFY `siswa_id` int(50) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=644; -- -- AUTO_INCREMENT for table `tbl_soal` -- ALTER TABLE `tbl_soal` MODIFY `soal_id` bigint(20) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=7; COMMIT; /*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */; /*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */; /*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
166.814238
1,784
0.669678
aebc7748d8562dada325d89022ccbf0a413f122f
1,149
cs
C#
src/NuGetGallery/ViewModels/AccountViewModel.cs
augustoproiete-forks/NuGet--NuGetGallery
f248171208356b66499810ddd502276784157422
[ "Apache-2.0" ]
1,022
2015-01-08T13:54:07.000Z
2022-03-26T01:37:07.000Z
src/NuGetGallery/ViewModels/AccountViewModel.cs
augustoproiete-forks/NuGet--NuGetGallery
f248171208356b66499810ddd502276784157422
[ "Apache-2.0" ]
5,617
2015-01-08T08:11:13.000Z
2022-03-30T22:33:52.000Z
src/NuGetGallery/ViewModels/AccountViewModel.cs
augustoproiete-forks/NuGet--NuGetGallery
f248171208356b66499810ddd502276784157422
[ "Apache-2.0" ]
614
2015-01-05T09:55:15.000Z
2022-03-18T13:11:39.000Z
// Copyright (c) .NET Foundation. All rights reserved. // Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using NuGet.Services.Entities; namespace NuGetGallery { public abstract class AccountViewModel<T> : AccountViewModel where T : User { public T Account { get; set; } public bool IsCertificatesUIEnabled { get; set; } public override User User => Account; } public abstract class AccountViewModel { public virtual User User { get; } public bool IsOrganization => User is Organization; public string AccountName { get; set; } public bool CanManage { get; set; } public bool WasMultiFactorAuthenticated { get; set; } public ChangeEmailViewModel ChangeEmail { get; set; } public ChangeNotificationsViewModel ChangeNotifications { get; set; } public bool HasPassword { get; set; } public string CurrentEmailAddress { get; set; } public bool HasUnconfirmedEmailAddress { get; set; } public bool HasConfirmedEmailAddress { get; set; } } }
27.357143
111
0.671018
17ce074b8485fab16028900da1b0861734b953c2
198,732
lua
Lua
Rigormortis.lua
xVoid-xyz/Roblox-Scripts
7eb176fa654f2ea5fbc6bcccced1b15df7ed82c2
[ "BSD-3-Clause" ]
70
2021-02-09T17:21:32.000Z
2022-03-28T12:41:42.000Z
Rigormortis.lua
xVoid-xyz/Roblox-Scripts
7eb176fa654f2ea5fbc6bcccced1b15df7ed82c2
[ "BSD-3-Clause" ]
4
2021-08-19T22:05:58.000Z
2022-03-19T18:58:01.000Z
Rigormortis.lua
xVoid-xyz/Roblox-Scripts
7eb176fa654f2ea5fbc6bcccced1b15df7ed82c2
[ "BSD-3-Clause" ]
325
2021-02-26T22:23:41.000Z
2022-03-31T19:36:12.000Z
--Stolen and fixed by chromium ty fang for fixing anims Player = game.Players.LocalPlayer Character = Player.Character PlayerGui = Player.PlayerGui Backpack = Player.Backpack Torso = Character.Torso Head = Character.Head Humanoid = Character.Humanoid LeftArm = Character["Left Arm"] LeftLeg = Character["Left Leg"] RightArm = Character["Right Arm"] RightLeg = Character["Right Leg"] LS = Torso["Left Shoulder"] LH = Torso["Left Hip"] RS = Torso["Right Shoulder"] RH = Torso["Right Hip"] Face = Head.face Neck = Torso.Neck it = Instance.new attacktype = 1 vt = Vector3.new cf = CFrame.new euler = CFrame.fromEulerAnglesXYZ angles = CFrame.Angles cloaked = false necko = cf(0, 1, 0, -1, 0, 0, 0, 0, 1, 0, 1, 0) necko2 = cf(0, -0.5, 0, -1, 0, 0, 0, 0, 1, 0, 1, 0) LHC0 = cf(-1, -1, 0, 0, 0, -1, 0, 1, 0, 1, 0, 0) LHC1 = cf(-0.5, 1, 0, 0, 0, -1, 0, 1, 0, 1, 0, 0) RHC0 = cf(1, -1, 0, 0, 0, 1, 0, 1, 0, -1, 0, 0) RHC1 = cf(0.5, 1, 0, 0, 0, 1, 0, 1, 0, -1, 0, 0) RootPart = Character.HumanoidRootPart RootJoint = RootPart.RootJoint RootCF = euler(-1.57, 0, 3.14) attack = false attackdebounce = false deb = false equipped = true hand = false MMouse = nil combo = 0 mana = 0 trispeed = 0.2 attackmode = "none" local idle = 0 local Anim = "Idle" local gun = false local shoot = false player = nil mana = 0 mouse = Player:GetMouse() RSH = nil RW = Instance.new("Weld") LW = Instance.new("Weld") RH = Torso["Right Hip"] LH = Torso["Left Hip"] RSH = Torso["Right Shoulder"] LSH = Torso["Left Shoulder"] TorsoColor = Torso.BrickColor Colorpart1 = Torso.BrickColor.r Colorpart2 = Torso.BrickColor.g Colorpart3 = Torso.BrickColor.b NoOutline = function(Part) Part.TopSurface = 10 end player = Player ch = Character RSH = ch.Torso["Right Shoulder"] LSH = ch.Torso["Left Shoulder"] RSH.Parent = nil LSH.Parent = nil RW.Name = "Right Shoulder" RW.Part0 = ch.Torso RW.C0 = cf(1.5, 0.5, 0) RW.C1 = cf(0, 0.5, 0) RW.Part1 = ch["Right Arm"] RW.Parent = ch.Torso LW.Name = "Left Shoulder" LW.Part0 = ch.Torso LW.C0 = cf(-1.5, 0.5, 0) LW.C1 = cf(0, 0.5, 0) LW.Part1 = ch["Left Arm"] LW.Parent = ch.Torso Player = game:GetService("Players").LocalPlayer Character = Player.Character Mouse = Player:GetMouse() local weldBetween = function(a, b) local weldd = Instance.new("ManualWeld") weldd.Part0 = a weldd.Part1 = b weldd.C0 = CFrame.new() weldd.C1 = b.CFrame:inverse() * a.CFrame weldd.Parent = a return weldd end fat = Instance.new("BindableEvent", script) fat.Name = "Heartbeat" script:WaitForChild("Heartbeat") frame = 0.033333333333333 tf = 0 allowframeloss = false tossremainder = false lastframe = tick() script.Heartbeat:Fire() game:GetService("RunService").Heartbeat:connect(function(s, p) tf = tf + s if frame <= tf then if allowframeloss then script.Heartbeat:Fire() lastframe = tick() else for i = 1, math.floor(tf / frame) do script.Heartbeat:Fire() end lastframe = tick() end if tossremainder then tf = 0 else tf = tf - frame * math.floor(tf / frame) end end end ) nooutline = function(part) part.TopSurface = 10 end part = function(formfactor, parent, material, reflectance, transparency, brickcolor, name, size) local fp = it("Part") fp.formFactor = formfactor fp.Parent = parent fp.Reflectance = reflectance fp.Transparency = transparency fp.CanCollide = false fp.Locked = true fp.BrickColor = BrickColor.new(tostring(brickcolor)) fp.Name = name fp.Size = size fp.Position = Character.Torso.Position nooutline(fp) fp.Material = material fp:BreakJoints() return fp end mesh = function(Mesh, part, meshtype, meshid, offset, scale) local mesh = it(Mesh) mesh.Parent = part if Mesh == "SpecialMesh" then mesh.MeshType = meshtype mesh.MeshId = meshid end mesh.Offset = offset mesh.Scale = scale return mesh end weld = function(parent, part0, part1, c0, c1) local weld = it("Weld") weld.Parent = parent weld.Part0 = part0 weld.Part1 = part1 weld.C0 = c0 weld.C1 = c1 return weld end local m = Instance.new("Model", RightArm) m.Name = "Rigormortis\' Right Glove" GloveHandle = part(Enum.FormFactor.Custom, m, Enum.Material.Metal, 0.25, 0, TorsoColor, "Handle", Vector3.new(0.200000003, 0.200000003, 0.200000003)) GloveHandleweld = weld(m, Character["Right Arm"], GloveHandle, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(1.1920929e-005, 0.000109910965, 0.00443553925, 1, 0, 0, 0, 0.999999881, 0, 0, 0, 1)) mesh("SpecialMesh", GloveHandle, Enum.MeshType.Brick, "", Vector3.new(0, 0, 0), Vector3.new(5.5, 5.25, 5.5)) Part = part(Enum.FormFactor.Custom, m, Enum.Material.Neon, 0.25, 0, "Br. yellowish orange", "Part", Vector3.new(0.200000003, 0.200000003, 0.200000003)) Partweld = weld(m, GloveHandle, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(0, 0.620000124, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)) mesh("SpecialMesh", Part, Enum.MeshType.Brick, "", Vector3.new(0, 0, 0), Vector3.new(5.5, 1, 5.5)) Part = part(Enum.FormFactor.Custom, m, Enum.Material.Metal, 0.25, 0, TorsoColor, "Part", Vector3.new(0.200000003, 0.200000003, 0.200000003)) Partweld = weld(m, GloveHandle, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(0, 0.869999886, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)) mesh("SpecialMesh", Part, Enum.MeshType.Brick, "", Vector3.new(0, 0, 0), Vector3.new(5.5, 1.5, 5.5)) Part = part(Enum.FormFactor.Custom, m, Enum.Material.Metal, 0.25, 0, "Bright orange", "Part", Vector3.new(0.200000003, 0.200000003, 0.200000003)) Partweld = weld(m, GloveHandle, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(-0.549999952, 0.0184423923, 0.00541090965, 1, 0, 0, 0, 0.258819193, -0.965925813, 0, 0.965925813, 0.258819193)) mesh("SpecialMesh", Part, Enum.MeshType.FileMesh, "http://www.roblox.com/asset/?id=9756362", Vector3.new(0, 0, 0), Vector3.new(0.25, 1, 0.25)) Part = part(Enum.FormFactor.Custom, m, Enum.Material.Neon, 0.25, 0, "Br. yellowish orange", "Part", Vector3.new(0.200000003, 0.200000003, 0.200000003)) Partweld = weld(m, GloveHandle, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(0.00707101822, 0.00707101822, 0.465586424, 0.707106769, 0.707106769, 0, -0.707106769, 0.707106769, 0, 0, 0, 1)) mesh("SpecialMesh", Part, Enum.MeshType.Brick, "", Vector3.new(0, 0, 0), Vector3.new(1, 5, 1)) Part = part(Enum.FormFactor.Custom, m, Enum.Material.Neon, 0.25, 0, "Br. yellowish orange", "Part", Vector3.new(0.200000003, 0.200000003, 0.200000003)) Partweld = weld(m, GloveHandle, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(0.00999999046, 0, 0.465586424, 0, 0.99999994, 0, -0.99999994, 0, 0, 0, 0, 1)) mesh("SpecialMesh", Part, Enum.MeshType.Brick, "", Vector3.new(0, 0, 0), Vector3.new(1, 5, 1)) GloveEyePart = part(Enum.FormFactor.Custom, m, Enum.Material.Neon, 0.25, 0, "Really red", "GloveEyePart", Vector3.new(0.200000003, 0.200000003, 0.200000003)) GloveEyePartweld = weld(m, GloveHandle, GloveEyePart, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(0, 1.00999999, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)) GloveEyePartmesh = mesh("SpecialMesh", GloveEyePart, Enum.MeshType.Sphere, "", Vector3.new(0, 0, 0), Vector3.new(0.5, 0.5, 4)) Part = part(Enum.FormFactor.Custom, m, Enum.Material.Metal, 0.25, 0, "Bright orange", "Part", Vector3.new(0.200000003, 0.200000003, 0.200000003)) Partweld = weld(m, GloveHandle, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(-0.549999952, 0.0192146301, 0.000453591347, 1, 0, 0, 0, 0.50000006, -0.866025388, 0, 0.866025388, 0.50000006)) mesh("SpecialMesh", Part, Enum.MeshType.FileMesh, "http://www.roblox.com/asset/?id=9756362", Vector3.new(0, 0, 0), Vector3.new(0.25, 1, 0.25)) Part = part(Enum.FormFactor.Custom, m, Enum.Material.Neon, 0.25, 0, "Br. yellowish orange", "Part", Vector3.new(0.200000003, 0.200000003, 0.200000003)) Partweld = weld(m, GloveHandle, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(0, 0.00999999046, 0.465586424, 1, 0, 0, 0, 1, 0, 0, 0, 1)) mesh("SpecialMesh", Part, Enum.MeshType.Brick, "", Vector3.new(0, 0, 0), Vector3.new(1, 5, 1)) Part = part(Enum.FormFactor.Custom, m, Enum.Material.Metal, 0.25, 0, "Bright orange", "Part", Vector3.new(0.200000003, 0.200000003, 0.200000003)) Partweld = weld(m, GloveHandle, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(0.549413562, 0.00707125664, 0.00707101822, 1.3767874e-007, -6.21808951e-008, -1, -0.70710659, 0.707106948, -1.4132209e-007, 0.707106948, 0.70710659, 5.33850653e-008)) mesh("SpecialMesh", Part, Enum.MeshType.FileMesh, "http://www.roblox.com/asset/?id=9756362", Vector3.new(0, 0, 0), Vector3.new(0.25, 1, 0.25)) Part = part(Enum.FormFactor.Custom, m, Enum.Material.Metal, 0.25, 0, "Bright orange", "Part", Vector3.new(0.200000003, 0.200000003, 0.200000003)) Partweld = weld(m, GloveHandle, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(-0.549999952, 0.0186772346, -0.004535079, 1, 0, 0, 0, 0.707106829, -0.707106709, 0, 0.707106709, 0.707106829)) mesh("SpecialMesh", Part, Enum.MeshType.FileMesh, "http://www.roblox.com/asset/?id=9756362", Vector3.new(0, 0, 0), Vector3.new(0.25, 1, 0.25)) Part = part(Enum.FormFactor.Custom, m, Enum.Material.Metal, 0.25, 0, "Bright orange", "Part", Vector3.new(0.200000003, 0.200000003, 0.200000003)) Partweld = weld(m, GloveHandle, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(0.549413681, 0.00999999046, 0, -4.37113883e-008, -9.70964606e-008, -1, 0, 1, -9.70964606e-008, 1, -4.24422121e-015, -4.37113883e-008)) mesh("SpecialMesh", Part, Enum.MeshType.FileMesh, "http://www.roblox.com/asset/?id=9756362", Vector3.new(0, 0, 0), Vector3.new(0.25, 0.75, 0.25)) Part = part(Enum.FormFactor.Custom, m, Enum.Material.Metal, 0.25, 0, "Bright orange", "Part", Vector3.new(0.200000003, 0.200000003, 0.200000003)) Partweld = weld(m, GloveHandle, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(-0.549999952, 0.00921452045, 0.0168669224, 1, 0, 0, 0, -0.499999851, -0.866025507, 0, 0.866025507, -0.499999851)) mesh("SpecialMesh", Part, Enum.MeshType.FileMesh, "http://www.roblox.com/asset/?id=9756362", Vector3.new(0, 0, 0), Vector3.new(0.25, 1, 0.25)) Part = part(Enum.FormFactor.Custom, m, Enum.Material.Metal, 0.25, 0, "Bright orange", "Part", Vector3.new(0.200000003, 0.200000003, 0.200000003)) Partweld = weld(m, GloveHandle, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(-0.549999952, 0.0132659674, 0.0139074326, 1, 0, 0, 0, -0.258818924, -0.965925872, 0, 0.965925872, -0.258818924)) mesh("SpecialMesh", Part, Enum.MeshType.FileMesh, "http://www.roblox.com/asset/?id=9756362", Vector3.new(0, 0, 0), Vector3.new(0.25, 1, 0.25)) Part = part(Enum.FormFactor.Custom, m, Enum.Material.Metal, 0.25, 0, "Bright orange", "Part", Vector3.new(0.200000003, 0.200000003, 0.200000003)) Partweld = weld(m, GloveHandle, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(-0.549999952, 0.0168671608, -0.00921428204, 1, 0, 0, 0, 0.866025448, -0.499999911, 0, 0.499999911, 0.866025448)) mesh("SpecialMesh", Part, Enum.MeshType.FileMesh, "http://www.roblox.com/asset/?id=9756362", Vector3.new(0, 0, 0), Vector3.new(0.25, 1, 0.25)) LaserReferencePart = part(Enum.FormFactor.Custom, m, Enum.Material.Metal, 0.25, 0, "Really black", "LaserReferencePart", Vector3.new(0.200000003, 0.200000003, 0.200000003)) LaserReferencePartweld = weld(m, GloveHandle, LaserReferencePart, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(0.980000019, 0, 0, -4.37113883e-008, 1, 0, -1, -4.37113883e-008, 0, 0, 0, 1)) mesh("SpecialMesh", LaserReferencePart, Enum.MeshType.Cylinder, "", Vector3.new(0, 0, 0), Vector3.new(0.5, 4, 4)) Part = part(Enum.FormFactor.Custom, m, Enum.Material.Metal, 0.25, 0, "Dark stone grey", "Part", Vector3.new(0.200000003, 0.200000003, 0.200000003)) Partweld = weld(m, GloveHandle, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(0.974999905, 0, 0, -4.37113883e-008, 1, 0, -1, -4.37113883e-008, 0, 0, 0, 1)) mesh("SpecialMesh", Part, Enum.MeshType.Cylinder, "", Vector3.new(0, 0, 0), Vector3.new(0.5, 5, 5)) Part = part(Enum.FormFactor.Custom, m, Enum.Material.Metal, 0.25, 0, "Bright orange", "Part", Vector3.new(0.200000003, 0.200000003, 0.200000003)) Partweld = weld(m, GloveHandle, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(0.549413681, 0.00707101822, -0.00707149506, -3.09086268e-008, -1.0640651e-007, -1, 0.707106948, 0.70710659, -9.70964535e-008, 0.70710659, -0.707106948, 5.33850901e-008)) mesh("SpecialMesh", Part, Enum.MeshType.FileMesh, "http://www.roblox.com/asset/?id=9756362", Vector3.new(0, 0, 0), Vector3.new(0.25, 1, 0.25)) Part = part(Enum.FormFactor.Custom, m, Enum.Material.Metal, 0.25, 0, "Bright orange", "Part", Vector3.new(0.200000003, 0.200000003, 0.200000003)) Partweld = weld(m, GloveHandle, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(0.549413562, 1.1920929e-007, 0.00999999046, 7.54979013e-008, 7.54978799e-008, -1, -1, 2.68220901e-007, -7.54978799e-008, 2.68220901e-007, 1, 7.54979013e-008)) mesh("SpecialMesh", Part, Enum.MeshType.FileMesh, "http://www.roblox.com/asset/?id=9756362", Vector3.new(0, 0, 0), Vector3.new(0.25, 0.75, 0.25)) Part = part(Enum.FormFactor.Custom, m, Enum.Material.Neon, 0.25, 0, "Br. yellowish orange", "Part", Vector3.new(0.200000003, 0.200000003, 0.200000003)) Partweld = weld(m, GloveHandle, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(-0.00707101822, 0.00707101822, 0.465586424, 0.707106709, -0.707106829, 0, 0.707106829, 0.707106709, 0, 0, 0, 1)) mesh("SpecialMesh", Part, Enum.MeshType.Brick, "", Vector3.new(0, 0, 0), Vector3.new(1, 5, 1)) Part = part(Enum.FormFactor.Custom, m, Enum.Material.Metal, 0.25, 0, "Bright orange", "Part", Vector3.new(0.200000003, 0.200000003, 0.200000003)) Partweld = weld(m, GloveHandle, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(-0.549999952, 0.0164134502, 0.00999999046, 1, 0, 0, 0, 7.54979013e-008, -1, 0, 1, 7.54979013e-008)) mesh("SpecialMesh", Part, Enum.MeshType.FileMesh, "http://www.roblox.com/asset/?id=9756362", Vector3.new(0, 0, 0), Vector3.new(0.25, 1, 0.25)) Part = part(Enum.FormFactor.Custom, m, Enum.Material.Metal, 0.25, 0, "Bright orange", "Part", Vector3.new(0.200000003, 0.200000003, 0.200000003)) Partweld = weld(m, GloveHandle, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(-0.549999952, -0.00453495979, -0.0186769962, 1, 0, 0, 0, 0.707106709, 0.707106888, 0, -0.707106888, 0.707106709)) mesh("SpecialMesh", Part, Enum.MeshType.FileMesh, "http://www.roblox.com/asset/?id=9756362", Vector3.new(0, 0, 0), Vector3.new(0.25, 1, 0.25)) Part = part(Enum.FormFactor.Custom, m, Enum.Material.Metal, 0.25, 0, "Bright orange", "Part", Vector3.new(0.200000003, 0.200000003, 0.200000003)) Partweld = weld(m, GloveHandle, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(-0.549999952, 0.000453591347, -0.0192143917, 1, 0, 0, 0, 0.866025329, 0.500000119, 0, -0.500000119, 0.866025329)) mesh("SpecialMesh", Part, Enum.MeshType.FileMesh, "http://www.roblox.com/asset/?id=9756362", Vector3.new(0, 0, 0), Vector3.new(0.25, 1, 0.25)) Part = part(Enum.FormFactor.Custom, m, Enum.Material.Metal, 0.25, 0, "Bright orange", "Part", Vector3.new(0.200000003, 0.200000003, 0.200000003)) Partweld = weld(m, GloveHandle, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(-0.549999952, 0.00541114807, -0.0184421539, 1, 0, 0, 0, 0.965925813, 0.258819163, 0, -0.258819163, 0.965925813)) mesh("SpecialMesh", Part, Enum.MeshType.FileMesh, "http://www.roblox.com/asset/?id=9756362", Vector3.new(0, 0, 0), Vector3.new(0.25, 1, 0.25)) Part = part(Enum.FormFactor.Custom, m, Enum.Material.Metal, 0.25, 0, "Bright orange", "Part", Vector3.new(0.200000003, 0.200000003, 0.200000003)) Partweld = weld(m, GloveHandle, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(-0.549999952, 0.00999999046, -0.0164134502, 1, 0, 0, 0, 1, 1.34110465e-007, 0, -1.34110465e-007, 1)) mesh("SpecialMesh", Part, Enum.MeshType.FileMesh, "http://www.roblox.com/asset/?id=9756362", Vector3.new(0, 0, 0), Vector3.new(0.25, 1, 0.25)) Part = part(Enum.FormFactor.Custom, m, Enum.Material.Metal, 0.25, 0, "Bright orange", "Part", Vector3.new(0.200000003, 0.200000003, 0.200000003)) Partweld = weld(m, GloveHandle, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(-0.549999952, 0.0139074326, -0.0132658482, 1, 0, 0, 0, 0.965925872, -0.258818865, 0, 0.258818865, 0.965925872)) mesh("SpecialMesh", Part, Enum.MeshType.FileMesh, "http://www.roblox.com/asset/?id=9756362", Vector3.new(0, 0, 0), Vector3.new(0.25, 1, 0.25)) Finger1Handle = part(Enum.FormFactor.Custom, m, Enum.Material.Metal, 0.25, 0, TorsoColor, "Handle", Vector3.new(0.200000003, 0.200000003, 0.200000003)) Finger1Handleweld = weld(m, Character["Right Arm"], Finger1Handle, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(-0.138371706, 1.14493585, -0.395564556, 0.965925813, 0.258819014, 0, -0.258819044, 0.965925694, 0, 0, 0, 1)) mesh("SpecialMesh", Finger1Handle, Enum.MeshType.Brick, "", Vector3.new(0, 0, 0), Vector3.new(1.5, 1.25, 1.5)) Part = part(Enum.FormFactor.Custom, m, Enum.Material.Metal, 0.25, 0, TorsoColor, "Part", Vector3.new(0.200000003, 0.200000003, 0.200000003)) Partweld = weld(m, Finger1Handle, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(-0.103527784, 0.38637054, 0, 0.866025388, -0.5, 0, 0.5, 0.866025388, 0, 0, 0, 1)) mesh("SpecialMesh", Part, Enum.MeshType.Brick, "", Vector3.new(0, 0, 0), Vector3.new(1.5, 1.25, 1.5)) Part = part(Enum.FormFactor.Custom, m, Enum.Material.Metal, 0.25, 0, TorsoColor, "Part", Vector3.new(0.200000003, 0.200000003, 0.200000003)) Partweld = weld(m, Finger1Handle, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(-0.0249999762, 0.200000167, 0, 0.965925813, -0.258819044, 0, 0.258819044, 0.965925813, 0, 0, 0, 1)) mesh("SpecialMesh", Part, Enum.MeshType.Brick, "", Vector3.new(0, 0, 0), Vector3.new(1.5, 1.25, 1.5)) Glove1Finger1ClawFinger = part(Enum.FormFactor.Custom, m, Enum.Material.Metal, 0.25, 0, TorsoColor, "Glove1Finger1ClawFinger", Vector3.new(0.200000003, 0.200000003, 0.200000003)) Glove1Finger1ClawFingerweld = weld(m, Finger1Handle, Glove1Finger1ClawFinger, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(-0.103747845, 0.500191927, -0.00441360474, 0.866025388, -0.5, 0, 0.5, 0.866025388, 0, 0, 0, 1)) mesh("SpecialMesh", Glove1Finger1ClawFinger, Enum.MeshType.FileMesh, "http://www.roblox.com/asset/?id=9756362", Vector3.new(0, 0, 0), Vector3.new(0.209999993, 0.5, 0.209999993)) Finger2Handle = part(Enum.FormFactor.Custom, m, Enum.Material.Metal, 0.25, 0, TorsoColor, "Handle", Vector3.new(0.200000003, 0.200000003, 0.200000003)) Finger2Handleweld = weld(m, Character["Right Arm"], Finger2Handle, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(-0.138371706, 1.14493585, 0.00143527985, 0.965925813, 0.258819014, 0, -0.258819044, 0.965925694, 0, 0, 0, 1)) mesh("SpecialMesh", Finger2Handle, Enum.MeshType.Brick, "", Vector3.new(0, 0, 0), Vector3.new(1.5, 1.25, 1.5)) Part = part(Enum.FormFactor.Custom, m, Enum.Material.Metal, 0.25, 0, TorsoColor, "Part", Vector3.new(0.200000003, 0.200000003, 0.200000003)) Partweld = weld(m, Finger2Handle, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(-0.0249999762, 0.200000167, 0, 0.965925813, -0.258819044, 0, 0.258819044, 0.965925813, 0, 0, 0, 1)) mesh("SpecialMesh", Part, Enum.MeshType.Brick, "", Vector3.new(0, 0, 0), Vector3.new(1.5, 1.25, 1.5)) Part = part(Enum.FormFactor.Custom, m, Enum.Material.Metal, 0.25, 0, TorsoColor, "Part", Vector3.new(0.200000003, 0.200000003, 0.200000003)) Partweld = weld(m, Finger2Handle, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(-0.103527784, 0.38637054, 0, 0.866025388, -0.5, 0, 0.5, 0.866025388, 0, 0, 0, 1)) mesh("SpecialMesh", Part, Enum.MeshType.Brick, "", Vector3.new(0, 0, 0), Vector3.new(1.5, 1.25, 1.5)) Glove1Finger2ClawFinger = part(Enum.FormFactor.Custom, m, Enum.Material.Metal, 0.25, 0, TorsoColor, "Glove1Finger2ClawFinger", Vector3.new(0.200000003, 0.200000003, 0.200000003)) Glove1Finger2ClawFingerweld = weld(m, Finger2Handle, Glove1Finger2ClawFinger, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(-0.103527784, 0.499370575, -0.00141334534, 0.866025388, -0.5, 0, 0.5, 0.866025388, 0, 0, 0, 1)) mesh("SpecialMesh", Glove1Finger2ClawFinger, Enum.MeshType.FileMesh, "http://www.roblox.com/asset/?id=9756362", Vector3.new(0, 0, 0), Vector3.new(0.209999993, 0.5, 0.209999993)) Finger3Handle = part(Enum.FormFactor.Custom, m, Enum.Material.Metal, 0.25, 0, TorsoColor, "Handle", Vector3.new(0.200000003, 0.200000003, 0.200000003)) Finger3Handleweld = weld(m, Character["Right Arm"], Finger3Handle, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(-0.138371706, 1.14493585, 0.403035164, 0.965925813, 0.258819014, 0, -0.258819044, 0.965925694, 0, 0, 0, 1)) mesh("SpecialMesh", Finger3Handle, Enum.MeshType.Brick, "", Vector3.new(0, 0, 0), Vector3.new(1.5, 1.25, 1.5)) Part = part(Enum.FormFactor.Custom, m, Enum.Material.Metal, 0.25, 0, TorsoColor, "Part", Vector3.new(0.200000003, 0.200000003, 0.200000003)) Partweld = weld(m, Finger3Handle, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(-0.103527784, 0.38637054, 0, 0.866025388, -0.5, 0, 0.5, 0.866025388, 0, 0, 0, 1)) mesh("SpecialMesh", Part, Enum.MeshType.Brick, "", Vector3.new(0, 0, 0), Vector3.new(1.5, 1.25, 1.5)) Part = part(Enum.FormFactor.Custom, m, Enum.Material.Metal, 0.25, 0, TorsoColor, "Part", Vector3.new(0.200000003, 0.200000003, 0.200000003)) Partweld = weld(m, Finger3Handle, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(-0.0249999762, 0.200000167, 0, 0.965925813, -0.258819044, 0, 0.258819044, 0.965925813, 0, 0, 0, 1)) mesh("SpecialMesh", Part, Enum.MeshType.Brick, "", Vector3.new(0, 0, 0), Vector3.new(1.5, 1.25, 1.5)) Glove1Finger3ClawFinger = part(Enum.FormFactor.Custom, m, Enum.Material.Metal, 0.25, 0, TorsoColor, "Glove1Finger3ClawFinger", Vector3.new(0.200000003, 0.200000003, 0.200000003)) Glove1Finger3ClawFingerweld = weld(m, Finger3Handle, Glove1Finger3ClawFinger, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(-0.103527784, 0.499370575, 0, 0.866025388, -0.5, 0, 0.5, 0.866025388, 0, 0, 0, 1)) mesh("SpecialMesh", Glove1Finger3ClawFinger, Enum.MeshType.FileMesh, "http://www.roblox.com/asset/?id=9756362", Vector3.new(0, 0, 0), Vector3.new(0.209999993, 0.5, 0.209999993)) Finger4Handle = part(Enum.FormFactor.Custom, m, Enum.Material.Metal, 0.25, 0, TorsoColor, "Handle", Vector3.new(0.200000003, 0.200000003, 0.200000003)) Finger4Handleweld = weld(m, Character["Right Arm"], Finger4Handle, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(-0.145614386, 1.14687657, -0.40422225, -0.965925813, 0.258819103, 4.72798973e-008, 0.258819133, 0.965925694, -1.68990979e-007, -8.94069672e-008, -1.50995788e-007, -1)) mesh("SpecialMesh", Finger4Handle, Enum.MeshType.Brick, "", Vector3.new(0, 0, 0), Vector3.new(1.5, 1.25, 1.5)) Part = part(Enum.FormFactor.Custom, m, Enum.Material.Metal, 0.25, 0, TorsoColor, "Part", Vector3.new(0.200000003, 0.200000003, 0.200000003)) Partweld = weld(m, Finger4Handle, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(-0.103527784, 0.38637042, 0, 0.866025329, -0.500000179, 0, 0.500000179, 0.866025329, 0, 0, 0, 1)) mesh("SpecialMesh", Part, Enum.MeshType.Brick, "", Vector3.new(0, 0, 0), Vector3.new(1.5, 1.25, 1.5)) Part = part(Enum.FormFactor.Custom, m, Enum.Material.Metal, 0.25, 0, TorsoColor, "Part", Vector3.new(0.200000003, 0.200000003, 0.200000003)) Partweld = weld(m, Finger4Handle, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(-0.0249997377, 0.200000048, 0, 0.965925753, -0.258819282, 0, 0.258819282, 0.965925753, 0, 0, 0, 1)) mesh("SpecialMesh", Part, Enum.MeshType.Brick, "", Vector3.new(0, 0, 0), Vector3.new(1.5, 1.25, 1.5)) Glove1Finger4ClawFinger = part(Enum.FormFactor.Custom, m, Enum.Material.Metal, 0.25, 0, TorsoColor, "Glove4Finger1ClawFinger", Vector3.new(0.200000003, 0.200000003, 0.200000003)) Glove1Finger4ClawFingerweld = weld(m, Finger4Handle, Glove1Finger4ClawFinger, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(0.134217024, 0.491147041, -0.00118684769, -0.866025329, 0.500000119, -1.2544109e-007, 0.500000119, 0.866025329, -1.22710517e-007, 4.72798973e-008, -1.68990979e-007, -1)) mesh("SpecialMesh", Glove1Finger4ClawFinger, Enum.MeshType.FileMesh, "http://www.roblox.com/asset/?id=9756362", Vector3.new(0, 0, 0), Vector3.new(0.209999993, 0.5, 0.209999993)) local m2 = Instance.new("Model", Head) m2.Name = "Rigormortis\' Hood" HoodHandle = part(Enum.FormFactor.Custom, m, Enum.Material.Metal, 0, 0, "Really black", "Handle", Vector3.new(0.200000003, 0.200000003, 0.200000003)) HoodHandleweld = weld(m, Character.Head, HoodHandle, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(1.1920929e-005, -0.0898900032, 2.19345093e-005, 1, 0, 0, 0, 1, 0, 0, 0, 1)) mesh("SpecialMesh", HoodHandle, Enum.MeshType.FileMesh, "http://www.roblox.com/asset/?id=64560031", Vector3.new(0, 0, 0), Vector3.new(1.10000002, 1.10000002, 1.10000002)) Hoodpart2 = part(Enum.FormFactor.Custom, m, Enum.Material.Metal, 0.25, 0, TorsoColor, "Hoodpart2", Vector3.new(0.200000003, 0.200000003, 0.200000003)) Hoodpart2weld = weld(m, HoodHandle, Hoodpart2, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(0, 0, -0.0299999714, 1, 0, 0, 0, 1, 0, 0, 0, 1)) mesh("SpecialMesh", Hoodpart2, Enum.MeshType.FileMesh, "http://www.roblox.com/asset/?id=64560031", Vector3.new(0, 0, 0), Vector3.new(1.20000005, 1.20000005, 1.10000002)) Eye1 = part(Enum.FormFactor.Custom, m, Enum.Material.Neon, 0.25, 0, "Really red", "Eye1", Vector3.new(0.200000003, 0.200000003, 0.200000003)) Eye1weld = weld(m, HoodHandle, Eye1, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(0.200000048, 0, 0.619999886, 1, 0, 0, 0, 1, 0, 0, 0, 1)) Eye1mesh = mesh("SpecialMesh", Eye1, Enum.MeshType.Sphere, "", Vector3.new(0, 0, 0), Vector3.new(0.5, 2, 1)) Eye2 = part(Enum.FormFactor.Custom, m, Enum.Material.Neon, 0.25, 0, "Really red", "Eye2", Vector3.new(0.200000003, 0.200000003, 0.200000003)) Eye2weld = weld(m, HoodHandle, Eye2, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(-0.200000048, 0.064807415, 0.616603374, 1, 0, 0, 0, 0.994521916, 0.104528464, 0, -0.104528464, 0.994521916)) Eye2mesh = mesh("SpecialMesh", Eye2, Enum.MeshType.Sphere, "", Vector3.new(0, 0, 0), Vector3.new(0.5, 2, 1)) local m3 = Instance.new("Model", LeftArm) m3.Name = "Rigormortis\' Left Glove" Glove2Handle = part(Enum.FormFactor.Custom, m, Enum.Material.Metal, 0.25, 0, TorsoColor, "Handle", Vector3.new(0.200000003, 0.200000003, 0.200000003)) Glove2Handleweld = weld(m, Character["Left Arm"], Glove2Handle, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(1.21593475e-005, 0.000111103058, 0.00443267822, 1, 0, 0, 0, 0.999999881, 0, 0, 0, 1)) mesh("SpecialMesh", Glove2Handle, Enum.MeshType.Brick, "", Vector3.new(0, 0, 0), Vector3.new(5.5, 5.25, 5.5)) Part = part(Enum.FormFactor.Custom, m, Enum.Material.Neon, 0.25, 0, "Br. yellowish orange", "Part", Vector3.new(0.200000003, 0.200000003, 0.200000003)) Partweld = weld(m, Glove2Handle, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(0, 0.620001078, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)) mesh("SpecialMesh", Part, Enum.MeshType.Brick, "", Vector3.new(0, 0, 0), Vector3.new(5.5, 1, 5.5)) Part = part(Enum.FormFactor.Custom, m, Enum.Material.Metal, 0.25, 0, TorsoColor, "Part", Vector3.new(0.200000003, 0.200000003, 0.200000003)) Partweld = weld(m, Glove2Handle, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(0, 0.870001078, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)) mesh("SpecialMesh", Part, Enum.MeshType.Brick, "", Vector3.new(0, 0, 0), Vector3.new(5.5, 1.5, 5.5)) Part = part(Enum.FormFactor.Custom, m, Enum.Material.Metal, 0.25, 0, "Bright orange", "Part", Vector3.new(0.200000003, 0.200000003, 0.200000003)) Partweld = weld(m, Glove2Handle, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(0.550000191, 0.0184402466, 0.00540876389, 1, 0, 0, 0, 0.258819193, -0.965925813, 0, 0.965925813, 0.258819193)) mesh("SpecialMesh", Part, Enum.MeshType.FileMesh, "http://www.roblox.com/asset/?id=9756362", Vector3.new(0, 0, 0), Vector3.new(0.25, 1, 0.25)) Part = part(Enum.FormFactor.Custom, m, Enum.Material.Neon, 0.25, 0, "Br. yellowish orange", "Part", Vector3.new(0.200000003, 0.200000003, 0.200000003)) Partweld = weld(m, Glove2Handle, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(0.00706958771, 0.00706958771, 0.465587616, 0.707106769, 0.707106769, 0, -0.707106769, 0.707106769, 0, 0, 0, 1)) mesh("SpecialMesh", Part, Enum.MeshType.Brick, "", Vector3.new(0, 0, 0), Vector3.new(1, 5, 1)) Part = part(Enum.FormFactor.Custom, m, Enum.Material.Neon, 0.25, 0, "Br. yellowish orange", "Part", Vector3.new(0.200000003, 0.200000003, 0.200000003)) Partweld = weld(m, Glove2Handle, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(0.00999808311, 0, 0.465587616, 0, 0.99999994, 0, -0.99999994, 0, 0, 0, 0, 1)) mesh("SpecialMesh", Part, Enum.MeshType.Brick, "", Vector3.new(0, 0, 0), Vector3.new(1, 5, 1)) Part = part(Enum.FormFactor.Custom, m, Enum.Material.Neon, 0.25, 0, "Really red", "Part", Vector3.new(0.200000003, 0.200000003, 0.200000003)) Partweld = weld(m, Glove2Handle, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(0, 1.00999808, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)) mesh("SpecialMesh", Part, Enum.MeshType.Sphere, "", Vector3.new(0, 0, 0), Vector3.new(0.5, 0.5, 4)) Part = part(Enum.FormFactor.Custom, m, Enum.Material.Metal, 0.25, 0, "Bright orange", "Part", Vector3.new(0.200000003, 0.200000003, 0.200000003)) Partweld = weld(m, Glove2Handle, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(0.550000191, 0.0192146301, 0.000451087952, 1, 0, 0, 0, 0.50000006, -0.866025388, 0, 0.866025388, 0.50000006)) mesh("SpecialMesh", Part, Enum.MeshType.FileMesh, "http://www.roblox.com/asset/?id=9756362", Vector3.new(0, 0, 0), Vector3.new(0.25, 1, 0.25)) Part = part(Enum.FormFactor.Custom, m, Enum.Material.Neon, 0.25, 0, "Br. yellowish orange", "Part", Vector3.new(0.200000003, 0.200000003, 0.200000003)) Partweld = weld(m, Glove2Handle, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(0, 0.00999808311, 0.465587616, 1, 0, 0, 0, 1, 0, 0, 0, 1)) mesh("SpecialMesh", Part, Enum.MeshType.Brick, "", Vector3.new(0, 0, 0), Vector3.new(1, 5, 1)) Part = part(Enum.FormFactor.Custom, m, Enum.Material.Metal, 0.25, 0, "Bright orange", "Part", Vector3.new(0.200000003, 0.200000003, 0.200000003)) Partweld = weld(m, Glove2Handle, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(0.549407959, 0.00706958771, 0.00706955791, 1.3767874e-007, -6.21808951e-008, -1, -0.70710659, 0.707106948, -1.4132209e-007, 0.707106948, 0.70710659, 5.33850653e-008)) mesh("SpecialMesh", Part, Enum.MeshType.FileMesh, "http://www.roblox.com/asset/?id=9756362", Vector3.new(0, 0, 0), Vector3.new(0.25, 1, 0.25)) Part = part(Enum.FormFactor.Custom, m, Enum.Material.Metal, 0.25, 0, "Bright orange", "Part", Vector3.new(0.200000003, 0.200000003, 0.200000003)) Partweld = weld(m, Glove2Handle, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(0.550000191, 0.0186767578, -0.00453662872, 1, 0, 0, 0, 0.707106829, -0.707106709, 0, 0.707106709, 0.707106829)) mesh("SpecialMesh", Part, Enum.MeshType.FileMesh, "http://www.roblox.com/asset/?id=9756362", Vector3.new(0, 0, 0), Vector3.new(0.25, 1, 0.25)) Part = part(Enum.FormFactor.Custom, m, Enum.Material.Metal, 0.25, 0, "Bright orange", "Part", Vector3.new(0.200000003, 0.200000003, 0.200000003)) Partweld = weld(m, Glove2Handle, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(0.549407959, 0.00999832153, 0, -4.37113883e-008, -9.70964606e-008, -1, 0, 1, -9.70964606e-008, 1, -4.24422121e-015, -4.37113883e-008)) mesh("SpecialMesh", Part, Enum.MeshType.FileMesh, "http://www.roblox.com/asset/?id=9756362", Vector3.new(0, 0, 0), Vector3.new(0.25, 0.75, 0.25)) Part = part(Enum.FormFactor.Custom, m, Enum.Material.Metal, 0.25, 0, "Bright orange", "Part", Vector3.new(0.200000003, 0.200000003, 0.200000003)) Partweld = weld(m, Glove2Handle, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(0.550000191, 0.00921630859, 0.016866684, 1, 0, 0, 0, -0.499999851, -0.866025507, 0, 0.866025507, -0.499999851)) mesh("SpecialMesh", Part, Enum.MeshType.FileMesh, "http://www.roblox.com/asset/?id=9756362", Vector3.new(0, 0, 0), Vector3.new(0.25, 1, 0.25)) Part = part(Enum.FormFactor.Custom, m, Enum.Material.Metal, 0.25, 0, "Bright orange", "Part", Vector3.new(0.200000003, 0.200000003, 0.200000003)) Partweld = weld(m, Glove2Handle, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(0.550000191, 0.0132675171, 0.0139055252, 1, 0, 0, 0, -0.258818924, -0.965925872, 0, 0.965925872, -0.258818924)) mesh("SpecialMesh", Part, Enum.MeshType.FileMesh, "http://www.roblox.com/asset/?id=9756362", Vector3.new(0, 0, 0), Vector3.new(0.25, 1, 0.25)) Part = part(Enum.FormFactor.Custom, m, Enum.Material.Metal, 0.25, 0, "Bright orange", "Part", Vector3.new(0.200000003, 0.200000003, 0.200000003)) Partweld = weld(m, Glove2Handle, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(0.550000191, 0.016866684, -0.00921630859, 1, 0, 0, 0, 0.866025448, -0.499999911, 0, 0.499999911, 0.866025448)) mesh("SpecialMesh", Part, Enum.MeshType.FileMesh, "http://www.roblox.com/asset/?id=9756362", Vector3.new(0, 0, 0), Vector3.new(0.25, 1, 0.25)) Part = part(Enum.FormFactor.Custom, m, Enum.Material.Metal, 0.25, 0, "Really black", "Part", Vector3.new(0.200000003, 0.200000003, 0.200000003)) Partweld = weld(m, Glove2Handle, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(0.979999065, -2.38418579e-007, 0, -4.37113883e-008, 1, 0, -1, -4.37113883e-008, 0, 0, 0, 1)) mesh("SpecialMesh", Part, Enum.MeshType.Cylinder, "", Vector3.new(0, 0, 0), Vector3.new(0.5, 4, 4)) Part = part(Enum.FormFactor.Custom, m, Enum.Material.Metal, 0.25, 0, "Dark stone grey", "Part", Vector3.new(0.200000003, 0.200000003, 0.200000003)) Partweld = weld(m, Glove2Handle, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(0.974999905, -2.38418579e-007, 0, -4.37113883e-008, 1, 0, -1, -4.37113883e-008, 0, 0, 0, 1)) mesh("SpecialMesh", Part, Enum.MeshType.Cylinder, "", Vector3.new(0, 0, 0), Vector3.new(0.5, 5, 5)) Part = part(Enum.FormFactor.Custom, m, Enum.Material.Metal, 0.25, 0, "Bright orange", "Part", Vector3.new(0.200000003, 0.200000003, 0.200000003)) Partweld = weld(m, Glove2Handle, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(0.549407959, 0.00706964731, -0.00706958771, -3.09086268e-008, -1.0640651e-007, -1, 0.707106948, 0.70710659, -9.70964535e-008, 0.70710659, -0.707106948, 5.33850901e-008)) mesh("SpecialMesh", Part, Enum.MeshType.FileMesh, "http://www.roblox.com/asset/?id=9756362", Vector3.new(0, 0, 0), Vector3.new(0.25, 1, 0.25)) Part = part(Enum.FormFactor.Custom, m, Enum.Material.Metal, 0.25, 0, "Bright orange", "Part", Vector3.new(0.200000003, 0.200000003, 0.200000003)) Partweld = weld(m, Glove2Handle, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(0.549407959, 0, 0.00999808311, 7.54979013e-008, 7.54978799e-008, -1, -1, 2.68220901e-007, -7.54978799e-008, 2.68220901e-007, 1, 7.54979013e-008)) mesh("SpecialMesh", Part, Enum.MeshType.FileMesh, "http://www.roblox.com/asset/?id=9756362", Vector3.new(0, 0, 0), Vector3.new(0.25, 0.75, 0.25)) Part = part(Enum.FormFactor.Custom, m, Enum.Material.Neon, 0.25, 0, "Br. yellowish orange", "Part", Vector3.new(0.200000003, 0.200000003, 0.200000003)) Partweld = weld(m, Glove2Handle, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(-0.00706958771, 0.00706982613, 0.465587616, 0.707106709, -0.707106829, 0, 0.707106829, 0.707106709, 0, 0, 0, 1)) mesh("SpecialMesh", Part, Enum.MeshType.Brick, "", Vector3.new(0, 0, 0), Vector3.new(1, 5, 1)) Part = part(Enum.FormFactor.Custom, m, Enum.Material.Metal, 0.25, 0, "Bright orange", "Part", Vector3.new(0.200000003, 0.200000003, 0.200000003)) Partweld = weld(m, Glove2Handle, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(0.550000191, 0.0164146423, 0.00999808311, 1, 0, 0, 0, 7.54979013e-008, -1, 0, 1, 7.54979013e-008)) mesh("SpecialMesh", Part, Enum.MeshType.FileMesh, "http://www.roblox.com/asset/?id=9756362", Vector3.new(0, 0, 0), Vector3.new(0.25, 1, 0.25)) Part = part(Enum.FormFactor.Custom, m, Enum.Material.Metal, 0.25, 0, "Bright orange", "Part", Vector3.new(0.200000003, 0.200000003, 0.200000003)) Partweld = weld(m, Glove2Handle, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(0.550000191, -0.00453662872, -0.0186767578, 1, 0, 0, 0, 0.707106709, 0.707106888, 0, -0.707106888, 0.707106709)) mesh("SpecialMesh", Part, Enum.MeshType.FileMesh, "http://www.roblox.com/asset/?id=9756362", Vector3.new(0, 0, 0), Vector3.new(0.25, 1, 0.25)) Part = part(Enum.FormFactor.Custom, m, Enum.Material.Metal, 0.25, 0, "Bright orange", "Part", Vector3.new(0.200000003, 0.200000003, 0.200000003)) Partweld = weld(m, Glove2Handle, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(0.550000191, 0.000451087952, -0.0192146301, 1, 0, 0, 0, 0.866025329, 0.500000119, 0, -0.500000119, 0.866025329)) mesh("SpecialMesh", Part, Enum.MeshType.FileMesh, "http://www.roblox.com/asset/?id=9756362", Vector3.new(0, 0, 0), Vector3.new(0.25, 1, 0.25)) Part = part(Enum.FormFactor.Custom, m, Enum.Material.Metal, 0.25, 0, "Bright orange", "Part", Vector3.new(0.200000003, 0.200000003, 0.200000003)) Partweld = weld(m, Glove2Handle, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(0.550000191, 0.00540876389, -0.0184402466, 1, 0, 0, 0, 0.965925813, 0.258819163, 0, -0.258819163, 0.965925813)) mesh("SpecialMesh", Part, Enum.MeshType.FileMesh, "http://www.roblox.com/asset/?id=9756362", Vector3.new(0, 0, 0), Vector3.new(0.25, 1, 0.25)) Part = part(Enum.FormFactor.Custom, m, Enum.Material.Metal, 0.25, 0, "Bright orange", "Part", Vector3.new(0.200000003, 0.200000003, 0.200000003)) Partweld = weld(m, Glove2Handle, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(0.550000191, 0.00999808311, -0.0164146423, 1, 0, 0, 0, 1, 1.34110465e-007, 0, -1.34110465e-007, 1)) mesh("SpecialMesh", Part, Enum.MeshType.FileMesh, "http://www.roblox.com/asset/?id=9756362", Vector3.new(0, 0, 0), Vector3.new(0.25, 1, 0.25)) Part = part(Enum.FormFactor.Custom, m, Enum.Material.Metal, 0.25, 0, "Bright orange", "Part", Vector3.new(0.200000003, 0.200000003, 0.200000003)) Partweld = weld(m, Glove2Handle, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(0.550000191, 0.0139064789, -0.0132675171, 1, 0, 0, 0, 0.965925872, -0.258818865, 0, 0.258818865, 0.965925872)) mesh("SpecialMesh", Part, Enum.MeshType.FileMesh, "http://www.roblox.com/asset/?id=9756362", Vector3.new(0, 0, 0), Vector3.new(0.25, 1, 0.25)) Glove2Finger1Handle = part(Enum.FormFactor.Custom, m, Enum.Material.Metal, 0.25, 0, TorsoColor, "Handle", Vector3.new(0.200000003, 0.200000003, 0.200000003)) Glove2Finger1Handleweld = weld(m, Character["Left Arm"], Glove2Finger1Handle, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(-0.149578571, 1.14794111, 0.398792267, -0.965925813, 0.258819133, 0, 0.258819163, 0.965925694, 7.4505806e-008, 1.92835312e-008, 7.19670723e-008, -1)) mesh("SpecialMesh", Glove2Finger1Handle, Enum.MeshType.Brick, "", Vector3.new(0, 0, 0), Vector3.new(1.5, 1.25, 1.5)) Part = part(Enum.FormFactor.Custom, m, Enum.Material.Metal, 0.25, 0, TorsoColor, "Part", Vector3.new(0.200000003, 0.200000003, 0.200000003)) Partweld = weld(m, Glove2Finger1Handle, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(-0.103526592, 0.386366367, 0, 0.866025448, -0.500000119, -3.72529136e-008, 0.500000119, 0.866025329, -9.98188199e-009, 3.72529101e-008, -9.98188909e-009, 1)) mesh("SpecialMesh", Part, Enum.MeshType.Brick, "", Vector3.new(0, 0, 0), Vector3.new(1.5, 1.25, 1.5)) Part = part(Enum.FormFactor.Custom, m, Enum.Material.Metal, 0.25, 0, TorsoColor, "Part", Vector3.new(0.200000003, 0.200000003, 0.200000003)) Partweld = weld(m, Glove2Finger1Handle, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(-0.0249929428, 0.199998975, 0, 0.965925813, -0.258819133, -1.92835294e-008, 0.258819133, 0.965925813, 2.79754886e-009, 1.79023978e-008, -7.6931741e-009, 1)) mesh("SpecialMesh", Part, Enum.MeshType.Brick, "", Vector3.new(0, 0, 0), Vector3.new(1.5, 1.25, 1.5)) Glove2Finger1ClawFinger = part(Enum.FormFactor.Custom, m, Enum.Material.Metal, 0.25, 0, TorsoColor, "Glove2Finger1ClawFinger", Vector3.new(0.200000003, 0.200000003, 0.200000003)) Glove2Finger1ClawFingerweld = weld(m, Glove2Finger1Handle, Glove2Finger1ClawFinger, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(-0.103525162, 0.49937129, 0, 0.866025448, -0.500000119, -3.72529136e-008, 0.500000119, 0.866025329, -9.98188199e-009, 3.72529101e-008, -9.98188909e-009, 1)) mesh("SpecialMesh", Glove2Finger1ClawFinger, Enum.MeshType.FileMesh, "http://www.roblox.com/asset/?id=9756362", Vector3.new(0, 0, 0), Vector3.new(0.209999993, 0.5, 0.209999993)) Glove2Finger2Handle = part(Enum.FormFactor.Custom, m, Enum.Material.Metal, 0.25, 0, TorsoColor, "Handle", Vector3.new(0.200000003, 0.200000003, 0.200000003)) Glove2Finger2Handleweld = weld(m, Character["Left Arm"], Glove2Finger2Handle, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(-0.149578094, 1.14794099, -0.00280952454, -0.965925813, 0.258819133, 0, 0.258819163, 0.965925694, 7.4505806e-008, 1.92835312e-008, 7.19670723e-008, -1)) mesh("SpecialMesh", Glove2Finger2Handle, Enum.MeshType.Brick, "", Vector3.new(0, 0, 0), Vector3.new(1.5, 1.25, 1.5)) Part = part(Enum.FormFactor.Custom, m, Enum.Material.Metal, 0.25, 0, TorsoColor, "Part", Vector3.new(0.200000003, 0.200000003, 0.200000003)) Partweld = weld(m, Glove2Finger2Handle, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(-0.0249934196, 0.199998975, 1.90734863e-006, 0.965925813, -0.258819133, -1.92835294e-008, 0.258819133, 0.965925813, 2.79754886e-009, 1.79023978e-008, -7.6931741e-009, 1)) mesh("SpecialMesh", Part, Enum.MeshType.Brick, "", Vector3.new(0, 0, 0), Vector3.new(1.5, 1.25, 1.5)) Part = part(Enum.FormFactor.Custom, m, Enum.Material.Metal, 0.25, 0, TorsoColor, "Part", Vector3.new(0.200000003, 0.200000003, 0.200000003)) Partweld = weld(m, Glove2Finger2Handle, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(-0.103526592, 0.386366367, 0, 0.866025448, -0.500000119, -3.72529136e-008, 0.500000119, 0.866025329, -9.98188199e-009, 3.72529101e-008, -9.98188909e-009, 1)) mesh("SpecialMesh", Part, Enum.MeshType.Brick, "", Vector3.new(0, 0, 0), Vector3.new(1.5, 1.25, 1.5)) Glove2Finger2ClawFinger = part(Enum.FormFactor.Custom, m, Enum.Material.Metal, 0.25, 0, TorsoColor, "Glove2Finger2ClawFinger", Vector3.new(0.200000003, 0.200000003, 0.200000003)) Glove2Finger2ClawFingerweld = weld(m, Glove2Finger2Handle, Glove2Finger2ClawFinger, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(-0.10352397, 0.499371529, -0.00141334534, 0.866025448, -0.500000119, -3.72529136e-008, 0.500000119, 0.866025329, -9.98188199e-009, 3.72529101e-008, -9.98188909e-009, 1)) mesh("SpecialMesh", Glove2Finger2ClawFinger, Enum.MeshType.FileMesh, "http://www.roblox.com/asset/?id=9756362", Vector3.new(0, 0, 0), Vector3.new(0.209999993, 0.5, 0.209999993)) Glove2Finger3Handle = part(Enum.FormFactor.Custom, m, Enum.Material.Metal, 0.25, 0, TorsoColor, "Handle", Vector3.new(0.200000003, 0.200000003, 0.200000003)) Glove2Finger3Handleweld = weld(m, Character["Left Arm"], Glove2Finger3Handle, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(-0.149578094, 1.14794099, -0.399812698, -0.965925813, 0.258819133, 0, 0.258819163, 0.965925694, 7.4505806e-008, 1.92835312e-008, 7.19670723e-008, -1)) mesh("SpecialMesh", Glove2Finger3Handle, Enum.MeshType.Brick, "", Vector3.new(0, 0, 0), Vector3.new(1.5, 1.25, 1.5)) Part = part(Enum.FormFactor.Custom, m, Enum.Material.Metal, 0.25, 0, TorsoColor, "Part", Vector3.new(0.200000003, 0.200000003, 0.200000003)) Partweld = weld(m, Glove2Finger3Handle, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(-0.103526592, 0.386366367, 0, 0.866025448, -0.500000119, -3.72529136e-008, 0.500000119, 0.866025329, -9.98188199e-009, 3.72529101e-008, -9.98188909e-009, 1)) mesh("SpecialMesh", Part, Enum.MeshType.Brick, "", Vector3.new(0, 0, 0), Vector3.new(1.5, 1.25, 1.5)) Part = part(Enum.FormFactor.Custom, m, Enum.Material.Metal, 0.25, 0, TorsoColor, "Part", Vector3.new(0.200000003, 0.200000003, 0.200000003)) Partweld = weld(m, Glove2Finger3Handle, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(-0.0249962807, 0.199998975, 1.90734863e-006, 0.965925813, -0.258819133, -1.92835294e-008, 0.258819133, 0.965925813, 2.79754886e-009, 1.79023978e-008, -7.6931741e-009, 1)) mesh("SpecialMesh", Part, Enum.MeshType.Brick, "", Vector3.new(0, 0, 0), Vector3.new(1.5, 1.25, 1.5)) Glove2Finger3ClawFinger = part(Enum.FormFactor.Custom, m, Enum.Material.Metal, 0.25, 0, TorsoColor, "Glove2Finger3ClawFinger", Vector3.new(0.200000003, 0.200000003, 0.200000003)) Glove2Finger3ClawFingerweld = weld(m, Glove2Finger3Handle, Glove2Finger3ClawFinger, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(-0.103745937, 0.500193119, -0.00440788269, 0.866025448, -0.500000119, -3.72529136e-008, 0.500000119, 0.866025329, -9.98188199e-009, 3.72529101e-008, -9.98188909e-009, 1)) mesh("SpecialMesh", Glove2Finger3ClawFinger, Enum.MeshType.FileMesh, "http://www.roblox.com/asset/?id=9756362", Vector3.new(0, 0, 0), Vector3.new(0.209999993, 0.5, 0.209999993)) Glove2Finger4Handle = part(Enum.FormFactor.Custom, m, Enum.Material.Metal, 0.25, 0, TorsoColor, "Handle", Vector3.new(0.200000003, 0.200000003, 0.200000003)) Glove2Finger4Handleweld = weld(m, Character["Left Arm"], Glove2Finger4Handle, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(-0.134407997, 1.14387655, 0.400022507, 0.965925813, 0.258819103, -8.94069672e-008, -0.258819133, 0.965925694, 2.38418579e-007, 1.48067784e-007, -2.071544e-007, 1)) mesh("SpecialMesh", Glove2Finger4Handle, Enum.MeshType.Brick, "", Vector3.new(0, 0, 0), Vector3.new(1.5, 1.25, 1.5)) Part = part(Enum.FormFactor.Custom, m, Enum.Material.Metal, 0.25, 0, TorsoColor, "Part", Vector3.new(0.200000003, 0.200000003, 0.200000003)) Partweld = weld(m, Glove2Finger4Handle, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(-0.103526354, 0.386366606, 0, 0.866025329, -0.500000238, 1.07231074e-007, 0.500000238, 0.866025329, 3.19420792e-008, -1.0883587e-007, 2.59529003e-008, 1)) mesh("SpecialMesh", Part, Enum.MeshType.Brick, "", Vector3.new(0, 0, 0), Vector3.new(1.5, 1.25, 1.5)) Part = part(Enum.FormFactor.Custom, m, Enum.Material.Metal, 0.25, 0, TorsoColor, "Part", Vector3.new(0.200000003, 0.200000003, 0.200000003)) Partweld = weld(m, Glove2Finger4Handle, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(-0.025002718, 0.199998975, 0, 0.965925753, -0.258819312, 8.84631604e-008, 0.258819312, 0.965925753, 1.30108901e-008, -8.88163285e-008, 1.03283924e-008, 1)) mesh("SpecialMesh", Part, Enum.MeshType.Brick, "", Vector3.new(0, 0, 0), Vector3.new(1.5, 1.25, 1.5)) Glove2Finger4ClawFinger = part(Enum.FormFactor.Custom, m, Enum.Material.Metal, 0.25, 0, TorsoColor, "Glove2Finger4ClawFinger", Vector3.new(0.200000003, 0.200000003, 0.200000003)) Glove2Finger4ClawFingerweld = weld(m, Glove2Finger4Handle, Glove2Finger4ClawFinger, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(0.134222269, 0.491146207, -0.00118637085, -0.866025329, 0.500000238, -1.96638027e-007, 0.500000238, 0.866025329, -8.72672246e-008, 1.26659884e-007, -1.73894662e-007, -1)) mesh("SpecialMesh", Glove2Finger4ClawFinger, Enum.MeshType.FileMesh, "http://www.roblox.com/asset/?id=9756362", Vector3.new(0, 0, 0), Vector3.new(0.209999993, 0.5, 0.209999993)) coroutine.resume(coroutine.create(function(Part, Weld) while Part.Parent ~= nil do wait(5) for i = 0, 1, 0.2 do wait() Eye1mesh.Scale = Vector3.new(0.5, 2 - 1.9 * i, 1) Eye2mesh.Scale = Vector3.new(0.5, 2 - 1.9 * i, 1) end for i = 0, 1, 0.2 do wait() Eye1mesh.Scale = Vector3.new(0.5, 0.1 + 1.9 * i, 1) Eye2mesh.Scale = Vector3.new(0.5, 0.1 + 1.9 * i, 1) end end end ), Eye1, Eye1weld) for i,v in pairs(Character:GetChildren()) do if v:IsA("Model") then for _,c in pairs(v:GetChildren()) do if c:IsA("Part") then c.CustomPhysicalProperties = PhysicalProperties.new(0.001, 0.001, 0.001, 0.001, 0.001) end end end end for i,v in pairs(Character.Head:GetChildren()) do if v.className == "BlockMesh" then v:destroy() head = Instance.new("SpecialMesh", Head) head.MeshType = "Head" end end local CloakEffect = Instance.new("ParticleEmitter", Torso) CloakEffect.VelocitySpread = 360 CloakEffect.Lifetime = NumberRange.new(1) CloakEffect.Speed = NumberRange.new(20) CloakEffect.Size = NumberSequence.new({NumberSequenceKeypoint.new(0, 1, 1), NumberSequenceKeypoint.new(1, 0)}) CloakEffect.Enabled = false CloakEffect.RotSpeed = NumberRange.new(-360, 360) CloakEffect.Rate = 1000 CloakEffect.Rotation = NumberRange.new(-360, 360) CloakEffect.Transparency = NumberSequence.new({NumberSequenceKeypoint.new(0, 1), NumberSequenceKeypoint.new(0.1, 0), NumberSequenceKeypoint.new(1, 1)}) CloakEffect.Color = ColorSequence.new(Color3.new(Colorpart1, Colorpart2, Colorpart3), Color3.new(Colorpart1, Colorpart2, Colorpart3)) CloakEffect.LightEmission = 1 CloakEffect.Texture = "http://www.roblox.com/asset/?id=243664672" CloakEffectLight = Instance.new("PointLight", Torso) CloakEffectLight.Color = Color3.new(Colorpart1, Colorpart2, Colorpart3) CloakEffectLight.Range = 10 CloakEffectLight.Brightness = 10 CloakEffectLight.Enabled = false CloakEffectLight2 = Instance.new("PointLight", Torso) CloakEffectLight2.Color = Color3.new(Colorpart1, Colorpart2, Colorpart3) CloakEffectLight2.Range = 7.5 CloakEffectLight2.Brightness = 7.5 CloakEffectLight2.Enabled = false local CloakEffect2 = Instance.new("ParticleEmitter", Torso) CloakEffect2.VelocitySpread = 360 CloakEffect2.Lifetime = NumberRange.new(1) CloakEffect2.Size = NumberSequence.new({NumberSequenceKeypoint.new(0, 6), NumberSequenceKeypoint.new(1, 5)}) CloakEffect2.Enabled = false CloakEffect2.RotSpeed = NumberRange.new(9000) CloakEffect2.Rate = 200 CloakEffect2.Rotation = NumberRange.new(-360, 360) CloakEffect2.Transparency = NumberSequence.new({NumberSequenceKeypoint.new(0, 1), NumberSequenceKeypoint.new(0.1, 0), NumberSequenceKeypoint.new(1, 1)}) CloakEffect2.Color = ColorSequence.new(Color3.new(Colorpart1, Colorpart2, Colorpart3), Color3.new(Colorpart1, Colorpart2, Colorpart3)) CloakEffect2.Texture = "http://www.roblox.com/asset/?id=321556991" local TrailEffect = Instance.new("ParticleEmitter", Torso) TrailEffect.Lifetime = NumberRange.new(1) TrailEffect.Speed = NumberRange.new(0) TrailEffect.Size = NumberSequence.new({NumberSequenceKeypoint.new(0, 0.5, 0.5), NumberSequenceKeypoint.new(1, 0)}) TrailEffect.Enabled = false TrailEffect.RotSpeed = NumberRange.new(-360, 360) TrailEffect.Rate = 500 TrailEffect.Rotation = NumberRange.new(-360, 360) TrailEffect.Transparency = NumberSequence.new({NumberSequenceKeypoint.new(0, 1), NumberSequenceKeypoint.new(0.1, 0.5), NumberSequenceKeypoint.new(1, 1)}) TrailEffect.Color = ColorSequence.new(Color3.new(Colorpart1, Colorpart2, Colorpart3), Color3.new(Colorpart1, Colorpart2, Colorpart3)) TrailEffect.LightEmission = 0.5 TrailEffect.Texture = "http://www.roblox.com/asset/?id=243728206" local GhostEffect = Instance.new("ParticleEmitter", Torso) GhostEffect.Lifetime = NumberRange.new(0.25, 0.5) GhostEffect.Speed = NumberRange.new(12.5, 15) GhostEffect.Size = NumberSequence.new({NumberSequenceKeypoint.new(0, 0.3, 0.3), NumberSequenceKeypoint.new(1, 0, 0)}) GhostEffect.Acceleration = Vector3.new(0, 0, 0) GhostEffect.RotSpeed = NumberRange.new(9000) GhostEffect.Rate = 1000 GhostEffect.Transparency = NumberSequence.new({NumberSequenceKeypoint.new(0, 1), NumberSequenceKeypoint.new(0.1, 0.25), NumberSequenceKeypoint.new(1, 1)}) GhostEffect.LightEmission = 0.75 GhostEffect.Color = ColorSequence.new(Color3.new(1, 1, 1), Color3.new(1, 1, 1)) GhostEffect.Texture = "http://www.roblox.com/asset/?id=321556991" GhostEffect.VelocitySpread = 360 GhostEffect.LockedToPart = false GhostEffect.Enabled = false local Player = game.Players.localPlayer local Character = Player.Character local Humanoid = Character.Humanoid local mouse = Player:GetMouse() local LeftArm = Character["Left Arm"] local RightArm = Character["Right Arm"] local LeftLeg = Character["Left Leg"] local RightLeg = Character["Right Leg"] local Head = Character.Head local Torso = Character.Torso local cam = game.Workspace.CurrentCamera local RootPart = Character.HumanoidRootPart local equipped = false local attack = false local Anim = "Idle" local idle = 0 local sprint = false local battlestance = false local attacktype = 1 local state = "none" local torsovelocity = RootPart.Velocity * Vector3.new(1, 0, 1).magnitude local velocity = RootPart.Velocity.y local sine = 0 local change = 1 local on = false local grabbed = false local skill1 = false local skill2 = false local skill3 = false local skill4 = false local cooldown1 = 0 local cooldown2 = 0 local cooldown3 = 0 local cooldown4 = 0 local co1 = 0 local co2 = 0 local co3 = 0 local co4 = 0 local inputserv = game:GetService("UserInputService") local typing = false local crit = false local critchance = 2 local critdamageaddmin = 3 local critdamageaddmax = 7 local maxstamina = 100 local stamina = 0 local maxjumpstamina = 100 local jumpstamina = 0 local maxstealth = 100 local stealth = 0 local skill1stam = 100 local skill2stam = 100 local skill3stam = 100 local skill4stam = 100 local recovermana = 100 local recoverstealth = 5 local recoverjumpstamina = 25 local defensevalue = 1 local speedvalue = 1 local mindamage = 5 local maxdamage = 45 local damagevalue = 1 local cf = CFrame.new local mr = math.rad local angles = CFrame.Angles local ud = UDim2.new local c3 = Color3.new local skillcolorscheme = c3(1, 1, 1) local scrn = Instance.new("ScreenGui", Player.PlayerGui) makeframe = function(par, trans, pos, size, color) local frame = Instance.new("Frame", par) frame.BackgroundTransparency = trans frame.BorderSizePixel = 0 frame.Position = pos frame.Size = size frame.BackgroundColor3 = color return frame end makelabel = function(par, text) local label = Instance.new("TextLabel", par) label.BackgroundTransparency = 1 label.Size = ud(1, 0, 1, 0) label.Position = ud(0, 0, 0, 0) label.TextColor3 = c3(255, 255, 255) label.TextStrokeTransparency = 0 label.FontSize = Enum.FontSize.Size32 label.Font = Enum.Font.SourceSansBold label.BorderSizePixel = 0 label.TextScaled = true label.Text = text end framesk1 = makeframe(scrn, 0.5, ud(0.23, 0, 0.93, 0), ud(0.26, 0, 0.06, 0), skillcolorscheme) framesk2 = makeframe(scrn, 0.5, ud(0.5, 0, 0.93, 0), ud(0.26, 0, 0.06, 0), skillcolorscheme) framesk3 = makeframe(scrn, 0.5, ud(0.5, 0, 0.86, 0), ud(0.26, 0, 0.06, 0), skillcolorscheme) framesk4 = makeframe(scrn, 0.5, ud(0.23, 0, 0.86, 0), ud(0.26, 0, 0.06, 0), skillcolorscheme) bar1 = makeframe(framesk1, 0, ud(0, 0, 0, 0), ud(1, 0, 1, 0), skillcolorscheme) bar2 = makeframe(framesk2, 0, ud(0, 0, 0, 0), ud(1, 0, 1, 0), skillcolorscheme) bar3 = makeframe(framesk3, 0, ud(0, 0, 0, 0), ud(1, 0, 1, 0), skillcolorscheme) bar4 = makeframe(framesk4, 0, ud(0, 0, 0, 0), ud(1, 0, 1, 0), skillcolorscheme) text1 = makelabel(framesk1, "[C] Cometal Blast/Planet Shatter") text2 = makelabel(framesk2, "[V] Dark Void") text3 = makelabel(framesk3, "[X] Celestial Matter Distortion") text4 = makelabel(framesk4, "[Z] Galactic Lunge/Spiral Dispursion") staminabar = makeframe(scrn, 0.5, ud(0.23, 0, 0.82, 0), ud(0.26, 0, 0.03, 0), c3(0.23921568627451, 0.67058823529412, 1)) staminacover = makeframe(staminabar, 0, ud(0, 0, 0, 0), ud(1, 0, 1, 0), c3(0.23921568627451, 0.67058823529412, 1)) staminatext = makelabel(staminabar, "Mana") stealthbar = makeframe(scrn, 0.5, ud(0.23, 0, 0.78, 0), ud(0.26, 0, 0.03, 0), c3(0.22745098039216, 0.49019607843137, 0.082352941176471)) stealthcover = makeframe(stealthbar, 0, ud(0, 0, 0, 0), ud(1, 0, 1, 0), c3(0, 0.7843137254902, 0)) stealthtext = makelabel(stealthbar, "Stealth") healthbar = makeframe(scrn, 0.5, ud(0.5, 0, 0.82, 0), ud(0.26, 0, 0.03, 0), c3(1, 1, 0)) healthcover = makeframe(healthbar, 0, ud(0, 0, 0, 0), ud(1, 0, 1, 0), c3(1, 0.18039215686275, 0.1921568627451)) healthtext = makelabel(healthbar, "Health") jumpstaminabar = makeframe(scrn, 0.5, ud(0.5, 0, 0.78, 0), ud(0.26, 0, 0.03, 0), c3(1, 0.61960784313725, 0)) jumpstaminacover = makeframe(jumpstaminabar, 0, ud(0, 0, 0, 0), ud(1, 0, 1, 0), c3(1, 1, 0)) jumpstaminatext = makelabel(jumpstaminabar, "Jump Stamina") local stats = Instance.new("Folder", Character) stats.Name = "Stats" local block = Instance.new("BoolValue", stats) block.Name = "Block" block.Value = false local stun = Instance.new("BoolValue", stats) stun.Name = "Stun" stun.Value = false local defense = Instance.new("NumberValue", stats) defense.Name = "Defence" defense.Value = defensevalue local speed = Instance.new("NumberValue", stats) speed.Name = "Speed" speed.Value = speedvalue local damagea = Instance.new("NumberValue", stats) damagea.Name = "Damage" damagea.Value = damagevalue makeeffect = function(par, size, pos1, trans, trans1, howmuch, delay1, id, type) local p = Instance.new("Part", par or workspace) p.CFrame = pos1 p.Anchored = true p.Material = "Plastic" p.CanCollide = false p.TopSurface = 0 p.Size = Vector3.new(1, 1, 1) p.BottomSurface = 0 p.Transparency = trans p.FormFactor = "Custom" nooutline(p) local mesh = Instance.new("SpecialMesh", p) mesh.Scale = size if id ~= nil and type == nil then mesh.MeshId = "rbxassetid://" .. id else if id == nil and type ~= nil then mesh.MeshType = type else if id == nil and type == nil then mesh.MeshType = "Brick" end end end coroutine.wrap(function() for i = 0, delay1, 0.1 do wait(0.016666666666667) p.CFrame = p.CFrame mesh.Scale = mesh.Scale + howmuch p.Transparency = p.Transparency + trans1 end p:Destroy() end )() return p end clangy = function(cframe) wait(0.016666666666667) local clang = {} local dis = 0 local part = Instance.new("Part", nil) part.CFrame = cframe part.Anchored = true part.CanCollide = false part.BrickColor = BrickColor.new("New Yeller") part.FormFactor = "Custom" part.Name = "clanger" part.Size = Vector3.new(0.2, 0.2, 0.2) part.TopSurface = 10 part.BottomSurface = 10 part.RightSurface = 10 part.LeftSurface = 10 part.BackSurface = 10 part.FrontSurface = 10 part:BreakJoints() local mesh = Instance.new("BlockMesh", part) coroutine.wrap(function() for i = 1, 7 do do wait(0.016666666666667) dis = dis + 0.2 local partc = part:clone() partc.Parent = workspace partc.CFrame = part.CFrame * CFrame.fromEulerAnglesXYZ(dis, 0, 0) partc.CFrame = partc.CFrame * CFrame.new(0, dis, 0) table.insert(clang, partc) end end for i,v in pairs(clang) do coroutine.wrap(function() for i = 1, 10 do wait(0.01) v.Transparency = v.Transparency + 0.1 end v:destroy() end )() end end )() end circle = function(color, pos1) local p = Instance.new("Part", m) p.BrickColor = BrickColor.new(color) p.CFrame = pos1 p.Anchored = true p.Material = "Plastic" p.CanCollide = false p.TopSurface = 0 p.Size = Vector3.new(1, 1, 1) p.BottomSurface = 0 p.Transparency = 0.35 p.FormFactor = "Custom" local mesh = Instance.new("CylinderMesh", p) mesh.Scale = Vector3.new(0, 0, 0) coroutine.wrap(function() for i = 0, 5, 0.1 do wait(0.016666666666667) p.CFrame = p.CFrame mesh.Scale = mesh.Scale + Vector3.new(0.5, 0, 0.5) p.Transparency = p.Transparency + 0.025 end p:Destroy() end )() end firespaz1 = function(color, pos1) local p = Instance.new("Part", m) p.BrickColor = BrickColor.new(color) p.CFrame = pos1 p.Anchored = true p.Material = "Plastic" p.CanCollide = false p.TopSurface = 0 p.Size = Vector3.new(1, 1, 1) p.BottomSurface = 0 p.Transparency = 0.5 p.FormFactor = "Custom" local mesh = Instance.new("BlockMesh", p) mesh.Scale = Vector3.new(1, 1, 1) coroutine.wrap(function() for i = 0, 15, 0.1 do wait(0.033333333333333) p.CFrame = p.CFrame * CFrame.new(0, 0.1, 0) mesh.Scale = mesh.Scale - Vector3.new(0.1, 0.1, 0.1) p.Transparency = p.Transparency + 0.025 end p:Destroy() end )() end pickrandom = function(tablesa) local randomized = tablesa[math.random(1, #tablesa)] return randomized end sound = function(id, pitch, volume, par, last) local s = Instance.new("Sound", par or Torso) s.SoundId = "rbxassetid://" .. id s.Pitch = pitch or 1 s.Volume = volume or 1 wait() s:play() game.Debris:AddItem(s, last or 120) end clangy = function(cframe) wait(0.016666666666667) local clang = {} local dis = 0 local part = Instance.new("Part", nil) part.CFrame = cframe part.Anchored = true part.CanCollide = false part.BrickColor = BrickColor.new("New Yeller") part.FormFactor = "Custom" part.Name = "clanger" part.Size = Vector3.new(0.2, 0.2, 0.2) part.TopSurface = 10 part.BottomSurface = 10 part.RightSurface = 10 part.LeftSurface = 10 part.BackSurface = 10 part.FrontSurface = 10 part:BreakJoints() local mesh = Instance.new("BlockMesh", part) coroutine.wrap(function() for i = 1, 7 do do wait(0.016666666666667) dis = dis + 0.2 local partc = part:clone() partc.Parent = workspace partc.CFrame = part.CFrame * CFrame.fromEulerAnglesXYZ(dis, 0, 0) partc.CFrame = partc.CFrame * CFrame.new(0, dis, 0) table.insert(clang, partc) end end for i,v in pairs(clang) do coroutine.wrap(function() for i = 1, 10 do wait(0.01) v.Transparency = v.Transparency + 0.1 end v:destroy() end )() end end )() end so = function(id, par, vol, pit) coroutine.resume(coroutine.create(function() local sou = Instance.new("Sound", par) sou.Volume = vol sou.Pitch = pit sou.SoundId = id wait() sou:play() game:GetService("Debris"):AddItem(sou, 10) end )) end getclosest = function(obj, dis, player) if player.Torso.CFrame.p - obj.magnitude >= dis then do return not player end do local list = {} for i,v in pairs(workspace:GetChildren()) do if v:IsA("Model") and v:findFirstChild("Torso") and v ~= Character and v.Torso.Position - obj.magnitude <= dis then table.insert(list, v) end end do return list end end end end tag = function(hum, player) local creator = Instance.new("ObjectValue", hum) creator.Value = player creator.Name = "creator" end untag = function(hum) if hum ~= nil then local tag = hum:findFirstChild("creator") if tag ~= nil then tag.Parent = nil end end end tagplayer = function(h) coroutine.wrap(function() tag(h, player) wait(1) untag(h) end )() end randomizer = function(percent) local randomized = math.random(0, 100) if randomized <= percent then return true else if percent <= randomized then return false end end end turncrit = function() coroutine.resume(coroutine.create(function() print("CRITICAL!") crit = true wait(0.25) crit = false end )) end subtractstamina = function(k) if k <= stamina then stamina = stamina - k end end local weldBetween = function(a, b) local weldd = Instance.new("ManualWeld") weldd.Part0 = a weldd.Part1 = b weldd.C0 = CFrame.new() weldd.C1 = b.CFrame:inverse() * a.CFrame weldd.Parent = a return weldd end nooutline = function(part) part.TopSurface = 10 end part = function(formfactor, parent, material, reflectance, transparency, brickcolor, name, size) local fp = it("Part") fp.formFactor = formfactor fp.Parent = parent fp.Reflectance = reflectance fp.Transparency = transparency fp.CanCollide = false fp.Locked = true fp.BrickColor = BrickColor.new(tostring(brickcolor)) fp.Name = name fp.Size = size fp.Position = Character.Torso.Position nooutline(fp) fp.Material = material fp:BreakJoints() return fp end mesh = function(Mesh, part, meshtype, meshid, offset, scale) local mesh = it(Mesh) mesh.Parent = part if Mesh == "SpecialMesh" then mesh.MeshType = meshtype mesh.MeshId = meshid end mesh.Offset = offset mesh.Scale = scale return mesh end weld = function(parent, part0, part1, c0, c1) local weld = it("Weld") weld.Parent = parent weld.Part0 = part0 weld.Part1 = part1 weld.C0 = c0 weld.C1 = c1 return weld end local CFrameFromTopBack = function(at, top, back) local right = top:Cross(back) return CFrame.new(at.x, at.y, at.z, right.x, top.x, back.x, right.y, top.y, back.y, right.z, top.z, back.z) end Triangle = function(a, b, c) local edg1 = c - a:Dot(b - a.unit) local edg2 = a - b:Dot(c - b.unit) local edg3 = b - c:Dot(a - c.unit) if edg1 <= b - a.magnitude and edg1 >= 0 then a = a else -- DECOMPILER ERROR at PC35: Overwrote pending register: R1 in 'AssignReg' if edg2 <= c - b.magnitude and edg2 >= 0 then a = b else -- DECOMPILER ERROR at PC46: Overwrote pending register: R2 in 'AssignReg' -- DECOMPILER ERROR at PC47: Overwrote pending register: R1 in 'AssignReg' if edg3 <= a - c.magnitude and edg3 >= 0 then a = c else assert(false, "unreachable") end end end local len1 = c - a:Dot(b - a.unit) local len2 = b - a.magnitude - len1 local width = a + b - a.unit * len1 - c.magnitude local maincf = CFrameFromTopBack(a, b - a:Cross(c - b).unit, -b - a.unit) local list = {} local TrailColor = "Dark grey" if len1 > 0.01 then local w1 = Instance.new("WedgePart", m) game:GetService("Debris"):AddItem(w1, 5) w1.Material = "SmoothPlastic" w1.FormFactor = "Custom" w1.BrickColor = BrickColor.new(TrailColor) w1.Transparency = 0 w1.Reflectance = 0 w1.Material = "SmoothPlastic" w1.CanCollide = false NoOutline(w1) local sz = Vector3.new(0.2, width, len1) w1.Size = sz local sp = Instance.new("SpecialMesh", w1) sp.MeshType = "Wedge" sp.Scale = Vector3.new(0, 1, 1) * sz / w1.Size w1:BreakJoints() w1.Anchored = true w1.Parent = workspace w1.Transparency = 0.7 table.insert(Effects, {w1, "Disappear", 0.01}) w1.CFrame = maincf * CFrame.Angles(math.pi, 0, math.pi / 2) * CFrame.new(0, width / 2, len1 / 2) table.insert(list, w1) end do if len2 > 0.01 then local w2 = Instance.new("WedgePart", m) game:GetService("Debris"):AddItem(w2, 5) w2.Material = "SmoothPlastic" w2.FormFactor = "Custom" w2.BrickColor = BrickColor.new(TrailColor) w2.Transparency = 0 w2.Reflectance = 0 w2.Material = "SmoothPlastic" w2.CanCollide = false NoOutline(w2) local sz = Vector3.new(0.2, width, len2) w2.Size = sz local sp = Instance.new("SpecialMesh", w2) sp.MeshType = "Wedge" sp.Scale = Vector3.new(0, 1, 1) * sz / w2.Size w2:BreakJoints() w2.Anchored = true w2.Parent = workspace w2.Transparency = 0.7 table.insert(Effects, {w2, "Disappear", 0.01}) w2.CFrame = maincf * CFrame.Angles(math.pi, math.pi, -math.pi / 2) * CFrame.new(0, width / 2, -len1 - len2 / 2) table.insert(list, w2) end do return unpack(list) end end end so = function(id, par, vol, pit) coroutine.resume(coroutine.create(function() local sou = Instance.new("Sound", par or workspace) sou.Volume = vol sou.Pitch = pit or 1 sou.SoundId = id fat.Event:wait() sou:play() game:GetService("Debris"):AddItem(sou, 6) end )) end clerp = function(a, b, t) local qa = {QuaternionFromCFrame(a)} local qb = {QuaternionFromCFrame(b)} local ax, ay, az = a.x, a.y, a.z local bx, by, bz = b.x, b.y, b.z local _t = 1 - t return QuaternionToCFrame(_t * ax + t * bx, _t * ay + t * by, _t * az + t * bz, QuaternionSlerp(qa, qb, t)) end local clerp = CFrame.new().lerp QuaternionFromCFrame = function(cf) local mx, my, mz, m00, m01, m02, m10, m11, m12, m20, m21, m22 = cf:components() local trace = m00 + m11 + m22 if trace > 0 then local s = math.sqrt(1 + trace) local recip = 0.5 / s return (m21 - m12) * recip, (m02 - m20) * recip, (m10 - m01) * recip, s * 0.5 else do local i = 0 if m00 < m11 then i = 1 end if i == 0 and m00 or m11 < m22 then i = 2 end if i == 0 then local s = math.sqrt(m00 - m11 - m22 + 1) local recip = 0.5 / s return 0.5 * s, (m10 + m01) * recip, (m20 + m02) * recip, (m21 - m12) * recip else do if i == 1 then local s = math.sqrt(m11 - m22 - m00 + 1) local recip = 0.5 / s return (m01 + m10) * recip, 0.5 * s, (m21 + m12) * recip, (m02 - m20) * recip else do if i == 2 then local s = math.sqrt(m22 - m00 - m11 + 1) local recip = 0.5 / s return (m02 + m20) * recip, (m12 + m21) * recip, 0.5 * s, (m10 - m01) * recip end end end end end end end end QuaternionToCFrame = function(px, py, pz, x, y, z, w) local xs, ys, zs = x + x, y + y, z + z local wx, wy, wz = w * xs, w * ys, w * zs local xx = x * xs local xy = x * ys local xz = x * zs local yy = y * ys local yz = y * zs local zz = z * zs return CFrame.new(px, py, pz, 1 - (yy + zz), xy - wz, xz + wy, xy + wz, 1 - (xx + zz), yz - wx, xz - wy, yz + wx, 1 - (xx + yy)) end QuaternionSlerp = function(a, b, t) local cosTheta = a[1] * b[1] + a[2] * b[2] + a[3] * b[3] + a[4] * b[4] local startInterp, finishInterp = nil, nil if cosTheta >= 0.0001 then if 1 - cosTheta > 0.0001 then local theta = math.acos(cosTheta) local invSinTheta = 1 / math.sin(theta) startInterp = math.sin((1 - t) * theta) * invSinTheta finishInterp = math.sin(t * theta) * invSinTheta else do startInterp = 1 - t finishInterp = t if 1 + cosTheta > 0.0001 then local theta = math.acos(-cosTheta) local invSinTheta = 1 / math.sin(theta) startInterp = math.sin((t - 1) * theta) * invSinTheta finishInterp = math.sin(t * theta) * invSinTheta else do startInterp = t - 1 finishInterp = t return a[1] * (startInterp) + b[1] * finishInterp, a[2] * (startInterp) + b[2] * finishInterp, a[3] * (startInterp) + b[3] * finishInterp, a[4] * (startInterp) + b[4] * finishInterp end end end end end end local PartOnRay = workspace.FindPartOnRay local RayNew = Ray.new rayCast = function(Pos, Dir, Max, Ignore) return PartOnRay(workspace, RayNew(Pos, Dir.unit * (Max or 999.999)), Ignore) end makegui = function(cframe, text) local a = math.random(-10, 10) / 100 local c = Instance.new("Part") c.Transparency = 1 Instance.new("BodyGyro").Parent = c c.Parent = workspace c.CFrame = CFrame.new(cframe.p + Vector3.new(0, 1.5, 0)) local f = Instance.new("BodyPosition") f.P = 2000 f.D = 100 f.maxForce = Vector3.new(math.huge, math.huge, math.huge) f.position = c.Position + Vector3.new(0, 3, 0) f.Parent = c game:GetService("Debris"):AddItem(c, 6.5) c.CanCollide = false c.Parent = workspace c.CanCollide = false local bg = Instance.new("BillboardGui", c) bg.Adornee = c bg.Size = UDim2.new(1, 0, 1, 0) bg.StudsOffset = Vector3.new(0, 0, 0) bg.AlwaysOnTop = false local tl = Instance.new("TextLabel", bg) tl.BackgroundTransparency = 1 tl.Size = UDim2.new(1, 0, 1, 0) tl.Text = text tl.Font = "SourceSansBold" tl.FontSize = "Size42" if crit == true then tl.TextColor3 = Color3.new(0.70588235294118, 0, 0) else tl.TextColor3 = Color3.new(255, 0.70588235294118, 0.2) end tl.TextStrokeTransparency = 0 tl.TextScaled = true tl.TextWrapped = true coroutine.wrap(function() wait(2) for i = 1, 10 do fat.Event:wait() c.Transparency = 1 tl.TextTransparency = tl.TextTransparency + 0.1 end end )() end Damagefunc = function(hit, minim, maxim, knockback, Type, Property, Delay, KnockbackType, decreaseblock) if hit.Parent == nil then return end local h = hit.Parent:FindFirstChild("Humanoid") for _,v in pairs(hit.Parent:children()) do if v:IsA("Humanoid") then h = v end end if hit.Parent.Parent:FindFirstChild("Torso") ~= nil then h = hit.Parent.Parent:FindFirstChild("Humanoid") end if hit.Parent.className == "Hat" then hit = hit.Parent.Parent:findFirstChild("Head") end if h ~= nil and hit.Parent.Name ~= Character.Name and hit.Parent:FindFirstChild("Torso") ~= nil then if hit.Parent:findFirstChild("DebounceHit") ~= nil and hit.Parent.DebounceHit.Value == true then return end local blocked = false block = hit.Parent:findFirstChild("Block") if block ~= nil then print(block.className) if block.className == "NumberValue" and block.Value > 0 then blocked = true if decreaseblock == nil then block.Value = block.Value - 1 end end if block.className == "IntValue" and block.Value > 0 then blocked = true if decreaseblock ~= nil then block.Value = block.Value - 1 end end end if blocked == false then local D = math.random(minim, maxim) * damagea.Value if h.Parent:FindFirstChild("Stats") then D = D / h.Parent:FindFirstChild("Stats").Defence.Value else end if not h.Parent:FindFirstChild("Stats") then do game.ReplicatedStorage.Remotes.HealthEvent:FireServer(h, D, 1) TagService:NewTag(h.Parent, Player, "Rigormortis", D) makegui(hit.Parent.Head.CFrame, tostring(math.floor(D + 0.5))) local D = math.random(minim, maxim) * damagea.Value if h.Parent:FindFirstChild("Stats") then D = D / h.Parent:FindFirstChild("Stats").Defence.Value else end if not h.Parent:FindFirstChild("Stats") then do game.ReplicatedStorage.Remotes.HealthEvent:FireServer(h, D / 2, 1) makegui(hit.Parent.Head.CFrame, tostring(math.floor(D + 0.5))) if Type == "Knockdown" then local humanoid = hit.Parent.Humanoid humanoid.PlatformStand = true coroutine.resume(coroutine.create(function(Humanoid) fat.Event:wait() Humanoid.PlatformStand = false end ), humanoid) local angle = hit.Position - (Property.Position + Vector3.new(0, 0, 0)).unit local bodvol = Instance.new("BodyVelocity") bodvol.velocity = angle * knockback bodvol.P = 5000 bodvol.maxForce = Vector3.new(8000, 8000, 8000) bodvol.Parent = hit rl = Instance.new("BodyAngularVelocity") rl.P = 3000 rl.maxTorque = Vector3.new(500000, 500000, 500000) * 50000000000000 rl.angularvelocity = Vector3.new(math.random(-10, 10), math.random(-10, 10), math.random(-10, 10)) rl.Parent = hit game:GetService("Debris"):AddItem(bodvol, 0.5) game:GetService("Debris"):AddItem(rl, 0.5) else do if Type == "Normal" then so("http://www.roblox.com/asset/?id=344936315", hit, 1, math.random(100, 200) / 100) vp = Instance.new("BodyVelocity") vp.P = 500 vp.maxForce = Vector3.new(math.huge, 0, math.huge) if KnockbackType == 1 then vp.velocity = Property.CFrame.lookVector * knockback + Property.Velocity / 1.05 else if KnockbackType == 2 then vp.velocity = Property.CFrame.lookVector * knockback end end if knockback > 0 then vp.Parent = hit.Parent.Torso end game:GetService("Debris"):AddItem(vp, 0.5) else if Type == "SlashLifeSteal" then so("http://www.roblox.com/asset/?id=344936315", hit, 1, math.random(100, 200) / 100) Humanoid.Health = Humanoid.Health + math.random(1, 2) / 2.5 vp = Instance.new("BodyVelocity") vp.P = 500 vp.maxForce = Vector3.new(math.huge, 0, math.huge) if KnockbackType == 1 then vp.velocity = Property.CFrame.lookVector * knockback + Property.Velocity / 1.05 else if KnockbackType == 2 then vp.velocity = Property.CFrame.lookVector * knockback end end if knockback > 0 then vp.Parent = hit.Parent.Torso end game:GetService("Debris"):AddItem(vp, 0.5) else if Type == "SlashLifeSteal2" then so("http://www.roblox.com/asset/?id=344936315", hit, 1, math.random(100, 200) / 100) Humanoid.Health = Humanoid.Health + math.random(2, 3) / 2.5 vp = Instance.new("BodyVelocity") vp.P = 500 vp.maxForce = Vector3.new(math.huge, 0, math.huge) if KnockbackType == 1 then vp.velocity = Property.CFrame.lookVector * knockback + Property.Velocity / 1.05 else if KnockbackType == 2 then vp.velocity = Property.CFrame.lookVector * knockback end end if knockback > 0 then vp.Parent = hit.Parent.Torso end game:GetService("Debris"):AddItem(vp, 0.5) else if Type == "BlackHoleDamage" then Humanoid.Health = Humanoid.Health + math.random(2, 4) / 5 local floatingvelocity = Instance.new("BodyVelocity") floatingvelocity.Parent = hit.Parent.Torso floatingvelocity.Velocity = Vector3.new(0, math.random(2.5, 5), 0) game:GetService("Debris"):AddItem(floatingvelocity, 1) else do if Type == "BlackHoleDamage2" then vp = Instance.new("BodyVelocity") vp.P = 500 vp.maxForce = Vector3.new(math.huge, 0, math.huge) if KnockbackType == 1 then vp.velocity = Property.CFrame.lookVector * knockback + Property.Velocity / 1.05 else if KnockbackType == 2 then vp.velocity = Property.CFrame.lookVector * knockback end end if knockback > 0 then vp.Parent = hit.Parent.Torso end game:GetService("Debris"):AddItem(vp, 0.5) else if Type == "Up" then local bodyVelocity = Instance.new("BodyVelocity") bodyVelocity.velocity = vt(0, 60, 0) bodyVelocity.P = 5000 bodyVelocity.maxForce = Vector3.new(8000, 8000, 8000) bodyVelocity.Parent = hit game:GetService("Debris"):AddItem(bodyVelocity, 1) rl = Instance.new("BodyAngularVelocity") rl.P = 3000 rl.maxTorque = Vector3.new(500000, 500000, 500000) * 50000000000000 rl.angularvelocity = Vector3.new(math.random(-30, 30), math.random(-30, 30), math.random(-30, 30)) rl.Parent = hit game:GetService("Debris"):AddItem(rl, 0.5) else do if Type == "Snare" then wait() bp = Instance.new("BodyPosition") bp.P = 2000 bp.D = 100 bp.maxForce = Vector3.new(math.huge, math.huge, math.huge) bp.position = hit.Parent.Torso.Position bp.Parent = hit.Parent.Torso game:GetService("Debris"):AddItem(bp, 1) else if Type == "Target" then so("http://www.roblox.com/asset/?id=199144144", hit, 1, math.random(150, 200) / 100) vp = Instance.new("BodyVelocity") vp.P = 500 vp.maxForce = Vector3.new(math.huge, 0, math.huge) if KnockbackType == 1 then vp.velocity = Property.CFrame.lookVector * knockback + Property.Velocity / 1.05 else if KnockbackType == 2 then vp.velocity = Property.CFrame.lookVector * knockback end end if knockback > 0 then vp.Parent = hit.Parent.Torso end game:GetService("Debris"):AddItem(vp, 0.5) end end local debounce = Instance.new("BoolValue") debounce.Name = "DebounceHit" debounce.Parent = hit.Parent debounce.Value = true game:GetService("Debris"):AddItem(debounce, Delay) c = Instance.new("ObjectValue") c.Name = "creator" c.Value = Player c.Parent = h game:GetService("Debris"):AddItem(c, 0.5) end end end end end end end end end end end end end end end end end MagniDamage = function(Part, magni, mindam, maxdam, knock, Type) for _,c in pairs(workspace:children()) do local hum = c:findFirstChild("Humanoid") if hum ~= nil then local head = c:findFirstChild("Torso") if head ~= nil then local targ = head.Position - Part.Position local mag = targ.magnitude if mag <= magni and c.Name ~= Player.Name then Damagefunc(head, mindam, maxdam, knock, Type, RootPart, 0.2, 1, 3, 1) end end end end end JumpEffect = function(brickcolor, cframe, x1, y1, z1, x2, y2, z2, delay) local prt = part(3, workspace, "SmoothPlastic", 0, 0, brickcolor, "Effect", vt(0.5, 0.5, 0.5)) prt.Anchored = true prt.CanCollide = false prt.CFrame = cframe * angles(math.rad(90), 0, 0) local msh = mesh("SpecialMesh", prt, "FileMesh", "http://www.roblox.com/asset/?id=3270017", vt(0, 0, 0), vt(x1, y1, z1)) game:GetService("Debris"):AddItem(prt, 10) coroutine.resume(coroutine.create(function(Part, Mesh) for i = 0, 1, delay do fat.Event:wait() Part.CFrame = Part.CFrame Part.Transparency = i Mesh.Scale = Mesh.Scale + vt(x2, y2, z2) end Part.Parent = nil end ), prt, msh) end OrbEffect = function(brickcolor, cframe, x1, y1, z1, x2, y2, z2, delay) local prt = part(3, workspace, "SmoothPlastic", 0, 0, brickcolor, "Effect", vt(0.5, 0.5, 0.5)) prt.Anchored = true prt.CanCollide = false prt.CFrame = cframe * angles(math.rad(math.random(-90, 90)), math.rad(math.random(-90, 90)), math.rad(math.random(-90, 90))) local msh = mesh("SpecialMesh", prt, "FileMesh", "http://www.roblox.com/asset/?id=3270017", vt(0, 0, 0), vt(x1, y1, z1)) game:GetService("Debris"):AddItem(prt, 10) coroutine.resume(coroutine.create(function(Part, Mesh) for i = 0, 1, delay do fat.Event:wait() Part.CFrame = Part.CFrame Part.Transparency = i Mesh.Scale = Mesh.Scale + vt(x2, y2, z2) end Part.Parent = nil end ), prt, msh) end BlockShockwave = function(brickcolor, cframe, x1, y1, z1, x3, y3, z3, delay) local prt = part(3, workspace, "SmoothPlastic", 0, 0, brickcolor, "Effect", vt(0.5, 0.5, 0.5)) prt.Anchored = true prt.CFrame = cframe * angles(math.rad(math.random(-90, 90)), math.rad(math.random(-90, 90)), math.rad(math.random(-90, 90))) local msh = mesh("BlockMesh", prt, "", "", vt(0, 0, 0), vt(x1, y1, z1)) game:GetService("Debris"):AddItem(prt, 10) coroutine.resume(coroutine.create(function(Part, Mesh) for i = 0, 1, delay do fat.Event:wait() Part.CFrame = Part.CFrame * angles(math.rad(math.random(-90, 90)), math.rad(math.random(-90, 90)), math.rad(math.random(-90, 90))) Part.Transparency = i Mesh.Scale = Mesh.Scale + vt(x3, y3, z3) end Part.Parent = nil end ), prt, msh) end Shockwave = function(brickcolor, cframe, x1, y1, z1, x3, y3, z3, delay) local prt = part(3, workspace, "SmoothPlastic", 0, 0, brickcolor, "Effect", vt(0.5, 0.5, 0.5)) prt.Anchored = true prt.CFrame = cframe local msh = mesh("SpecialMesh", prt, "Sphere", "", vt(0, 0, 0), vt(x1, y1, z1)) game:GetService("Debris"):AddItem(prt, 10) coroutine.resume(coroutine.create(function(Part, Mesh) for i = 0, 1, delay do fat.Event:wait() Part.CFrame = Part.CFrame Part.Transparency = i Mesh.Scale = Mesh.Scale + vt(x3, y3, z3) end Part.Parent = nil end ), prt, msh) end canwalk = true canidle = true cloaked = false cloaked2 = false portal = false usedstealth = false invisible = false Face.Parent = nil candoublejump = true MMouse = mouse TrailSound = Instance.new("Sound", Torso) TrailSound.Pitch = 2 TrailSound.Volume = 0.25 TrailSound.Looped = true TrailSound.SoundId = "http://www.roblox.com/asset/?id=338601253" TrailSound2 = Instance.new("Sound", Torso) TrailSound2.Pitch = 0.5 TrailSound2.Volume = 0.25 TrailSound2.Looped = true TrailSound2.SoundId = "http://www.roblox.com/asset/?id=338601253" Cloak = function() cloaked = true so("http://roblox.com/asset/?id=178452217", Torso, 0.5, 1) for _,v in pairs(Torso.Parent:children()) do do if v.className == "Part" and v.Name ~= "HumanoidRootPart" then coroutine.resume(coroutine.create(function() for i = 0, 1, 0.1 do wait() TrailEffect.Enabled = true speed.Value = 0.1 CloakEffect.Enabled = true CloakEffect2.Enabled = true CloakEffectLight.Enabled = true v.Transparency = v.Transparency + 0.1 end GhostEffect.Enabled = true CloakEffectLight2.Enabled = true defense.Value = 0.6 Humanoid.CameraOffset = Vector3.new(0, 1, 0) TrailSound:Play() TrailSound2:Play() TrailEffect.Enabled = true v.CanCollide = false speed.Value = 0.1 v.Transparency = 1 CloakEffect.Enabled = false CloakEffect2.Enabled = false CloakEffectLight.Enabled = false end )) end if v.className == "Hat" then do hatp = v.Handle coroutine.resume(coroutine.create(function(hatty) for i = 0, 1, 0.1 do wait() hatty.Transparency = hatty.Transparency + 0.1 end hatty.Transparency = 1 end ), hatp) -- DECOMPILER ERROR at PC49: LeaveBlock: unexpected jumping out IF_THEN_STMT -- DECOMPILER ERROR at PC49: LeaveBlock: unexpected jumping out IF_STMT end end end end for _,v in pairs(m:children()) do if v.className == "Part" then coroutine.resume(coroutine.create(function() for i = 0, 1, 0.1 do wait() v.Transparency = v.Transparency + 0.1 end v.Transparency = 1 end )) end end for _,v in pairs(m2:children()) do if v.className == "Part" then coroutine.resume(coroutine.create(function() for i = 0, 1, 0.1 do wait() v.Transparency = v.Transparency + 0.1 end v.Transparency = 1 end )) end end for _,v in pairs(m3:children()) do if v.className == "Part" then coroutine.resume(coroutine.create(function() for i = 0, 1, 0.1 do wait() v.Transparency = v.Transparency + 0.1 end v.Transparency = 1 end )) end end end UnCloak = function() cloaked = false so("http://roblox.com/asset/?id=178452217", Torso, 0.5, 1.2) for _,v in pairs(Torso.Parent:children()) do do if v.className == "Part" and v.Name ~= "HumanoidRootPart" then coroutine.resume(coroutine.create(function() for i = 0, 1, 0.1 do wait() TrailEffect.Enabled = false speed.Value = 1.25 TrailEffect.Enabled = false CloakEffect.Enabled = true CloakEffect2.Enabled = true CloakEffectLight.Enabled = true v.Transparency = v.Transparency - 0.1 end GhostEffect.Enabled = false CloakEffectLight2.Enabled = false defense.Value = 0.9 Humanoid.CameraOffset = Vector3.new(0, 0, 0) TrailSound:Stop() TrailSound2:Stop() speed.Value = 1.25 v.Transparency = 0 CloakEffect.Enabled = false CloakEffect2.Enabled = false CloakEffectLight.Enabled = false end )) end if v.className == "Hat" then do hatp = v.Handle coroutine.resume(coroutine.create(function(hatty) for i = 0, 1, 0.1 do wait() hatty.Transparency = hatty.Transparency - 0.1 end hatty.Transparency = 0 end ), hatp) -- DECOMPILER ERROR at PC49: LeaveBlock: unexpected jumping out IF_THEN_STMT -- DECOMPILER ERROR at PC49: LeaveBlock: unexpected jumping out IF_STMT end end end end for _,v in pairs(m:children()) do if v.className == "Part" then coroutine.resume(coroutine.create(function() for i = 0, 1, 0.1 do wait() v.Transparency = v.Transparency - 0.1 end v.Transparency = 0 end )) end end for _,v in pairs(m2:children()) do if v.className == "Part" then coroutine.resume(coroutine.create(function() for i = 0, 1, 0.1 do wait() v.Transparency = v.Transparency - 0.1 end v.Transparency = 0 end )) end end for _,v in pairs(m3:children()) do if v.className == "Part" then coroutine.resume(coroutine.create(function() for i = 0, 1, 0.1 do wait() v.Transparency = v.Transparency - 0.1 end v.Transparency = 0 end )) end end end Cloak2 = function() cloaked2 = true so("http://roblox.com/asset/?id=178452217", Torso, 0.5, 1) for _,v in pairs(Torso.Parent:children()) do do if v.className == "Part" and v.Name ~= "HumanoidRootPart" then coroutine.resume(coroutine.create(function() for i = 0, 1, 0.1 do wait() CloakEffect.Enabled = true CloakEffect2.Enabled = true CloakEffectLight.Enabled = true v.Transparency = v.Transparency + 0.1 end v.Transparency = 1 CloakEffect.Enabled = false CloakEffect2.Enabled = false CloakEffectLight.Enabled = false end )) end if v.className == "Hat" then do hatp = v.Handle coroutine.resume(coroutine.create(function(hatty) for i = 0, 1, 0.1 do wait() hatty.Transparency = hatty.Transparency + 0.1 end hatty.Transparency = 1 end ), hatp) -- DECOMPILER ERROR at PC44: LeaveBlock: unexpected jumping out IF_THEN_STMT -- DECOMPILER ERROR at PC44: LeaveBlock: unexpected jumping out IF_STMT end end end end for _,v in pairs(m:children()) do if v.className == "Part" then coroutine.resume(coroutine.create(function() for i = 0, 1, 0.1 do wait() v.Transparency = v.Transparency + 0.1 end v.Transparency = 1 end )) end end for _,v in pairs(m2:children()) do if v.className == "Part" then coroutine.resume(coroutine.create(function() for i = 0, 1, 0.1 do wait() v.Transparency = v.Transparency + 0.1 end v.Transparency = 1 end )) end end for _,v in pairs(m3:children()) do if v.className == "Part" then coroutine.resume(coroutine.create(function() for i = 0, 1, 0.1 do wait() v.Transparency = v.Transparency + 0.1 end v.Transparency = 1 end )) end end end UnCloak2 = function() cloaked2 = false so("http://roblox.com/asset/?id=178452217", Torso, 0.5, 1.2) for _,v in pairs(Torso.Parent:children()) do do if v.className == "Part" and v.Name ~= "HumanoidRootPart" then coroutine.resume(coroutine.create(function() for i = 0, 1, 0.1 do wait() CloakEffect.Enabled = true CloakEffect2.Enabled = true CloakEffectLight.Enabled = true v.Transparency = v.Transparency - 0.1 end v.Transparency = 0 CloakEffect.Enabled = false CloakEffect2.Enabled = false CloakEffectLight.Enabled = false end )) end if v.className == "Hat" then do hatp = v.Handle coroutine.resume(coroutine.create(function(hatty) for i = 0, 1, 0.1 do wait() hatty.Transparency = hatty.Transparency - 0.1 end hatty.Transparency = 0 end ), hatp) -- DECOMPILER ERROR at PC44: LeaveBlock: unexpected jumping out IF_THEN_STMT -- DECOMPILER ERROR at PC44: LeaveBlock: unexpected jumping out IF_STMT end end end end for _,v in pairs(m:children()) do if v.className == "Part" then coroutine.resume(coroutine.create(function() for i = 0, 1, 0.1 do wait() v.Transparency = v.Transparency - 0.1 end v.Transparency = 0 end )) end end for _,v in pairs(m2:children()) do if v.className == "Part" then coroutine.resume(coroutine.create(function() for i = 0, 1, 0.1 do wait() v.Transparency = v.Transparency - 0.1 end v.Transparency = 0 end )) end end for _,v in pairs(m3:children()) do if v.className == "Part" then coroutine.resume(coroutine.create(function() for i = 0, 1, 0.1 do wait() v.Transparency = v.Transparency - 0.1 end v.Transparency = 0 end )) end end end GottaFlip = function() attack = true for i = 0, 1, 0.5 do fat.Event:wait() RootJoint.C0 = clerp(RootJoint.C0, RootCF * cf(0, 0, 0) * angles(math.rad(0), math.rad(0), math.rad(0)), 0.3) Torso.Neck.C0 = clerp(Torso.Neck.C0, necko * cf(0, 0, 0) * angles(math.rad(10), math.rad(0), math.rad(0)), 0.3) RW.C0 = clerp(RW.C0, CFrame.new(1.5, 0.5, 0) * angles(math.rad(75), math.rad(-90), math.rad(0)), 0.3) LW.C0 = clerp(LW.C0, CFrame.new(-1.5, 0.5, 0) * angles(math.rad(75), math.rad(90), math.rad(0)), 0.3) Finger1Handleweld.C0 = clerp(Finger1Handleweld.C0, CFrame.new(1.5, -0.6, 0) * angles(math.rad(0), math.rad(0), math.rad(-90)), 0.45) Finger2Handleweld.C0 = clerp(Finger2Handleweld.C0, CFrame.new(1.5, -0.6, 0) * angles(math.rad(0), math.rad(0), math.rad(-90)), 0.45) Finger3Handleweld.C0 = clerp(Finger3Handleweld.C0, CFrame.new(1.5, -0.6, 0) * angles(math.rad(0), math.rad(0), math.rad(-90)), 0.45) Finger4Handleweld.C0 = clerp(Finger4Handleweld.C0, CFrame.new(-1.5, -0.6, 0) * angles(math.rad(0), math.rad(0), math.rad(90)), 0.45) Glove2Finger1Handleweld.C0 = clerp(Glove2Finger1Handleweld.C0, CFrame.new(-1.5, -0.6, 0) * angles(math.rad(0), math.rad(0), math.rad(90)), 0.45) Glove2Finger2Handleweld.C0 = clerp(Glove2Finger2Handleweld.C0, CFrame.new(-1.5, -0.6, 0) * angles(math.rad(0), math.rad(0), math.rad(90)), 0.45) Glove2Finger3Handleweld.C0 = clerp(Glove2Finger3Handleweld.C0, CFrame.new(-1.5, -0.6, 0) * angles(math.rad(0), math.rad(0), math.rad(90)), 0.45) Glove2Finger4Handleweld.C0 = clerp(Glove2Finger4Handleweld.C0, CFrame.new(1.5, -0.6, 0) * angles(math.rad(0), math.rad(0), math.rad(-90)), 0.45) end for i = 0, 1, 0.08 do fat.Event:wait() RootJoint.C0 = clerp(RootJoint.C0, RootCF * cf(0, 0, 0) * angles(math.rad(-10), math.rad(0), math.rad(0)), 0.3) Torso.Neck.C0 = clerp(Torso.Neck.C0, necko * cf(0, 0, 0) * angles(math.rad(-10), math.rad(0), math.rad(0)), 0.3) RW.C0 = clerp(RW.C0, CFrame.new(1.5, 0.5, 0) * angles(math.rad(205), math.rad(-90), math.rad(0)), 0.3) LW.C0 = clerp(LW.C0, CFrame.new(-1.5, 0.5, 0) * angles(math.rad(205), math.rad(90), math.rad(0)), 0.3) Finger1Handleweld.C0 = clerp(Finger1Handleweld.C0, CFrame.new(1.5, -0.6, 0) * angles(math.rad(0), math.rad(0), math.rad(-90)), 0.45) Finger2Handleweld.C0 = clerp(Finger2Handleweld.C0, CFrame.new(1.5, -0.6, 0) * angles(math.rad(0), math.rad(0), math.rad(-90)), 0.45) Finger3Handleweld.C0 = clerp(Finger3Handleweld.C0, CFrame.new(1.5, -0.6, 0) * angles(math.rad(0), math.rad(0), math.rad(-90)), 0.45) Finger4Handleweld.C0 = clerp(Finger4Handleweld.C0, CFrame.new(-1.5, -0.6, 0) * angles(math.rad(0), math.rad(0), math.rad(90)), 0.45) Glove2Finger1Handleweld.C0 = clerp(Glove2Finger1Handleweld.C0, CFrame.new(-1.5, -0.6, 0) * angles(math.rad(0), math.rad(0), math.rad(90)), 0.45) Glove2Finger2Handleweld.C0 = clerp(Glove2Finger2Handleweld.C0, CFrame.new(-1.5, -0.6, 0) * angles(math.rad(0), math.rad(0), math.rad(90)), 0.45) Glove2Finger3Handleweld.C0 = clerp(Glove2Finger3Handleweld.C0, CFrame.new(-1.5, -0.6, 0) * angles(math.rad(0), math.rad(0), math.rad(90)), 0.45) Glove2Finger4Handleweld.C0 = clerp(Glove2Finger4Handleweld.C0, CFrame.new(1.5, -0.6, 0) * angles(math.rad(0), math.rad(0), math.rad(-90)), 0.45) end for i = 0, 1, 0.02 do fat.Event:wait() RootJoint.C0 = clerp(RootJoint.C0, RootCF * cf(0, 0, 0) * angles(math.rad(0), math.rad(0), math.rad(0)), 0.3) Torso.Neck.C0 = clerp(Torso.Neck.C0, necko * cf(0, 0, 0) * angles(math.rad(10), math.rad(0), math.rad(0)), 0.3) RW.C0 = clerp(RW.C0, CFrame.new(1.5, 0.5, 0) * angles(math.rad(150), math.rad(-90), math.rad(0)), 0.3) LW.C0 = clerp(LW.C0, CFrame.new(-1.5, 0.5, 0) * angles(math.rad(150), math.rad(90), math.rad(0)), 0.3) Finger1Handleweld.C0 = clerp(Finger1Handleweld.C0, CFrame.new(1.5, -0.65, 0) * angles(math.rad(0), math.rad(0), math.rad(-90)), 0.45) Finger2Handleweld.C0 = clerp(Finger2Handleweld.C0, CFrame.new(0, 0, 0) * angles(math.rad(0), math.rad(0), math.rad(0)), 0.45) Finger3Handleweld.C0 = clerp(Finger3Handleweld.C0, CFrame.new(1.5, -0.65, 0) * angles(math.rad(0), math.rad(0), math.rad(-90)), 0.45) Finger4Handleweld.C0 = clerp(Finger4Handleweld.C0, CFrame.new(-1.5, -0.65, 0) * angles(math.rad(0), math.rad(0), math.rad(90)), 0.45) Glove2Finger1Handleweld.C0 = clerp(Glove2Finger1Handleweld.C0, CFrame.new(-1.5, -0.65, 0) * angles(math.rad(0), math.rad(0), math.rad(90)), 0.45) Glove2Finger2Handleweld.C0 = clerp(Glove2Finger2Handleweld.C0, CFrame.new(0, 0, 0) * angles(math.rad(0), math.rad(0), math.rad(0)), 0.45) Glove2Finger3Handleweld.C0 = clerp(Glove2Finger3Handleweld.C0, CFrame.new(-1.5, -0.65, 0) * angles(math.rad(0), math.rad(0), math.rad(90)), 0.45) Glove2Finger4Handleweld.C0 = clerp(Glove2Finger4Handleweld.C0, CFrame.new(1.5, -0.65, 0) * angles(math.rad(0), math.rad(0), math.rad(-90)), 0.45) end attack = false end attackone = function() if cloaked == true then speed.Value = 1.25 UnCloak() end attack = true for i = 0, 1, 0.15 do fat.Event:wait() RootJoint.C0 = clerp(RootJoint.C0, RootCF * cf(0, 0, -0.1) * angles(math.rad(0), math.rad(0), math.rad(-30)), 0.3) Torso.Neck.C0 = clerp(Torso.Neck.C0, necko * cf(0, 0, 0) * angles(math.rad(10), math.rad(0), math.rad(30)), 0.3) RW.C0 = clerp(RW.C0, CFrame.new(1.5, 0.5, 0) * angles(math.rad(75), math.rad(0), math.rad(75)), 0.3) LW.C0 = clerp(LW.C0, CFrame.new(-1, 0.5, -0.5) * angles(math.rad(-20), math.rad(190), math.rad(-90)), 0.3) Finger1Handleweld.C0 = clerp(Finger1Handleweld.C0, CFrame.new(0, 0, 0) * angles(math.rad(0), math.rad(0), math.rad(0)), 0.45) Finger2Handleweld.C0 = clerp(Finger2Handleweld.C0, CFrame.new(0, 0, 0) * angles(math.rad(0), math.rad(0), math.rad(0)), 0.45) Finger3Handleweld.C0 = clerp(Finger3Handleweld.C0, CFrame.new(0, 0, 0) * angles(math.rad(0), math.rad(0), math.rad(0)), 0.45) Finger4Handleweld.C0 = clerp(Finger4Handleweld.C0, CFrame.new(0, 0, 0) * angles(math.rad(0), math.rad(0), math.rad(0)), 0.45) Glove2Finger1Handleweld.C0 = clerp(Glove2Finger1Handleweld.C0, CFrame.new(-1.5, -0.6, 0) * angles(math.rad(0), math.rad(0), math.rad(90)), 0.45) Glove2Finger2Handleweld.C0 = clerp(Glove2Finger2Handleweld.C0, CFrame.new(-1.5, -0.6, 0) * angles(math.rad(0), math.rad(0), math.rad(90)), 0.45) Glove2Finger3Handleweld.C0 = clerp(Glove2Finger3Handleweld.C0, CFrame.new(-1.5, -0.6, 0) * angles(math.rad(0), math.rad(0), math.rad(90)), 0.45) Glove2Finger4Handleweld.C0 = clerp(Glove2Finger4Handleweld.C0, CFrame.new(1.5, -0.6, 0) * angles(math.rad(0), math.rad(0), math.rad(-90)), 0.45) end con1 = Glove1Finger1ClawFinger.Touched:connect(function(hit) Damagefunc(hit, 5, 10, 5, "SlashLifeSteal", RootPart, 0.2, 1) end ) con2 = Glove1Finger2ClawFinger.Touched:connect(function(hit) Damagefunc(hit, 5, 10, 5, "SlashLifeSteal", RootPart, 0.2, 1) end ) con3 = Glove1Finger3ClawFinger.Touched:connect(function(hit) Damagefunc(hit, 5, 10, 5, "SlashLifeSteal", RootPart, 0.2, 1) end ) con4 = Glove1Finger4ClawFinger.Touched:connect(function(hit) Damagefunc(hit, 5, 10, 5, "SlashLifeSteal", RootPart, 0.2, 1) end ) so("http://roblox.com/asset/?id=338586299", LeftArm, 1, 1.1) for i = 0, 1, 0.15 do fat.Event:wait() RootJoint.C0 = clerp(RootJoint.C0, RootCF * cf(0, 0, -0.2) * angles(math.rad(10), math.rad(0), math.rad(60)), 0.45) Torso.Neck.C0 = clerp(Torso.Neck.C0, necko * cf(0, 0, 0) * angles(math.rad(10), math.rad(0), math.rad(-60)), 0.45) RW.C0 = clerp(RW.C0, CFrame.new(1, 0.5, -0.5) * angles(math.rad(75), math.rad(0), math.rad(-45)), 0.45) LW.C0 = clerp(LW.C0, CFrame.new(-1.5, 0.5, 0) * angles(math.rad(-40), math.rad(0), math.rad(-40)), 0.45) Finger1Handleweld.C0 = clerp(Finger1Handleweld.C0, CFrame.new(0, 0, 0) * angles(math.rad(0), math.rad(0), math.rad(0)), 0.45) Finger2Handleweld.C0 = clerp(Finger2Handleweld.C0, CFrame.new(0, 0, 0) * angles(math.rad(0), math.rad(0), math.rad(0)), 0.45) Finger3Handleweld.C0 = clerp(Finger3Handleweld.C0, CFrame.new(0, 0, 0) * angles(math.rad(0), math.rad(0), math.rad(0)), 0.45) Finger4Handleweld.C0 = clerp(Finger4Handleweld.C0, CFrame.new(0, 0, 0) * angles(math.rad(0), math.rad(0), math.rad(0)), 0.45) Glove2Finger1Handleweld.C0 = clerp(Glove2Finger1Handleweld.C0, CFrame.new(0, 0, 0) * angles(math.rad(0), math.rad(0), math.rad(0)), 0.45) Glove2Finger2Handleweld.C0 = clerp(Glove2Finger2Handleweld.C0, CFrame.new(0, 0, 0) * angles(math.rad(0), math.rad(0), math.rad(0)), 0.45) Glove2Finger3Handleweld.C0 = clerp(Glove2Finger3Handleweld.C0, CFrame.new(0, 0, 0) * angles(math.rad(0), math.rad(0), math.rad(0)), 0.45) Glove2Finger4Handleweld.C0 = clerp(Glove2Finger4Handleweld.C0, CFrame.new(0, 0, 0) * angles(math.rad(0), math.rad(0), math.rad(0)), 0.45) end con1:disconnect() con2:disconnect() con3:disconnect() con4:disconnect() attack = false end attacktwo = function() if cloaked == true then speed.Value = 1.25 UnCloak() end attack = true for i = 0, 1, 0.15 do fat.Event:wait() RootJoint.C0 = clerp(RootJoint.C0, RootCF * cf(0, 0, -0.1) * angles(math.rad(0), math.rad(0), math.rad(30)), 0.3) Torso.Neck.C0 = clerp(Torso.Neck.C0, necko * cf(0, 0, 0) * angles(math.rad(10), math.rad(0), math.rad(-30)), 0.3) RW.C0 = clerp(RW.C0, CFrame.new(1, 0.5, -0.5) * angles(math.rad(-20), math.rad(160), math.rad(90)), 0.3) LW.C0 = clerp(LW.C0, CFrame.new(-1.5, 0.5, 0) * angles(math.rad(75), math.rad(0), math.rad(-75)), 0.3) Finger1Handleweld.C0 = clerp(Finger1Handleweld.C0, CFrame.new(1.5, -0.6, 0) * angles(math.rad(0), math.rad(0), math.rad(-90)), 0.45) Finger2Handleweld.C0 = clerp(Finger2Handleweld.C0, CFrame.new(1.5, -0.6, 0) * angles(math.rad(0), math.rad(0), math.rad(-90)), 0.45) Finger3Handleweld.C0 = clerp(Finger3Handleweld.C0, CFrame.new(1.5, -0.6, 0) * angles(math.rad(0), math.rad(0), math.rad(-90)), 0.45) Finger4Handleweld.C0 = clerp(Finger4Handleweld.C0, CFrame.new(-1.5, -0.6, 0) * angles(math.rad(0), math.rad(0), math.rad(90)), 0.45) Glove2Finger1Handleweld.C0 = clerp(Glove2Finger1Handleweld.C0, CFrame.new(0, 0, 0) * angles(math.rad(0), math.rad(0), math.rad(0)), 0.45) Glove2Finger2Handleweld.C0 = clerp(Glove2Finger2Handleweld.C0, CFrame.new(0, 0, 0) * angles(math.rad(0), math.rad(0), math.rad(0)), 0.45) Glove2Finger3Handleweld.C0 = clerp(Glove2Finger3Handleweld.C0, CFrame.new(0, 0, 0) * angles(math.rad(0), math.rad(0), math.rad(0)), 0.45) Glove2Finger4Handleweld.C0 = clerp(Glove2Finger4Handleweld.C0, CFrame.new(0, 0, 0) * angles(math.rad(0), math.rad(0), math.rad(0)), 0.45) end con1 = Glove2Finger1ClawFinger.Touched:connect(function(hit) Damagefunc(hit, 5, 10, 5, "SlashLifeSteal", RootPart, 0.2, 1) end ) con2 = Glove2Finger2ClawFinger.Touched:connect(function(hit) Damagefunc(hit, 5, 10, 5, "SlashLifeSteal", RootPart, 0.2, 1) end ) con3 = Glove2Finger3ClawFinger.Touched:connect(function(hit) Damagefunc(hit, 5, 10, 5, "SlashLifeSteal", RootPart, 0.2, 1) end ) con4 = Glove2Finger4ClawFinger.Touched:connect(function(hit) Damagefunc(hit, 5, 10, 5, "SlashLifeSteal", RootPart, 0.2, 1) end ) so("http://roblox.com/asset/?id=338586318", RightArm, 1, 1.1) for i = 0, 1, 0.15 do fat.Event:wait() RootJoint.C0 = clerp(RootJoint.C0, RootCF * cf(0, 0, -0.2) * angles(math.rad(10), math.rad(0), math.rad(-60)), 0.45) Torso.Neck.C0 = clerp(Torso.Neck.C0, necko * cf(0, 0, 0) * angles(math.rad(10), math.rad(0), math.rad(60)), 0.45) RW.C0 = clerp(RW.C0, CFrame.new(1.5, 0.5, 0) * angles(math.rad(-40), math.rad(0), math.rad(40)), 0.45) LW.C0 = clerp(LW.C0, CFrame.new(-1, 0.5, -0.5) * angles(math.rad(75), math.rad(0), math.rad(45)), 0.45) Finger1Handleweld.C0 = clerp(Finger1Handleweld.C0, CFrame.new(0, 0, 0) * angles(math.rad(0), math.rad(0), math.rad(0)), 0.45) Finger2Handleweld.C0 = clerp(Finger2Handleweld.C0, CFrame.new(0, 0, 0) * angles(math.rad(0), math.rad(0), math.rad(0)), 0.45) Finger3Handleweld.C0 = clerp(Finger3Handleweld.C0, CFrame.new(0, 0, 0) * angles(math.rad(0), math.rad(0), math.rad(0)), 0.45) Finger4Handleweld.C0 = clerp(Finger4Handleweld.C0, CFrame.new(0, 0, 0) * angles(math.rad(0), math.rad(0), math.rad(0)), 0.45) Glove2Finger1Handleweld.C0 = clerp(Glove2Finger1Handleweld.C0, CFrame.new(0, 0, 0) * angles(math.rad(0), math.rad(0), math.rad(0)), 0.45) Glove2Finger2Handleweld.C0 = clerp(Glove2Finger2Handleweld.C0, CFrame.new(0, 0, 0) * angles(math.rad(0), math.rad(0), math.rad(0)), 0.45) Glove2Finger3Handleweld.C0 = clerp(Glove2Finger3Handleweld.C0, CFrame.new(0, 0, 0) * angles(math.rad(0), math.rad(0), math.rad(0)), 0.45) Glove2Finger4Handleweld.C0 = clerp(Glove2Finger4Handleweld.C0, CFrame.new(0, 0, 0) * angles(math.rad(0), math.rad(0), math.rad(0)), 0.45) end con1:disconnect() con2:disconnect() con3:disconnect() con4:disconnect() attack = false end attackthree = function() if cloaked == true then speed.Value = 1.25 UnCloak() end canidle = false canwalk = false attack = true for i = 0, 1, 0.6 do fat.Event:wait() RootJoint.C0 = clerp(RootJoint.C0, RootCF * cf(0, 0, 2) * angles(math.rad(10), math.rad(0), math.rad(0)), 0.45) Torso.Neck.C0 = clerp(Torso.Neck.C0, necko * cf(0, 0, 0) * angles(math.rad(10), math.rad(0), math.rad(0)), 0.45) RW.C0 = clerp(RW.C0, CFrame.new(1, 0.5, -0.5) * angles(math.rad(45), math.rad(0), math.rad(0)), 0.45) LW.C0 = clerp(LW.C0, CFrame.new(-1, 0.5, -0.25) * angles(math.rad(45), math.rad(0), math.rad(0)), 0.45) RH.C0 = clerp(RH.C0, cf(1, -0.5, -0.5) * angles(math.rad(-10), math.rad(90), math.rad(0)) * angles(math.rad(0), math.rad(0), math.rad(0)), 0.3) LH.C0 = clerp(LH.C0, cf(-1, -1, 0) * angles(math.rad(-20), math.rad(-90), math.rad(0)) * angles(math.rad(-5), math.rad(0), math.rad(0)), 0.3) Finger1Handleweld.C0 = clerp(Finger1Handleweld.C0, CFrame.new(0, 0, 0) * angles(math.rad(0), math.rad(0), math.rad(0)), 0.45) Finger2Handleweld.C0 = clerp(Finger2Handleweld.C0, CFrame.new(0, 0, 0) * angles(math.rad(0), math.rad(0), math.rad(0)), 0.45) Finger3Handleweld.C0 = clerp(Finger3Handleweld.C0, CFrame.new(0, 0, 0) * angles(math.rad(0), math.rad(0), math.rad(0)), 0.45) Finger4Handleweld.C0 = clerp(Finger4Handleweld.C0, CFrame.new(0, 0, 0) * angles(math.rad(0), math.rad(0), math.rad(0)), 0.45) Glove2Finger1Handleweld.C0 = clerp(Glove2Finger1Handleweld.C0, CFrame.new(0, 0, 0) * angles(math.rad(0), math.rad(0), math.rad(0)), 0.45) Glove2Finger2Handleweld.C0 = clerp(Glove2Finger2Handleweld.C0, CFrame.new(0, 0, 0) * angles(math.rad(0), math.rad(0), math.rad(0)), 0.45) Glove2Finger3Handleweld.C0 = clerp(Glove2Finger3Handleweld.C0, CFrame.new(0, 0, 0) * angles(math.rad(0), math.rad(0), math.rad(0)), 0.45) Glove2Finger4Handleweld.C0 = clerp(Glove2Finger4Handleweld.C0, CFrame.new(0, 0, 0) * angles(math.rad(0), math.rad(0), math.rad(0)), 0.45) end for i = 0, 1, 0.15 do fat.Event:wait() RootJoint.C0 = clerp(RootJoint.C0, RootCF * cf(0, 0, 2) * angles(math.rad(-10), math.rad(0), math.rad(0)), 0.3) Torso.Neck.C0 = clerp(Torso.Neck.C0, necko * cf(0, 0, 0) * angles(math.rad(-10), math.rad(0), math.rad(0)), 0.3) RW.C0 = clerp(RW.C0, CFrame.new(1.5, 0.75, 0) * angles(math.rad(105), math.rad(45), math.rad(90)), 0.3) LW.C0 = clerp(LW.C0, CFrame.new(-1.5, 0.75, 0) * angles(math.rad(105), math.rad(-45), math.rad(-90)), 0.3) RH.C0 = clerp(RH.C0, cf(1, -0.5, -0.5) * angles(math.rad(-10), math.rad(90), math.rad(0)) * angles(math.rad(0), math.rad(0), math.rad(0)), 0.3) LH.C0 = clerp(LH.C0, cf(-1, -1, 0) * angles(math.rad(-20), math.rad(-90), math.rad(0)) * angles(math.rad(-5), math.rad(0), math.rad(0)), 0.3) Finger1Handleweld.C0 = clerp(Finger1Handleweld.C0, CFrame.new(0, 0, 0) * angles(math.rad(0), math.rad(0), math.rad(0)), 0.45) Finger2Handleweld.C0 = clerp(Finger2Handleweld.C0, CFrame.new(0, 0, 0) * angles(math.rad(0), math.rad(0), math.rad(0)), 0.45) Finger3Handleweld.C0 = clerp(Finger3Handleweld.C0, CFrame.new(0, 0, 0) * angles(math.rad(0), math.rad(0), math.rad(0)), 0.45) Finger4Handleweld.C0 = clerp(Finger4Handleweld.C0, CFrame.new(0, 0, 0) * angles(math.rad(0), math.rad(0), math.rad(0)), 0.45) Glove2Finger1Handleweld.C0 = clerp(Glove2Finger1Handleweld.C0, CFrame.new(0, 0, 0) * angles(math.rad(0), math.rad(0), math.rad(0)), 0.45) Glove2Finger2Handleweld.C0 = clerp(Glove2Finger2Handleweld.C0, CFrame.new(0, 0, 0) * angles(math.rad(0), math.rad(0), math.rad(0)), 0.45) Glove2Finger3Handleweld.C0 = clerp(Glove2Finger3Handleweld.C0, CFrame.new(0, 0, 0) * angles(math.rad(0), math.rad(0), math.rad(0)), 0.45) Glove2Finger4Handleweld.C0 = clerp(Glove2Finger4Handleweld.C0, CFrame.new(0, 0, 0) * angles(math.rad(0), math.rad(0), math.rad(0)), 0.45) end canidle = true canwalk = true con1 = Glove1Finger1ClawFinger.Touched:connect(function(hit) Damagefunc(hit, 5, 10, 5, "SlashLifeSteal", RootPart, 0.2, 1) end ) con2 = Glove1Finger2ClawFinger.Touched:connect(function(hit) Damagefunc(hit, 5, 10, 5, "SlashLifeSteal", RootPart, 0.2, 1) end ) con3 = Glove1Finger3ClawFinger.Touched:connect(function(hit) Damagefunc(hit, 5, 10, 5, "SlashLifeSteal", RootPart, 0.2, 1) end ) con4 = Glove1Finger4ClawFinger.Touched:connect(function(hit) Damagefunc(hit, 5, 10, 5, "SlashLifeSteal", RootPart, 0.2, 1) end ) con5 = Glove2Finger1ClawFinger.Touched:connect(function(hit) Damagefunc(hit, 5, 10, 5, "SlashLifeSteal", RootPart, 0.2, 1) end ) con6 = Glove2Finger2ClawFinger.Touched:connect(function(hit) Damagefunc(hit, 5, 10, 5, "SlashLifeSteal", RootPart, 0.2, 1) end ) con7 = Glove2Finger3ClawFinger.Touched:connect(function(hit) Damagefunc(hit, 5, 10, 5, "SlashLifeSteal", RootPart, 0.2, 1) end ) con8 = Glove2Finger4ClawFinger.Touched:connect(function(hit) Damagefunc(hit, 5, 10, 5, "SlashLifeSteal", RootPart, 0.2, 1) end ) so("http://roblox.com/asset/?id=338586331", Torso, 1, 1.1) for i = 0, 1, 0.15 do fat.Event:wait() RootJoint.C0 = clerp(RootJoint.C0, RootCF * cf(0, 0, -0.1) * angles(math.rad(10), math.rad(0), math.rad(0)), 0.45) Torso.Neck.C0 = clerp(Torso.Neck.C0, necko * cf(0, 0, 0) * angles(math.rad(10), math.rad(0), math.rad(0)), 0.45) RW.C0 = clerp(RW.C0, CFrame.new(1, 0.5, -0.5) * angles(math.rad(75), math.rad(45), math.rad(-75)), 0.45) LW.C0 = clerp(LW.C0, CFrame.new(-1, 0.5, -0.25) * angles(math.rad(75), math.rad(-45), math.rad(75)), 0.45) Finger1Handleweld.C0 = clerp(Finger1Handleweld.C0, CFrame.new(0, 0, 0) * angles(math.rad(0), math.rad(0), math.rad(0)), 0.45) Finger2Handleweld.C0 = clerp(Finger2Handleweld.C0, CFrame.new(0, 0, 0) * angles(math.rad(0), math.rad(0), math.rad(0)), 0.45) Finger3Handleweld.C0 = clerp(Finger3Handleweld.C0, CFrame.new(0, 0, 0) * angles(math.rad(0), math.rad(0), math.rad(0)), 0.45) Finger4Handleweld.C0 = clerp(Finger4Handleweld.C0, CFrame.new(0, 0, 0) * angles(math.rad(0), math.rad(0), math.rad(0)), 0.45) Glove2Finger1Handleweld.C0 = clerp(Glove2Finger1Handleweld.C0, CFrame.new(0, 0, 0) * angles(math.rad(0), math.rad(0), math.rad(0)), 0.45) Glove2Finger2Handleweld.C0 = clerp(Glove2Finger2Handleweld.C0, CFrame.new(0, 0, 0) * angles(math.rad(0), math.rad(0), math.rad(0)), 0.45) Glove2Finger3Handleweld.C0 = clerp(Glove2Finger3Handleweld.C0, CFrame.new(0, 0, 0) * angles(math.rad(0), math.rad(0), math.rad(0)), 0.45) Glove2Finger4Handleweld.C0 = clerp(Glove2Finger4Handleweld.C0, CFrame.new(0, 0, 0) * angles(math.rad(0), math.rad(0), math.rad(0)), 0.45) end con1:disconnect() con2:disconnect() con3:disconnect() con4:disconnect() con5:disconnect() con6:disconnect() con7:disconnect() con8:disconnect() attack = false end attackfour = function() if cloaked == true then speed.Value = 1.25 UnCloak() end attack = true for i = 0, 1, 0.15 do fat.Event:wait() RootJoint.C0 = clerp(RootJoint.C0, RootCF * cf(0, 0, 0) * angles(math.rad(10), math.rad(0), math.rad(75)), 0.3) Torso.Neck.C0 = clerp(Torso.Neck.C0, necko * cf(0, 0, 0) * angles(math.rad(10), math.rad(0), math.rad(-15)), 0.3) RW.C0 = clerp(RW.C0, CFrame.new(1.5, 0.5, 0) * angles(math.rad(-90), math.rad(0), math.rad(90)), 0.3) LW.C0 = clerp(LW.C0, CFrame.new(-1.5, 0.5, 0) * angles(math.rad(90), math.rad(0), math.rad(-90)), 0.3) Finger1Handleweld.C0 = clerp(Finger1Handleweld.C0, CFrame.new(0, 0, 0) * angles(math.rad(0), math.rad(0), math.rad(0)), 0.45) Finger2Handleweld.C0 = clerp(Finger2Handleweld.C0, CFrame.new(0, 0, 0) * angles(math.rad(0), math.rad(0), math.rad(0)), 0.45) Finger3Handleweld.C0 = clerp(Finger3Handleweld.C0, CFrame.new(0, 0, 0) * angles(math.rad(0), math.rad(0), math.rad(0)), 0.45) Finger4Handleweld.C0 = clerp(Finger4Handleweld.C0, CFrame.new(0, 0, 0) * angles(math.rad(0), math.rad(0), math.rad(0)), 0.45) Glove2Finger1Handleweld.C0 = clerp(Glove2Finger1Handleweld.C0, CFrame.new(0, 0, 0) * angles(math.rad(0), math.rad(0), math.rad(0)), 0.45) Glove2Finger2Handleweld.C0 = clerp(Glove2Finger2Handleweld.C0, CFrame.new(0, 0, 0) * angles(math.rad(0), math.rad(0), math.rad(0)), 0.45) Glove2Finger3Handleweld.C0 = clerp(Glove2Finger3Handleweld.C0, CFrame.new(0, 0, 0) * angles(math.rad(0), math.rad(0), math.rad(0)), 0.45) Glove2Finger4Handleweld.C0 = clerp(Glove2Finger4Handleweld.C0, CFrame.new(0, 0, 0) * angles(math.rad(0), math.rad(0), math.rad(0)), 0.45) end con1 = Glove1Finger1ClawFinger.Touched:connect(function(hit) Damagefunc(hit, 5, 10, 5, "SlashLifeSteal", RootPart, 0.2, 1) end ) con2 = Glove1Finger2ClawFinger.Touched:connect(function(hit) Damagefunc(hit, 5, 10, 5, "SlashLifeSteal", RootPart, 0.2, 1) end ) con3 = Glove1Finger3ClawFinger.Touched:connect(function(hit) Damagefunc(hit, 5, 10, 5, "SlashLifeSteal", RootPart, 0.2, 1) end ) con4 = Glove1Finger4ClawFinger.Touched:connect(function(hit) Damagefunc(hit, 5, 10, 5, "SlashLifeSteal", RootPart, 0.2, 1) end ) con5 = Glove2Finger1ClawFinger.Touched:connect(function(hit) Damagefunc(hit, 5, 10, 5, "SlashLifeSteal", RootPart, 0.2, 1) end ) con6 = Glove2Finger2ClawFinger.Touched:connect(function(hit) Damagefunc(hit, 5, 10, 5, "SlashLifeSteal", RootPart, 0.2, 1) end ) con7 = Glove2Finger3ClawFinger.Touched:connect(function(hit) Damagefunc(hit, 5, 10, 5, "SlashLifeSteal", RootPart, 0.2, 1) end ) con8 = Glove2Finger4ClawFinger.Touched:connect(function(hit) Damagefunc(hit, 5, 10, 5, "SlashLifeSteal", RootPart, 0.2, 1) end ) so("http://roblox.com/asset/?id=338586299", Torso, 1, 1.3) for i = 0, 1, 0.125 do fat.Event:wait() RootJoint.C0 = clerp(RootJoint.C0, RootCF * cf(0, 0, 0) * angles(math.rad(-10), math.rad(0), math.rad(0 - 360 * i)), 0.45) Torso.Neck.C0 = clerp(Torso.Neck.C0, necko * cf(0, 0, 0) * angles(math.rad(0), math.rad(0), math.rad(0)), 0.45) RW.C0 = clerp(RW.C0, CFrame.new(1.5, 0.5, 0) * angles(math.rad(-90), math.rad(0), math.rad(90)), 0.45) LW.C0 = clerp(LW.C0, CFrame.new(-1.5, 0.5, 0) * angles(math.rad(90), math.rad(0), math.rad(-90)), 0.45) Finger1Handleweld.C0 = clerp(Finger1Handleweld.C0, CFrame.new(0, 0, 0) * angles(math.rad(0), math.rad(0), math.rad(0)), 0.45) Finger2Handleweld.C0 = clerp(Finger2Handleweld.C0, CFrame.new(0, 0, 0) * angles(math.rad(0), math.rad(0), math.rad(0)), 0.45) Finger3Handleweld.C0 = clerp(Finger3Handleweld.C0, CFrame.new(0, 0, 0) * angles(math.rad(0), math.rad(0), math.rad(0)), 0.45) Finger4Handleweld.C0 = clerp(Finger4Handleweld.C0, CFrame.new(0, 0, 0) * angles(math.rad(0), math.rad(0), math.rad(0)), 0.45) Glove2Finger1Handleweld.C0 = clerp(Glove2Finger1Handleweld.C0, CFrame.new(0, 0, 0) * angles(math.rad(0), math.rad(0), math.rad(0)), 0.45) Glove2Finger2Handleweld.C0 = clerp(Glove2Finger2Handleweld.C0, CFrame.new(0, 0, 0) * angles(math.rad(0), math.rad(0), math.rad(0)), 0.45) Glove2Finger3Handleweld.C0 = clerp(Glove2Finger3Handleweld.C0, CFrame.new(0, 0, 0) * angles(math.rad(0), math.rad(0), math.rad(0)), 0.45) Glove2Finger4Handleweld.C0 = clerp(Glove2Finger4Handleweld.C0, CFrame.new(0, 0, 0) * angles(math.rad(0), math.rad(0), math.rad(0)), 0.45) end con1:disconnect() con2:disconnect() con3:disconnect() con4:disconnect() con5:disconnect() con6:disconnect() con7:disconnect() con8:disconnect() attack = false end SpiralDispursion = function() if cloaked == true then speed.Value = 1.25 UnCloak() end attack = true con1 = Glove1Finger1ClawFinger.Touched:connect(function(hit) Damagefunc(hit, 7, 14, 5, "SlashLifeSteal", RootPart, 0.2, 1) end ) con2 = Glove1Finger2ClawFinger.Touched:connect(function(hit) Damagefunc(hit, 7, 14, 5, "SlashLifeSteal", RootPart, 0.2, 1) end ) con3 = Glove1Finger3ClawFinger.Touched:connect(function(hit) Damagefunc(hit, 7, 14, 5, "SlashLifeSteal", RootPart, 0.2, 1) end ) con4 = Glove1Finger4ClawFinger.Touched:connect(function(hit) Damagefunc(hit, 7, 14, 5, "SlashLifeSteal", RootPart, 0.2, 1) end ) con5 = Glove2Finger1ClawFinger.Touched:connect(function(hit) Damagefunc(hit, 7, 14, 5, "SlashLifeSteal", RootPart, 0.2, 1) end ) con6 = Glove2Finger2ClawFinger.Touched:connect(function(hit) Damagefunc(hit, 7, 14, 5, "SlashLifeSteal", RootPart, 0.2, 1) end ) con7 = Glove2Finger3ClawFinger.Touched:connect(function(hit) Damagefunc(hit, 7, 14, 5, "SlashLifeSteal", RootPart, 0.2, 1) end ) con8 = Glove2Finger4ClawFinger.Touched:connect(function(hit) Damagefunc(hit, 7, 14, 5, "SlashLifeSteal", RootPart, 0.2, 1) end ) for i = 1, 4 do so("http://roblox.com/asset/?id=338586331", Torso, 1, math.random(120, 140) / 100) for i = 0, 1, 0.125 do fat.Event:wait() Torso.Velocity = RootPart.CFrame.lookVector * 25 RootJoint.C0 = clerp(RootJoint.C0, RootCF * cf(0, 0, -1) * angles(math.rad(0), math.rad(-180), math.rad(0 - 360 * i)), 0.45) Torso.Neck.C0 = clerp(Torso.Neck.C0, necko * cf(0, 0, 0) * angles(math.rad(0), math.rad(0), math.rad(0)), 0.45) RW.C0 = clerp(RW.C0, CFrame.new(1.5, 0.5, 0) * angles(math.rad(-90), math.rad(0), math.rad(90)), 0.45) LW.C0 = clerp(LW.C0, CFrame.new(-1.5, 0.5, 0) * angles(math.rad(90), math.rad(0), math.rad(-90)), 0.45) Finger1Handleweld.C0 = clerp(Finger1Handleweld.C0, CFrame.new(0, 0, 0) * angles(math.rad(0), math.rad(0), math.rad(0)), 0.45) Finger2Handleweld.C0 = clerp(Finger2Handleweld.C0, CFrame.new(0, 0, 0) * angles(math.rad(0), math.rad(0), math.rad(0)), 0.45) Finger3Handleweld.C0 = clerp(Finger3Handleweld.C0, CFrame.new(0, 0, 0) * angles(math.rad(0), math.rad(0), math.rad(0)), 0.45) Finger4Handleweld.C0 = clerp(Finger4Handleweld.C0, CFrame.new(0, 0, 0) * angles(math.rad(0), math.rad(0), math.rad(0)), 0.45) Glove2Finger1Handleweld.C0 = clerp(Glove2Finger1Handleweld.C0, CFrame.new(0, 0, 0) * angles(math.rad(0), math.rad(0), math.rad(0)), 0.45) Glove2Finger2Handleweld.C0 = clerp(Glove2Finger2Handleweld.C0, CFrame.new(0, 0, 0) * angles(math.rad(0), math.rad(0), math.rad(0)), 0.45) Glove2Finger3Handleweld.C0 = clerp(Glove2Finger3Handleweld.C0, CFrame.new(0, 0, 0) * angles(math.rad(0), math.rad(0), math.rad(0)), 0.45) Glove2Finger4Handleweld.C0 = clerp(Glove2Finger4Handleweld.C0, CFrame.new(0, 0, 0) * angles(math.rad(0), math.rad(0), math.rad(0)), 0.45) end end con1:disconnect() con2:disconnect() con3:disconnect() con4:disconnect() con5:disconnect() con6:disconnect() con7:disconnect() con8:disconnect() for i = 0, 1, 0.12 do fat.Event:wait() RootJoint.C0 = clerp(RootJoint.C0, RootCF * cf(0, 0, 2) * angles(math.rad(0 + 360 * i), math.rad(0), math.rad(0)), 0.3) Torso.Neck.C0 = clerp(Torso.Neck.C0, necko * cf(0, 0, 0) * angles(math.rad(20), math.rad(0), math.rad(0)), 0.3) RW.C0 = clerp(RW.C0, CFrame.new(1, 0.5, -0.5) * angles(math.rad(90), math.rad(0), math.rad(-30)), 0.3) LW.C0 = clerp(LW.C0, CFrame.new(-1, 0.5, -0.5) * angles(math.rad(90), math.rad(0), math.rad(30)), 0.3) RH.C0 = clerp(RH.C0, cf(1, 0.5, -1) * angles(math.rad(-10), math.rad(90), math.rad(0)) * angles(math.rad(-5), math.rad(0), math.rad(0)), 0.3) LH.C0 = clerp(LH.C0, cf(-1, 0.5, -1) * angles(math.rad(-10), math.rad(-90), math.rad(0)) * angles(math.rad(-5), math.rad(0), math.rad(0)), 0.3) Finger1Handleweld.C0 = clerp(Finger1Handleweld.C0, CFrame.new(1.5, -0.6, 0) * angles(math.rad(0), math.rad(0), math.rad(-90)), 0.45) Finger2Handleweld.C0 = clerp(Finger2Handleweld.C0, CFrame.new(1.5, -0.6, 0) * angles(math.rad(0), math.rad(0), math.rad(-90)), 0.45) Finger3Handleweld.C0 = clerp(Finger3Handleweld.C0, CFrame.new(1.5, -0.6, 0) * angles(math.rad(0), math.rad(0), math.rad(-90)), 0.45) Finger4Handleweld.C0 = clerp(Finger4Handleweld.C0, CFrame.new(-1.5, -0.6, 0) * angles(math.rad(0), math.rad(0), math.rad(90)), 0.45) Glove2Finger1Handleweld.C0 = clerp(Glove2Finger1Handleweld.C0, CFrame.new(-1.5, -0.6, 0) * angles(math.rad(0), math.rad(0), math.rad(90)), 0.45) Glove2Finger2Handleweld.C0 = clerp(Glove2Finger2Handleweld.C0, CFrame.new(-1.5, -0.6, 0) * angles(math.rad(0), math.rad(0), math.rad(90)), 0.45) Glove2Finger3Handleweld.C0 = clerp(Glove2Finger3Handleweld.C0, CFrame.new(-1.5, -0.6, 0) * angles(math.rad(0), math.rad(0), math.rad(90)), 0.45) Glove2Finger4Handleweld.C0 = clerp(Glove2Finger4Handleweld.C0, CFrame.new(1.5, -0.6, 0) * angles(math.rad(0), math.rad(0), math.rad(-90)), 0.45) end attack = false end GalacticLunge = function() if cloaked == true then speed.Value = 1.25 UnCloak() end canidle = false canwalk = false attack = true for i = 1, 1 do for i = 0, 1, 0.125 do fat.Event:wait() Torso.Velocity = RootPart.CFrame.lookVector * 50 RootJoint.C0 = clerp(RootJoint.C0, RootCF * cf(0, 0, 4) * angles(math.rad(0 + 360 * i), math.rad(0), math.rad(0)), 0.3) Torso.Neck.C0 = clerp(Torso.Neck.C0, necko * cf(0, 0, 0) * angles(math.rad(-10), math.rad(0), math.rad(0)), 0.3) RW.C0 = clerp(RW.C0, CFrame.new(1.5, 0.75, 0) * angles(math.rad(105), math.rad(45), math.rad(90)), 0.3) LW.C0 = clerp(LW.C0, CFrame.new(-1.5, 0.75, 0) * angles(math.rad(105), math.rad(-45), math.rad(-90)), 0.3) RH.C0 = clerp(RH.C0, cf(1, -0.5, -0.5) * angles(math.rad(-10), math.rad(90), math.rad(0)) * angles(math.rad(0), math.rad(0), math.rad(0)), 0.3) LH.C0 = clerp(LH.C0, cf(-1, -1, 0) * angles(math.rad(-20), math.rad(-90), math.rad(0)) * angles(math.rad(-5), math.rad(0), math.rad(0)), 0.3) Finger1Handleweld.C0 = clerp(Finger1Handleweld.C0, CFrame.new(0, 0, 0) * angles(math.rad(0), math.rad(0), math.rad(0)), 0.45) Finger2Handleweld.C0 = clerp(Finger2Handleweld.C0, CFrame.new(0, 0, 0) * angles(math.rad(0), math.rad(0), math.rad(0)), 0.45) Finger3Handleweld.C0 = clerp(Finger3Handleweld.C0, CFrame.new(0, 0, 0) * angles(math.rad(0), math.rad(0), math.rad(0)), 0.45) Finger4Handleweld.C0 = clerp(Finger4Handleweld.C0, CFrame.new(0, 0, 0) * angles(math.rad(0), math.rad(0), math.rad(0)), 0.45) Glove2Finger1Handleweld.C0 = clerp(Glove2Finger1Handleweld.C0, CFrame.new(0, 0, 0) * angles(math.rad(0), math.rad(0), math.rad(0)), 0.45) Glove2Finger2Handleweld.C0 = clerp(Glove2Finger2Handleweld.C0, CFrame.new(0, 0, 0) * angles(math.rad(0), math.rad(0), math.rad(0)), 0.45) Glove2Finger3Handleweld.C0 = clerp(Glove2Finger3Handleweld.C0, CFrame.new(0, 0, 0) * angles(math.rad(0), math.rad(0), math.rad(0)), 0.45) Glove2Finger4Handleweld.C0 = clerp(Glove2Finger4Handleweld.C0, CFrame.new(0, 0, 0) * angles(math.rad(0), math.rad(0), math.rad(0)), 0.45) end end for i = 0, 1, 0.4 do fat.Event:wait() RootJoint.C0 = clerp(RootJoint.C0, RootCF * cf(0, 0, 2) * angles(math.rad(-10), math.rad(0), math.rad(0)), 0.3) Torso.Neck.C0 = clerp(Torso.Neck.C0, necko * cf(0, 0, 0) * angles(math.rad(-10), math.rad(0), math.rad(0)), 0.3) RW.C0 = clerp(RW.C0, CFrame.new(1.5, 0.75, 0) * angles(math.rad(75), math.rad(45), math.rad(90)), 0.3) LW.C0 = clerp(LW.C0, CFrame.new(-1.5, 0.75, 0) * angles(math.rad(75), math.rad(-45), math.rad(-90)), 0.3) RH.C0 = clerp(RH.C0, cf(1, -0.5, -0.5) * angles(math.rad(-10), math.rad(90), math.rad(0)) * angles(math.rad(0), math.rad(0), math.rad(0)), 0.3) LH.C0 = clerp(LH.C0, cf(-1, -1, 0) * angles(math.rad(-20), math.rad(-90), math.rad(0)) * angles(math.rad(-5), math.rad(0), math.rad(0)), 0.3) Finger1Handleweld.C0 = clerp(Finger1Handleweld.C0, CFrame.new(0, 0, 0) * angles(math.rad(0), math.rad(0), math.rad(0)), 0.45) Finger2Handleweld.C0 = clerp(Finger2Handleweld.C0, CFrame.new(0, 0, 0) * angles(math.rad(0), math.rad(0), math.rad(0)), 0.45) Finger3Handleweld.C0 = clerp(Finger3Handleweld.C0, CFrame.new(0, 0, 0) * angles(math.rad(0), math.rad(0), math.rad(0)), 0.45) Finger4Handleweld.C0 = clerp(Finger4Handleweld.C0, CFrame.new(0, 0, 0) * angles(math.rad(0), math.rad(0), math.rad(0)), 0.45) Glove2Finger1Handleweld.C0 = clerp(Glove2Finger1Handleweld.C0, CFrame.new(0, 0, 0) * angles(math.rad(0), math.rad(0), math.rad(0)), 0.45) Glove2Finger2Handleweld.C0 = clerp(Glove2Finger2Handleweld.C0, CFrame.new(0, 0, 0) * angles(math.rad(0), math.rad(0), math.rad(0)), 0.45) Glove2Finger3Handleweld.C0 = clerp(Glove2Finger3Handleweld.C0, CFrame.new(0, 0, 0) * angles(math.rad(0), math.rad(0), math.rad(0)), 0.45) Glove2Finger4Handleweld.C0 = clerp(Glove2Finger4Handleweld.C0, CFrame.new(0, 0, 0) * angles(math.rad(0), math.rad(0), math.rad(0)), 0.45) end canidle = true canwalk = true con1 = Glove1Finger1ClawFinger.Touched:connect(function(hit) Damagefunc(hit, 10, 20, 5, "SlashLifeSteal", RootPart, 0.2, 1) end ) con2 = Glove1Finger2ClawFinger.Touched:connect(function(hit) Damagefunc(hit, 10, 20, 5, "SlashLifeSteal", RootPart, 0.2, 1) end ) con3 = Glove1Finger3ClawFinger.Touched:connect(function(hit) Damagefunc(hit, 10, 20, 5, "SlashLifeSteal", RootPart, 0.2, 1) end ) con4 = Glove1Finger4ClawFinger.Touched:connect(function(hit) Damagefunc(hit, 10, 20, 5, "SlashLifeSteal", RootPart, 0.2, 1) end ) con5 = Glove2Finger1ClawFinger.Touched:connect(function(hit) Damagefunc(hit, 10, 20, 5, "SlashLifeSteal", RootPart, 0.2, 1) end ) con6 = Glove2Finger2ClawFinger.Touched:connect(function(hit) Damagefunc(hit, 10, 20, 5, "SlashLifeSteal", RootPart, 0.2, 1) end ) con7 = Glove2Finger3ClawFinger.Touched:connect(function(hit) Damagefunc(hit, 10, 20, 5, "SlashLifeSteal", RootPart, 0.2, 1) end ) con8 = Glove2Finger4ClawFinger.Touched:connect(function(hit) Damagefunc(hit, 10, 20, 5, "SlashLifeSteal", RootPart, 0.2, 1) end ) so("http://roblox.com/asset/?id=338586331", Torso, 1, math.random(120, 140) / 100) for i = 0, 1, 0.15 do fat.Event:wait() RootJoint.C0 = clerp(RootJoint.C0, RootCF * cf(0, 0, -0.1) * angles(math.rad(10), math.rad(0), math.rad(0)), 0.45) Torso.Neck.C0 = clerp(Torso.Neck.C0, necko * cf(0, 0, 0) * angles(math.rad(10), math.rad(0), math.rad(0)), 0.45) RW.C0 = clerp(RW.C0, CFrame.new(1, 0.5, -0.5) * angles(math.rad(75), math.rad(45), math.rad(-75)), 0.45) LW.C0 = clerp(LW.C0, CFrame.new(-1, 0.5, -0.25) * angles(math.rad(75), math.rad(-45), math.rad(75)), 0.45) Finger1Handleweld.C0 = clerp(Finger1Handleweld.C0, CFrame.new(0, 0, 0) * angles(math.rad(0), math.rad(0), math.rad(0)), 0.45) Finger2Handleweld.C0 = clerp(Finger2Handleweld.C0, CFrame.new(0, 0, 0) * angles(math.rad(0), math.rad(0), math.rad(0)), 0.45) Finger3Handleweld.C0 = clerp(Finger3Handleweld.C0, CFrame.new(0, 0, 0) * angles(math.rad(0), math.rad(0), math.rad(0)), 0.45) Finger4Handleweld.C0 = clerp(Finger4Handleweld.C0, CFrame.new(0, 0, 0) * angles(math.rad(0), math.rad(0), math.rad(0)), 0.45) Glove2Finger1Handleweld.C0 = clerp(Glove2Finger1Handleweld.C0, CFrame.new(0, 0, 0) * angles(math.rad(0), math.rad(0), math.rad(0)), 0.45) Glove2Finger2Handleweld.C0 = clerp(Glove2Finger2Handleweld.C0, CFrame.new(0, 0, 0) * angles(math.rad(0), math.rad(0), math.rad(0)), 0.45) Glove2Finger3Handleweld.C0 = clerp(Glove2Finger3Handleweld.C0, CFrame.new(0, 0, 0) * angles(math.rad(0), math.rad(0), math.rad(0)), 0.45) Glove2Finger4Handleweld.C0 = clerp(Glove2Finger4Handleweld.C0, CFrame.new(0, 0, 0) * angles(math.rad(0), math.rad(0), math.rad(0)), 0.45) end con1:disconnect() con2:disconnect() con3:disconnect() con4:disconnect() con5:disconnect() con6:disconnect() con7:disconnect() con8:disconnect() attack = false end CelestialMatterDistortion = function() if cloaked == true then UnCloak() end invisible = true attack = true for i = 0, 1, 0.12 do fat.Event:wait() Humanoid.WalkSpeed = 16 * speed.Value RootJoint.C0 = clerp(RootJoint.C0, RootCF * cf(0, 0, 0) * angles(math.rad(0), math.rad(0), math.rad(0)), 0.3) Torso.Neck.C0 = clerp(Torso.Neck.C0, necko * cf(0, 0, 0) * angles(math.rad(10), math.rad(0), math.rad(0)), 0.3) RW.C0 = clerp(RW.C0, CFrame.new(1, 0.5, -0.5) * angles(math.rad(90), math.rad(0), math.rad(-45)), 0.3) LW.C0 = clerp(LW.C0, CFrame.new(-1, 0.5, -0.5) * angles(math.rad(90), math.rad(0), math.rad(45)), 0.3) Finger1Handleweld.C0 = clerp(Finger1Handleweld.C0, CFrame.new(0, 0, 0) * angles(math.rad(0), math.rad(0), math.rad(0)), 0.45) Finger2Handleweld.C0 = clerp(Finger2Handleweld.C0, CFrame.new(0, 0, 0) * angles(math.rad(0), math.rad(0), math.rad(0)), 0.45) Finger3Handleweld.C0 = clerp(Finger3Handleweld.C0, CFrame.new(0, 0, 0) * angles(math.rad(0), math.rad(0), math.rad(0)), 0.45) Finger4Handleweld.C0 = clerp(Finger4Handleweld.C0, CFrame.new(0, 0, 0) * angles(math.rad(0), math.rad(0), math.rad(0)), 0.45) Glove2Finger1Handleweld.C0 = clerp(Glove2Finger1Handleweld.C0, CFrame.new(0, 0, 0) * angles(math.rad(0), math.rad(0), math.rad(0)), 0.45) Glove2Finger2Handleweld.C0 = clerp(Glove2Finger2Handleweld.C0, CFrame.new(0, 0, 0) * angles(math.rad(0), math.rad(0), math.rad(0)), 0.45) Glove2Finger3Handleweld.C0 = clerp(Glove2Finger3Handleweld.C0, CFrame.new(0, 0, 0) * angles(math.rad(0), math.rad(0), math.rad(0)), 0.45) Glove2Finger4Handleweld.C0 = clerp(Glove2Finger4Handleweld.C0, CFrame.new(0, 0, 0) * angles(math.rad(0), math.rad(0), math.rad(0)), 0.45) end Humanoid.WalkSpeed = 0 * speed.Value canidle = false canwalk = false for i = 0, 1, 0.08 do fat.Event:wait() Humanoid.WalkSpeed = 0 * speed.Value RootJoint.C0 = clerp(RootJoint.C0, RootCF * cf(0, 0, -1.1) * angles(math.rad(45), math.rad(0), math.rad(45)), 0.3) Torso.Neck.C0 = clerp(Torso.Neck.C0, necko * cf(0, 0, 0) * angles(math.rad(-20), math.rad(20), math.rad(-45)), 0.3) RW.C0 = clerp(RW.C0, CFrame.new(1.5, 0.5, 0) * angles(math.rad(45), math.rad(0), math.rad(45)), 0.3) LW.C0 = clerp(LW.C0, CFrame.new(-1.5, 0.5, 0) * angles(math.rad(-30), math.rad(0), math.rad(-30)), 0.3) RH.C0 = clerp(RH.C0, cf(0.9, -1, 0.45) * angles(math.rad(-35), math.rad(45), math.rad(0)) * angles(math.rad(15), math.rad(0), math.rad(0)), 0.3) LH.C0 = clerp(LH.C0, cf(-1, 0, -1) * angles(math.rad(45), math.rad(-105), math.rad(0)) * angles(math.rad(25), math.rad(0), math.rad(0)), 0.3) Finger1Handleweld.C0 = clerp(Finger1Handleweld.C0, CFrame.new(0, 0, 0) * angles(math.rad(0), math.rad(0), math.rad(0)), 0.45) Finger2Handleweld.C0 = clerp(Finger2Handleweld.C0, CFrame.new(0, 0, 0) * angles(math.rad(0), math.rad(0), math.rad(0)), 0.45) Finger3Handleweld.C0 = clerp(Finger3Handleweld.C0, CFrame.new(0, 0, 0) * angles(math.rad(0), math.rad(0), math.rad(0)), 0.45) Finger4Handleweld.C0 = clerp(Finger4Handleweld.C0, CFrame.new(0, 0, 0) * angles(math.rad(0), math.rad(0), math.rad(0)), 0.45) Glove2Finger1Handleweld.C0 = clerp(Glove2Finger1Handleweld.C0, CFrame.new(0, 0, 0) * angles(math.rad(0), math.rad(0), math.rad(0)), 0.45) Glove2Finger2Handleweld.C0 = clerp(Glove2Finger2Handleweld.C0, CFrame.new(0, 0, 0) * angles(math.rad(0), math.rad(0), math.rad(0)), 0.45) Glove2Finger3Handleweld.C0 = clerp(Glove2Finger3Handleweld.C0, CFrame.new(0, 0, 0) * angles(math.rad(0), math.rad(0), math.rad(0)), 0.45) Glove2Finger4Handleweld.C0 = clerp(Glove2Finger4Handleweld.C0, CFrame.new(0, 0, 0) * angles(math.rad(0), math.rad(0), math.rad(0)), 0.45) end Head.Transparency = 1 Cloak2() for i = 0, 1, 0.1 do fat.Event:wait() Humanoid.WalkSpeed = 0 * speed.Value Head.Transparency = 1 RootJoint.C0 = clerp(RootJoint.C0, RootCF * cf(0, 0, -1.1) * angles(math.rad(45), math.rad(0), math.rad(45)), 0.3) Torso.Neck.C0 = clerp(Torso.Neck.C0, necko * cf(0, 0, 0) * angles(math.rad(-20), math.rad(20), math.rad(-45)), 0.3) RW.C0 = clerp(RW.C0, CFrame.new(1.5, 0.5, 0) * angles(math.rad(45), math.rad(0), math.rad(45)), 0.3) LW.C0 = clerp(LW.C0, CFrame.new(-1.5, 0.5, 0) * angles(math.rad(-30), math.rad(0), math.rad(-30)), 0.3) RH.C0 = clerp(RH.C0, cf(0.9, -1, 0.45) * angles(math.rad(-35), math.rad(45), math.rad(0)) * angles(math.rad(15), math.rad(0), math.rad(0)), 0.3) LH.C0 = clerp(LH.C0, cf(-1, 0, -1) * angles(math.rad(45), math.rad(-105), math.rad(0)) * angles(math.rad(25), math.rad(0), math.rad(0)), 0.3) Finger1Handleweld.C0 = clerp(Finger1Handleweld.C0, CFrame.new(0, 0, 0) * angles(math.rad(0), math.rad(0), math.rad(0)), 0.45) Finger2Handleweld.C0 = clerp(Finger2Handleweld.C0, CFrame.new(0, 0, 0) * angles(math.rad(0), math.rad(0), math.rad(0)), 0.45) Finger3Handleweld.C0 = clerp(Finger3Handleweld.C0, CFrame.new(0, 0, 0) * angles(math.rad(0), math.rad(0), math.rad(0)), 0.45) Finger4Handleweld.C0 = clerp(Finger4Handleweld.C0, CFrame.new(0, 0, 0) * angles(math.rad(0), math.rad(0), math.rad(0)), 0.45) Glove2Finger1Handleweld.C0 = clerp(Glove2Finger1Handleweld.C0, CFrame.new(0, 0, 0) * angles(math.rad(0), math.rad(0), math.rad(0)), 0.45) Glove2Finger2Handleweld.C0 = clerp(Glove2Finger2Handleweld.C0, CFrame.new(0, 0, 0) * angles(math.rad(0), math.rad(0), math.rad(0)), 0.45) Glove2Finger3Handleweld.C0 = clerp(Glove2Finger3Handleweld.C0, CFrame.new(0, 0, 0) * angles(math.rad(0), math.rad(0), math.rad(0)), 0.45) Glove2Finger4Handleweld.C0 = clerp(Glove2Finger4Handleweld.C0, CFrame.new(0, 0, 0) * angles(math.rad(0), math.rad(0), math.rad(0)), 0.45) end wait(0.5) Head.Transparency = 1 Humanoid.WalkSpeed = 16 * speed.Value canidle = true canwalk = true attack = false wait(5) UnCloak2() invisible = false end DemolishingGroundPound = function() if cloaked == true then UnCloak() end canidle = false canwalk = false attack = true Humanoid.WalkSpeed = 0 * speed.Value for i = 0, 1, 0.08 do fat.Event:wait() Torso.Velocity = RootPart.CFrame.lookVector * 25 Humanoid.WalkSpeed = 0 * speed.Value RootJoint.C0 = clerp(RootJoint.C0, RootCF * cf(0, 0, 5 + 2 * i) * angles(math.rad(-15 - 15 * i), math.rad(0), math.rad(0)), 0.3) Torso.Neck.C0 = clerp(Torso.Neck.C0, necko * cf(0, 0, 0) * angles(math.rad(30 + 15 * i), math.rad(0), math.rad(0)), 0.3) RW.C0 = clerp(RW.C0, CFrame.new(1, 0.75 + 0.25 * i, -0.5 + 0.5 * i) * angles(math.rad(135 + 30 * i), math.rad(0), math.rad(-15)), 0.3) LW.C0 = clerp(LW.C0, CFrame.new(-1, 0.75 + 0.25 * i, -0.5 + 0.5 * i) * angles(math.rad(135 + 30 * i), math.rad(0), math.rad(15)), 0.3) RH.C0 = clerp(RH.C0, cf(1, -1, 0) * angles(math.rad(-20 - 15 * i), math.rad(90), math.rad(0)) * angles(math.rad(-10), math.rad(0), math.rad(0)), 0.3) LH.C0 = clerp(LH.C0, cf(-1, -1, 0) * angles(math.rad(-20 - 15 * i), math.rad(-90), math.rad(0)) * angles(math.rad(-10), math.rad(0), math.rad(0)), 0.3) Finger1Handleweld.C0 = clerp(Finger1Handleweld.C0, CFrame.new(1.5, -0.6, 0) * angles(math.rad(0), math.rad(0), math.rad(-90)), 0.45) Finger2Handleweld.C0 = clerp(Finger2Handleweld.C0, CFrame.new(1.5, -0.6, 0) * angles(math.rad(0), math.rad(0), math.rad(-90)), 0.45) Finger3Handleweld.C0 = clerp(Finger3Handleweld.C0, CFrame.new(1.5, -0.6, 0) * angles(math.rad(0), math.rad(0), math.rad(-90)), 0.45) Finger4Handleweld.C0 = clerp(Finger4Handleweld.C0, CFrame.new(-1.5, -0.6, 0) * angles(math.rad(0), math.rad(0), math.rad(90)), 0.45) Glove2Finger1Handleweld.C0 = clerp(Glove2Finger1Handleweld.C0, CFrame.new(-1.5, -0.6, 0) * angles(math.rad(0), math.rad(0), math.rad(90)), 0.45) Glove2Finger2Handleweld.C0 = clerp(Glove2Finger2Handleweld.C0, CFrame.new(-1.5, -0.6, 0) * angles(math.rad(0), math.rad(0), math.rad(90)), 0.45) Glove2Finger3Handleweld.C0 = clerp(Glove2Finger3Handleweld.C0, CFrame.new(-1.5, -0.6, 0) * angles(math.rad(0), math.rad(0), math.rad(90)), 0.45) Glove2Finger4Handleweld.C0 = clerp(Glove2Finger4Handleweld.C0, CFrame.new(1.5, -0.6, 0) * angles(math.rad(0), math.rad(0), math.rad(-90)), 0.45) end do for i = 0, 1, 0.5 do fat.Event:wait() Humanoid.WalkSpeed = 0 * speed.Value RootJoint.C0 = clerp(RootJoint.C0, RootCF * cf(0, 0, -1.5) * angles(math.rad(135), math.rad(0), math.rad(0)), 0.6) Torso.Neck.C0 = clerp(Torso.Neck.C0, necko * cf(0, 0, 0) * angles(math.rad(-45), math.rad(0), math.rad(0)), 0.6) RW.C0 = clerp(RW.C0, CFrame.new(1, 0.75, -0.5) * angles(math.rad(205), math.rad(0), math.rad(-15)), 0.6) LW.C0 = clerp(LW.C0, CFrame.new(-1, 0.75, -0.5) * angles(math.rad(205), math.rad(0), math.rad(15)), 0.6) RH.C0 = clerp(RH.C0, cf(1, -1, 0) * angles(math.rad(-20), math.rad(90), math.rad(0)) * angles(math.rad(-10), math.rad(0), math.rad(0)), 0.6) LH.C0 = clerp(LH.C0, cf(-1, -1, 0) * angles(math.rad(-20), math.rad(-90), math.rad(0)) * angles(math.rad(-10), math.rad(0), math.rad(0)), 0.6) Finger1Handleweld.C0 = clerp(Finger1Handleweld.C0, CFrame.new(1.5, -0.6, 0) * angles(math.rad(0), math.rad(0), math.rad(-90)), 0.45) Finger2Handleweld.C0 = clerp(Finger2Handleweld.C0, CFrame.new(1.5, -0.6, 0) * angles(math.rad(0), math.rad(0), math.rad(-90)), 0.45) Finger3Handleweld.C0 = clerp(Finger3Handleweld.C0, CFrame.new(1.5, -0.6, 0) * angles(math.rad(0), math.rad(0), math.rad(-90)), 0.45) Finger4Handleweld.C0 = clerp(Finger4Handleweld.C0, CFrame.new(-1.5, -0.6, 0) * angles(math.rad(0), math.rad(0), math.rad(90)), 0.45) Glove2Finger1Handleweld.C0 = clerp(Glove2Finger1Handleweld.C0, CFrame.new(-1.5, -0.6, 0) * angles(math.rad(0), math.rad(0), math.rad(90)), 0.45) Glove2Finger2Handleweld.C0 = clerp(Glove2Finger2Handleweld.C0, CFrame.new(-1.5, -0.6, 0) * angles(math.rad(0), math.rad(0), math.rad(90)), 0.45) Glove2Finger3Handleweld.C0 = clerp(Glove2Finger3Handleweld.C0, CFrame.new(-1.5, -0.6, 0) * angles(math.rad(0), math.rad(0), math.rad(90)), 0.45) Glove2Finger4Handleweld.C0 = clerp(Glove2Finger4Handleweld.C0, CFrame.new(1.5, -0.6, 0) * angles(math.rad(0), math.rad(0), math.rad(-90)), 0.45) end end hitfloor = nil while hitfloor == nil do fat.Event:wait() hitfloor = rayCast(Head.Position, CFrame.new(RootPart.Position, RootPart.Position - Vector3.new(0, 1, 0)).lookVector, 4, Character) end Col = hitfloor.BrickColor refpart = part(3, workspace, "SmoothPlastic", 0, 1, Col, "Effect", vt()) refpart.Anchored = true refpart.Parent = workspace refpart.CFrame = cf(posfloor) game:GetService("Debris"):AddItem(refpart, 3) for i = 1, 20 do local Color = hitfloor.BrickColor local Materials = hitfloor.Material local groundpart = part(3, workspace, "SmoothPlastic", 0, 0, Color, "Ground", vt(math.random(10, 50) / 100, math.random(10, 50) / 100, math.random(10, 50) / 100)) groundpart.Anchored = false groundpart.Material = Materials groundpart.CanCollide = true groundpart.Friction = 0.1 groundpart.Velocity = Vector3.new(math.random(-25, 25), math.random(50, 75), math.random(-25, 25)) groundpart.CFrame = cf(posfloor) * cf(math.random(-250, 250) / 100, 0, math.random(-250, 250) / 100) * euler(math.random(-50, 50), math.random(-50, 50), math.random(-50, 50)) local actualgroundpart = part(3, workspace, "SmoothPlastic", 0, 0, Color, "Ground", vt(math.random(100, 200) / 100, math.random(100, 200) / 100, math.random(100, 200) / 100)) actualgroundpart.Anchored = true actualgroundpart.Material = Materials actualgroundpart.CanCollide = false actualgroundpart.Friction = 1 actualgroundpart.CFrame = cf(posfloor) * cf(math.random(-500, 500) / 100, 0, math.random(-500, 500) / 100) * euler(math.random(-50, 50), math.random(-50, 50), math.random(-50, 50)) game:GetService("Debris"):AddItem(actualgroundpart, 10) game:GetService("Debris"):AddItem(groundpart, 10) coroutine.resume(coroutine.create(function() wait(5) while 1 do fat.Event:wait() groundpart.Transparency = groundpart.Transparency + 0.025 actualgroundpart.Transparency = actualgroundpart.Transparency + 0.05 end end )) end so("http://roblox.com/asset/?id=200632875", Torso, 1, 1) so("http://roblox.com/asset/?id=263610131", Torso, 1, 1) so("http://roblox.com/asset/?id=263610111", Torso, 1, 1) JumpEffect(Col, cf(refpart.Position), 1, 1, 1, 1, 1, 4, 0.05) JumpEffect(Col, cf(refpart.Position), 1, 1, 1, 1, 1, 1, 0.025) MagniDamage(refpart, 12, 15, 20, 10, "Normal") for i = 0, 1, 0.4 do fat.Event:wait() Humanoid.WalkSpeed = 0 * speed.Value RootJoint.C0 = clerp(RootJoint.C0, RootCF * cf(0, 0, -1.5) * angles(math.rad(135 + 15 * i), math.rad(0), math.rad(0)), 0.6) Torso.Neck.C0 = clerp(Torso.Neck.C0, necko * cf(0, 0, 0) * angles(math.rad(-45 - 15 * i), math.rad(0), math.rad(0)), 0.6) RW.C0 = clerp(RW.C0, CFrame.new(1, 0.75, -0.5) * angles(math.rad(205 + 15 * i), math.rad(0), math.rad(-15)), 0.6) LW.C0 = clerp(LW.C0, CFrame.new(-1, 0.75, -0.5) * angles(math.rad(205 + 15 * i), math.rad(0), math.rad(15)), 0.6) RH.C0 = clerp(RH.C0, cf(1, -1, 0) * angles(math.rad(-20 - 15 * i), math.rad(90), math.rad(0)) * angles(math.rad(-10), math.rad(0), math.rad(0)), 0.6) LH.C0 = clerp(LH.C0, cf(-1, -1, 0) * angles(math.rad(-20 - 15 * i), math.rad(-90), math.rad(0)) * angles(math.rad(-10), math.rad(0), math.rad(0)), 0.6) Finger1Handleweld.C0 = clerp(Finger1Handleweld.C0, CFrame.new(1.5, -0.6, 0) * angles(math.rad(0), math.rad(0), math.rad(-90)), 0.45) Finger2Handleweld.C0 = clerp(Finger2Handleweld.C0, CFrame.new(1.5, -0.6, 0) * angles(math.rad(0), math.rad(0), math.rad(-90)), 0.45) Finger3Handleweld.C0 = clerp(Finger3Handleweld.C0, CFrame.new(1.5, -0.6, 0) * angles(math.rad(0), math.rad(0), math.rad(-90)), 0.45) Finger4Handleweld.C0 = clerp(Finger4Handleweld.C0, CFrame.new(-1.5, -0.6, 0) * angles(math.rad(0), math.rad(0), math.rad(90)), 0.45) Glove2Finger1Handleweld.C0 = clerp(Glove2Finger1Handleweld.C0, CFrame.new(-1.5, -0.6, 0) * angles(math.rad(0), math.rad(0), math.rad(90)), 0.45) Glove2Finger2Handleweld.C0 = clerp(Glove2Finger2Handleweld.C0, CFrame.new(-1.5, -0.6, 0) * angles(math.rad(0), math.rad(0), math.rad(90)), 0.45) Glove2Finger3Handleweld.C0 = clerp(Glove2Finger3Handleweld.C0, CFrame.new(-1.5, -0.6, 0) * angles(math.rad(0), math.rad(0), math.rad(90)), 0.45) Glove2Finger4Handleweld.C0 = clerp(Glove2Finger4Handleweld.C0, CFrame.new(1.5, -0.6, 0) * angles(math.rad(0), math.rad(0), math.rad(-90)), 0.45) end for i = 0, 1, 0.05 do fat.Event:wait() Humanoid.WalkSpeed = 0 * speed.Value RootJoint.C0 = clerp(RootJoint.C0, RootCF * cf(0, 0, -2.5) * angles(math.rad(90), math.rad(0), math.rad(0)), 0.45) Torso.Neck.C0 = clerp(Torso.Neck.C0, necko * cf(0, 0, 0) * angles(math.rad(-45), math.rad(0), math.rad(0)), 0.45) RW.C0 = clerp(RW.C0, CFrame.new(1, 0.5, 0) * angles(math.rad(180), math.rad(0), math.rad(-15)), 0.45) LW.C0 = clerp(LW.C0, CFrame.new(-1, 0.5, 0) * angles(math.rad(180), math.rad(0), math.rad(15)), 0.45) RH.C0 = clerp(RH.C0, cf(1, -1, 0) * angles(math.rad(0), math.rad(90), math.rad(0)) * angles(math.rad(-5), math.rad(0), math.rad(0)), 0.45) LH.C0 = clerp(LH.C0, cf(-1, -1, 0) * angles(math.rad(0), math.rad(-90), math.rad(0)) * angles(math.rad(-5), math.rad(0), math.rad(0)), 0.45) Finger1Handleweld.C0 = clerp(Finger1Handleweld.C0, CFrame.new(1.5, -0.6, 0) * angles(math.rad(0), math.rad(0), math.rad(-90)), 0.45) Finger2Handleweld.C0 = clerp(Finger2Handleweld.C0, CFrame.new(1.5, -0.6, 0) * angles(math.rad(0), math.rad(0), math.rad(-90)), 0.45) Finger3Handleweld.C0 = clerp(Finger3Handleweld.C0, CFrame.new(1.5, -0.6, 0) * angles(math.rad(0), math.rad(0), math.rad(-90)), 0.45) Finger4Handleweld.C0 = clerp(Finger4Handleweld.C0, CFrame.new(-1.5, -0.6, 0) * angles(math.rad(0), math.rad(0), math.rad(90)), 0.45) Glove2Finger1Handleweld.C0 = clerp(Glove2Finger1Handleweld.C0, CFrame.new(-1.5, -0.6, 0) * angles(math.rad(0), math.rad(0), math.rad(90)), 0.45) Glove2Finger2Handleweld.C0 = clerp(Glove2Finger2Handleweld.C0, CFrame.new(-1.5, -0.6, 0) * angles(math.rad(0), math.rad(0), math.rad(90)), 0.45) Glove2Finger3Handleweld.C0 = clerp(Glove2Finger3Handleweld.C0, CFrame.new(-1.5, -0.6, 0) * angles(math.rad(0), math.rad(0), math.rad(90)), 0.45) Glove2Finger4Handleweld.C0 = clerp(Glove2Finger4Handleweld.C0, CFrame.new(1.5, -0.6, 0) * angles(math.rad(0), math.rad(0), math.rad(-90)), 0.45) end for i = 0, 1, 0.15 do fat.Event:wait() Humanoid.WalkSpeed = 0 * speed.Value RootJoint.C0 = clerp(RootJoint.C0, RootCF * cf(0, 0, -1.1) * angles(math.rad(45), math.rad(0), math.rad(0)), 0.45) Torso.Neck.C0 = clerp(Torso.Neck.C0, necko * cf(0, 0, 0) * angles(math.rad(-20), math.rad(0), math.rad(0)), 0.45) RW.C0 = clerp(RW.C0, CFrame.new(1.5, 0.5, 0) * angles(math.rad(45), math.rad(0), math.rad(15)), 0.45) LW.C0 = clerp(LW.C0, CFrame.new(-1.5, 0.5, 0) * angles(math.rad(45), math.rad(0), math.rad(-15)), 0.45) RH.C0 = clerp(RH.C0, cf(0.9, -1, 0) * angles(math.rad(-15), math.rad(90), math.rad(0)) * angles(math.rad(0), math.rad(0), math.rad(0)), 0.45) LH.C0 = clerp(LH.C0, cf(-1, 0.8, -0.8) * angles(math.rad(35), math.rad(-90), math.rad(0)) * angles(math.rad(0), math.rad(0), math.rad(0)), 0.45) Finger1Handleweld.C0 = clerp(Finger1Handleweld.C0, CFrame.new(0, 0, 0) * angles(math.rad(0), math.rad(0), math.rad(0)), 0.45) Finger2Handleweld.C0 = clerp(Finger2Handleweld.C0, CFrame.new(0, 0, 0) * angles(math.rad(0), math.rad(0), math.rad(0)), 0.45) Finger3Handleweld.C0 = clerp(Finger3Handleweld.C0, CFrame.new(0, 0, 0) * angles(math.rad(0), math.rad(0), math.rad(0)), 0.45) Finger4Handleweld.C0 = clerp(Finger4Handleweld.C0, CFrame.new(0, 0, 0) * angles(math.rad(0), math.rad(0), math.rad(0)), 0.45) Glove2Finger1Handleweld.C0 = clerp(Glove2Finger1Handleweld.C0, CFrame.new(0, 0, 0) * angles(math.rad(0), math.rad(0), math.rad(0)), 0.45) Glove2Finger2Handleweld.C0 = clerp(Glove2Finger2Handleweld.C0, CFrame.new(0, 0, 0) * angles(math.rad(0), math.rad(0), math.rad(0)), 0.45) Glove2Finger3Handleweld.C0 = clerp(Glove2Finger3Handleweld.C0, CFrame.new(0, 0, 0) * angles(math.rad(0), math.rad(0), math.rad(0)), 0.45) Glove2Finger4Handleweld.C0 = clerp(Glove2Finger4Handleweld.C0, CFrame.new(0, 0, 0) * angles(math.rad(0), math.rad(0), math.rad(0)), 0.45) end Humanoid.WalkSpeed = 16 * speed.Value canidle = true canwalk = true attack = false end CometalBlast = function() attack = true canidle = false canwalk = false for i = 0, 1, 0.12 do fat.Event:wait() Humanoid.WalkSpeed = 0 * speed.Value RootJoint.C0 = clerp(RootJoint.C0, RootCF * cf(0, 0, -0.5) * angles(math.rad(10), math.rad(0), math.rad(30)), 0.45) Torso.Neck.C0 = clerp(Torso.Neck.C0, necko * cf(0, 0, 0) * angles(math.rad(10), math.rad(0), math.rad(-30)), 0.45) RW.C0 = clerp(RW.C0, CFrame.new(1, 0.5, -0.5) * angles(math.rad(75), math.rad(0), math.rad(-60)), 0.45) LW.C0 = clerp(LW.C0, CFrame.new(-1.5, 0.5, 0) * angles(math.rad(-15), math.rad(0), math.rad(-30)), 0.45) RH.C0 = clerp(RH.C0, cf(1, -0.5, -0.5) * angles(math.rad(10), math.rad(90), math.rad(0)) * angles(math.rad(-2.5), math.rad(0), math.rad(0)), 0.45) LH.C0 = clerp(LH.C0, cf(-1, -1, 0) * angles(math.rad(-45), math.rad(-90), math.rad(0)) * angles(math.rad(-2.5), math.rad(0), math.rad(0)), 0.45) Finger1Handleweld.C0 = clerp(Finger1Handleweld.C0, CFrame.new(0, 0, 0) * angles(math.rad(0), math.rad(0), math.rad(0)), 0.45) Finger2Handleweld.C0 = clerp(Finger2Handleweld.C0, CFrame.new(0, 0, 0) * angles(math.rad(0), math.rad(0), math.rad(0)), 0.45) Finger3Handleweld.C0 = clerp(Finger3Handleweld.C0, CFrame.new(0, 0, 0) * angles(math.rad(0), math.rad(0), math.rad(0)), 0.45) Finger4Handleweld.C0 = clerp(Finger4Handleweld.C0, CFrame.new(0, 0, 0) * angles(math.rad(0), math.rad(0), math.rad(0)), 0.45) Glove2Finger1Handleweld.C0 = clerp(Glove2Finger1Handleweld.C0, CFrame.new(0, 0, 0) * angles(math.rad(0), math.rad(0), math.rad(0)), 0.45) Glove2Finger2Handleweld.C0 = clerp(Glove2Finger2Handleweld.C0, CFrame.new(0, 0, 0) * angles(math.rad(0), math.rad(0), math.rad(0)), 0.45) Glove2Finger3Handleweld.C0 = clerp(Glove2Finger3Handleweld.C0, CFrame.new(0, 0, 0) * angles(math.rad(0), math.rad(0), math.rad(0)), 0.45) Glove2Finger4Handleweld.C0 = clerp(Glove2Finger4Handleweld.C0, CFrame.new(0, 0, 0) * angles(math.rad(0), math.rad(0), math.rad(0)), 0.45) end so("http://roblox.com/asset/?id=199145659", LeftArm, 1, math.random(150, 200) / 100) do for i = 0, 1, 0.12 do fat.Event:wait() Humanoid.WalkSpeed = 0 * speed.Value OrbEffect(TorsoColor, LeftArm.CFrame * cf(0, -1, 0), 0.1, 0.1, 0.1, 0.5, 0.5, 0.5, 0.1) BlockShockwave(TorsoColor, LeftArm.CFrame * cf(0, -1, 0), 0.1, 0.1, 0.1, 0.5, 0.5, 0.5, 0.1) RootJoint.C0 = clerp(RootJoint.C0, RootCF * cf(0, 0, -0.5) * angles(math.rad(10), math.rad(0), math.rad(30)), 0.45) Torso.Neck.C0 = clerp(Torso.Neck.C0, necko * cf(0, 0, 0) * angles(math.rad(10), math.rad(0), math.rad(-30)), 0.45) RW.C0 = clerp(RW.C0, CFrame.new(1, 0.5, -0.5) * angles(math.rad(75), math.rad(0), math.rad(-60)), 0.45) LW.C0 = clerp(LW.C0, CFrame.new(-1.5, 0.5, 0) * angles(math.rad(-15), math.rad(0), math.rad(-30)), 0.45) RH.C0 = clerp(RH.C0, cf(1, -0.5, -0.5) * angles(math.rad(10), math.rad(90), math.rad(0)) * angles(math.rad(-2.5), math.rad(0), math.rad(0)), 0.45) LH.C0 = clerp(LH.C0, cf(-1, -1, 0) * angles(math.rad(-45), math.rad(-90), math.rad(0)) * angles(math.rad(-2.5), math.rad(0), math.rad(0)), 0.45) Finger1Handleweld.C0 = clerp(Finger1Handleweld.C0, CFrame.new(0, 0, 0) * angles(math.rad(0), math.rad(0), math.rad(0)), 0.45) Finger2Handleweld.C0 = clerp(Finger2Handleweld.C0, CFrame.new(0, 0, 0) * angles(math.rad(0), math.rad(0), math.rad(0)), 0.45) Finger3Handleweld.C0 = clerp(Finger3Handleweld.C0, CFrame.new(0, 0, 0) * angles(math.rad(0), math.rad(0), math.rad(0)), 0.45) Finger4Handleweld.C0 = clerp(Finger4Handleweld.C0, CFrame.new(0, 0, 0) * angles(math.rad(0), math.rad(0), math.rad(0)), 0.45) Glove2Finger1Handleweld.C0 = clerp(Glove2Finger1Handleweld.C0, CFrame.new(0, 0, 0) * angles(math.rad(0), math.rad(0), math.rad(0)), 0.45) Glove2Finger2Handleweld.C0 = clerp(Glove2Finger2Handleweld.C0, CFrame.new(0, 0, 0) * angles(math.rad(0), math.rad(0), math.rad(0)), 0.45) Glove2Finger3Handleweld.C0 = clerp(Glove2Finger3Handleweld.C0, CFrame.new(0, 0, 0) * angles(math.rad(0), math.rad(0), math.rad(0)), 0.45) Glove2Finger4Handleweld.C0 = clerp(Glove2Finger4Handleweld.C0, CFrame.new(0, 0, 0) * angles(math.rad(0), math.rad(0), math.rad(0)), 0.45) end end canidle = true canwalk = true for i = 0, 1, 0.08 do fat.Event:wait() Humanoid.WalkSpeed = 16 * speed.Value RootJoint.C0 = clerp(RootJoint.C0, RootCF * cf(0, 0, 0) * angles(math.rad(0), math.rad(0), math.rad(-75)), 0.45) Torso.Neck.C0 = clerp(Torso.Neck.C0, necko * cf(0, 0, 0) * angles(math.rad(0), math.rad(0), math.rad(75)), 0.45) RW.C0 = clerp(RW.C0, CFrame.new(1.5, 0.5, 0) * angles(math.rad(-15), math.rad(0), math.rad(30)), 0.45) LW.C0 = clerp(LW.C0, CFrame.new(-1.5, 0.5, 0) * angles(math.rad(0), math.rad(-15), math.rad(-90)), 0.45) Finger1Handleweld.C0 = clerp(Finger1Handleweld.C0, CFrame.new(0, 0, 0) * angles(math.rad(0), math.rad(0), math.rad(0)), 0.45) Finger2Handleweld.C0 = clerp(Finger2Handleweld.C0, CFrame.new(0, 0, 0) * angles(math.rad(0), math.rad(0), math.rad(0)), 0.45) Finger3Handleweld.C0 = clerp(Finger3Handleweld.C0, CFrame.new(0, 0, 0) * angles(math.rad(0), math.rad(0), math.rad(0)), 0.45) Finger4Handleweld.C0 = clerp(Finger4Handleweld.C0, CFrame.new(0, 0, 0) * angles(math.rad(0), math.rad(0), math.rad(0)), 0.45) Glove2Finger1Handleweld.C0 = clerp(Glove2Finger1Handleweld.C0, CFrame.new(0, 0, 0) * angles(math.rad(0), math.rad(0), math.rad(0)), 0.45) Glove2Finger2Handleweld.C0 = clerp(Glove2Finger2Handleweld.C0, CFrame.new(0, 0, 0) * angles(math.rad(0), math.rad(0), math.rad(0)), 0.45) Glove2Finger3Handleweld.C0 = clerp(Glove2Finger3Handleweld.C0, CFrame.new(0, 0, 0) * angles(math.rad(0), math.rad(0), math.rad(0)), 0.45) Glove2Finger4Handleweld.C0 = clerp(Glove2Finger4Handleweld.C0, CFrame.new(0, 0, 0) * angles(math.rad(0), math.rad(0), math.rad(0)), 0.45) end canidle = false canwalk = false refpart = part(3, workspace, "SmoothPlastic", 0, 1, Col, "Effect", vt()) refpart.Anchored = true refpart.CFrame = RootPart.CFrame * cf(0, 0, -10) game:GetService("Debris"):AddItem(refpart, 3) for i = 1, 20 do local groundpart = part(3, workspace, "SmoothPlastic", 0, 0, TorsoColor, "Ground", vt(math.random(100, 200) / 100, math.random(100, 200) / 100, math.random(100, 200) / 100)) groundpart.Anchored = false groundpart.Material = "Neon" groundpart.CanCollide = false groundpart.Friction = 0.1 groundpart.Velocity = Vector3.new(math.random(-50, 50), math.random(75, 100), math.random(-50, 50)) groundpart.CFrame = cf(refpart.Position) * cf(math.random(-250, 250) / 100, 0, math.random(-250, 250) / 100) * euler(math.random(-50, 50), math.random(-50, 50), math.random(-50, 50)) game:GetService("Debris"):AddItem(groundpart, 5) coroutine.resume(coroutine.create(function() while 1 do fat.Event:wait() groundpart.Transparency = groundpart.Transparency + 0.025 end end )) end so("http://roblox.com/asset/?id=199145534", refpart, 1, math.random(150, 200) / 100) for i = 1, math.random(3, 6) do OrbEffect(TorsoColor, cf(refpart.Position), 1, 1, 1, 1, 1, 1, 0.025) Shockwave(TorsoColor, cf(refpart.Position), 1, 1, 1, 1, 1, 1, 0.025) end MagniDamage(refpart, 20, 8, 16, 20, "Normal") Humanoid.Jump = true Torso.Velocity = Vector3.new(0, 7.5, 0) Torso.Velocity = RootPart.CFrame.lookVector * -75 for i = 1, math.random(3, 6) do OrbEffect(TorsoColor, LeftArm.CFrame * cf(0, -1, 0), 0.1, 0.1, 0.1, 0.5, 0.5, 0.5, 0.075) BlockShockwave(TorsoColor, LeftArm.CFrame * cf(0, -1, 0), 0.1, 0.1, 0.1, 0.5, 0.5, 0.5, 0.075) end for i = 0, 1, 0.08 do fat.Event:wait() Humanoid.WalkSpeed = 0 * speed.Value RootJoint.C0 = clerp(RootJoint.C0, RootCF * cf(0, 2, 0) * angles(math.rad(-20 - 45 * i), math.rad(0), math.rad(0)), 0.45) Torso.Neck.C0 = clerp(Torso.Neck.C0, necko * cf(0, 0, 0) * angles(math.rad(20), math.rad(0), math.rad(0)), 0.45) RW.C0 = clerp(RW.C0, CFrame.new(1.5, 0.5, 0) * angles(math.rad(75), math.rad(45), math.rad(15)), 0.45) LW.C0 = clerp(LW.C0, CFrame.new(-1.5, 0.5, 0) * angles(math.rad(75), math.rad(-45), math.rad(-15)), 0.45) RH.C0 = clerp(RH.C0, cf(1, -1, 0) * angles(math.rad(45), math.rad(90), math.rad(0)) * angles(math.rad(-7.5), math.rad(0), math.rad(0)), 0.45) LH.C0 = clerp(LH.C0, cf(-1, -1, 0) * angles(math.rad(45), math.rad(-90), math.rad(0)) * angles(math.rad(-7.5), math.rad(0), math.rad(0)), 0.45) Finger1Handleweld.C0 = clerp(Finger1Handleweld.C0, CFrame.new(1.5, -0.6, 0) * angles(math.rad(0), math.rad(0), math.rad(-90)), 0.45) Finger2Handleweld.C0 = clerp(Finger2Handleweld.C0, CFrame.new(1.5, -0.6, 0) * angles(math.rad(0), math.rad(0), math.rad(-90)), 0.45) Finger3Handleweld.C0 = clerp(Finger3Handleweld.C0, CFrame.new(1.5, -0.6, 0) * angles(math.rad(0), math.rad(0), math.rad(-90)), 0.45) Finger4Handleweld.C0 = clerp(Finger4Handleweld.C0, CFrame.new(-1.5, -0.6, 0) * angles(math.rad(0), math.rad(0), math.rad(90)), 0.45) Glove2Finger1Handleweld.C0 = clerp(Glove2Finger1Handleweld.C0, CFrame.new(0, 0, 0) * angles(math.rad(0), math.rad(0), math.rad(0)), 0.45) Glove2Finger2Handleweld.C0 = clerp(Glove2Finger2Handleweld.C0, CFrame.new(0, 0, 0) * angles(math.rad(0), math.rad(0), math.rad(0)), 0.45) Glove2Finger3Handleweld.C0 = clerp(Glove2Finger3Handleweld.C0, CFrame.new(0, 0, 0) * angles(math.rad(0), math.rad(0), math.rad(0)), 0.45) Glove2Finger4Handleweld.C0 = clerp(Glove2Finger4Handleweld.C0, CFrame.new(0, 0, 0) * angles(math.rad(0), math.rad(0), math.rad(0)), 0.45) end canidle = true canwalk = true attack = false end BlackHole = function() if cloaked == true then UnCloak() end canidle = false canwalk = false attack = true Humanoid.Jump = true so("http://roblox.com/asset/?id=199145761", Torso, 1, math.random(75, 125) / 100) for i = 1, 2 do for i = 0, 1, 0.12 do fat.Event:wait() Torso.Velocity = vt(0, 20, 0) RootJoint.C0 = clerp(RootJoint.C0, RootCF * cf(0, 0, 0) * angles(math.rad(0), math.rad(0), math.rad(0 + 360 * i)), 0.3) Torso.Neck.C0 = clerp(Torso.Neck.C0, necko * cf(0, 0, 0) * angles(math.rad(-20), math.rad(0), math.rad(0)), 0.3) RW.C0 = clerp(RW.C0, CFrame.new(1.5, 0.5, 0) * angles(math.rad(-10), math.rad(0), math.rad(15)), 0.3) LW.C0 = clerp(LW.C0, CFrame.new(-1.5, 0.5, 0) * angles(math.rad(-10), math.rad(0), math.rad(-15)), 0.3) RH.C0 = clerp(RH.C0, cf(1, -1, 0) * angles(math.rad(-10), math.rad(90), math.rad(0)) * angles(math.rad(-10), math.rad(0), math.rad(0)), 0.3) LH.C0 = clerp(LH.C0, cf(-1, -1, 0) * angles(math.rad(-10), math.rad(-90), math.rad(0)) * angles(math.rad(-10), math.rad(0), math.rad(0)), 0.3) Finger1Handleweld.C0 = clerp(Finger1Handleweld.C0, CFrame.new(0, 0, 0) * angles(math.rad(0), math.rad(0), math.rad(0)), 0.45) Finger2Handleweld.C0 = clerp(Finger2Handleweld.C0, CFrame.new(0, 0, 0) * angles(math.rad(0), math.rad(0), math.rad(0)), 0.45) Finger3Handleweld.C0 = clerp(Finger3Handleweld.C0, CFrame.new(0, 0, 0) * angles(math.rad(0), math.rad(0), math.rad(0)), 0.45) Finger4Handleweld.C0 = clerp(Finger4Handleweld.C0, CFrame.new(0, 0, 0) * angles(math.rad(0), math.rad(0), math.rad(0)), 0.45) Glove2Finger1Handleweld.C0 = clerp(Glove2Finger1Handleweld.C0, CFrame.new(0, 0, 0) * angles(math.rad(0), math.rad(0), math.rad(0)), 0.45) Glove2Finger2Handleweld.C0 = clerp(Glove2Finger2Handleweld.C0, CFrame.new(0, 0, 0) * angles(math.rad(0), math.rad(0), math.rad(0)), 0.45) Glove2Finger3Handleweld.C0 = clerp(Glove2Finger3Handleweld.C0, CFrame.new(0, 0, 0) * angles(math.rad(0), math.rad(0), math.rad(0)), 0.45) Glove2Finger4Handleweld.C0 = clerp(Glove2Finger4Handleweld.C0, CFrame.new(0, 0, 0) * angles(math.rad(0), math.rad(0), math.rad(0)), 0.45) BlockShockwave(TorsoColor, LeftLeg.CFrame * cf(0, -1, 0), 1, 1, 1, 0.5, 0.5, 0.5, 0.1) BlockShockwave(TorsoColor, RightLeg.CFrame * cf(0, -1, 0), 1, 1, 1, 0.5, 0.5, 0.5, 0.1) end end so("http://roblox.com/asset/?id=199145659", RightArm, 1, math.random(100, 150) / 100) for i = 0, 1, 0.04 do fat.Event:wait() Torso.Velocity = vt(0, 4, 0) OrbEffect(TorsoColor, RightArm.CFrame * cf(0, -1, 0), 0.5, 0.5, 0.5, 0.5, 0.5, 0.5, 0.075) BlockShockwave(TorsoColor, RightArm.CFrame * cf(0, -1, 0), 0.5, 0.5, 0.5, 0.5, 0.5, 0.5, 0.075) RootJoint.C0 = clerp(RootJoint.C0, RootCF * cf(0, 0, 0) * angles(math.rad(-10), math.rad(0), math.rad(-45)), 0.3) Torso.Neck.C0 = clerp(Torso.Neck.C0, necko * cf(0, 0, 0) * angles(math.rad(10), math.rad(0), math.rad(45)), 0.3) RW.C0 = clerp(RW.C0, CFrame.new(1.5, 0.5, 0) * angles(math.rad(105), math.rad(0), math.rad(75)), 0.3) LW.C0 = clerp(LW.C0, CFrame.new(-1.5, 0.5, 0) * angles(math.rad(75), math.rad(0), math.rad(45)), 0.3) RH.C0 = clerp(RH.C0, cf(1, -1, 0) * angles(math.rad(-15), math.rad(90), math.rad(0)) * angles(math.rad(-5), math.rad(0), math.rad(0)), 0.3) LH.C0 = clerp(LH.C0, cf(-1, -1, 0) * angles(math.rad(15), math.rad(-90), math.rad(0)) * angles(math.rad(-5), math.rad(0), math.rad(0)), 0.3) Finger1Handleweld.C0 = clerp(Finger1Handleweld.C0, CFrame.new(0, 0, 0) * angles(math.rad(0), math.rad(0), math.rad(0)), 0.45) Finger2Handleweld.C0 = clerp(Finger2Handleweld.C0, CFrame.new(0, 0, 0) * angles(math.rad(0), math.rad(0), math.rad(0)), 0.45) Finger3Handleweld.C0 = clerp(Finger3Handleweld.C0, CFrame.new(0, 0, 0) * angles(math.rad(0), math.rad(0), math.rad(0)), 0.45) Finger4Handleweld.C0 = clerp(Finger4Handleweld.C0, CFrame.new(0, 0, 0) * angles(math.rad(0), math.rad(0), math.rad(0)), 0.45) Glove2Finger1Handleweld.C0 = clerp(Glove2Finger1Handleweld.C0, CFrame.new(-1.5, -0.6, 0) * angles(math.rad(0), math.rad(0), math.rad(90)), 0.45) Glove2Finger2Handleweld.C0 = clerp(Glove2Finger2Handleweld.C0, CFrame.new(-1.5, -0.6, 0) * angles(math.rad(0), math.rad(0), math.rad(90)), 0.45) Glove2Finger3Handleweld.C0 = clerp(Glove2Finger3Handleweld.C0, CFrame.new(-1.5, -0.6, 0) * angles(math.rad(0), math.rad(0), math.rad(90)), 0.45) Glove2Finger4Handleweld.C0 = clerp(Glove2Finger4Handleweld.C0, CFrame.new(1.5, -0.6, 0) * angles(math.rad(0), math.rad(0), math.rad(-90)), 0.45) BlockShockwave(TorsoColor, LeftLeg.CFrame * cf(0, -1, 0), 1, 1, 1, 0.5, 0.5, 0.5, 0.1) BlockShockwave(TorsoColor, RightLeg.CFrame * cf(0, -1, 0), 1, 1, 1, 0.5, 0.5, 0.5, 0.1) end portal = true portalrefpart = part(3, workspace, "SmoothPlastic", 0, 1, Col, "Effect", vt()) portalrefpart.Anchored = true portalrefpart.CFrame = Head.CFrame * cf(0, 0, -15) game:GetService("Debris"):AddItem(portalrefpart, 3) portalrefpart2 = part(3, workspace, "SmoothPlastic", 0, 1, Col, "Effect", vt()) portalrefpart2.Anchored = true portalrefpart2.CFrame = Head.CFrame * cf(0, 0, -15) game:GetService("Debris"):AddItem(portalrefpart2, 10) so("http://roblox.com/asset/?id=203691653", portalrefpart, 1, math.random(100, 150) / 100) so("http://roblox.com/asset/?id=203691562", portalrefpart, 1, math.random(100, 150) / 100) for i = 1, math.random(3, 6) do OrbEffect(TorsoColor, cf(portalrefpart.Position), 2, 2, 2, 2, 2, 2, 0.025) BlockShockwave(TorsoColor, cf(portalrefpart.Position), 2, 2, 2, 2, 2, 2, 0.025) end coroutine.resume(coroutine.create(function() while portalrefpart.Parent == workspace do fat.Event:wait() PWN = {} for _,v in pairs(workspace:children()) do if v.className == "Model" and v:FindFirstChild("Humanoid") ~= nil and v.Humanoid.Health > 0 and v:FindFirstChild("Torso") ~= nil and v ~= Character and v.Torso.Position - portalrefpart.Position.magnitude <= 35 then table.insert(PWN, v.Torso) end end for _,t in pairs(PWN) do Mag = portalrefpart.Position - t.Position.magnitude / 2 rl = it("BodyAngularVelocity") rl.P = 2000 rl.maxTorque = vt(9999, 9999, 9999) rl.angularvelocity = vt(math.random(-20, 20), math.random(-20, 20), math.random(-20, 20)) / 10 rl.Parent = t game:GetService("Debris"):AddItem(rl, 0.1) if Mag <= 2 then do vl = it("BodyVelocity") vl.P = 2000 vl.maxForce = vt(9999, 9999, 9999) vl.velocity = t.Position - portalrefpart.Position.unit * -(50 / Mag) vl.Parent = t game:GetService("Debris"):AddItem(vl, 0.1) -- DECOMPILER ERROR at PC144: LeaveBlock: unexpected jumping out IF_THEN_STMT -- DECOMPILER ERROR at PC144: LeaveBlock: unexpected jumping out IF_STMT end end end so("http://roblox.com/asset/?id=203691610", portalrefpart, 1, math.random(100, 150) / 100) MagniDamage(portalrefpart, 35, 1, 2, 1, "BlackHoleDamage") OrbEffect(TorsoColor, cf(portalrefpart.Position), 2, 2, 2, 2, 2, 2, 0.075) BlockShockwave(TorsoColor, cf(portalrefpart.Position), 2, 2, 2, 2, 2, 2, 0.05) end if portalrefpart.Parent ~= workspace then so("http://roblox.com/asset/?id=203691699", portalrefpart2, 1, math.random(100, 150) / 100) for i = 0, 1, 0.08 do fat.Event:wait() for i = 1, math.random(3, 6) do OrbEffect(TorsoColor, cf(portalrefpart2.Position), 20, 20, 20, -1.5, -1.5, -1.5, 0.075) BlockShockwave(TorsoColor, cf(portalrefpart2.Position), 20, 20, 20, -1.5, -1.5, -1.5, 0.075) end end wait(0.5) so("http://roblox.com/asset/?id=203691510", portalrefpart2, 1, math.random(100, 150) / 100) so("http://roblox.com/asset/?id=199145534", portalrefpart2, 1, math.random(100, 150) / 100) MagniDamage(portalrefpart2, 50, 10, 20, 10, "BlackHoleDamage2") for i = 1, math.random(3, 6) do OrbEffect(TorsoColor, cf(portalrefpart2.Position), 0.1, 0.1, 0.1, 2, 2, 2, 0.025) BlockShockwave(TorsoColor, cf(portalrefpart2.Position), 0.1, 0.1, 0.1, 2, 2, 2, 0.025) end end end )) for i = 0, 1, 0.08 do fat.Event:wait() Torso.Velocity = vt(0, 4, 0) RootJoint.C0 = clerp(RootJoint.C0, RootCF * cf(0, 0, 0) * angles(math.rad(10), math.rad(0), math.rad(45)), 0.3) Torso.Neck.C0 = clerp(Torso.Neck.C0, necko * cf(0, 0, 0) * angles(math.rad(-10), math.rad(0), math.rad(-45)), 0.3) RW.C0 = clerp(RW.C0, CFrame.new(1, 0.5, -0.5) * angles(math.rad(75), math.rad(0), math.rad(-45)), 0.3) LW.C0 = clerp(LW.C0, CFrame.new(-1.5, 0.5, 0) * angles(math.rad(30), math.rad(0), math.rad(-30)), 0.3) RH.C0 = clerp(RH.C0, cf(1, -1, 0) * angles(math.rad(15), math.rad(90), math.rad(0)) * angles(math.rad(-2.5), math.rad(0), math.rad(0)), 0.3) LH.C0 = clerp(LH.C0, cf(-1, -1, 0) * angles(math.rad(-15), math.rad(-90), math.rad(0)) * angles(math.rad(-2.5), math.rad(0), math.rad(0)), 0.3) Finger1Handleweld.C0 = clerp(Finger1Handleweld.C0, CFrame.new(1.5, -0.6, 0) * angles(math.rad(0), math.rad(0), math.rad(-90)), 0.45) Finger2Handleweld.C0 = clerp(Finger2Handleweld.C0, CFrame.new(1.5, -0.6, 0) * angles(math.rad(0), math.rad(0), math.rad(-90)), 0.45) Finger3Handleweld.C0 = clerp(Finger3Handleweld.C0, CFrame.new(1.5, -0.6, 0) * angles(math.rad(0), math.rad(0), math.rad(-90)), 0.45) Finger4Handleweld.C0 = clerp(Finger4Handleweld.C0, CFrame.new(-1.5, -0.6, 0) * angles(math.rad(0), math.rad(0), math.rad(90)), 0.45) Glove2Finger1Handleweld.C0 = clerp(Glove2Finger1Handleweld.C0, CFrame.new(0, 0, 0) * angles(math.rad(0), math.rad(0), math.rad(0)), 0.45) Glove2Finger2Handleweld.C0 = clerp(Glove2Finger2Handleweld.C0, CFrame.new(0, 0, 0) * angles(math.rad(0), math.rad(0), math.rad(0)), 0.45) Glove2Finger3Handleweld.C0 = clerp(Glove2Finger3Handleweld.C0, CFrame.new(0, 0, 0) * angles(math.rad(0), math.rad(0), math.rad(0)), 0.45) Glove2Finger4Handleweld.C0 = clerp(Glove2Finger4Handleweld.C0, CFrame.new(0, 0, 0) * angles(math.rad(0), math.rad(0), math.rad(0)), 0.45) BlockShockwave(TorsoColor, LeftLeg.CFrame * cf(0, -1, 0), 1, 1, 1, 0.5, 0.5, 0.5, 0.1) BlockShockwave(TorsoColor, RightLeg.CFrame * cf(0, -1, 0), 1, 1, 1, 0.5, 0.5, 0.5, 0.1) end canidle = true canwalk = true attack = false end DoubleJump = function() canidle = false canwalk = false attack = true Torso.Velocity = vt(0, 70, 0) JumpEffect("Light stone grey", cf(Torso.Position), 0.1, 0.1, 0.75, 0.75, 0.75, 0.5, 0.075) so("http://roblox.com/asset/?id=161006221", Torso, 0.5, math.random(150, 200) / 100) for i = 0, 1, 0.12 do fat.Event:wait() RootJoint.C0 = clerp(RootJoint.C0, RootCF * cf(0, 0, 2) * angles(math.rad(0 + 360 * i), math.rad(0), math.rad(0)), 0.3) Torso.Neck.C0 = clerp(Torso.Neck.C0, necko * cf(0, 0, 0) * angles(math.rad(20), math.rad(0), math.rad(0)), 0.3) RW.C0 = clerp(RW.C0, CFrame.new(1, 0.5, -0.5) * angles(math.rad(90), math.rad(0), math.rad(-30)), 0.3) LW.C0 = clerp(LW.C0, CFrame.new(-1, 0.5, -0.5) * angles(math.rad(90), math.rad(0), math.rad(30)), 0.3) RH.C0 = clerp(RH.C0, cf(1, 0.5, -1) * angles(math.rad(-10), math.rad(90), math.rad(0)) * angles(math.rad(-5), math.rad(0), math.rad(0)), 0.3) LH.C0 = clerp(LH.C0, cf(-1, 0.5, -1) * angles(math.rad(-10), math.rad(-90), math.rad(0)) * angles(math.rad(-5), math.rad(0), math.rad(0)), 0.3) Finger1Handleweld.C0 = clerp(Finger1Handleweld.C0, CFrame.new(1.5, -0.6, 0) * angles(math.rad(0), math.rad(0), math.rad(-90)), 0.45) Finger2Handleweld.C0 = clerp(Finger2Handleweld.C0, CFrame.new(1.5, -0.6, 0) * angles(math.rad(0), math.rad(0), math.rad(-90)), 0.45) Finger3Handleweld.C0 = clerp(Finger3Handleweld.C0, CFrame.new(1.5, -0.6, 0) * angles(math.rad(0), math.rad(0), math.rad(-90)), 0.45) Finger4Handleweld.C0 = clerp(Finger4Handleweld.C0, CFrame.new(-1.5, -0.6, 0) * angles(math.rad(0), math.rad(0), math.rad(90)), 0.45) Glove2Finger1Handleweld.C0 = clerp(Glove2Finger1Handleweld.C0, CFrame.new(-1.5, -0.6, 0) * angles(math.rad(0), math.rad(0), math.rad(90)), 0.45) Glove2Finger2Handleweld.C0 = clerp(Glove2Finger2Handleweld.C0, CFrame.new(-1.5, -0.6, 0) * angles(math.rad(0), math.rad(0), math.rad(90)), 0.45) Glove2Finger3Handleweld.C0 = clerp(Glove2Finger3Handleweld.C0, CFrame.new(-1.5, -0.6, 0) * angles(math.rad(0), math.rad(0), math.rad(90)), 0.45) Glove2Finger4Handleweld.C0 = clerp(Glove2Finger4Handleweld.C0, CFrame.new(1.5, -0.6, 0) * angles(math.rad(0), math.rad(0), math.rad(-90)), 0.45) end canidle = true canwalk = true attack = false end mouse.Button1Down:connect(function() if attack == false then if attacktype == 1 then attacktype = 2 attackone() else if attacktype == 2 then attacktype = 3 attacktwo() else if attacktype == 3 then attacktype = 4 attackthree() else if attacktype == 4 then attacktype = 1 attackfour() end end end end end coroutine.resume(coroutine.create(function() for i = 1, 50 do if attack == false then fat.Event:wait() end end if attack == false then attacktype = 1 end end )) end ) mouse.KeyDown:connect(function(k) k = k:lower() if k == "e" and attack == false and usedstealth == false and invisible == false then if cloaked == false and stealth >= 50 then usedstealth = true Cloak() wait(0.5) usedstealth = false else if cloaked == true then usedstealth = true UnCloak() wait(0.5) usedstealth = false end end while 1 do while 1 do if cloaked == true and stealth >= 0 then fat.Event:wait() stealth = stealth - 0.66666666666667 if Humanoid.Health > 30 then Torso.Velocity = RootPart.CFrame.lookVector * (25 * Humanoid.Health / 50) -- DECOMPILER ERROR at PC69: LeaveBlock: unexpected jumping out IF_THEN_STMT -- DECOMPILER ERROR at PC69: LeaveBlock: unexpected jumping out IF_STMT -- DECOMPILER ERROR at PC69: LeaveBlock: unexpected jumping out IF_THEN_STMT -- DECOMPILER ERROR at PC69: LeaveBlock: unexpected jumping out IF_STMT end end end if Humanoid.Health < 30 then Torso.Velocity = RootPart.CFrame.lookVector * 20 end end if stealth <= 0 then UnCloak() end end if k == "z" then if attack == false and cloaked == true and co1 <= cooldown1 and skill1stam <= stamina then cooldown1 = 0 subtractstamina(skill1stam) SpiralDispursion() else if attack == false and cloaked == false and co1 <= cooldown1 and skill1stam <= stamina then cooldown1 = cooldown1 / 2 subtractstamina(skill1stam) GalacticLunge() end end end if k == "x" and attack == false and stealth >= 30 and co2 <= cooldown2 and skill2stam <= stamina then cooldown2 = 0 subtractstamina(skill2stam) stealth = stealth - 30 CelestialMatterDistortion() end if k == "c" then if attack == false and cloaked == true and co3 <= cooldown3 and skill3stam <= stamina then cooldown3 = 0 subtractstamina(skill3stam) DemolishingGroundPound() else if attack == false and cloaked == false and co3 <= cooldown3 and skill3stam <= stamina then cooldown3 = cooldown3 / 2 subtractstamina(skill3stam) CometalBlast() end end end if k == "v" and attack == false and co4 <= cooldown4 and skill4stam <= stamina then cooldown4 = 0 subtractstamina(skill4stam) BlackHole() end if k == " " and attack == false and cloaked == false and Anim == "Jump" and jumpstamina == 100 then DoubleJump() jumpstamina = 0 end end ) mouse.KeyUp:connect(function(k) k = k:lower() end ) updateskills = function() if cooldown1 <= co1 then cooldown1 = cooldown1 + 0.033333333333333 end if cooldown2 <= co2 then cooldown2 = cooldown2 + 0.033333333333333 end if cooldown3 <= co3 then cooldown3 = cooldown3 + 0.033333333333333 end if cooldown4 <= co4 then cooldown4 = cooldown4 + 0.033333333333333 end if stamina <= skill1stam then bar4.BackgroundColor3 = c3(0.4078431372549, 0.4078431372549, 0.4078431372549) else bar4.BackgroundColor3 = skillcolorscheme end if stamina <= skill2stam then bar3.BackgroundColor3 = c3(0.4078431372549, 0.4078431372549, 0.4078431372549) else bar3.BackgroundColor3 = skillcolorscheme end if stamina <= skill3stam then bar1.BackgroundColor3 = c3(0.4078431372549, 0.4078431372549, 0.4078431372549) else bar1.BackgroundColor3 = skillcolorscheme end if stamina <= skill4stam then bar2.BackgroundColor3 = c3(0.4078431372549, 0.4078431372549, 0.4078431372549) else bar2.BackgroundColor3 = skillcolorscheme end if stamina <= maxstamina then stamina = stamina + recovermana / 30 end if stealth <= maxstealth then stealth = stealth + recoverstealth / 30 end if jumpstamina <= maxjumpstamina then jumpstamina = jumpstamina + recoverjumpstamina / 30 if maxjumpstamina <= jumpstamina then jumpstamina = 100 end if maxstealth <= stealth then stealth = 100 end if co1 <= cooldown1 then cooldown1 = 20 end if co2 <= cooldown2 then cooldown2 = 30 end if co3 <= cooldown3 then cooldown3 = 40 end if co4 <= cooldown4 then cooldown4 = 100 end end end Character.Humanoid.Died:connect(function() for i,v in pairs(Character:GetChildren()) do if v:IsA("Model") then v:Clone() v.Parent = workspace v.Children.CanCollide = true end end end ) game:GetService("RunService").Heartbeat:connect(function() updateskills() healthcover:TweenSize(ud(1 * (Character.Humanoid.Health / Character.Humanoid.MaxHealth), 0, 1, 0), "Out", "Quad", 0.5) staminacover:TweenSize(ud(1 * (stamina / maxstamina), 0, 1, 0), "Out", "Quad", 0.5) stealthcover:TweenSize(ud(1 * (stealth / maxstealth), 0, 1, 0), "Out", "Quad", 0.5) jumpstaminacover:TweenSize(ud(1 * (jumpstamina / maxjumpstamina), 0, 1, 0), "Out", "Quad", 0.5) bar4:TweenSize(ud(1 * (cooldown1 / co1), 0, 1, 0), "Out", "Quad", 0.5) bar3:TweenSize(ud(1 * (cooldown2 / co2), 0, 1, 0), "Out", "Quad", 0.5) bar1:TweenSize(ud(1 * (cooldown3 / co3), 0, 1, 0), "Out", "Quad", 0.5) bar2:TweenSize(ud(1 * (cooldown4 / co4), 0, 1, 0), "Out", "Quad", 0.5) end ) local sine = 0 local change = 1 local val = 0 fat.Event:connect(function() sine = sine + change local torvel = RootPart.Velocity * Vector3.new(1, 0, 1).magnitude local velderp = RootPart.Velocity.y hitfloor = rayCast(RootPart.Position, CFrame.new(RootPart.Position, RootPart.Position - Vector3.new(0, 1, 0)).lookVector, 4, Character) if equipped == true or equipped == false then if attack == false then idle = idle + 1 else idle = 0 end if ((idle >= 500 and attack ~= false) or RootPart.Velocity.y > 1) and hitfloor == nil then Anim = "Jump" if attack == false and cloaked == false then Humanoid.WalkSpeed = 16 * speed.Value change = 2 fat.Event:wait() RootJoint.C0 = clerp(RootJoint.C0, RootCF * cf(0, 0, 1) * angles(math.rad(-10), math.rad(0), math.rad(0)), 0.3) Torso.Neck.C0 = clerp(Torso.Neck.C0, necko * cf(0, 0, 0) * angles(math.rad(-10), math.rad(0), math.rad(0)), 0.3) RW.C0 = clerp(RW.C0, CFrame.new(1.5, 0.5, 0) * angles(math.rad(-20), math.rad(0), math.rad(20)), 0.3) LW.C0 = clerp(LW.C0, CFrame.new(-1.5, 0.5, 0) * angles(math.rad(-20), math.rad(0), math.rad(-20)), 0.3) RH.C0 = clerp(RH.C0, cf(1, -0.5, -0.5) * angles(math.rad(-10), math.rad(90), math.rad(0)) * angles(math.rad(0), math.rad(0), math.rad(0)), 0.3) LH.C0 = clerp(LH.C0, cf(-1, -1, 0) * angles(math.rad(-20), math.rad(-90), math.rad(0)) * angles(math.rad(-5), math.rad(0), math.rad(0)), 0.3) Finger1Handleweld.C0 = clerp(Finger1Handleweld.C0, CFrame.new(0, 0, 0) * angles(math.rad(0), math.rad(0), math.rad(0)), 0.45) Finger2Handleweld.C0 = clerp(Finger2Handleweld.C0, CFrame.new(0, 0, 0) * angles(math.rad(0), math.rad(0), math.rad(0)), 0.45) Finger3Handleweld.C0 = clerp(Finger3Handleweld.C0, CFrame.new(0, 0, 0) * angles(math.rad(0), math.rad(0), math.rad(0)), 0.45) Finger4Handleweld.C0 = clerp(Finger4Handleweld.C0, CFrame.new(0, 0, 0) * angles(math.rad(0), math.rad(0), math.rad(0)), 0.45) Glove2Finger1Handleweld.C0 = clerp(Glove2Finger1Handleweld.C0, CFrame.new(0, 0, 0) * angles(math.rad(0), math.rad(0), math.rad(0)), 0.45) Glove2Finger2Handleweld.C0 = clerp(Glove2Finger2Handleweld.C0, CFrame.new(0, 0, 0) * angles(math.rad(0), math.rad(0), math.rad(0)), 0.45) Glove2Finger3Handleweld.C0 = clerp(Glove2Finger3Handleweld.C0, CFrame.new(0, 0, 0) * angles(math.rad(0), math.rad(0), math.rad(0)), 0.45) Glove2Finger4Handleweld.C0 = clerp(Glove2Finger4Handleweld.C0, CFrame.new(0, 0, 0) * angles(math.rad(0), math.rad(0), math.rad(0)), 0.45) else if attack == false and cloaked == true then fat.Event:wait() Humanoid.WalkSpeed = 16 * speed.Value change = 2 RootJoint.C0 = clerp(RootJoint.C0, RootCF * cf(0, 0, 1) * angles(math.rad(75), math.rad(0), math.rad(0)), 0.3) Torso.Neck.C0 = clerp(Torso.Neck.C0, necko * cf(0, 0, 0) * angles(math.rad(-45), math.rad(0), math.rad(0)), 0.3) RW.C0 = clerp(RW.C0, CFrame.new(1.5, 0.5, 0) * angles(math.rad(-15), math.rad(-30), math.rad(20)), 0.3) LW.C0 = clerp(LW.C0, CFrame.new(-1.5, 0.5, 0) * angles(math.rad(-15), math.rad(30), math.rad(-20)), 0.3) RH.C0 = clerp(RH.C0, cf(1, -0.9, 0.1) * angles(math.rad(-15), math.rad(75), math.rad(0)) * angles(math.rad(-10), math.rad(0), math.rad(0)), 0.3) LH.C0 = clerp(LH.C0, cf(-1, -0.9, 0.1) * angles(math.rad(-15), math.rad(-75), math.rad(0)) * angles(math.rad(-10), math.rad(0), math.rad(0)), 0.3) Finger1Handleweld.C0 = clerp(Finger1Handleweld.C0, CFrame.new(0, 0, 0) * angles(math.rad(0), math.rad(0), math.rad(0)), 0.45) Finger2Handleweld.C0 = clerp(Finger2Handleweld.C0, CFrame.new(0, 0, 0) * angles(math.rad(0), math.rad(0), math.rad(0)), 0.45) Finger3Handleweld.C0 = clerp(Finger3Handleweld.C0, CFrame.new(0, 0, 0) * angles(math.rad(0), math.rad(0), math.rad(0)), 0.45) Finger4Handleweld.C0 = clerp(Finger4Handleweld.C0, CFrame.new(0, 0, 0) * angles(math.rad(0), math.rad(0), math.rad(0)), 0.45) Glove2Finger1Handleweld.C0 = clerp(Glove2Finger1Handleweld.C0, CFrame.new(0, 0, 0) * angles(math.rad(0), math.rad(0), math.rad(0)), 0.45) Glove2Finger2Handleweld.C0 = clerp(Glove2Finger2Handleweld.C0, CFrame.new(0, 0, 0) * angles(math.rad(0), math.rad(0), math.rad(0)), 0.45) Glove2Finger3Handleweld.C0 = clerp(Glove2Finger3Handleweld.C0, CFrame.new(0, 0, 0) * angles(math.rad(0), math.rad(0), math.rad(0)), 0.45) Glove2Finger4Handleweld.C0 = clerp(Glove2Finger4Handleweld.C0, CFrame.new(0, 0, 0) * angles(math.rad(0), math.rad(0), math.rad(0)), 0.45) end end else if RootPart.Velocity.y < -1 and hitfloor == nil then Anim = "Fall" if attack == false and cloaked == false then fat.Event:wait() Humanoid.WalkSpeed = 16 * speed.Value change = 2 RootJoint.C0 = clerp(RootJoint.C0, RootCF * cf(0, 0, 0) * angles(math.rad(10), math.rad(0), math.rad(0)), 0.3) Torso.Neck.C0 = clerp(Torso.Neck.C0, necko * cf(0, 0, 0) * angles(math.rad(10), math.rad(0), math.rad(0)), 0.3) RW.C0 = clerp(RW.C0, CFrame.new(1.5, 0.75, 0) * angles(math.rad(-10), math.rad(0), math.rad(135)), 0.3) LW.C0 = clerp(LW.C0, CFrame.new(-1.5, 0.75, 0) * angles(math.rad(-10), math.rad(0), math.rad(-135)), 0.3) RH.C0 = clerp(RH.C0, cf(1, -1, 0) * angles(math.rad(-20), math.rad(90), math.rad(0)) * angles(math.rad(-20), math.rad(0), math.rad(0)), 0.3) LH.C0 = clerp(LH.C0, cf(-1, -1, 0) * angles(math.rad(-20), math.rad(-90), math.rad(0)) * angles(math.rad(-20), math.rad(0), math.rad(0)), 0.3) Finger1Handleweld.C0 = clerp(Finger1Handleweld.C0, CFrame.new(-0.15, -0.15, -0.15) * angles(math.rad(-10), math.rad(0), math.rad(10)), 0.45) Finger2Handleweld.C0 = clerp(Finger2Handleweld.C0, CFrame.new(-0.25, -0.15, 0) * angles(math.rad(0), math.rad(0), math.rad(20)), 0.45) Finger3Handleweld.C0 = clerp(Finger3Handleweld.C0, CFrame.new(-0.45, -0.35, 0.1) * angles(math.rad(10), math.rad(0), math.rad(30)), 0.45) Finger4Handleweld.C0 = clerp(Finger4Handleweld.C0, CFrame.new(-0.15, 0, 0) * angles(math.rad(0), math.rad(0), math.rad(10)), 0.45) Glove2Finger1Handleweld.C0 = clerp(Glove2Finger1Handleweld.C0, CFrame.new(0.15, -0.15, -0.15) * angles(math.rad(-10), math.rad(0), math.rad(-10)), 0.45) Glove2Finger2Handleweld.C0 = clerp(Glove2Finger2Handleweld.C0, CFrame.new(0.25, -0.15, 0) * angles(math.rad(0), math.rad(0), math.rad(-20)), 0.45) Glove2Finger3Handleweld.C0 = clerp(Glove2Finger3Handleweld.C0, CFrame.new(0.45, -0.35, 0.1) * angles(math.rad(10), math.rad(0), math.rad(-30)), 0.45) Glove2Finger4Handleweld.C0 = clerp(Glove2Finger4Handleweld.C0, CFrame.new(0.15, 0, 0) * angles(math.rad(0), math.rad(0), math.rad(-10)), 0.45) else if attack == false and cloaked == true then fat.Event:wait() Humanoid.WalkSpeed = 16 * speed.Value change = 2 RootJoint.C0 = clerp(RootJoint.C0, RootCF * cf(0, 0, 1) * angles(math.rad(75), math.rad(0), math.rad(0)), 0.3) Torso.Neck.C0 = clerp(Torso.Neck.C0, necko * cf(0, 0, 0) * angles(math.rad(-45), math.rad(0), math.rad(0)), 0.3) RW.C0 = clerp(RW.C0, CFrame.new(1.5, 0.5, 0) * angles(math.rad(-15), math.rad(-30), math.rad(20)), 0.3) LW.C0 = clerp(LW.C0, CFrame.new(-1.5, 0.5, 0) * angles(math.rad(-15), math.rad(30), math.rad(-20)), 0.3) RH.C0 = clerp(RH.C0, cf(1, -0.9, 0.1) * angles(math.rad(-15), math.rad(75), math.rad(0)) * angles(math.rad(-10), math.rad(0), math.rad(0)), 0.3) LH.C0 = clerp(LH.C0, cf(-1, -0.9, 0.1) * angles(math.rad(-15), math.rad(-75), math.rad(0)) * angles(math.rad(-10), math.rad(0), math.rad(0)), 0.3) Finger1Handleweld.C0 = clerp(Finger1Handleweld.C0, CFrame.new(0, 0, 0) * angles(math.rad(0), math.rad(0), math.rad(0)), 0.45) Finger2Handleweld.C0 = clerp(Finger2Handleweld.C0, CFrame.new(0, 0, 0) * angles(math.rad(0), math.rad(0), math.rad(0)), 0.45) Finger3Handleweld.C0 = clerp(Finger3Handleweld.C0, CFrame.new(0, 0, 0) * angles(math.rad(0), math.rad(0), math.rad(0)), 0.45) Finger4Handleweld.C0 = clerp(Finger4Handleweld.C0, CFrame.new(0, 0, 0) * angles(math.rad(0), math.rad(0), math.rad(0)), 0.45) Glove2Finger1Handleweld.C0 = clerp(Glove2Finger1Handleweld.C0, CFrame.new(0, 0, 0) * angles(math.rad(0), math.rad(0), math.rad(0)), 0.45) Glove2Finger2Handleweld.C0 = clerp(Glove2Finger2Handleweld.C0, CFrame.new(0, 0, 0) * angles(math.rad(0), math.rad(0), math.rad(0)), 0.45) Glove2Finger3Handleweld.C0 = clerp(Glove2Finger3Handleweld.C0, CFrame.new(0, 0, 0) * angles(math.rad(0), math.rad(0), math.rad(0)), 0.45) Glove2Finger4Handleweld.C0 = clerp(Glove2Finger4Handleweld.C0, CFrame.new(0, 0, 0) * angles(math.rad(0), math.rad(0), math.rad(0)), 0.45) end end else if torvel.x < 1 and torvel.z < 1 and hitfloor ~= nil then Anim = "Idle" if attack == false then fat.Event:wait() Humanoid.WalkSpeed = 16 * speed.Value change = 2 RootJoint.C0 = clerp(RootJoint.C0, RootCF * cf(0, 0, -0.1 + 0.1 * math.cos(sine / 15)) * angles(math.rad(10 - 2.5 * math.cos(sine / 15)), math.rad(0), math.rad(-45)), 0.3) Torso.Neck.C0 = clerp(Torso.Neck.C0, necko * cf(0, 0, 0) * angles(math.rad(10 - 2.5 * math.cos(sine / 15)) + -math.sin(sine / 15) / 15, math.rad(0 - 2.5 * math.cos(sine / 15)) + -math.sin(sine / 15) / 15, math.rad(45)), 0.3) RW.C0 = clerp(RW.C0, CFrame.new(1.5, 0.55 + 0.05 * math.cos(sine / 15) + -math.sin(sine / 15) / 15, 0) * angles(math.rad(15), math.rad(0), math.rad(15 + 5 * math.cos(sine / 15))), 0.3) LW.C0 = clerp(LW.C0, CFrame.new(-1, 0.55 + 0.05 * math.cos(sine / 15) + math.sin(sine / 15) / 15, -0.5) * angles(math.rad(105 + 5 * math.cos(sine / 15)) + -math.sin(sine / 15) / 15, math.rad(0), math.rad(45)), 0.3) RH.C0 = clerp(RH.C0, cf(1.1, -0.9 - 0.05 * math.cos(sine / 15), 0.1) * angles(math.rad(-10 - 2.5 * math.cos(sine / 15)), math.rad(75), math.rad(0)) * angles(math.rad(-5 - 2.5 * math.cos(sine / 15)), math.rad(0), math.rad(0)), 0.3) LH.C0 = clerp(LH.C0, cf(-1.2, -0.9 - 0.15 * math.cos(sine / 15), 0.1) * angles(math.rad(15 - 2.5 * math.cos(sine / 15)), math.rad(-60), math.rad(0)) * angles(math.rad(-10 + 2.5 * math.cos(sine / 15)), math.rad(0), math.rad(0)), 0.3) Finger1Handleweld.C0 = clerp(Finger1Handleweld.C0, CFrame.new(1.5, -0.6, 0) * angles(math.rad(0), math.rad(0), math.rad(-90)), 0.45) Finger2Handleweld.C0 = clerp(Finger2Handleweld.C0, CFrame.new(1.5, -0.6, 0) * angles(math.rad(0), math.rad(0), math.rad(-90)), 0.45) Finger3Handleweld.C0 = clerp(Finger3Handleweld.C0, CFrame.new(1.5, -0.6, 0) * angles(math.rad(0), math.rad(0), math.rad(-90)), 0.45) Finger4Handleweld.C0 = clerp(Finger4Handleweld.C0, CFrame.new(-1.5, -0.6, 0) * angles(math.rad(0), math.rad(0), math.rad(90)), 0.45) Glove2Finger1Handleweld.C0 = clerp(Glove2Finger1Handleweld.C0, CFrame.new(-1.5, -0.6, 0) * angles(math.rad(0), math.rad(0), math.rad(90)), 0.45) Glove2Finger2Handleweld.C0 = clerp(Glove2Finger2Handleweld.C0, CFrame.new(-1.5, -0.6, 0) * angles(math.rad(0), math.rad(0), math.rad(90)), 0.45) Glove2Finger3Handleweld.C0 = clerp(Glove2Finger3Handleweld.C0, CFrame.new(-1.5, -0.6, 0) * angles(math.rad(0), math.rad(0), math.rad(90)), 0.45) Glove2Finger4Handleweld.C0 = clerp(Glove2Finger4Handleweld.C0, CFrame.new(1.5, -0.6, 0) * angles(math.rad(0), math.rad(0), math.rad(-90)), 0.45) else if attack == true and canidle == true then fat.Event:wait() Humanoid.WalkSpeed = 16 * speed.Value change = 2 RH.C0 = clerp(RH.C0, cf(1, -1, 0) * angles(math.rad(0), math.rad(90), math.rad(0)) * angles(math.rad(-5), math.rad(0), math.rad(0)), 0.3) LH.C0 = clerp(LH.C0, cf(-1, -1, 0) * angles(math.rad(0), math.rad(-90), math.rad(0)) * angles(math.rad(-5), math.rad(0), math.rad(0)), 0.3) end end else if torvel.x > 2 or torvel.z > 2 and torvel.x < 22 or torvel.z <22 and hitfloor ~= nil then Anim = "Walk" if attack == false and cloaked == false then fat.Event:wait() Humanoid.WalkSpeed = 16 * speed.Value change = 2 RootJoint.C0 = clerp(RootJoint.C0, RootCF * cf(0, 0, -0.25 + 0.2 * math.cos(sine / 3.5) + -math.sin(sine / 3.5) / 7) * angles(math.rad(20), math.rad(0) + RootPart.RotVelocity.Y / 30, math.rad(-60 + 5 * math.cos(sine / 7))), 0.3) Torso.Neck.C0 = clerp(Torso.Neck.C0, necko * cf(0, 0, 0 + 0.05 * math.cos(sine / 3.5)) * angles(math.rad(0), math.rad(2.5 * math.cos(sine / 7)), math.rad(60 - 5 * math.cos(sine / 7)) + Head.RotVelocity.Y / 15), 0.3) RW.C0 = clerp(RW.C0, CFrame.new(1.5, 0.55 + 0.05 * math.cos(sine / 3.5) + -math.sin(sine / 3.5) / 7, 0) * angles(math.rad(10), math.rad(-30), math.rad(60 + 5 * math.cos(sine / 3.5))), 0.3) LW.C0 = clerp(LW.C0, CFrame.new(-1, 0.55 + 0.05 * math.cos(sine / 3.5) + math.sin(sine / 3.5) / 7, -0.5) * angles(math.rad(105 + 5 * math.cos(sine / 7)), math.rad(0), math.rad(45)), 0.3) RH.C0 = clerp(RH.C0, cf(0.9 + 0.25 * math.cos(sine / 7) / 2, -1.1 - 0.25 * math.cos(sine / 7) / 2, 0.25 * math.cos(sine / 7) / 2) * angles(math.rad(-15 - 45 * math.cos(sine / 7)) + -math.sin(sine / 7) / 2.5, math.rad(90 - 5 * math.cos(sine / 7)), math.rad(0)) * angles(math.rad(-20 * math.cos(sine / 7)), math.rad(0), math.rad(0)), 0.3) LH.C0 = clerp(LH.C0, cf(-1 - 0.25 * math.cos(sine / 7) / 2, -0.65 + 0.25 * math.cos(sine / 7) / 2, -0.25 * math.cos(sine / 7) / 2) * angles(math.rad(-15 + 45 * math.cos(sine / 7)) + math.sin(sine / 7) / 2.5, math.rad(-90 - 5 * math.cos(sine / 7)), math.rad(0)) * angles(math.rad(-30 * math.cos(sine / 7)), math.rad(0), math.rad(0)), 0.3) Finger1Handleweld.C0 = clerp(Finger1Handleweld.C0, CFrame.new(-0.25, 0, 0) * angles(math.rad(0), math.rad(0), math.rad(15)), 0.45) Finger2Handleweld.C0 = clerp(Finger2Handleweld.C0, CFrame.new(-0.25, 0, 0) * angles(math.rad(0), math.rad(0), math.rad(15)), 0.45) Finger3Handleweld.C0 = clerp(Finger3Handleweld.C0, CFrame.new(-0.25, 0, 0) * angles(math.rad(0), math.rad(0), math.rad(15)), 0.45) Finger4Handleweld.C0 = clerp(Finger4Handleweld.C0, CFrame.new(0.25, 0, 0) * angles(math.rad(0), math.rad(0), math.rad(-15)), 0.45) Glove2Finger1Handleweld.C0 = clerp(Glove2Finger1Handleweld.C0, CFrame.new(-1.5, -0.6, 0) * angles(math.rad(0), math.rad(0), math.rad(90)), 0.45) Glove2Finger2Handleweld.C0 = clerp(Glove2Finger2Handleweld.C0, CFrame.new(-1.5, -0.6, 0) * angles(math.rad(0), math.rad(0), math.rad(90)), 0.45) Glove2Finger3Handleweld.C0 = clerp(Glove2Finger3Handleweld.C0, CFrame.new(-1.5, -0.6, 0) * angles(math.rad(0), math.rad(0), math.rad(90)), 0.45) Glove2Finger4Handleweld.C0 = clerp(Glove2Finger4Handleweld.C0, CFrame.new(1.5, -0.6, 0) * angles(math.rad(0), math.rad(0), math.rad(-90)), 0.45) else if attack == true and canwalk == true then fat.Event:wait() Humanoid.WalkSpeed = 16 * speed.Value change = 2 RH.C0 = clerp(RH.C0, cf(1, -1 - 0.25 * math.cos(sine / 7) / 2, 0.5 * math.cos(sine / 7) / 2) * angles(math.rad(-25 - 45 * math.cos(sine / 7)) + -math.sin(sine / 7) / 2.5, math.rad(90), math.rad(0)) * angles(math.rad(0), math.rad(0), math.rad(0)), 0.3) LH.C0 = clerp(LH.C0, cf(-1, -1 + 0.25 * math.cos(sine / 7) / 2, -0.5 * math.cos(sine / 7) / 2) * angles(math.rad(-25 + 45 * math.cos(sine / 7)) + math.sin(sine / 7) / 2.5, math.rad(-90), math.rad(0)) * angles(math.rad(0), math.rad(0), math.rad(0)), 0.3) end end else if torvel.x >= 22 or torvel.z >= 22 and hitfloor ~= nil then Anim = "Run" if attack == false and cloaked == true then fat.Event:wait() Humanoid.WalkSpeed = 16 * speed.Value change = 2 RootJoint.C0 = clerp(RootJoint.C0, RootCF * cf(0, 0, 1) * angles(math.rad(75), math.rad(0), math.rad(0)), 0.3) Torso.Neck.C0 = clerp(Torso.Neck.C0, necko * cf(0, 0, 0) * angles(math.rad(-45), math.rad(0), math.rad(0)), 0.3) RW.C0 = clerp(RW.C0, CFrame.new(1.5, 0.5, 0) * angles(math.rad(-15), math.rad(-30), math.rad(20)), 0.3) LW.C0 = clerp(LW.C0, CFrame.new(-1.5, 0.5, 0) * angles(math.rad(-15), math.rad(30), math.rad(-20)), 0.3) RH.C0 = clerp(RH.C0, cf(1, -0.9, 0.1) * angles(math.rad(-15), math.rad(75), math.rad(0)) * angles(math.rad(-10), math.rad(0), math.rad(0)), 0.3) LH.C0 = clerp(LH.C0, cf(-1, -0.9, 0.1) * angles(math.rad(-15), math.rad(-75), math.rad(0)) * angles(math.rad(-10), math.rad(0), math.rad(0)), 0.3) Finger1Handleweld.C0 = clerp(Finger1Handleweld.C0, CFrame.new(0, 0, 0) * angles(math.rad(0), math.rad(0), math.rad(0)), 0.45) Finger2Handleweld.C0 = clerp(Finger2Handleweld.C0, CFrame.new(0, 0, 0) * angles(math.rad(0), math.rad(0), math.rad(0)), 0.45) Finger3Handleweld.C0 = clerp(Finger3Handleweld.C0, CFrame.new(0, 0, 0) * angles(math.rad(0), math.rad(0), math.rad(0)), 0.45) Finger4Handleweld.C0 = clerp(Finger4Handleweld.C0, CFrame.new(0, 0, 0) * angles(math.rad(0), math.rad(0), math.rad(0)), 0.45) Glove2Finger1Handleweld.C0 = clerp(Glove2Finger1Handleweld.C0, CFrame.new(0, 0, 0) * angles(math.rad(0), math.rad(0), math.rad(0)), 0.45) Glove2Finger2Handleweld.C0 = clerp(Glove2Finger2Handleweld.C0, CFrame.new(0, 0, 0) * angles(math.rad(0), math.rad(0), math.rad(0)), 0.45) Glove2Finger3Handleweld.C0 = clerp(Glove2Finger3Handleweld.C0, CFrame.new(0, 0, 0) * angles(math.rad(0), math.rad(0), math.rad(0)), 0.45) Glove2Finger4Handleweld.C0 = clerp(Glove2Finger4Handleweld.C0, CFrame.new(0, 0, 0) * angles(math.rad(0), math.rad(0), math.rad(0)), 0.45) end end end end end end end end )
58.692262
351
0.639182
23371ff2a5bdfec858bcdc7ceac30d30ed602f88
1,817
css
CSS
src/main/resources/public/app.css
vmuchui/herosquad2
f97b1a58900bdd361b8bc31aa3943ed14123b3c1
[ "MIT" ]
1
2021-05-16T11:28:29.000Z
2021-05-16T11:28:29.000Z
target/heroku/app/target/classes/public/app.css
SamuelOkoth/Hero_Squad
94f6dadb41228a312db658e9ff701287cea2680f
[ "MIT" ]
null
null
null
target/heroku/app/target/classes/public/app.css
SamuelOkoth/Hero_Squad
94f6dadb41228a312db658e9ff701287cea2680f
[ "MIT" ]
null
null
null
.nav-bar { background-color: rgba(163,163,163,0.7); text-align: right; } .nav-bar ul a { display: inline-block; padding: 5px 20px; color: black; text-decoration: none; text-align: center; font-size: 20px; } .nav-bar ul a:hover { background-color: rgba(0,0,0,0.5); color: white; } .nav-bar ul { display: inline-block; } #success { font-family: 'Marck Script', cursive; font-size: 24px; } #hero { font-family: 'Luckiest Guy', cursive; } #hero-text { font-family: 'Fredericka the Great', cursive; font-size:24px; } #squad{ font-family: 'Kumar One', cursive; } #squadstuff{ font-family: 'Fredericka the Great', cursive; font-size: 24px; } #text-squads{ font-family: 'Aladin', cursive; font-size: 22px; } .wrapper { padding: 4%; margin: auto; } .cardTitle { font-family: "Righteous"; } .wrapper.cards { background: 0; } .cardet { width: 22%; height: 48%; position: absolute; cursor: pointer; transition: transform 0.6s; perspective: 200px; transform-style: preserve-3d; } @media screen and (max-width: 900px) { .cardet { width: 48%; height: 47%; } } .cardet.flipped { transform: rotateY(180deg); } .cardet .front, .cardet .back { display: block; height: 100%; width: 100%; color: white; text-align: center; position: absolute; backface-visibility: hidden; box-shadow: 3px 5px 20px 2px rgba(0, 0, 0, 0.25); } .cardet .back { width: 94%; padding-left: 3%; padding-right: 3%; text-align: left; } .cardet .front { background: #222222; } .front h2 { margin-top: 35%; } .cardet .back { background: #444444; transform: rotateY(180deg); }
16.669725
53
0.578976
fd9252e2941bac8d97129a50b0817f741afa2c9d
797
css
CSS
chrome/browser/resources/chromeos/login/security_token_pin.css
sarang-apps/darshan_browser
173649bb8a7c656dc60784d19e7bb73e07c20daa
[ "BSD-3-Clause-No-Nuclear-License-2014", "BSD-3-Clause" ]
null
null
null
chrome/browser/resources/chromeos/login/security_token_pin.css
sarang-apps/darshan_browser
173649bb8a7c656dc60784d19e7bb73e07c20daa
[ "BSD-3-Clause-No-Nuclear-License-2014", "BSD-3-Clause" ]
null
null
null
chrome/browser/resources/chromeos/login/security_token_pin.css
sarang-apps/darshan_browser
173649bb8a7c656dc60784d19e7bb73e07c20daa
[ "BSD-3-Clause-No-Nuclear-License-2014", "BSD-3-Clause" ]
2
2021-01-05T23:43:46.000Z
2021-01-07T23:36:34.000Z
/* Copyright 2019 The Chromium Authors. All rights reserved. * Use of this source code is governed by a BSD-style license that can be * found in the LICENSE file. */ #pinKeyboardContainer { margin-top: 30px; position: relative; } #pinKeyboard { --pin-keyboard-pin-input-style: { width: 192px; }; --pin-keyboard-input-letter-spacing: 13px; --pin-keyboard-number-color: var(--google-grey-900); --cr-icon-button-margin-start: 5px; } #errorContainer { color: var(--google-red-600); font-size: 12px; padding: 4px 0 0; text-align: center; width: 100%; } #errorIcon { --iron-icon-width: 20px; --iron-icon-height: 20px; margin-inline-end: 3px; } /* Allows to hide the element while still consuming the space that it needs. */ [invisible] { visibility: hidden; }
21.540541
79
0.68256
076cd30766dac85b1607d28438263dea5db790a6
6,629
lua
Lua
Assets/UI/CQUICommon.lua
TomahawkNSK/CQUI_Community-Edition
1317f6052d0a71c5afbf70d13c4606c687602580
[ "MIT" ]
null
null
null
Assets/UI/CQUICommon.lua
TomahawkNSK/CQUI_Community-Edition
1317f6052d0a71c5afbf70d13c4606c687602580
[ "MIT" ]
null
null
null
Assets/UI/CQUICommon.lua
TomahawkNSK/CQUI_Community-Edition
1317f6052d0a71c5afbf70d13c4606c687602580
[ "MIT" ]
null
null
null
------------------------------------------------------------------------------ -- Additional CQUI Common LUA support functions specific to Civilization 6 -- Contains: -- * Expansions check -- * Debug support -- * CQUI_TrimGossipMessage -- * CQUI_GetRealHousingFromImprovements -- * CQUI_SmartWrap ------------------------------------------------------------------------------ -- =========================================================================== -- Expansions check -- =========================================================================== -- these are global variables, will be visible in the entire context -- please note that Modding object is only available in the UI context -- in the Gameplay context a different method must be used as those variables will be nil g_bIsRiseAndFall = Modding and Modding.IsModActive("1B28771A-C749-434B-9053-D1380C553DE9"); -- Rise & Fall g_bIsGatheringStorm = Modding and Modding.IsModActive("4873eb62-8ccc-4574-b784-dda455e74e68"); -- Gathering Storm -- =========================================================================== -- Debug support -- =========================================================================== CQUI_ShowDebugPrint = false; function print_debug(...) if CQUI_ShowDebugPrint then print("[CQUI]", ...); end end -- =========================================================================== function CQUI_OnSettingsUpdate() if (GameInfo.CQUI_Settings ~= nil and GameInfo.CQUI_Settings["CQUI_ShowDebugPrint"] ~= nil) then CQUI_ShowDebugPrint = ( GameInfo.CQUI_Settings["CQUI_ShowDebugPrint"].Value == 1 ); else CQUI_ShowDebugPrint = GameConfiguration.GetValue("CQUI_ShowDebugPrint"); end end -- =========================================================================== -- Trims source information from gossip messages. Returns nil if the message couldn't be trimmed (this usually means the provided string wasn't a gossip message at all) -- =========================================================================== function CQUI_TrimGossipMessage(str:string) -- print_debug("ENTRY: CQUICommon - CQUI_TrimGossipMessage - string: "..tostring(str)); -- Get a sample of a gossip source string local sourceSample = Locale.Lookup("LOC_GOSSIP_SOURCE_DELEGATE", "XX", "Y", "Z"); -- Get last word that occurs in the gossip source string. "that" in English. -- Assumes the last word is always the same, which it is in English, unsure if this holds true in other languages -- AZURENCY : the patterns means : any character 0 or +, XX exactly, any character 0 or +, space, any character other than space 1 or + at the end of the sentence. -- AZURENCY : in some languages, there is no space, in that case, take the last character (often it's a ":") local last = string.match(sourceSample, ".-XX.-(%s%S+)$"); if last == nil then last = string.match(sourceSample, ".-(.)$"); end -- AZURENCY : if last is still nill, it's not normal, print an error but still allow the code to run if last == nil then print_debug("ERROR : LOC_GOSSIP_SOURCE_DELEGATE seems to be empty as last was still nil after the second pattern matching.") last = "" end -- Return the rest of the string after the last word from the gossip source string return Split(str, last .. " " , 2)[2]; end -- =========================================================================== -- Calculate real housing from improvements -- Author: Infixo, code from Better Report Screen -- 2020-06-09 new idea for calculations - calculate only a correction and apply to the game function -- please note that another condition was added - a tile must be within workable distance - this is how the game's engine works -- =========================================================================== local iCityMaxBuyPlotRange:number = tonumber(GlobalParameters.CITY_MAX_BUY_PLOT_RANGE); -- =========================================================================== function CQUI_GetRealHousingFromImprovements(pCity:table) local cityX:number, cityY:number = pCity:GetX(), pCity:GetY(); --local centerIndex:number = Map.GetPlotIndex(pCity:GetLocation()); local iNumHousing:number = 0; -- we'll add data from Housing field in Improvements divided by TilesRequired which is usually 2 -- check all plots in the city for _,plotIndex in ipairs(Map.GetCityPlots():GetPurchasedPlots(pCity)) do local pPlot:table = Map.GetPlotByIndex(plotIndex); --print(centerIndex, plotIndex, Map.GetPlotDistance(cityX,cityY, pPlot:GetX(), pPlot:GetY())); if pPlot and pPlot:GetImprovementType() > -1 and not pPlot:IsImprovementPillaged() and Map.GetPlotDistance(cityX, cityY, pPlot:GetX(), pPlot:GetY()) <= iCityMaxBuyPlotRange then local imprInfo:table = GameInfo.Improvements[ pPlot:GetImprovementType() ]; iNumHousing = iNumHousing + imprInfo.Housing / imprInfo.TilesRequired; -- well, we can always add 0, right? end end return pCity:GetGrowth():GetHousingFromImprovements() + Round(iNumHousing-math.floor(iNumHousing),1); end -- =========================================================================== -- Wraps a string according to the provided length, but, unlike the built in wrapping, will ignore the limit if a single continuous word exceeds the length of the wrap width function CQUI_SmartWrap( textString, wrapWidth ) local lines = {""}; --Table that holds each individual line as it's build function append(w) --Appends a new word to the end of the currently processed line along with proper spacing if (lines[#lines] ~= "") then w = lines[#lines] .. " " .. w; end return w; end for i, word in ipairs(Split(textString, " ")) do --Takes each word and builds it into lines that respect the wrapWidth param, except for long individual words if (i ~= 1 and string.len(append(word)) > wrapWidth) then lines[#lines] = lines[#lines] .. "[NEWLINE]"; lines[#lines + 1] = ""; end lines[#lines] = append(word); end local out = ""; --The output variable for _,line in ipairs(lines) do --Flattens the table back into a single string out = out .. line; end return out; end -- =========================================================================== function Initialize() -- print_debug("INITIALIZE: CQUICommon.lua"); LuaEvents.CQUI_SettingsUpdate.Add(CQUI_OnSettingsUpdate); LuaEvents.CQUI_SettingsInitialized.Add(CQUI_OnSettingsUpdate); end Initialize();
49.842105
185
0.592548
2f72d4c37c5a400f3658afaf95b0a2023024758c
1,258
js
JavaScript
color-admin/assets/js/demo/gallery.demo.js
irfanbukaide/rsc
453ac20ac28fad960b43d269f07abcf0ba8a1578
[ "MIT" ]
null
null
null
color-admin/assets/js/demo/gallery.demo.js
irfanbukaide/rsc
453ac20ac28fad960b43d269f07abcf0ba8a1578
[ "MIT" ]
null
null
null
color-admin/assets/js/demo/gallery.demo.js
irfanbukaide/rsc
453ac20ac28fad960b43d269f07abcf0ba8a1578
[ "MIT" ]
null
null
null
/* Template Name: Color Admin - Responsive Admin Dashboard Template build with Twitter Bootstrap 4 Version: 4.2.0 Author: Sean Ngu Website: http://www.seantheme.com/color-admin-v4.2/admin/ */ function calculateDivider() { var t = 4; return $(this).width() <= 480 ? t = 1 : $(this).width() <= 767 ? t = 2 : $(this).width() <= 980 && (t = 3), t } var handleIsotopesGallery = function () { "use strict"; var t = $("#gallery"), i = calculateDivider(), a = $(t).width() / i; $(t).isotope({resizable: !0, masonry: {columnWidth: a}}), $(window).smartresize(function () { var i = calculateDivider(), a = $(t).width() / i; $(t).isotope({masonry: {columnWidth: a}}) }), $("#options .gallery-option-set").find("a").click(function () { var i = $(this); if (i.hasClass("active")) return !1; var a = i.parents(".gallery-option-set"); a.find(".active").removeClass("active"), i.addClass("active"); var e = {}, r = a.attr("data-option-key"), n = i.attr("data-option-value"); return n = "false" !== n && n, e[r] = n, $(t).isotope(e), !1 }) }, Gallery = function () { "use strict"; return { init: function () { handleIsotopesGallery() } } }();
38.121212
113
0.554054
33ea95ac21944b5f1aa6cbf85f9fafe2cda1fad2
4,777
c
C
tools/mailru_data_converter/src/process.c
Dolfik1/Thesis
bcc7f1ed6e601d35fb81c74fce2b5a76ffd3c724
[ "MIT" ]
1
2019-03-14T14:27:17.000Z
2019-03-14T14:27:17.000Z
tools/mailru_data_converter/src/process.c
Dolfik1/Thesis
bcc7f1ed6e601d35fb81c74fce2b5a76ffd3c724
[ "MIT" ]
null
null
null
tools/mailru_data_converter/src/process.c
Dolfik1/Thesis
bcc7f1ed6e601d35fb81c74fce2b5a76ffd3c724
[ "MIT" ]
null
null
null
#include "process.h" int escape_csv( unsigned char *input, size_t input_len, unsigned char **output) { unsigned char * o = (unsigned char*)malloc(input_len * 2 + 3); int out_idx = 0; int in_idx = 0; o[out_idx++] = '"'; for(in_idx = 0; in_idx < input_len; in_idx++) { if(input[in_idx] == '"') { o[out_idx++] = '"'; o[out_idx++] = '"'; } else { o[out_idx++] = input[in_idx]; } } o[out_idx++] = '"'; o[out_idx++] = '\0'; *output = o; return out_idx; } void write_csv_line(struct state_j * state) { if (state->qtext == NULL || state->atext == NULL || state->qid == NULL) { return; } unsigned char * qtext_escaped; unsigned char * atext_escaped; int qtext_escaped_len = escape_csv( state->qtext, state->qtext_len, &qtext_escaped); int atext_escaped_len = escape_csv( state->atext, state->atext_len, &atext_escaped); // 2 is separators (;) size_t cstr_len = 2 + atext_escaped_len + qtext_escaped_len + state->qid_len; unsigned char * cstr = malloc(cstr_len); int len = sprintf(cstr, "%s;%s;%s\n", state->qid, qtext_escaped, atext_escaped); fwrite(cstr , sizeof(unsigned char), len, state->file); free(qtext_escaped); free(atext_escaped); free(state->qtext); free(state->atext); free(state->qid); state->qtext = NULL; state->atext = NULL; state->qid = NULL; free(cstr); } int j_start_map(void * ctx) { struct state_j *state = (struct state_j*) ctx; if (state->is_best == 1) { if (state->best_started == 0) { state->best_started = 1; state->best_nest = 0; } else { state->best_nest++; } } return 1; } int j_end_map(void * ctx) { struct state_j *state = (struct state_j*) ctx; if (state->best_started == 1) { if (state->best_nest == 0) { state->best_started = 0; state->is_best = 0; } else { state->best_nest--; } } return 1; } int j_string(void * ctx, const unsigned char * stringVal, size_t stringLen) { struct state_j *state = (struct state_j*) ctx; if (state->cur_key == 0) { free(state->atext); state->atext_len = stringLen; state->atext = malloc(stringLen+1); state->atext[stringLen] = '\0'; strncpy(state->atext, stringVal, stringLen); } else if (state->cur_key == 1) { free(state->qtext); state->qtext_len = stringLen; state->qtext = malloc(stringLen+1); state->qtext[stringLen] = '\0'; strncpy(state->qtext, stringVal, stringLen); } else if (state->cur_key == 2) { free(state->qid); state->qid_len = stringLen; state->qid = malloc(stringLen+1); strncpy(state->qid, stringVal, stringLen); state->qid[stringLen] = '\0'; write_csv_line(state); } return 1; } int j_map_key(void * ctx, const unsigned char * stringVal, size_t stringLen) { struct state_j * state = (struct state_j*) ctx; if (strncmp("best", stringVal, stringLen) == 0) { state->is_best = 1; } else if (state->is_best == 1 && strncmp("atext", stringVal, stringLen) == 0) { state->cur_key = 0; } else if (strncmp("qtext", stringVal, stringLen) == 0) { state->cur_key = 1; } else if (strncmp("qid", stringVal, stringLen) == 0) { state->cur_key = 2; } else { state->cur_key = -1; } return 1; } void process_file(char * path, void * ctx) { yajl_callbacks callbacks = { NULL, NULL, NULL, NULL, NULL, j_string, j_start_map, j_map_key, j_end_map, NULL, NULL, }; yajl_status stat; size_t rd; size_t bufSize = BUF_SIZE; unsigned char * fileData = NULL; fileData = (unsigned char *) malloc(bufSize); if (fileData == NULL) { fprintf(stderr, "failed to allocate read buffer of %zu bytes, exiting.", bufSize); exit(2); } FILE *file = fopen(path, "r"); printf("Processing file %s...\n", path); yajl_handle hand = yajl_alloc(&callbacks, NULL, ctx); for (;;) { rd = fread((void *) fileData, 1, bufSize, file); if (rd == 0) { if (!feof(file)) { fprintf(stderr, "error reading file '%s'\n", path); } break; } /* read file data, now pass to parser */ stat = yajl_parse(hand, fileData, rd); if (stat != yajl_status_ok) break; } stat = yajl_complete_parse(hand); if (stat != yajl_status_ok) { unsigned char * str = yajl_get_error(hand, 0, fileData, rd); fprintf(stderr, "%s", (char *) str); yajl_free_error(hand, str); } free(fileData); fclose(file); yajl_free(hand); } void process_files(int filesc, char * files[], char * output_file) { struct state_j *state = malloc(sizeof(struct state_j)); state->cur_key = 0; state->is_best = 0; state->best_started = 0; state->best_nest = 0; state->qid = NULL; state->qtext = NULL; state->atext = NULL; state->file = fopen(output_file, "w"); for (int i = 0; i < filesc; i++) { process_file(files[i], state); } fclose(state->file); free(state); }
18.094697
81
0.627381
440274e7d1096261740517160570af8644a06328
416
py
Python
common/line.py
thompsonjila/thompsonlib
e9cbc98861eee7cd9e6dcaf325ecfc91d24aa889
[ "MIT" ]
1
2016-11-07T06:38:25.000Z
2016-11-07T06:38:25.000Z
common/line.py
thompsonjila/data-analysis
e9cbc98861eee7cd9e6dcaf325ecfc91d24aa889
[ "MIT" ]
1
2016-11-08T00:13:45.000Z
2016-11-08T00:13:45.000Z
common/line.py
thompsonjila/data-analysis
e9cbc98861eee7cd9e6dcaf325ecfc91d24aa889
[ "MIT" ]
1
2019-09-11T21:23:16.000Z
2019-09-11T21:23:16.000Z
# -*- coding: utf-8 -*- from thompsonlib.common.colors import namedColor # A Line() is an object for plotting defined by a position 'p', a linestyle, and whether it is vertical or not. class Line: def __init__(self, p, ls='--', vert=False, color='#AAAAAA', name=''): self.p = p self.ls = ls self.vert = vert self.color = namedColor(color) if namedColor(color) else color self.name = str(name)
34.666667
111
0.665865
1b819f77726beaa752472b5423a9e74d3aabe536
2,424
rb
Ruby
lib/saxon/xdm/array.rb
fidothe/saxon-rb
f210cf727412377eecf5f8ee177e7c74f428dfe7
[ "MIT" ]
2
2021-12-29T08:05:10.000Z
2022-01-07T07:04:52.000Z
lib/saxon/xdm/array.rb
fidothe/saxon-rb
f210cf727412377eecf5f8ee177e7c74f428dfe7
[ "MIT" ]
8
2019-10-19T19:57:31.000Z
2020-10-05T17:59:16.000Z
lib/saxon/xdm/array.rb
fidothe/saxon-rb
f210cf727412377eecf5f8ee177e7c74f428dfe7
[ "MIT" ]
1
2020-03-26T00:28:01.000Z
2020-03-26T00:28:01.000Z
require_relative '../s9api' require_relative 'sequence_like' module Saxon module XDM # Represents an XDM Array class Array # Create a new {XDM::Array} from a Ruby Array. The contents of the array # will be converted to {XDM::Value}s using {XDM.Value()}. An existing # {S9API::XdmArray} will simply be wrapped and returned. # # @return [XDM::Array] the new XDM Array def self.create(array) case array when S9API::XdmArray new(array) else new(S9API::XdmArray.new(array.map { |item| XDM.Value(item).to_java })) end end include SequenceLike include ItemSequenceLike include Enumerable attr_reader :s9_xdm_array private :s9_xdm_array # @api private def initialize(s9_xdm_array) @s9_xdm_array = s9_xdm_array end # Iterate over the Array, yielding each element. # @yieldparam value [XDM::Value] the current value from the Array def each(&block) cached_array.each(&block) end # Fetch element at index +i+ in the array. # @param i [Integer] the index of the element to retrieve. def [](i) cached_array[i] end # @return [Integer] the length of the array def length s9_xdm_array.arrayLength end alias_method :size, :length # compares two {XDM::AtomicValue}s using the underlying Saxon and XDM # comparision rules # # @param other [Saxon::XDM::AtomicValue] # @return [Boolean] def ==(other) return false unless other.is_a?(XDM::Array) return false if length != other.length cached_array == other.to_a end # Return a (frozen) Ruby {::Array} containing all the elements of the {XDM::Array} def to_a cached_array end alias_method :eql?, :== # Compute a hash-code for this {Array}. # # Two {XDM::Array}s with the same content will have the same hash code (and will compare using eql?). # @see Object#hash def hash @hash ||= cached_array.hash end # @return the underlying Java XdmArray def to_java s9_xdm_array end private def cached_array @cached_array ||= s9_xdm_array.asList.map { |s9_xdm_value| XDM.Value(s9_xdm_value) }.freeze end end end end
25.787234
107
0.604785
be5dc152f6a13f770d827ad59906de7822018051
87
tab
SQL
examples/test_new_solar_reserve_prj_contribution/inputs/lf_reserves_up_requirement_project_contributions.tab
souissim/gridpath
4eeca2be24b485edc56026e38cfda83f4a6b27ea
[ "Apache-2.0" ]
null
null
null
examples/test_new_solar_reserve_prj_contribution/inputs/lf_reserves_up_requirement_project_contributions.tab
souissim/gridpath
4eeca2be24b485edc56026e38cfda83f4a6b27ea
[ "Apache-2.0" ]
null
null
null
examples/test_new_solar_reserve_prj_contribution/inputs/lf_reserves_up_requirement_project_contributions.tab
souissim/gridpath
4eeca2be24b485edc56026e38cfda83f4a6b27ea
[ "Apache-2.0" ]
null
null
null
ba project percent_power_req percent_capacity_req Zone1 Solar . 0.03 Zone1 Wind 0.05 .
21.75
49
0.816092
4d3ac01652ce971c1d374299d5679316469872a3
576
swift
Swift
MacroPepelelipa/MacroPepelelipa/Model/Notes/BoxView.swift
Pepelelipa/MacroChallenge
22a54cf8e269d4a8a74739eebd9c3d0ac3a42be0
[ "MIT" ]
6
2020-09-15T19:27:18.000Z
2021-11-11T18:29:52.000Z
MacroPepelelipa/MacroPepelelipa/Model/Notes/BoxView.swift
Pepelelipa/MacroChallenge
22a54cf8e269d4a8a74739eebd9c3d0ac3a42be0
[ "MIT" ]
10
2020-09-30T21:35:52.000Z
2021-09-27T22:59:03.000Z
MacroPepelelipa/MacroPepelelipa/Model/Notes/BoxView.swift
Pepelelipa/MacroChallenge
22a54cf8e269d4a8a74739eebd9c3d0ac3a42be0
[ "MIT" ]
null
null
null
// // BoxView.swift // MacroPepelelipa // // Created by Pedro Henrique Guedes Silveira on 01/10/20. // Copyright © 2020 Pedro Giuliano Farina. All rights reserved. // import Foundation import UIKit import MarkdownText internal enum BoxViewState { case idle case editing } ///The protocol that defines the view that will move within the UI Text View internal protocol BoxView: UIView { var state: BoxViewState { get set } var internalFrame: CGRect { get set } var owner: MarkdownTextView { get set } var boxViewBorder: CAShapeLayer { get set } }
23.04
76
0.720486
6638cdf4c34487ed10231c7a3aff66039e8f26a3
570
py
Python
src/fvm/scripts/testOneDConduction.py
drm42/fvm-drm
c9b940e593034f1aa3020d63ff1e09ebef9c182a
[ "MIT" ]
null
null
null
src/fvm/scripts/testOneDConduction.py
drm42/fvm-drm
c9b940e593034f1aa3020d63ff1e09ebef9c182a
[ "MIT" ]
null
null
null
src/fvm/scripts/testOneDConduction.py
drm42/fvm-drm
c9b940e593034f1aa3020d63ff1e09ebef9c182a
[ "MIT" ]
null
null
null
#!/usr/bin/env python import sys sys.setdlopenflags(0x100|0x2) import fvmbaseExt #atype = 'double' #atype = 'tangent' atype = 'pc_3_1' if atype == 'double': import models_atyped_double as models elif atype == 'tangent': import models_atyped_tangent_double as models elif atype == 'pc_3_1': import models_atyped_pc_3_1 as models import time t0 = time.time() k = models.PC_3_1() k[0] = 0.0 k[1] = 0.1 model = models.OneDConductionA(10,k) model.solve() x = model.getSolution() sx = models.getStdDev(x) sxa = sx.asNumPyArray() xa = x.asNumPyArray()
16.764706
49
0.701754
dc207eb3c1c09358cde7fd59a3a13c433629d2cb
1,034
ts
TypeScript
src/tasks/serve.ts
hivivo/teakettle
387b6d2880e9b4a8852701b89bc9cc447ff6fad5
[ "FTL" ]
2
2017-08-04T20:36:42.000Z
2017-11-18T13:03:50.000Z
src/tasks/serve.ts
hivivo/teakettle
387b6d2880e9b4a8852701b89bc9cc447ff6fad5
[ "FTL" ]
1
2017-10-31T21:01:23.000Z
2017-10-31T21:01:23.000Z
src/tasks/serve.ts
hivivo/teakettle
387b6d2880e9b4a8852701b89bc9cc447ff6fad5
[ "FTL" ]
null
null
null
const Task = require('../../ember-cli/lib/models/task'); import chalk from 'chalk'; import { exec } from 'child_process'; export default Task.extend({ run: function () { const ui = this.ui; const env = this.env; let packageManager = this.packageManager || 'default'; if (packageManager === 'default') { packageManager = 'npm'; } ui.writeLine(chalk.green(`Serving your tea...`)); let npmCommand = `${packageManager} run-script ${env}`; return new Promise((resolve, reject) => { exec(npmCommand, (err: NodeJS.ErrnoException, _stdout: string, stderr: string) => { if (err) { ui.writeLine(stderr); const message = 'Failed to serve your tea, see above.'; ui.writeLine(chalk.red(message)); reject(message); } else { ui.writeLine(chalk.green(`You may also want to run '${packageManager} run ${env}' instead.`)); resolve(); } }).stdout.pipe(process.stdout); }); } });
30.411765
106
0.575435
a672894d787ed3200f2d110556d5a37359698728
10,809
swift
Swift
Tests/Network/OAuth/OAuthServiceTests.swift
frollous/frollo-swift-sdk
603acb8523b46a924bedf0307d9bc41fd9b89ff5
[ "Apache-2.0" ]
1
2021-02-24T14:08:04.000Z
2021-02-24T14:08:04.000Z
Tests/Network/OAuth/OAuthServiceTests.swift
frollous/frollo-swift-sdk
603acb8523b46a924bedf0307d9bc41fd9b89ff5
[ "Apache-2.0" ]
23
2020-06-30T05:56:31.000Z
2022-03-22T02:48:33.000Z
Tests/Network/OAuth/OAuthServiceTests.swift
frollous/frollo-swift-sdk
603acb8523b46a924bedf0307d9bc41fd9b89ff5
[ "Apache-2.0" ]
null
null
null
// // Copyright © 2019 Frollo. All rights reserved. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. // import XCTest @testable import FrolloSDK import OHHTTPStubs #if canImport(OHHTTPStubsSwift) import OHHTTPStubsSwift #endif class OAuth2ServiceTests: XCTestCase, KeychainServiceIdentifying { let keychainService = "TokenRequestTests" override func setUp() { // Put setup code here. This method is called before the invocation of each test method in the class. } override func tearDown() { Keychain(service: keychainService).removeAll() HTTPStubs.removeAllStubs() } func testTokenRequestValid() { let expectation1 = expectation(description: "Network Request") let config = FrolloSDKConfiguration.testConfig() stub(condition: isHost(FrolloSDKConfiguration.tokenEndpoint.host!) && isPath(FrolloSDKConfiguration.tokenEndpoint.path)) { (request) -> HTTPStubsResponse in return fixture(filePath: Bundle(for: type(of: self)).path(forResource: "token_valid", ofType: "json")!, headers: [ HTTPHeader.contentType.rawValue: "application/json"]) } let mockAuthentication = MockAuthentication() let authentication = Authentication(configuration: config) authentication.dataSource = mockAuthentication authentication.delegate = mockAuthentication let network = Network(serverEndpoint: config.serverEndpoint, authentication: authentication) let authService = OAuth2Service(authorizationEndpoint: FrolloSDKConfiguration.authorizationEndpoint, tokenEndpoint: FrolloSDKConfiguration.tokenEndpoint, redirectURL: FrolloSDKConfiguration.redirectURL, revokeURL: FrolloSDKConfiguration.revokeTokenEndpoint, network: network) let loginRequest = OAuth2TokenRequest.testLoginValidData() authService.refreshTokens(request: loginRequest) { (result) in switch result { case .failure(let error): XCTFail(error.localizedDescription) case .success(let response): XCTAssertEqual(response.accessToken, "MTQ0NjJkZmQ5OTM2NDE1ZTZjNGZmZjI3") XCTAssertEqual(response.createdAt, Date(timeIntervalSince1970: 2550792999)) XCTAssertEqual(response.expiresIn, 1800) XCTAssertEqual(response.refreshToken, "IwOGYzYTlmM2YxOTQ5MGE3YmNmMDFkNTVk") XCTAssertEqual(response.tokenType, "Bearer") } expectation1.fulfill() } wait(for: [expectation1], timeout: 3.0) HTTPStubs.removeAllStubs() } func testTokenRequestEncodeInvalid() { let expectation1 = expectation(description: "Network Request") let config = FrolloSDKConfiguration.testConfig() stub(condition: isHost(FrolloSDKConfiguration.tokenEndpoint.host!) && isPath(FrolloSDKConfiguration.tokenEndpoint.path)) { (request) -> HTTPStubsResponse in return fixture(filePath: Bundle(for: type(of: self)).path(forResource: "token_valid", ofType: "json")!, headers: [ HTTPHeader.contentType.rawValue: "application/json"]) } let mockAuthentication = MockAuthentication() let authentication = Authentication(configuration: config) authentication.dataSource = mockAuthentication authentication.delegate = mockAuthentication let network = invalidNetwork(authentication: authentication) let authService = OAuth2Service(authorizationEndpoint: FrolloSDKConfiguration.authorizationEndpoint, tokenEndpoint: FrolloSDKConfiguration.tokenEndpoint, redirectURL: FrolloSDKConfiguration.redirectURL, revokeURL: FrolloSDKConfiguration.revokeTokenEndpoint, network: network) let loginRequest = OAuth2TokenRequest.testLoginValidData() authService.refreshTokens(request: loginRequest) { (result) in switch result { case .success: XCTFail("Encode data should not success") case .failure(let error): if let error = error as? DataError { XCTAssertEqual(error.type, .api) XCTAssertEqual(error.subType, .invalidData) } else { XCTFail("Not correct error type") } } expectation1.fulfill() } wait(for: [expectation1], timeout: 3.0) HTTPStubs.removeAllStubs() } func testTokenRequestInvalid() { let expectation1 = expectation(description: "Network Request") let config = FrolloSDKConfiguration.testConfig() stub(condition: isHost(FrolloSDKConfiguration.tokenEndpoint.host!) && isPath(FrolloSDKConfiguration.tokenEndpoint.path)) { (request) -> HTTPStubsResponse in return fixture(filePath: Bundle(for: type(of: self)).path(forResource: "token_valid", ofType: "json")!, headers: [ HTTPHeader.contentType.rawValue: "application/json"]) } let mockAuthentication = MockAuthentication() let authentication = Authentication(configuration: config) authentication.dataSource = mockAuthentication authentication.delegate = mockAuthentication let network = Network(serverEndpoint: config.serverEndpoint, authentication: authentication) let authService = OAuth2Service(authorizationEndpoint: FrolloSDKConfiguration.authorizationEndpoint, tokenEndpoint: FrolloSDKConfiguration.tokenEndpoint, redirectURL: FrolloSDKConfiguration.redirectURL, revokeURL: FrolloSDKConfiguration.revokeTokenEndpoint, network: network) let loginRequest = OAuth2TokenRequest.testLoginInvalidData() authService.refreshTokens(request: loginRequest) { (result) in switch result { case .failure: break case .success: XCTFail("Token request was invalid so should fail") } expectation1.fulfill() } wait(for: [expectation1], timeout: 3.0) HTTPStubs.removeAllStubs() } func testRevokeTokenFailWithNilURL() { let expectation1 = expectation(description: "Network Request") let config = FrolloSDKConfiguration.testConfig() stub(condition: isHost(FrolloSDKConfiguration.tokenEndpoint.host!) && isPath(FrolloSDKConfiguration.tokenEndpoint.path)) { (request) -> HTTPStubsResponse in return fixture(filePath: Bundle(for: type(of: self)).path(forResource: "token_valid", ofType: "json")!, headers: [ HTTPHeader.contentType.rawValue: "application/json"]) } let mockAuthentication = MockAuthentication() let authentication = Authentication(configuration: config) authentication.dataSource = mockAuthentication authentication.delegate = mockAuthentication let network = Network(serverEndpoint: config.serverEndpoint, authentication: authentication) let authService = OAuth2Service(authorizationEndpoint: FrolloSDKConfiguration.authorizationEndpoint, tokenEndpoint: FrolloSDKConfiguration.tokenEndpoint, redirectURL: FrolloSDKConfiguration.redirectURL, revokeURL: nil, network: network) let revokeRequest = OAuth2TokenRevokeRequest(clientID: "clientID", token: "MTQ0NjJkZmQ5OTM2NDE1ZTZjNGZmZjI3", domain: "example.com") authService.revokeToken(request: revokeRequest) { (result) in switch result { case .success: XCTFail("Encode data should not success") case .failure(let error): if let error = error as? DataError { XCTAssertEqual(error.type, .api) XCTAssertEqual(error.subType, .invalidData) } else { XCTFail("Not correct error type") } } expectation1.fulfill() } wait(for: [expectation1], timeout: 3.0) HTTPStubs.removeAllStubs() } func testRevokeTokenEncodeFail() { let expectation1 = expectation(description: "Network Request") let config = FrolloSDKConfiguration.testConfig() stub(condition: isHost(FrolloSDKConfiguration.tokenEndpoint.host!) && isPath(FrolloSDKConfiguration.tokenEndpoint.path)) { (request) -> HTTPStubsResponse in return fixture(filePath: Bundle(for: type(of: self)).path(forResource: "token_valid", ofType: "json")!, headers: [ HTTPHeader.contentType.rawValue: "application/json"]) } let mockAuthentication = MockAuthentication() let authentication = Authentication(configuration: config) authentication.dataSource = mockAuthentication authentication.delegate = mockAuthentication let network = invalidNetwork(authentication: authentication) let authService = OAuth2Service(authorizationEndpoint: FrolloSDKConfiguration.authorizationEndpoint, tokenEndpoint: FrolloSDKConfiguration.tokenEndpoint, redirectURL: FrolloSDKConfiguration.redirectURL, revokeURL: FrolloSDKConfiguration.revokeTokenEndpoint, network: network) let revokeRequest = OAuth2TokenRevokeRequest(clientID: "clientID", token: "MTQ0NjJkZmQ5OTM2NDE1ZTZjNGZmZjI3", domain: "example.com") authService.revokeToken(request: revokeRequest) { (result) in switch result { case .success: XCTFail("Encode data should not success") case .failure(let error): if let error = error as? DataError { XCTAssertEqual(error.type, .api) XCTAssertEqual(error.subType, .invalidData) } else { XCTFail("Not correct error type") } } expectation1.fulfill() } wait(for: [expectation1], timeout: 3.0) HTTPStubs.removeAllStubs() } }
47.61674
283
0.65723
ec69defe25a50b6282a4f8223640d2c778521f2c
754
asm
Assembly
loader/efi/crt0/crt032.asm
nelsoncole/sirius-efi
6918a74f1eb42cd17312766db36a65efcb4dda32
[ "BSD-3-Clause" ]
6
2019-11-20T09:19:35.000Z
2022-01-06T17:15:55.000Z
loader/efi/crt0/crt032.asm
nelsoncole/sirius-efi
6918a74f1eb42cd17312766db36a65efcb4dda32
[ "BSD-3-Clause" ]
null
null
null
loader/efi/crt0/crt032.asm
nelsoncole/sirius-efi
6918a74f1eb42cd17312766db36a65efcb4dda32
[ "BSD-3-Clause" ]
1
2019-11-01T23:31:39.000Z
2019-11-01T23:31:39.000Z
; ; Copyright (c) 2013 Sirius Corporation ; Nelson Sapalo da Siva Cole ; Lubango, 29 de Julho de 2019 - Hora: 02h32 ; File Name: crt032.asm ; ; Inicializar um UEFI_Loader IA32 (i386) ; Handoff State: ; ESP + 8 – EFI_SYSTEM_TABLE* ; ESP + 4 – EFI_HANDLE ; ESP - <return address> bits 32 section .text global _start extern _efi_main ;same defined reference in PE+ object _start: ; i386 mov ebx, [esp+8] ;EFI_SYSTEM_TABLE* mov eax, [esp+4] ;EFI_HANDLE mov ecx,[esp] mov dword[_pp],ecx push ebx push eax call _efi_main add esp,8 ret global _OS_LoaderI32 _OS_LoaderI32: mov eax,[esp+4] mov ebx,[esp+8] cli push ebx push ss push esp pushf push cs push eax iretd section .reloc section .data global _pp _pp dd 0
13.22807
55
0.690981
2f3e60bc7f2bdd39b020976a8a2d061b47cc2153
276
js
JavaScript
resources/js/components/Loader.js
AlexCauich/FinishProject
83f2acdc535eaa4f60a3aba64154647ae6bb4220
[ "MIT" ]
null
null
null
resources/js/components/Loader.js
AlexCauich/FinishProject
83f2acdc535eaa4f60a3aba64154647ae6bb4220
[ "MIT" ]
3
2021-02-02T18:05:22.000Z
2022-02-27T03:25:18.000Z
resources/js/components/Loader.js
AlexCauich/FinishProject
83f2acdc535eaa4f60a3aba64154647ae6bb4220
[ "MIT" ]
null
null
null
import React, { Component } from 'react'; class Loader extends Component { render() { return( <div class="spinner-grow" role="status"> <span class="sr-only">Loading...</span> </div> ) } } export default Loader;
21.230769
55
0.525362
1a677bcb1c3dc41d526cd7e23412bb29ab91bfe4
706
py
Python
core/models/user.py
area55git/Gitmails
813234909f7bc59ef13113c92d8a52d86c896338
[ "MIT" ]
140
2018-04-26T18:29:01.000Z
2022-02-22T01:32:31.000Z
core/models/user.py
area55git/Gitmails
813234909f7bc59ef13113c92d8a52d86c896338
[ "MIT" ]
4
2018-04-26T20:18:47.000Z
2018-05-02T14:46:24.000Z
core/models/user.py
area55git/Gitmails
813234909f7bc59ef13113c92d8a52d86c896338
[ "MIT" ]
23
2018-04-26T19:08:26.000Z
2022-02-12T22:13:14.000Z
class User: def __init__(self, username, name, email, bio, repositories): self.username = username self.name = name self.email = email self.bio = bio self.repositories = repositories def __str__(self): final = "Name: {} ({}):".format(self.name, self.username) if self.email: final = "{} ({})".format(final, self.email) if self.bio: final = "{} - {}".format(final, self.bio) if self.repositories: for repo in self.repositories: final = "{}\n{}".format(final, repo.__str__()) return final def __eq__(self, other): return self.__dict__ == other.__dict__
30.695652
65
0.549575
bebeba765687a301317cc1c4eca2bee18828bb9c
989
lua
Lua
lua/global.lua
idanko/dot-nvim
37157cfb5bbb6ac654aa05da57b24194900cda65
[ "MIT" ]
null
null
null
lua/global.lua
idanko/dot-nvim
37157cfb5bbb6ac654aa05da57b24194900cda65
[ "MIT" ]
null
null
null
lua/global.lua
idanko/dot-nvim
37157cfb5bbb6ac654aa05da57b24194900cda65
[ "MIT" ]
null
null
null
local global = {} local home = os.getenv("HOME") local path_sep = global.is_windows and '\\' or '/' local os_name = vim.loop.os_uname().sysname local restricted = home .. path_sep .. "github.com" .. path_sep .. "elijahdanko" .. path_sep .. "restricted" function global:load_variables() self.is_mac = os_name == "Darwin" self.is_linux = os_name == "Linux" self.is_windows = os_name == "Windows" self.vim_path = vim.fn.stdpath("config") self.cache_dir = home .. path_sep .. ".cache" .. path_sep .. "nvim" .. path_sep self.undo_dir = home .. path_sep .. ".cache" .. path_sep .. "undo" .. path_sep self.modules_dir = self.vim_path .. path_sep .. "modules" self.path_sep = path_sep self.home = home self.user_name = "Elijah Danko" self.email = "[email protected]" self.scratchpad = vim.fn.stdpath("config") .. path_sep .. "scratchpad.txt" self.ref = restricted .. path_sep .. "ref.gpg" end global:load_variables() return global
38.038462
108
0.646107
2742e459ba0769ae1853b6d9d3fe201a9e082ea8
814
rs
Rust
rust/advanced/drop/src/main.rs
skyofsmith/servePractice
d143497ec7c13dcbb55354c9050fd48e5b1c7b51
[ "MIT" ]
null
null
null
rust/advanced/drop/src/main.rs
skyofsmith/servePractice
d143497ec7c13dcbb55354c9050fd48e5b1c7b51
[ "MIT" ]
18
2020-07-16T21:36:57.000Z
2022-03-25T18:59:38.000Z
rust/advanced/drop/src/main.rs
skyofsmith/servePractice
d143497ec7c13dcbb55354c9050fd48e5b1c7b51
[ "MIT" ]
null
null
null
//1、Drop trait类似于其它语言中的析构函数,当值离开作用域的时候执行此函数的代码。 struct Dog { name: String, } impl Drop for Dog { fn drop (&mut self) { println!("{} leave", self.name); } } fn main() { let a = Dog { name: String::from("wangcai"), }; { let b = Dog { name: String::from("dahuang"), }; println!("0 --------------------------"); } println!("1 --------------------------"); //rust提供了 std::mem::drop() { println!("code block start --------------------------"); let a = Dog { name: String::from("wangcai"), }; let b = Dog { name: String::from("dahuang"), }; // b.drop(); // error drop(b); println!("code block end --------------------------"); } }
21.421053
64
0.384521
0d6f97b4779df9d3abfa317b08107e5bcd8bd1db
3,794
cshtml
C#
SnsLite.Web/Views/Home/Contents/Company.cshtml
known/SnsLite
c75ee5cf85c7a673165f7fe10b0ee62769aa4ec3
[ "MIT" ]
null
null
null
SnsLite.Web/Views/Home/Contents/Company.cshtml
known/SnsLite
c75ee5cf85c7a673165f7fe10b0ee62769aa4ec3
[ "MIT" ]
2
2017-06-07T08:22:09.000Z
2018-03-28T16:04:10.000Z
SnsLite.Web/Views/Home/Contents/Company.cshtml
known/SnsLite
c75ee5cf85c7a673165f7fe10b0ee62769aa4ec3
[ "MIT" ]
null
null
null
@model SnsLite.Company @{ var checkFriendValidate = Model.FriendValidate ? " checked=\"checked\"" : ""; var checkComment = Model.AllowComment ? " checked=\"checked\"" : ""; } <link href="~/static/vendor/citypicker/city-picker.css" rel="stylesheet" /> <div class="form-horizontal"> <div class="form-group"> <label for="Code" class="col-sm-2 control-label">公司编码</label> <div class="col-sm-10"> <input type="text" class="form-control" id="Code" name="Code" value="@Model.Code" placeholder="请输入公司编码"> </div> </div> <div class="form-group"> <label for="Url" class="col-sm-2 control-label">公司网站</label> <div class="col-sm-10"> <input type="text" class="form-control" id="Url" name="Url" value="@Model.Url" placeholder="请输入公司网站"> </div> </div> <div class="form-group"> <label for="Phone" class="col-sm-2 control-label">固定电话</label> <div class="col-sm-10"> <input type="text" class="form-control" id="Phone" name="Phone" value="@Model.Phone" placeholder="请输入固定电话"> </div> </div> <div class="form-group"> <label for="Area" class="col-sm-2 control-label">地区</label> <div class="col-sm-10" style="position:relative;"> <input type="text" class="form-control" id="Area" name="Area" value="@Model.Phone" readonly data-toggle="city-picker" placeholder="请选择地区"> </div> </div> <div class="form-group"> <label for="Address" class="col-sm-2 control-label">详细地址</label> <div class="col-sm-10"> <input type="text" class="form-control" id="Address" name="Address" value="@Model.Address" placeholder="请输入详细地址"> </div> </div> <div class="form-group"> <label for="Postcode" class="col-sm-2 control-label">邮编</label> <div class="col-sm-10"> <input type="text" class="form-control" id="Postcode" name="Postcode" value="@Model.Postcode" placeholder="请输入邮编"> </div> </div> <div class="form-group"> <label class="col-sm-2 control-label">其他选项</label> <div class="col-sm-10"> <div class="checkbox"> <label> <input type="checkbox" id="chkValidate" name="chkValidate" @Html.Raw(checkFriendValidate)> 加好友需要验证 </label> </div> <div class="checkbox"> <label> <input type="checkbox" id="chkComment" name="chkComment" @Html.Raw(checkComment)> 启用评论 </label> </div> </div> </div> <div class="form-group"> <div class="col-sm-offset-2 col-sm-10"> <button type="button" class="btn btn-primary" onclick="saveBase(this)" data-loading-text="保存中...">保存</button> <div id="message"></div> </div> </div> </div> <script src="~/static/vendor/citypicker/city-picker.data.js"></script> <script src="~/static/vendor/citypicker/city-picker.js"></script> <script type="text/javascript"> function saveBase(obj) { var param = { Code: $.trim($('#Code').val()), Url: $.trim($('#Url').val()), Phone: $.trim($('#Phone').val()), Address: $.trim($('#Address').val()), Postcode: $('#Postcode').val(), AllowComment: $('#chkComment').is(':checked') }; @*$(obj).button('loading'); $.post('@Url.ToAjax(AjaxRequestType.ProfileBasic)', { param: JSON.stringify(param) }, function (data) { $(obj).button('reset'); Message.handle(data, function () { $('#compName').html(param.Name); }, 'message'); });*@ } </script>
43.609195
151
0.544808
0effb6a65b93b81527e6814b9f5b93dc2587a86b
1,702
dart
Dart
lib/engine/ui/screen/repository/dashboard/components/body-right/body_right_history.dart
tiagocasemiro/source_app
1406b7add26e4ab9ffdb4fbdc9f917f85d895eb8
[ "Apache-2.0" ]
4
2021-02-12T18:11:33.000Z
2021-08-06T08:09:40.000Z
lib/engine/ui/screen/repository/dashboard/components/body-right/body_right_history.dart
tiagocasemiro/source_app
1406b7add26e4ab9ffdb4fbdc9f917f85d895eb8
[ "Apache-2.0" ]
null
null
null
lib/engine/ui/screen/repository/dashboard/components/body-right/body_right_history.dart
tiagocasemiro/source_app
1406b7add26e4ab9ffdb4fbdc9f917f85d895eb8
[ "Apache-2.0" ]
null
null
null
import 'package:source_app/engine/ui/screen/repository/dashboard/components/body-right/body_right_viewmodel.dart'; import 'package:source_app/engine/ui/screen/repository/dashboard/components/body-right/components/dashboard_history.dart'; import 'package:source_app/engine/ui/screen/repository/dashboard/components/body-right/components/commit_details.dart'; import 'package:source_app/engine/ui/screen/repository/dashboard/components/body-right/components/diff_file.dart'; import 'package:source_app/engine/ui/utils/default_values.dart'; import 'package:source_app/engine/ui/widgets/horizontal_split_view.dart'; import 'package:source_app/engine/ui/widgets/vertical_split_view.dart'; import 'package:flutter/material.dart'; class BodyRightHistory extends StatelessWidget { final BodyRightViewModel _bodyRightViewModel; const BodyRightHistory(this._bodyRightViewModel); @override Widget build(BuildContext context) { return Container( child: HorizontalSplitView( ratio: 0.60, up: Container( padding: const EdgeInsets.only( right: defaultPaddingSize, top: defaultPaddingSize), child: HistoryDashboard(_bodyRightViewModel), ), down: Container( child: VerticalSplitView( left: Container( padding: const EdgeInsets.only(bottom: defaultPaddingSize), child: CommitDetails(_bodyRightViewModel), ), right: Container( padding: const EdgeInsets.only( right: defaultPaddingSize, bottom: defaultPaddingSize), child: FileDiff(_bodyRightViewModel), ), ), ), ), ); } }
40.52381
122
0.707991
c436876c46e9b0354a1ad972f0d59d2e4927cf83
1,646
hpp
C++
src/vkt/Resample_serial.hpp
szellmann/volk
f8e8755d0e016359e4977934412888830080dd42
[ "MIT" ]
1
2021-01-20T22:31:07.000Z
2021-01-20T22:31:07.000Z
src/vkt/Resample_serial.hpp
szellmann/volkit
f8e8755d0e016359e4977934412888830080dd42
[ "MIT" ]
null
null
null
src/vkt/Resample_serial.hpp
szellmann/volkit
f8e8755d0e016359e4977934412888830080dd42
[ "MIT" ]
null
null
null
// This file is distributed under the MIT license. // See the LICENSE file for details. #pragma once #include <vkt/Resample.hpp> #include <vkt/StructuredVolume.hpp> #include "linalg.hpp" namespace vkt { void Resample_serial( StructuredVolume& dst, StructuredVolume& src, Filter filter ) { if (dst.getDims() == src.getDims()) { // In that case don't resample spatially! Vec3i dims = dst.getDims(); for (int32_t z = 0; z != dims.z; ++z) { for (int32_t y = 0; y != dims.y; ++y) { for (int32_t x = 0; x != dims.x; ++x) { Vec3i index{x,y,z}; dst.setValue(index, src.getValue(index)); } } } } else { Vec3i dstDims = dst.getDims(); Vec3i srcDims = src.getDims(); for (int32_t z = 0; z != dstDims.z; ++z) { for (int32_t y = 0; y != dstDims.y; ++y) { for (int32_t x = 0; x != dstDims.x; ++x) { float srcX = x / float(dstDims.x) * srcDims.x; float srcY = y / float(dstDims.y) * srcDims.y; float srcZ = z / float(dstDims.z) * srcDims.z; float value = src.sampleLinear(srcX, srcY, srcZ); dst.setValue({x,y,z}, value); } } } } } } // vkt
26.983607
73
0.402795
e072e5517cc3f919a940c27a1d9825faa2c0908c
14,064
h
C
Modules/Contents/UI/Include/PolyUITextInput.h
Bright24/Polycode
d40a6f7c1e8f0b327648bfe0bad5509e31f112ce
[ "MIT" ]
1
2020-04-27T15:55:29.000Z
2020-04-27T15:55:29.000Z
Modules/Contents/UI/Include/PolyUITextInput.h
Bright24/Polycode
d40a6f7c1e8f0b327648bfe0bad5509e31f112ce
[ "MIT" ]
null
null
null
Modules/Contents/UI/Include/PolyUITextInput.h
Bright24/Polycode
d40a6f7c1e8f0b327648bfe0bad5509e31f112ce
[ "MIT" ]
null
null
null
/* Copyright (C) 2012 by Ivan Safrin Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ #pragma once #include "PolyGlobals.h" #include "PolySceneLabel.h" #include "PolyScenePrimitive.h" #include "PolyFontManager.h" #include "PolyFont.h" #include "PolyEntity.h" #include "PolyUIEvent.h" #include "PolyUIBox.h" #include "PolyUIMenu.h" #include "PolyUIElement.h" #include "PolyTimer.h" #include "PolyCoreInput.h" #include "PolyCore.h" #include <vector> #include "PolyUIScrollContainer.h" using namespace std; #define MAX_TEXTINPUT_UNDO_STATES 30 #define UI_TEXT_INPUT_SCROLL_SPEED 70.0 namespace Polycode { class UITextInputUndoState { public: String content; unsigned int lineOffset; unsigned int caretPosition; bool hasSelection; int selectionLine; int selectionCaretPosition; }; class _PolyExport SyntaxHighlightToken { public: SyntaxHighlightToken() { overrideType = TOKEN_TYPE_NO_OVERRIDE; } SyntaxHighlightToken(String text, int type) { this->text = text; this->type = type; overrideType = TOKEN_TYPE_NO_OVERRIDE; } Color color; String text; int overrideType; unsigned int type; static const int TOKEN_TYPE_NO_OVERRIDE = 0; static const int TOKEN_TYPE_OVERRIDE_START = 1; static const int TOKEN_TYPE_OVERRIDE_END = 2; static const int TOKEN_TYPE_OVERRIDE_LINE = 3; }; class _PolyExport LineColorData { public: LineColorData() {} LineColorData(Color color, unsigned int rangeStart, unsigned int rangeEnd) { this->color = color; this->rangeStart = rangeStart; this->rangeEnd = rangeEnd; } Color color; int rangeStart; int rangeEnd; }; class _PolyExport LineColorInfo { public: std::vector<LineColorData> colors; LineColorInfo getColorInfoForRange(int start, int length); }; class _PolyExport UITextInputSyntaxHighlighter { public: virtual std::vector<SyntaxHighlightToken> parseText(String text, SyntaxHighlightToken overrideToken) = 0; }; class _PolyExport FindMatch { public: unsigned int lineNumber; unsigned int caretStart; unsigned int caretEnd; }; class WordWrapLine { public: WordWrapLine() { lastBufferIndex = -1; dirty = true; } String text; bool isWordWrap; int actualLineNumber; int lineStart; int lastBufferIndex; LineColorInfo colorInfo; bool dirty; SyntaxHighlightToken blockOverrideToken; }; class TextColorPair { public: LineColorInfo colorInfo; String text; }; class LineInfo { public: LineInfo(){ wordWrapLineIndex = -1; } String text; int wordWrapLineIndex; LineColorInfo colorInfo; SyntaxHighlightToken blockOverrideToken; }; /** * A text input element. Can be single- or multiline. */ class _PolyExport UITextInput : public UIElement { public: /** * Create a new text input element. * @param multiLine Whether the text field should consist of a single line, * or of a multiline text editor with vertical scroll bar. * @param width The width of the element. * @param height The height of the element. */ UITextInput(bool multiLine, Number width, Number height); virtual ~UITextInput(); void handleEvent(Event *event); void Update(); /** * Set the text contents of the input. * * If the input is single-line, insert the complete text into * the line, without taking linebreaks into account. * * If the input is multi-line, each line is inserted separately * into the text field * * @param text The new text contents. * @param sendChangeEvent If true (default), will send out an Event::CHANGE_EVENT */ void setText(String text, bool sendChangeEvent = true); /** * Returns the text contents of this element. * * For single-line, returns the contents of the first line. * For multi-line, returns a string containing each line in * the text field, separated by '\n'. */ String getText(); void onLoseFocus(); /** * Insert a linebreak after the cursor and move * the cursor to the new line. * * @param after Unused. This must be true. */ int insertLine(String lineText = ""); void onKeyDown(PolyKEY key, wchar_t charCode); /** * Clear the current selection. */ void clearSelection(); /** * Set the currentselection. * * If (lineStart, colStart) is further "right" or "down" than (lineEnd, colEnd), * the two will automatically be swapped. It's thus enough to specify the two "edges" * of the selection, without knowing which comes first. * * @param lineStart The line position of one edge of the selection. * @param colStart The column position of one edge of the selection. * @param lineEnd The line position of the other edge of the selection. * @param colEnd The column position of the other edge of the selection. */ void setSelection(int lineStart, int lineEnd, int colStart, int colEnd); /** * Remove the currently selected text from the text contents. */ void deleteSelection(); /** * Select the entire text contents. */ void selectAll(); /** * Reset the text contents and selection/caret to * the last undo state. */ void Undo(); /** * Reset the text contents and selection/caret to * the next undo state. */ void Redo(); /** * Remove the current selection and copy it to the clipboard. */ void Cut(); /** * Copy the current selection to the clipboard. */ void Copy(); /** * Replace the current selection with the contents of the clipboard. */ void Paste(); /** * Toggle line number display for each line. * @param val true to enable, false to disable. */ void enableLineNumbers(bool val); /** * Set the color of the text field background. */ void setBackgroundColor(Color color); /** * Set the background color for selected text. */ void setSelectionColor(Color color); /** * Set the color of the cursor. */ void setCursorColor(Color color); /** * Set the foreground color of displayed text. */ void setTextColor(Color color); /** * Set the foreground color of line numbers. */ void setLineNumberColor(Color color); void checkBufferLines(); /** * Find and replace in the text contents. * * @param what The string to find. * @param withWhat The string to replace each occurrence with. */ void replaceAll(String what, String withWhat); /** * Find and optionally replace a string. * * Sets the current selection to the first result. All results will be stored as instances of FindMatch * in this->findMatches, and can later be retrieved with findNext(), findPrevious() and findCurrent(). * * @param stringToFind The string to find occurrences of. * @param replace Whether to replace occurrences with something. * @param replaceString The string to replace occurrences with, only used if replace=true */ void findString(String stringToFind, bool replace=false, String replaceString=""); std::vector<FindMatch> getFindMatches(String stringToFind); /** * Set the current find result to the next one in the result list and select it * in the text field. */ void findNext(); /** * Set the current find result to the previous one in the result list and select it * in the text field. */ void findPrevious(); /** * Set the selection to the current result in the result list. */ void findCurrent(); void showLine(unsigned int lineNumber, bool top); /** * Set the syntax highlighter to use for formatting text. * * @param syntaxHighlighter The syntax highlighter instance to use. */ void setSyntaxHighlighter(UITextInputSyntaxHighlighter *syntaxHighlighter); void Resize(Number width, Number height); /** * Toggles whether this input accepts only numbers. * * @param val true to only accept numbers, false otherwise. */ void setNumberOnly(bool val); /** * Return the contents of a line. * * @param index The index of the line to get the contents of. * First line has index 0. */ String getLineText(unsigned int index); /** * Return the currently selected text. */ String getSelectionText(); /** * Replace the current selection with the given text. * * @param text The string to insert. */ void insertText(String text, bool updateWordWrap = true); void setCaretPosition(int position); UIScrollContainer *getScrollContainer(); bool useStrongHinting; void shiftText(bool left=false); void convertIndentToTabs(); void convertIndentToSpaces(); void doMultilineResize(); static void setMenuSingleton(UIGlobalMenu *_globalMenu); protected: static UIGlobalMenu *globalMenuSingleton; void showCurrentLineIfOffscreen(); void readjustBuffer(int lineStart=0, int lineEnd=-1); void updateWordWrap(int lineStart, int lineEnd); Number resizeTimer; Entity *lineNumberAnchor; void renumberLines(); bool isNumberOrCharacter(wchar_t charCode); bool lineNumbersEnabled; Color textColor; Color lineNumberColor; void setUndoState(UITextInputUndoState state); void saveUndoState(); void setTextDiff(String text); bool isNumberOnly; void changedText(int lineStart, int lineEnd, bool sendChangeEvent = true); void applySyntaxFormatting(int startLine, int end); void applyTokenOverride(int lineIndex, SyntaxHighlightToken overrideToken); void setActualToCaret(); void setOffsetToActual(); void convertOffsetToActual(int lineOffset, int caretPosition, int *actualCaretPosition); void convertActualToOffset(int actualLineOffset, int actualCaretPosition, int *lineOffset, int *caretPosition); int caretSkipWordBack(int caretLine, int caretPosition); int caretSkipWordForward(int caretLine, int caretPosition); int lineOffsetToActualLineOffset(int lineOffset); void setActualLineOffset(); void updateCaretPosition(); void setCaretToMouse(Number x, Number y); void dragSelectionTo(Number x, Number y); void applyBlockOverrides(); void updateSelectionRects(); void selectWordAtCaret(); void restructLines(); void removeLines(unsigned int startIndex, unsigned int endIndex); std::vector<TextColorPair> makeWordWrapBuffer(LineInfo *lineInfo, String indentPrefix); std::vector<TextColorPair> splitTokens(String stringToSplit, LineColorInfo *stringColorInfo); UIRect *selectorRectTop; UIRect *selectorRectMiddle; UIRect *selectorRectBottom; int numLines; Number padding; Number lineSpacing; int selectionTop; int selectionBottom; int selectionL; int selectionR; UIRect *lineNumberBg; Number textInputOffsetY; int decoratorOffset; bool settingText; int selectionCaretPosition; int selectionLine; // Used only by single-line text input, so // that you can edit text longer than the width // of the line. // TODO/considerations: Use this to scroll a single // line in multi-line mode? int horizontalPixelScroll; // By how many characters have we scrolled right? int horizontalCharacterScroll; bool draggingSelection; bool hasSelection; Number caretX,caretY; int caretPosition; int actualCaretPosition; bool doSelectToCaret; UITextInputSyntaxHighlighter *syntaxHighliter; Entity *linesContainer; // container for the actual text contents UIElement *textContainer; vector<SceneLabel*> linesToDelete; std::vector<FindMatch> findMatches; int findIndex; UITextInputUndoState undoStates[MAX_TEXTINPUT_UNDO_STATES]; int undoStateIndex; int maxRedoIndex; bool isTypingWord; bool multiLine; Timer *blinkTimer; UIBox *inputRect; UIRect *blinkerRect; Vector2 dragMouseStart; Color selectionColor; void _setSelectionColor(Color color); Number st; Number sr; Number sb; Number sl; UIMenu *contextMenu; Vector2 selectionDragMouse; Number caretImagePosition; int currentBufferLines; int neededBufferLines; UIScrollContainer *scrollContainer; String fontName; Number fontSize; Number lineHeight; int lineOffset; int actualLineOffset; vector<LineInfo> lines; vector<WordWrapLine> wordWrapLines; vector<SceneLabel*> bufferLines; vector<SceneLabel*> numberLines; Core *core; Number lastResizeWidth; Number _newWidth; Number _newHeight; bool didMultilineResize; enum indentTypes { INDENT_SPACE, INDENT_TAB } indentType; int indentSpacing; }; }
25.996303
127
0.689775
c940b73d33ac31ec4583cdce08b638df90140331
1,084
ts
TypeScript
libs/client/ui/src/lib/components/text-field/text-field.component.ts
SigmasonicX/dragonfish
8e0aaf0d36131dfbba1fa9b4b979f488d7f7147b
[ "Apache-2.0" ]
5
2020-08-03T10:48:49.000Z
2021-01-26T20:44:13.000Z
libs/client/ui/src/lib/components/text-field/text-field.component.ts
SigmasonicX/dragonfish
8e0aaf0d36131dfbba1fa9b4b979f488d7f7147b
[ "Apache-2.0" ]
263
2020-07-23T06:22:20.000Z
2021-01-30T08:57:59.000Z
libs/client/ui/src/lib/components/text-field/text-field.component.ts
SigmasonicX/dragonfish
8e0aaf0d36131dfbba1fa9b4b979f488d7f7147b
[ "Apache-2.0" ]
7
2021-02-08T20:56:34.000Z
2022-02-14T09:47:47.000Z
import { Component, Input } from '@angular/core'; import { ControlValueAccessor, NG_VALUE_ACCESSOR } from '@angular/forms'; @Component({ selector: 'dragonfish-text-field', templateUrl: './text-field.component.html', styleUrls: ['./text-field.component.scss'], providers: [ { provide: NG_VALUE_ACCESSOR, useExisting: TextFieldComponent, multi: true, }, ], }) export class TextFieldComponent implements ControlValueAccessor { @Input() name: string; @Input() type: string; @Input() label: string; @Input() placeholder: string; @Input() disabled: boolean; @Input() searchBox: boolean; value: string; onChange: (value: string) => void; onTouch: (value: boolean) => void; writeValue(obj: string): void { this.value = obj; } registerOnChange(fn: any): void { this.onChange = fn; } registerOnTouched(fn: any): void { this.onTouch = fn; } setDisabledState?(isDisabled: boolean): void { this.disabled = isDisabled; } }
26.439024
73
0.610701
6dbe814e22082f3119b14bec8313ac6be2e4bc86
2,292
sql
SQL
Aeroport.sql
maiovschi/aeroport
4bbb1d9e6a7d423a1ffcf408698d3c441c03aada
[ "MIT" ]
null
null
null
Aeroport.sql
maiovschi/aeroport
4bbb1d9e6a7d423a1ffcf408698d3c441c03aada
[ "MIT" ]
1
2021-02-02T18:27:15.000Z
2021-02-02T18:27:15.000Z
Aeroport.sql
maiovschi/aeroport
4bbb1d9e6a7d423a1ffcf408698d3c441c03aada
[ "MIT" ]
null
null
null
DROP DATABASE IF EXISTS aeroport; CREATE DATABASE IF NOT EXISTS aeroport; USE `aeroport` ; CREATE TABLE `aeroport`.`rute` ( `idRuta` INT NOT NULL AUTO_INCREMENT, `aeroport_plecare` VARCHAR(45) NULL, `aeroport_sosire` VARCHAR(45) NULL, PRIMARY KEY (`idRuta`)); CREATE TABLE `aeroport`.`avioane` ( `idAvion` INT NOT NULL AUTO_INCREMENT, `model` VARCHAR(45) NULL, `marca` VARCHAR(45) NULL, `nume` VARCHAR(45) NULL UNIQUE, `data_fabricatie` DATE NULL, PRIMARY KEY (`idAvion`)); CREATE TABLE `aeroport`.`angajati` ( `idAngajat` INT NOT NULL AUTO_INCREMENT, `nume` VARCHAR(45) NOT NULL, `prenume` VARCHAR(45) NOT NULL, `email` VARCHAR(45) NOT NULL UNIQUE, `cnp` VARCHAR(45) NOT NULL UNIQUE, `data_angajare` DATE NOT NULL, `salariu` INT NULL, `tip_angajat` VARCHAR(50) NOT NULL, `calificari` VARCHAR(45) NULL, `username` VARCHAR(45) NOT NULL UNIQUE, `parola` VARCHAR(45) NOT NULL, PRIMARY KEY (`idAngajat`)); CREATE TABLE `aeroport`.`zboruri` ( `idZbor` INT NOT NULL PRIMARY KEY AUTO_INCREMENT, `idRuta` INT NULL, `idAvion` INT NULL, `nrZbor` VARCHAR(45) NOT NULL UNIQUE, `data_ora_plecare` DATETIME NOT NULL, `data_ora_sosire` DATETIME NOT NULL, `Observatii` VARCHAR(45) NULL, `stareZbor` VARCHAR(45) NOT NULL, CONSTRAINT `avion_fk` FOREIGN KEY (`idAvion`) REFERENCES `aeroport`.`avioane` (`idAvion`) ON DELETE SET NULL ON UPDATE NO ACTION, CONSTRAINT `ruta_fk` FOREIGN KEY (`idRuta`) REFERENCES `aeroport`.`rute` (`idRuta`) ON DELETE SET NULL ON UPDATE NO ACTION); CREATE TABLE `aeroport`.`programe` ( `idProgram` INT NOT NULL AUTO_INCREMENT, `tip_activitate` VARCHAR(64) NOT NULL, `idZbor` INT NULL, `idAngajat` INT NOT NULL, 'date' DATE NOT NULL, PRIMARY KEY (`idProgram`), CONSTRAINT `fk_zbor` FOREIGN KEY (`idZbor`) REFERENCES `aeroport`.`zboruri` (`idZbor`) ON DELETE NO ACTION ON UPDATE NO ACTION, CONSTRAINT `fk_ang` FOREIGN KEY (`idAngajat`) REFERENCES `aeroport`.`angajati` (`idAngajat`) ON DELETE CASCADE ON UPDATE NO ACTION); CREATE TABLE `aeroport`.`documente` ( `idDocument` INT NOT NULL AUTO_INCREMENT, `idAngajat` INT NOT NULL, `cale` VARCHAR(45) NOT NULL, `nume` VARCHAR(45) NOT NULL, PRIMARY KEY (`idDocument`), CONSTRAINT `fk_ang_doc` FOREIGN KEY (`idAngajat`) REFERENCES `aeroport`.`angajati` (`idAngajat`) ON DELETE NO ACTION ON UPDATE NO ACTION);
23.387755
50
0.736475
981c619f2f7b98c66f2d9878e6cbf54904292b00
2,950
py
Python
samples/python/13.core-bot/envs/chat_bot_02/Lib/site-packages/datatypes_date_time/timex_inference.py
luzeunice/BotBuilder-Samples
b62be4e8863125a567902b736b7b74313d9d4f28
[ "MIT" ]
null
null
null
samples/python/13.core-bot/envs/chat_bot_02/Lib/site-packages/datatypes_date_time/timex_inference.py
luzeunice/BotBuilder-Samples
b62be4e8863125a567902b736b7b74313d9d4f28
[ "MIT" ]
null
null
null
samples/python/13.core-bot/envs/chat_bot_02/Lib/site-packages/datatypes_date_time/timex_inference.py
luzeunice/BotBuilder-Samples
b62be4e8863125a567902b736b7b74313d9d4f28
[ "MIT" ]
null
null
null
# Copyright (c) Microsoft Corporation. All rights reserved. # Licensed under the MIT License. from .timex_constants import Constants class TimexInference: @staticmethod def infer(obj): types = set() if TimexInference.__is_present(obj): types.add(Constants.TIMEX_TYPES_PRESENT) if TimexInference.__is_definite(obj): types.add(Constants.TIMEX_TYPES_DEFINITE) if TimexInference.__is_date(obj): types.add(Constants.TIMEX_TYPES_DATE) if TimexInference.__is_date_range(obj): types.add(Constants.TIMEX_TYPES_DATERANGE) if TimexInference.__is_duration(obj): types.add(Constants.TIMEX_TYPES_DURATION) if TimexInference.__is_time(obj): types.add(Constants.TIMEX_TYPES_TIME) if TimexInference.__is_time_range(obj): types.add(Constants.TIMEX_TYPES_TIMERANGE) if Constants.TIMEX_TYPES_PRESENT in types: types.add(Constants.TIMEX_TYPES_DATE) types.add(Constants.TIMEX_TYPES_TIME) if Constants.TIMEX_TYPES_TIME in types and Constants.TIMEX_TYPES_DURATION in types: types.add(Constants.TIMEX_TYPES_TIMERANGE) if Constants.TIMEX_TYPES_DATE in types and Constants.TIMEX_TYPES_TIME in types: types.add(Constants.TIMEX_TYPES_DATETIME) if Constants.TIMEX_TYPES_DATE in types and Constants.TIMEX_TYPES_DURATION in types: types.add(Constants.TIMEX_TYPES_DATERANGE) if Constants.TIMEX_TYPES_DATETIME in types and Constants.TIMEX_TYPES_DURATION in types: types.add(Constants.TIMEX_TYPES_DATETIMERANGE) if Constants.TIMEX_TYPES_DATE in types and Constants.TIMEX_TYPES_TIMERANGE in types: types.add(Constants.TIMEX_TYPES_DATETIMERANGE) return types @staticmethod def __is_present(obj): return obj.now == True @staticmethod def __is_duration(obj): return (obj.years or obj.months or obj.weeks or obj.days or obj.hours or obj.minutes or obj.seconds) @staticmethod def __is_time(obj): return obj.hour is not None and obj.minute is not None and obj.second is not None @staticmethod def __is_date(obj): return (obj.month is not None and obj.day_of_month is not None) or obj.day_of_week @staticmethod def __is_time_range(obj): return obj.part_of_day is not None @staticmethod def __is_date_range(obj): return ((obj.year is not None and obj.day_of_month is None) or (obj.year is not None and obj.month is not None and obj.day_of_month is None) or (obj.month is not None and obj.day_of_month is None) or obj.season or obj.week_of_year or obj.week_of_month) @staticmethod def __is_definite(obj): return obj.year is not None and obj.month is not None and obj.day_of_month is not None
33.908046
96
0.690169
6501356ec2e656aaaa1c5d7d087d917057525868
169
css
CSS
src/components/editors/EquationEditor.css
ntbrock/iwphys-designer-proto-react
bffb1999b06064f519450fe952b9e902de9b9afd
[ "MIT" ]
null
null
null
src/components/editors/EquationEditor.css
ntbrock/iwphys-designer-proto-react
bffb1999b06064f519450fe952b9e902de9b9afd
[ "MIT" ]
null
null
null
src/components/editors/EquationEditor.css
ntbrock/iwphys-designer-proto-react
bffb1999b06064f519450fe952b9e902de9b9afd
[ "MIT" ]
null
null
null
/** Equation Editor */ .equation-editor .equation-evaluation { padding: 0.5rem; } .equation-editor .equation-exception { color: red; padding: 0.5rem; }
12.071429
39
0.64497
c02a00a6132aed790eb8ab79993c2cbe5caa98e4
3,415
cs
C#
Source/Server/WebPortal/Apps/IbnCommon/WidgetControls/Assistant.ascx.designer.cs
InstantBusinessNetwork/IBN
bbcf47de56bfc52049eeb2e46677642a28f38825
[ "MIT" ]
21
2015-07-22T15:22:41.000Z
2021-03-23T05:40:44.000Z
Source/Server/WebPortal/Apps/IbnCommon/WidgetControls/Assistant.ascx.designer.cs
InstantBusinessNetwork/IBN
bbcf47de56bfc52049eeb2e46677642a28f38825
[ "MIT" ]
11
2015-10-19T07:54:10.000Z
2021-09-01T08:47:56.000Z
Source/Server/WebPortal/Apps/IbnCommon/WidgetControls/Assistant.ascx.designer.cs
InstantBusinessNetwork/IBN
bbcf47de56bfc52049eeb2e46677642a28f38825
[ "MIT" ]
16
2015-07-22T15:23:09.000Z
2022-01-17T10:49:43.000Z
//------------------------------------------------------------------------------ // <auto-generated> // This code was generated by a tool. // Runtime Version:2.0.50727.3053 // // Changes to this file may cause incorrect behavior and will be lost if // the code is regenerated. // </auto-generated> //------------------------------------------------------------------------------ namespace Mediachase.UI.Web.Workspace.Modules { public partial class Assistant { /// <summary> /// secHeader control. /// </summary> /// <remarks> /// Auto-generated field. /// To modify move field declaration from designer file to code-behind file. /// </remarks> protected global::Mediachase.UI.Web.Modules.BlockHeader secHeader; /// <summary> /// lHelpDocs control. /// </summary> /// <remarks> /// Auto-generated field. /// To modify move field declaration from designer file to code-behind file. /// </remarks> protected global::System.Web.UI.WebControls.HyperLink lHelpDocs; /// <summary> /// lDashboardView control. /// </summary> /// <remarks> /// Auto-generated field. /// To modify move field declaration from designer file to code-behind file. /// </remarks> protected global::System.Web.UI.WebControls.HyperLink lDashboardView; /// <summary> /// lblClient control. /// </summary> /// <remarks> /// Auto-generated field. /// To modify move field declaration from designer file to code-behind file. /// </remarks> protected global::System.Web.UI.WebControls.Label lblClient; /// <summary> /// lblCustReports control. /// </summary> /// <remarks> /// Auto-generated field. /// To modify move field declaration from designer file to code-behind file. /// </remarks> protected global::System.Web.UI.WebControls.Label lblCustReports; /// <summary> /// lChangeProfile control. /// </summary> /// <remarks> /// Auto-generated field. /// To modify move field declaration from designer file to code-behind file. /// </remarks> protected global::System.Web.UI.WebControls.HyperLink lChangeProfile; /// <summary> /// ddMenu control. /// </summary> /// <remarks> /// Auto-generated field. /// To modify move field declaration from designer file to code-behind file. /// </remarks> protected global::System.Web.UI.WebControls.DropDownList ddMenu; /// <summary> /// lblLastAlert control. /// </summary> /// <remarks> /// Auto-generated field. /// To modify move field declaration from designer file to code-behind file. /// </remarks> protected global::System.Web.UI.WebControls.Label lblLastAlert; /// <summary> /// lbHide control. /// </summary> /// <remarks> /// Auto-generated field. /// To modify move field declaration from designer file to code-behind file. /// </remarks> protected global::System.Web.UI.WebControls.LinkButton lbHide; } }
34.846939
84
0.53675
c9be4c99014b65656a2d57d9e63ef4b5cfacb7b8
131
ts
TypeScript
ts/src/config.ts
fauxauldrich/wiremock-ui
26139f87169ba197f8ebf03a766b7acb55a74f1f
[ "MIT" ]
null
null
null
ts/src/config.ts
fauxauldrich/wiremock-ui
26139f87169ba197f8ebf03a766b7acb55a74f1f
[ "MIT" ]
null
null
null
ts/src/config.ts
fauxauldrich/wiremock-ui
26139f87169ba197f8ebf03a766b7acb55a74f1f
[ "MIT" ]
1
2021-09-23T16:05:43.000Z
2021-09-23T16:05:43.000Z
//Update this for setting wiremock properties globally export enum ENV { WIREMOCK_HOST = "localhost", WIREMOCK_PORT = 8080, }
18.714286
54
0.748092
4886068a86357c8ae3fe0b720c7bbd1ba117c163
1,403
sh
Shell
add_images_2.sh
mazerab/recap-bash-demo.script
f15763a3677973361bcc06b495c3b90bdc6c39b8
[ "MIT" ]
null
null
null
add_images_2.sh
mazerab/recap-bash-demo.script
f15763a3677973361bcc06b495c3b90bdc6c39b8
[ "MIT" ]
null
null
null
add_images_2.sh
mazerab/recap-bash-demo.script
f15763a3677973361bcc06b495c3b90bdc6c39b8
[ "MIT" ]
null
null
null
ACCESS_TOKEN=$ACCESS_TOKEN POST_FILE_URL='https://developer.api.autodesk.com/photo-to-3d/v1/file' echo 'Starting image uploads to the photoscene' curl -s -w "\n%{http_code}" $POST_FILE_URL \ -X POST \ -H "Authorization: Bearer $ACCESS_TOKEN" \ -F photosceneid=$PHOTOSCENE_ID \ -F type=image \ -F file[0]=@/Users/mazerab/source/repos/getting-started-reality-capture-demo/images/DJI_0012.JPG \ -F file[1]=@/Users/mazerab/source/repos/getting-started-reality-capture-demo/images/DJI_0013.JPG \ -F file[2]=@/Users/mazerab/source/repos/getting-started-reality-capture-demo/images/DJI_0014.JPG \ -F file[3]=@/Users/mazerab/source/repos/getting-started-reality-capture-demo/images/DJI_0015.JPG \ -F file[4]=@/Users/mazerab/source/repos/getting-started-reality-capture-demo/images/DJI_0016.JPG \ -F file[5]=@/Users/mazerab/source/repos/getting-started-reality-capture-demo/images/DJI_0017.JPG \ -F file[6]=@/Users/mazerab/source/repos/getting-started-reality-capture-demo/images/DJI_0018.JPG \ -F file[7]=@/Users/mazerab/source/repos/getting-started-reality-capture-demo/images/DJI_0019.JPG \ -F file[8]=@/Users/mazerab/source/repos/getting-started-reality-capture-demo/images/DJI_0020.JPG \ -F file[9]=@/Users/mazerab/source/repos/getting-started-reality-capture-demo/images/DJI_0021.JPG | { read body read code echo $code echo $body jq .Files <<< "$body" }
48.37931
102
0.74412
bb42e8b5edda7a0be8c6848945179cc7c36f08e7
359
cs
C#
Blish HUD/Entities/Cube.cs
greaka/Blish-HUD
d4928e3baf626357b9aefe4fe91edfc1f4ad6818
[ "MIT" ]
1
2019-05-18T01:43:44.000Z
2019-05-18T01:43:44.000Z
Blish HUD/Entities/Cube.cs
greaka/Blish-HUD
d4928e3baf626357b9aefe4fe91edfc1f4ad6818
[ "MIT" ]
4
2019-05-16T15:47:19.000Z
2020-05-08T16:41:14.000Z
Blish HUD/Entities/Cube.cs
greaka/Blish-HUD
d4928e3baf626357b9aefe4fe91edfc1f4ad6818
[ "MIT" ]
3
2019-05-15T08:19:15.000Z
2019-05-20T19:52:35.000Z
using Microsoft.Xna.Framework; using Microsoft.Xna.Framework.Graphics; namespace Blish_HUD.Entities { public class Cube : Primitives.Cuboid { public Color Color { get; set; } public Cube() : base() { this.Texture = ContentService.Textures.Pixel; this.Size = new Vector3(0.25f, 0.25f, 0.25f); } } }
22.4375
57
0.615599
3fef856e2766a63de4c4d6e4b06257739fa5fc19
15,971
rb
Ruby
spec/lib/xml_val_spec.rb
LaudateCorpus1/ruby3mf
24419b8728b5b0cc9da0f5311b60e0a674bdf04c
[ "MIT" ]
null
null
null
spec/lib/xml_val_spec.rb
LaudateCorpus1/ruby3mf
24419b8728b5b0cc9da0f5311b60e0a674bdf04c
[ "MIT" ]
null
null
null
spec/lib/xml_val_spec.rb
LaudateCorpus1/ruby3mf
24419b8728b5b0cc9da0f5311b60e0a674bdf04c
[ "MIT" ]
null
null
null
require 'spec_helper' require 'nokogiri' describe XmlVal do include Interpolation failing_cases = YAML.load_file('spec/integration/integration_tests.yml') let(:errormap) { YAML.load_file('lib/ruby3mf/errors.yml') } let(:xml) { Nokogiri::XML( '<?xml version="1.0" encoding="UTF-8"?> <Types xmlns="http://schemas.openxmlformats.org/package/2006/content-types"> <Default Extension="rels" ContentType="application/vnd.openxmlformats-package.relationships+xml" /> <Default Extension="model" ContentType="application/vnd.ms-package.3dmanufacturing-3dmodel+xml" /> </Types>' ) } let(:zipentry) { 'foo' } before do allow(XmlVal).to receive(:dtd_exists?).and_return(false) end context 'when xml space attribute is present' do let(:xml) { Nokogiri::XML( '<?xml version="1.0" encoding="UTF-8"?> <Types xmlns="http://schemas.openxmlformats.org/package/2006/content-types"> <Default Extension="rels" xml:space="preserved" ContentType="application/vnd.openxmlformats-package.relationships+xml" /> <Default Extension="model" ContentType="application/vnd.ms-package.3dmanufacturing-3dmodel+xml" /> </Types>' ) } let(:message) { "xml:space attribute is not allowed" } it 'should give an error' do XmlVal.validate(zipentry, xml) expect(Log3mf.count_entries(:error)).to be == 1 expect(Log3mf.entries(:error).first[:message]).to include message end end context 'when xml space attribute is not present' do it 'should be supes chill (not give an error) if the xml:space attribute is missing' do XmlVal.validate(zipentry, xml) expect(Log3mf.count_entries(:error)).to be == 0 expect(Log3mf.entries(:error)).to be_empty end end context 'when xml encoding is not UTF-8' do let(:xml) { Nokogiri::XML( '<?xml version="1.0" encoding="ISO-8859-11"?> <Types xmlns="http://schemas.openxmlformats.org/package/2006/content-types"> <Default Extension="rels" ContentType="application/vnd.openxmlformats-package.relationships+xml" /> <Default Extension="model" ContentType="application/vnd.ms-package.3dmanufacturing-3dmodel+xml" /> </Types>' ) } let(:message) { "XML content must be UTF8 encoded" } it 'should give an error' do XmlVal.validate(zipentry, xml) expect(Log3mf.count_entries(:error)).to be == 1 expect(Log3mf.entries(:error).first[:message]).to include message end end context 'when xml encoding is UTF-8' do it 'should validate that the file is correctly encoded' do XmlVal.validate(zipentry, xml) expect(Log3mf.count_entries(:error)).to be == 0 expect(Log3mf.entries(:error)).to be_empty end end context "when locale is en-US and floating point values are invalid" do let(:xml) { Nokogiri::XML('<?xml version="1.0" encoding="utf-8"?> <model xmlns="http://schemas.microsoft.com/3dmanufacturing/core/2015/02" unit="millimeter" xml:lang="en-US" xmlns:m="http://schemas.microsoft.com/3dmanufacturing/material/2015/02"> <resources> <object id="1" name="Cube" type="model"> <mesh> <vertices> <vertex x="0" y="0" z="0" /> <vertex x="10,000" y="0" z="0" /> <vertex x="10,000" y="20,000" z="0" /> <vertex x="0" y="20,000" z="0" /> <vertex x="0" y="0" z="30,000" /> <vertex x="10,000" y="0" z="30,000" /> <vertex x="10,000" y="20,000" z="30,000" /> <vertex x="0" y="20,000" z="30,000" /> </vertices> <triangles> <triangle v1="2" v2="1" v3="0" /> <triangle v1="0" v2="3" v3="2" /> <triangle v1="4" v2="5" v3="6" /> <triangle v1="6" v2="7" v3="4" /> <triangle v1="0" v2="1" v3="5" /> <triangle v1="5" v2="4" v3="0" /> <triangle v1="2" v2="3" v3="7" /> <triangle v1="7" v2="6" v3="2" /> <triangle v1="1" v2="2" v3="6" /> <triangle v1="6" v2="5" v3="1" /> <triangle v1="3" v2="0" v3="4" /> <triangle v1="4" v2="7" v3="3" /> </triangles> </mesh> </object> </resources> <build> <item objectid="1" /> </build> </model>') } it "should produce an error" do XmlVal.validate(zipentry, xml, SchemaFiles::SchemaTemplate) expect(Log3mf.entries(:error)).to_not be_empty expected_msg = errormap.fetch(:has_commas_for_floats.to_s)["msg"] expect(Log3mf.entries(:error).any?{|error| error[:message].include? (interpolate(expected_msg, {}))}).to be true end end context "when no locale is present, but floating point falues are valid" do let(:xml) { Nokogiri::XML('<?xml version="1.0" encoding="utf-8"?> <model unit="millimeter" xml:lang="en-US" xmlns="http://schemas.microsoft.com/3dmanufacturing/core/2015/02" xmlns:s="http://schemas.microsoft.com/3dmanufacturing/slice/2015/07" requiredextensions="s p" xmlns:p="http://schemas.microsoft.com/3dmanufacturing/production/2015/06"> <resources> <object id="2"> <mesh> <vertices> <vertex x="20.000" y="20.000" z="0.500" /> <vertex x="20.000" y="0.000" z="0.500" /> <vertex x="20.000" y="20.000" z="0.000" /> <vertex x="0.000" y="20.000" z="0.000" /> <vertex x="20.000" y="0.000" z="0.000" /> <vertex x="0.000" y="0.000" z="0.000" /> <vertex x="0.000" y="0.000" z="0.500" /> <vertex x="0.000" y="20.000" z="0.500" /> </vertices> <triangles> <triangle v1="0" v2="1" v3="2" /> <triangle v1="3" v2="0" v3="2" /> <triangle v1="4" v2="3" v3="2" /> <triangle v1="5" v2="3" v3="4" /> <triangle v1="4" v2="6" v3="5" /> <triangle v1="6" v2="7" v3="5" /> <triangle v1="7" v2="6" v3="0" /> <triangle v1="1" v2="6" v3="4" /> <triangle v1="5" v2="7" v3="3" /> <triangle v1="7" v2="0" v3="3" /> <triangle v1="2" v2="1" v3="4" /> <triangle v1="0" v2="6" v3="1" /> </triangles> </mesh> </object> </resources> <build p:UUID="125fd563-0216-4491-bf88-bdac9dd1406b"> <item objectid="2"/> </build> </model> ') } it "should not have any errors" do XmlVal.validate(zipentry, xml, SchemaFiles::SchemaTemplate) expect(Log3mf.count_entries(:error)).to be == 0 expect(Log3mf.entries(:error)).to be_empty end end context "when no locale is present and floating point values are invalid" do let(:validation_result) { [ double(:has_commas_for_floats, "id"=>"has_commas_for_floats", "context"=>"validations/validating core schema", "severity"=>"error", "line" => 1, "message"=>"numbers not formatted for the en-US locale", "spec_ref"=>"http://3mf.io/wp-content/uploads/2016/03/3MFcoreSpec_1.1.pdf#page=15", "caller"=>"xml_val.rb:33" ), double(:schema_error, "id"=>"schema_error", "context"=>"validations/validating core schema", "severity"=>"error", "line" => 2, "message"=>"Element '{http://schemas.microsoft.com/3dmanufacturing/core/2015/02}vertex', attribute 'x': '10,000' is not a valid value of the atomic type '{http://schemas.microsoft.com/3dmanufacturing/core/2015/02}ST_Number'.", "spec_ref"=>"http://3mf.io/wp-content/uploads/2016/03/3MFcoreSpec_1.1.pdf#page=15", "caller"=>"xml_val.rb:33" ) ] } let(:xml) { Nokogiri::XML('<?xml version="1.0" encoding="utf-8"?> <model xmlns="http://schemas.microsoft.com/3dmanufacturing/core/2015/02" unit="millimeter" xmlns:m="http://schemas.microsoft.com/3dmanufacturing/material/2015/02"> <resources> <object id="1" name="Cube" type="model"> <mesh> <vertices> <vertex x="0" y="0" z="0" /> <vertex x="10,000" y="0" z="0" /> <vertex x="10,000" y="20,000" z="0" /> <vertex x="0" y="20,000" z="0" /> <vertex x="0" y="0" z="30,000" /> <vertex x="10,000" y="0" z="30,000" /> <vertex x="10,000" y="20,000" z="30,000" /> <vertex x="0" y="20,000" z="30,000" /> </vertices> <triangles> <triangle v1="2" v2="1" v3="0" /> <triangle v1="0" v2="3" v3="2" /> <triangle v1="4" v2="5" v3="6" /> <triangle v1="6" v2="7" v3="4" /> <triangle v1="0" v2="1" v3="5" /> <triangle v1="5" v2="4" v3="0" /> <triangle v1="2" v2="3" v3="7" /> <triangle v1="7" v2="6" v3="2" /> <triangle v1="1" v2="2" v3="6" /> <triangle v1="6" v2="5" v3="1" /> <triangle v1="3" v2="0" v3="4" /> <triangle v1="4" v2="7" v3="3" /> </triangles> </mesh> </object> </resources> <build> <item objectid="1" /> </build> </model> ') } it "should give an error" do allow(Nokogiri::XML::Schema).to receive_message_chain("new.validate") { validation_result } XmlVal.validate(zipentry, xml, SchemaFiles::SchemaTemplate) expect(Log3mf.entries(:error)).to_not be_empty expected_msg = errormap.fetch(:has_commas_for_floats.to_s)["msg"] expect(Log3mf.entries(:error).any?{|error| error[:message].include? (interpolate(expected_msg, {})) }).to be true end end context "when a consumer tries to output any 3D objects that is not referenced by an <item> element" do let(:xml) {Nokogiri::XML('<?xml version="1.0" encoding="UTF-8"?> <model unit="millimeter" xml:lang="en-US" xmlns="http://schemas.microsoft.com/3dmanufacturing/core/2015/02"> <resources> <object id="1" type="model"> <mesh> <vertices> <vertex x="0" y="0" z="0" /> <vertex x="10" y="0" z="0" /> <vertex x="10" y="20" z="0" /> <vertex x="0" y="20" z="0" /> <vertex x="0" y="0" z="30" /> <vertex x="10" y="0" z="30" /> <vertex x="10" y="20" z="30" /> <vertex x="0" y="20" z="30" /> </vertices> <triangles> <triangle v1="3" v2="2" v3="1" /> <triangle v1="1" v2="0" v3="3" /> <triangle v1="4" v2="5" v3="6" /> <triangle v1="6" v2="7" v3="4" /> <triangle v1="0" v2="1" v3="5" /> <triangle v1="5" v2="4" v3="0" /> <triangle v1="1" v2="2" v3="6" /> <triangle v1="6" v2="5" v3="1" /> <triangle v1="2" v2="3" v3="7" /> <triangle v1="7" v2="6" v3="2" /> <triangle v1="3" v2="0" v3="4" /> <triangle v1="4" v2="7" v3="3" /> </triangles> </mesh> </object> <object id="2" type="model"> <mesh> <vertices> <vertex x="0" y="0" z="0" /> <vertex x="10" y="0" z="0" /> <vertex x="10" y="20" z="0" /> <vertex x="0" y="20" z="0" /> <vertex x="0" y="0" z="30" /> <vertex x="10" y="0" z="30" /> <vertex x="10" y="20" z="30" /> <vertex x="0" y="20" z="30" /> </vertices> <triangles> <triangle v1="3" v2="2" v3="1" /> <triangle v1="1" v2="0" v3="3" /> <triangle v1="4" v2="5" v3="6" /> <triangle v1="6" v2="7" v3="4" /> <triangle v1="0" v2="1" v3="5" /> <triangle v1="5" v2="4" v3="0" /> <triangle v1="1" v2="2" v3="6" /> <triangle v1="6" v2="5" v3="1" /> <triangle v1="2" v2="3" v3="7" /> <triangle v1="7" v2="6" v3="2" /> <triangle v1="3" v2="0" v3="4" /> <triangle v1="4" v2="7" v3="3" /> </triangles> </mesh> </object> </resources> <build> <item objectid="1" /> </build> </model>')} it "should at least warning up it" do XmlVal.validate(zipentry, xml) expect(Log3mf.count_entries(:warning)).to be == 1 expect(Log3mf.entries(:warning)).to_not be_empty end end context "when a consumer tries to output 3D objects all referenced by an <item> element" do let(:xml) {Nokogiri::XML('<?xml version="1.0" encoding="UTF-8"?> <model unit="millimeter" xml:lang="en-US" xmlns="http://schemas.microsoft.com/3dmanufacturing/core/2015/02"> <resources> <object id="1" type="model"> <mesh> <vertices> <vertex x="0" y="0" z="0" /> <vertex x="10" y="0" z="0" /> <vertex x="10" y="20" z="0" /> <vertex x="0" y="20" z="0" /> <vertex x="0" y="0" z="30" /> <vertex x="10" y="0" z="30" /> <vertex x="10" y="20" z="30" /> <vertex x="0" y="20" z="30" /> </vertices> <triangles> <triangle v1="3" v2="2" v3="1" /> <triangle v1="1" v2="0" v3="3" /> <triangle v1="4" v2="5" v3="6" /> <triangle v1="6" v2="7" v3="4" /> <triangle v1="0" v2="1" v3="5" /> <triangle v1="5" v2="4" v3="0" /> <triangle v1="1" v2="2" v3="6" /> <triangle v1="6" v2="5" v3="1" /> <triangle v1="2" v2="3" v3="7" /> <triangle v1="7" v2="6" v3="2" /> <triangle v1="3" v2="0" v3="4" /> <triangle v1="4" v2="7" v3="3" /> </triangles> </mesh> </object> <object id="2" type="model"> <mesh> <vertices> <vertex x="0" y="0" z="0" /> <vertex x="10" y="0" z="0" /> <vertex x="10" y="20" z="0" /> <vertex x="0" y="20" z="0" /> <vertex x="0" y="0" z="30" /> <vertex x="10" y="0" z="30" /> <vertex x="10" y="20" z="30" /> <vertex x="0" y="20" z="30" /> </vertices> <triangles> <triangle v1="3" v2="2" v3="1" /> <triangle v1="1" v2="0" v3="3" /> <triangle v1="4" v2="5" v3="6" /> <triangle v1="6" v2="7" v3="4" /> <triangle v1="0" v2="1" v3="5" /> <triangle v1="5" v2="4" v3="0" /> <triangle v1="1" v2="2" v3="6" /> <triangle v1="6" v2="5" v3="1" /> <triangle v1="2" v2="3" v3="7" /> <triangle v1="7" v2="6" v3="2" /> <triangle v1="3" v2="0" v3="4" /> <triangle v1="4" v2="7" v3="3" /> </triangles> </mesh> </object> </resources> <build> <item objectid="1" /> <item objectid="2" /> </build> </model>')} it "should at least warning up it" do XmlVal.validate(zipentry, xml) expect(Log3mf.count_entries(:warning)).to be == 0 expect(Log3mf.entries(:warning)).to be_empty end end end
39.434568
284
0.484127
0d7ed9ca5fbee7838df43120954c6fb3c9ddb193
30,143
cs
C#
other/Scripts/Network/Core/RemoteObject.cs
fqkw6/RewriteFrame
c17ec2b3e2bb50f3eef7f7538ed84af2aaa7aa72
[ "Apache-2.0" ]
null
null
null
other/Scripts/Network/Core/RemoteObject.cs
fqkw6/RewriteFrame
c17ec2b3e2bb50f3eef7f7538ed84af2aaa7aa72
[ "Apache-2.0" ]
null
null
null
other/Scripts/Network/Core/RemoteObject.cs
fqkw6/RewriteFrame
c17ec2b3e2bb50f3eef7f7538ed84af2aaa7aa72
[ "Apache-2.0" ]
2
2020-07-22T10:23:05.000Z
2020-11-04T10:00:54.000Z
using System; using System.Collections.Generic; using System.IO; using UnityEngine; namespace Assets.Scripts.Logic.RemoteCall { public enum KSDType { kstInvalid = 0, //无效的类型 kstBool = 1, //bool类型 kstInt8 = 2, //8位int kstInt16 = 3, //16位int kstInt32 = 4, //32位int kstUInt8 = 5, //8位uint kstUInt16 = 6, //16位uint kstUInt32 = 7, //32位uint kstFloat = 8, //32位float kstDouble = 9, //64位double kstString = 10, //8位描述长度的,变长string kstBigString = 11, //16位描述长度的,变长string(暂时没做) kstUInt64 = 12, //64位uint kstDataStream = 13, //嵌套stream类型 kstNull = 14,//对应lua的nil }; public class RemoteObject { static private MemoryStream tempStrData = null; static private BinaryWriter tempStrWriter = null; static public bool WriteString(BinaryWriter write, string strData) { if (tempStrWriter == null) { tempStrData = new MemoryStream(); tempStrWriter = new BinaryWriter(tempStrData); } var str = strData.ToCharArray(); long strStartPos = tempStrWriter.Seek(0, SeekOrigin.Begin); tempStrWriter.Write(str); long strEndPos = tempStrWriter.Seek(0, SeekOrigin.Current); long strLength = strEndPos - strStartPos; if (strLength < 256) { write.Write((byte)(KSDType.kstString)); write.Write((byte)strLength); write.Write(str); write.Write((byte)0); } else if (strLength < 1024) { write.Write((byte)(KSDType.kstBigString)); write.Write((ushort)strLength); write.Write(str); write.Write((byte)0); } else { return false; } return true; } public virtual bool GetBool() { throw new NotImplementedException(); } public virtual byte GetUInt8() { throw new NotImplementedException(); } public virtual ushort GetUInt16() { throw new NotImplementedException(); } public virtual uint GetUInt32() { throw new NotImplementedException(); } public virtual sbyte GetInt8() { throw new NotImplementedException(); } public virtual short GetInt16() { throw new NotImplementedException(); } public virtual int GetInt32() { throw new NotImplementedException(); } public virtual string GetString() { throw new NotImplementedException(); } public virtual ulong GetUInt64() { throw new NotImplementedException(); } public virtual float GetFloat() { throw new NotImplementedException(); } public virtual double GetDouble() { throw new NotImplementedException(); } public static implicit operator sbyte(RemoteObject f) { return f.GetInt8(); } public static implicit operator byte(RemoteObject f) { return f.GetUInt8(); } public static implicit operator short(RemoteObject f) { return f.GetInt16(); } public static implicit operator ushort(RemoteObject f) { return f.GetUInt16(); } public static implicit operator int(RemoteObject f) { return f.GetInt32(); } public static implicit operator uint(RemoteObject f) { return f.GetUInt32(); } public static implicit operator string(RemoteObject f) { return f.GetString(); } public static implicit operator bool(RemoteObject f) { return f.GetBool(); } public static implicit operator ulong(RemoteObject f) { return f.GetUInt64(); } public virtual RemoteObject this [int index] { get { throw new NotImplementedException(); } set { throw new NotImplementedException(); } } public virtual RemoteObject this [string name] { get{ throw new NotImplementedException(); } set{ throw new NotImplementedException(); } } public virtual KSDType GetRemoteObjType() { return KSDType.kstInvalid; } public virtual bool WritePack(BinaryWriter write) { return false; } } public class RemoteBool : RemoteObject { public bool Value; private RemoteBool(bool val) { Value = val; } public override bool GetBool() { return Value; } private static int useCount = 0; public static void ResetPosition() { useCount = 0; } private static List<RemoteBool> pool = new List<RemoteBool>(); public static void ClearPool() { pool.Clear(); ResetPosition(); } public static RemoteBool GetItem(bool val) { RemoteBool item; if (useCount >= pool.Count) { item = new RemoteBool(val); pool.Add(item); } else { item = pool[useCount]; item.Value = val; } useCount++; return item; } public override KSDType GetRemoteObjType() { return KSDType.kstBool; } public override bool WritePack(BinaryWriter write) { write.Write((byte)(KSDType.kstBool)); write.Write(Value); return true; } } public class RemoteUInt8 : RemoteObject { public byte Value; private RemoteUInt8(byte val) { Value = val; } public override byte GetUInt8() { return Convert.ToByte(Value); } public override ushort GetUInt16() { return Convert.ToUInt16(Value); } public override uint GetUInt32() { return Convert.ToUInt32(Value); } public override sbyte GetInt8() { return Convert.ToSByte(Value); } public override short GetInt16() { return Convert.ToInt16(Value); } public override int GetInt32() { return Convert.ToInt32(Value); } public override float GetFloat() { return Convert.ToSingle(Value); } public override double GetDouble() { return Convert.ToDouble(Value); } public override string GetString() { return Value.ToString(); } private static int useCount = 0; public static void ResetPosition() { useCount = 0; } private static List<RemoteUInt8> pool = new List<RemoteUInt8>(); public static void ClearPool() { pool.Clear(); ResetPosition(); } public static RemoteUInt8 GetItem(byte val) { RemoteUInt8 item; if (useCount >= pool.Count) { item = new RemoteUInt8(val); pool.Add(item); } else { item = pool[useCount]; item.Value = val; } useCount++; return item; } public override KSDType GetRemoteObjType() { return KSDType.kstUInt8; } public override bool WritePack(BinaryWriter write) { write.Write((byte)(KSDType.kstUInt8)); write.Write(Value); return true; } } public class RemoteUInt16 : RemoteObject { public ushort Value; private RemoteUInt16(ushort val) { Value = val; } public override byte GetUInt8() { return Convert.ToByte(Value); } public override ushort GetUInt16() { return Convert.ToUInt16(Value); } public override uint GetUInt32() { return Convert.ToUInt32(Value); } public override sbyte GetInt8() { return Convert.ToSByte(Value); } public override short GetInt16() { return Convert.ToInt16(Value); } public override int GetInt32() { return Convert.ToInt32(Value); } public override float GetFloat() { return Convert.ToSingle(Value); } public override double GetDouble() { return Convert.ToDouble(Value); } public override string GetString() { return Value.ToString(); } private static int useCount = 0; public static void ResetPosition() { useCount = 0; } private static List<RemoteUInt16> pool = new List<RemoteUInt16>(); public static void ClearPool() { pool.Clear(); ResetPosition(); } public static RemoteUInt16 GetItem(ushort val) { RemoteUInt16 item; if (useCount >= pool.Count) { item = new RemoteUInt16(val); pool.Add(item); } else { item = pool[useCount]; item.Value = val; } useCount++; return item; } public override KSDType GetRemoteObjType() { return KSDType.kstUInt16; } public override bool WritePack(BinaryWriter write) { write.Write((byte)(KSDType.kstUInt16)); write.Write(Value); return true; } } public class RemoteUInt32 : RemoteObject { public uint Value; private RemoteUInt32(uint val) { Value = val; } public override byte GetUInt8() { return Convert.ToByte(Value); } public override ushort GetUInt16() { return Convert.ToUInt16(Value); } public override uint GetUInt32() { return Convert.ToUInt32(Value); } public override sbyte GetInt8() { return Convert.ToSByte(Value); } public override short GetInt16() { return Convert.ToInt16(Value); } public override int GetInt32() { return Convert.ToInt32(Value); } public override float GetFloat() { return Convert.ToSingle(Value); } public override double GetDouble() { return Convert.ToDouble(Value); } public override string GetString() { return Value.ToString(); } private static int useCount = 0; public static void ResetPosition() { useCount = 0; } private static List<RemoteUInt32> pool = new List<RemoteUInt32>(); public static void ClearPool() { pool.Clear(); ResetPosition(); } public static RemoteUInt32 GetItem(uint val) { RemoteUInt32 item; if (useCount >= pool.Count) { item = new RemoteUInt32(val); pool.Add(item); } else { item = pool[useCount]; item.Value = val; } useCount++; return item; } public override KSDType GetRemoteObjType() { return KSDType.kstUInt32; } public override bool WritePack(BinaryWriter write) { write.Write((byte)(KSDType.kstUInt32)); write.Write(Value); return true; } } public class RemoteInt8 : RemoteObject { public sbyte Value; private RemoteInt8(sbyte val) { Value = val; } public override byte GetUInt8() { return Convert.ToByte(Value); } public override ushort GetUInt16() { return Convert.ToUInt16(Value); } public override uint GetUInt32() { return Convert.ToUInt32(Value); } public override sbyte GetInt8() { return Convert.ToSByte(Value); } public override short GetInt16() { return Convert.ToInt16(Value); } public override int GetInt32() { return Convert.ToInt32(Value); } public override float GetFloat() { return Convert.ToSingle(Value); } public override double GetDouble() { return Convert.ToDouble(Value); } public override string GetString() { return Value.ToString(); } private static int useCount = 0; public static void ResetPosition() { useCount = 0; } private static List<RemoteInt8> pool = new List<RemoteInt8>(); public static void ClearPool() { pool.Clear(); ResetPosition(); } public static RemoteInt8 GetItem(sbyte val) { RemoteInt8 item; if (useCount >= pool.Count) { item = new RemoteInt8(val); pool.Add(item); } else { item = pool[useCount]; item.Value = val; } useCount++; return item; } public override KSDType GetRemoteObjType() { return KSDType.kstInt8; } public override bool WritePack(BinaryWriter write) { write.Write((byte)(KSDType.kstInt8)); write.Write(Value); return true; } } public class RemoteInt16 : RemoteObject { public short Value; private RemoteInt16(short val) { Value = val; } public override byte GetUInt8() { return Convert.ToByte(Value); } public override ushort GetUInt16() { return Convert.ToUInt16(Value); } public override uint GetUInt32() { return Convert.ToUInt32(Value); } public override sbyte GetInt8() { return Convert.ToSByte(Value); } public override short GetInt16() { return Convert.ToInt16(Value); } public override int GetInt32() { return Convert.ToInt32(Value); } public override float GetFloat() { return Convert.ToSingle(Value); } public override double GetDouble() { return Convert.ToDouble(Value); } public override string GetString() { return Value.ToString(); } private static int useCount = 0; public static void ResetPosition() { useCount = 0; } private static List<RemoteInt16> pool = new List<RemoteInt16>(); public static void ClearPool() { pool.Clear(); ResetPosition(); } public static RemoteInt16 GetItem(short val) { RemoteInt16 item; if (useCount >= pool.Count) { item = new RemoteInt16(val); pool.Add(item); } else { item = pool[useCount]; item.Value = val; } useCount++; return item; } public override KSDType GetRemoteObjType() { return KSDType.kstInt16; } public override bool WritePack(BinaryWriter write) { write.Write((byte)(KSDType.kstInt16)); write.Write(Value); return true; } } public class RemoteInt32 : RemoteObject { public int Value; private RemoteInt32(int val) { Value = val; } public override byte GetUInt8() { return Convert.ToByte(Value); } public override ushort GetUInt16() { return Convert.ToUInt16(Value); } public override uint GetUInt32() { return Convert.ToUInt32(Value); } public override sbyte GetInt8() { return Convert.ToSByte(Value); } public override short GetInt16() { return Convert.ToInt16(Value); } public override int GetInt32() { return Convert.ToInt32(Value); } public override float GetFloat() { return Convert.ToSingle(Value); } public override double GetDouble() { return Convert.ToDouble(Value); } public override string GetString() { return Value.ToString(); } private static int useCount = 0; public static void ResetPosition() { useCount = 0; } private static List<RemoteInt32> pool = new List<RemoteInt32>(); public static void ClearPool() { pool.Clear(); ResetPosition(); } public static RemoteInt32 GetItem(int val) { RemoteInt32 item; if (useCount >= pool.Count) { item = new RemoteInt32(val); pool.Add(item); } else { item = pool[useCount]; item.Value = val; } useCount++; return item; } public override KSDType GetRemoteObjType() { return KSDType.kstInt32; } public override bool WritePack(BinaryWriter write) { write.Write((byte)(KSDType.kstInt32)); write.Write(Value); return true; } } public class RemoteFloat : RemoteObject { public float Value; private RemoteFloat(float val) { Value = val; } public override byte GetUInt8() { return Convert.ToByte(Value); } public override ushort GetUInt16() { return Convert.ToUInt16(Value); } public override uint GetUInt32() { return Convert.ToUInt32(Value); } public override sbyte GetInt8() { return Convert.ToSByte(Value); } public override short GetInt16() { return Convert.ToInt16(Value); } public override int GetInt32() { return Convert.ToInt32(Value); } public override float GetFloat() { return Convert.ToSingle(Value); } public override double GetDouble() { return Convert.ToDouble(Value); } public override string GetString() { return Value.ToString(); } private static int useCount = 0; public static void ResetPosition() { useCount = 0; } private static List<RemoteFloat> pool = new List<RemoteFloat>(); public static void ClearPool() { pool.Clear(); ResetPosition(); } public static RemoteFloat GetItem(float val) { RemoteFloat item; if (useCount >= pool.Count) { item = new RemoteFloat(val); pool.Add(item); } else { item = pool[useCount]; item.Value = val; } useCount++; return item; } public override KSDType GetRemoteObjType() { return KSDType.kstFloat; } public override bool WritePack(BinaryWriter write) { write.Write((byte)(KSDType.kstFloat)); write.Write(Value); return true; } } public class RemoteDouble : RemoteObject { public double Value; private RemoteDouble(double val) { Value = val; } public override byte GetUInt8() { return Convert.ToByte(Value); } public override ushort GetUInt16() { return Convert.ToUInt16(Value); } public override uint GetUInt32() { return Convert.ToUInt32(Value); } public override sbyte GetInt8() { return Convert.ToSByte(Value); } public override short GetInt16() { return Convert.ToInt16(Value); } public override int GetInt32() { return Convert.ToInt32(Value); } public override float GetFloat() { return Convert.ToSingle(Value); } public override double GetDouble() { return Convert.ToDouble(Value); } public override string GetString() { return Value.ToString(); } private static int useCount = 0; public static void ResetPosition() { useCount = 0; } private static List<RemoteDouble> pool = new List<RemoteDouble>(); public static void ClearPool() { pool.Clear(); ResetPosition(); } public static RemoteDouble GetItem(double val) { RemoteDouble item; if (useCount >= pool.Count) { item = new RemoteDouble(val); pool.Add(item); } else { item = pool[useCount]; item.Value = val; } useCount++; return item; } public override KSDType GetRemoteObjType() { return KSDType.kstDouble; } public override bool WritePack(BinaryWriter write) { write.Write((byte)(KSDType.kstDouble)); write.Write(Value); return true; } } public class RemoteUInt64 : RemoteObject { public UInt64 Value; private RemoteUInt64(UInt64 val) { Value = val; } public override UInt64 GetUInt64() { return Value; } public override string GetString() { return Value.ToString(); } private static int useCount = 0; public static void ResetPosition() { useCount = 0; } private static List<RemoteUInt64> pool = new List<RemoteUInt64>(); public static void ClearPool() { pool.Clear(); ResetPosition(); } public static RemoteUInt64 GetItem(UInt64 val) { RemoteUInt64 item; if (useCount >= pool.Count) { item = new RemoteUInt64(val); pool.Add(item); } else { item = pool[useCount]; item.Value = val; } useCount++; return item; } public override KSDType GetRemoteObjType() { return KSDType.kstUInt64; } public override bool WritePack(BinaryWriter write) { write.Write((byte)(KSDType.kstUInt64)); write.Write(Value); return true; } } public class RemoteString : RemoteObject { public string Value; private RemoteString(string val) { Value = val; } public override string GetString() { return Value; } private static int useCount = 0; public static void ResetPosition() { useCount = 0; } private static List<RemoteString> pool = new List<RemoteString>(); public static void ClearPool() { pool.Clear(); ResetPosition(); } public static RemoteString GetItem(string val) { RemoteString item; if (useCount >= pool.Count) { item = new RemoteString(val); pool.Add(item); } else { item = pool[useCount]; item.Value = val; } useCount++; return item; } public override KSDType GetRemoteObjType() { return KSDType.kstString; } public override bool WritePack(BinaryWriter write) { return WriteString(write, Value); } } public class RemoteTable : RemoteObject { public Dictionary<object, object> dictKV = new Dictionary<object, object>(); public bool ContainsKey(object _key) { return dictKV.ContainsKey(_key); } public int Count { get { return dictKV.Count; } } public RemoteObject GetItemForLua(string name) { if (!dictKV.ContainsKey(name)) { return null; } return dictKV[name] as RemoteObject; } public RemoteTable GetTableForLua(string name) { if (!dictKV.ContainsKey(name)) { return null; } return dictKV[name] as RemoteTable; } public override RemoteObject this [int index] { get { if (!dictKV.ContainsKey(index)) { return null; } return dictKV[index] as RemoteObject; } set { dictKV[index] = value; } } public override RemoteObject this [string name] { get { if (!dictKV.ContainsKey(name)) { return null; } return dictKV[name] as RemoteObject; } set { dictKV[name] = value; } } public override KSDType GetRemoteObjType() { return KSDType.kstDataStream; } public bool WriteKey(BinaryWriter write, object key) { Type keyType = key.GetType(); if (keyType == typeof(int)) { int tempKey = (int)key; write.Write((byte)(KSDType.kstInt32)); write.Write(tempKey); return true; } else if (keyType == typeof(string)) { string tempKey = (string)key; return WriteString(write, tempKey); } return false; } public override bool WritePack(BinaryWriter write) { ushort packSize = 0; write.Write((byte)(KSDType.kstDataStream)); long beignPos = write.Seek(0, SeekOrigin.Current); write.Write(packSize); //write data foreach (KeyValuePair<object, object> pairData in dictKV) { if (!WriteKey(write, pairData.Key)) { Debug.LogError("RemoteTable WritePack error, WriteKey error"); return false; } RemoteObject valueData = pairData.Value as RemoteObject; if (valueData == null) { Debug.LogError("RemoteTable WritePack error, Value Type error"); return false; } if (!valueData.WritePack(write)) { Debug.LogError("RemoteTable WritePack error, WritePack error"); return false; } } long endPos = write.Seek(0, SeekOrigin.Current); long writeLength = endPos - beignPos - sizeof(ushort); if (writeLength < 0 || writeLength >= 0xFFFF) { Debug.LogError("RemoteTable WritePack error, pack size error, length:"+ writeLength); return false; } packSize = (ushort)writeLength; write.Seek((int)beignPos, SeekOrigin.Begin); write.Write(packSize); write.Seek((int)endPos, SeekOrigin.Begin); return true; } } }
22.715147
101
0.474439
5898ae3db7ba1167031df6686b784c9ad003fb0a
6,357
css
CSS
libraries/bootstrap3/icons/adminIcons.css
Myent/demo
538007bbfcdfb792a12d19211d4cca56cfc98803
[ "PHP-3.0", "Apache-2.0", "ECL-2.0" ]
null
null
null
libraries/bootstrap3/icons/adminIcons.css
Myent/demo
538007bbfcdfb792a12d19211d4cca56cfc98803
[ "PHP-3.0", "Apache-2.0", "ECL-2.0" ]
null
null
null
libraries/bootstrap3/icons/adminIcons.css
Myent/demo
538007bbfcdfb792a12d19211d4cca56cfc98803
[ "PHP-3.0", "Apache-2.0", "ECL-2.0" ]
null
null
null
@font-face { font-family: 'AdminIcons'; src:url('adminIcons.eot?5bzxui'); src:url('adminIcons.eot?5bzxui#iefix') format('embedded-opentype'), url('adminIcons.ttf?5bzxui') format('truetype'), url('adminIcons.woff?5bzxui') format('woff'), url('adminIcons.svg?5bzxui#icomoon') format('svg'); font-weight: normal; font-style: normal; } [class^="adminIcon-"], [class*=" adminIcon-"] { font-family: 'AdminIcons'; speak: none; font-style: normal; font-weight: normal; font-variant: normal; text-transform: none; line-height: 1; /* Better Font Rendering =========== */ -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; } .adminIcon-yetiforce-shop:before { content: "\e95e"; } .adminIcon-NotificationConfiguration:before { content: "\e95f"; } .adminIcon-TypeNotification:before { content: "\e960"; } .adminIcon-shared-owner:before { content: "\e95c"; } .adminIcon-owner:before { content: "\e95d"; } .adminIcon-logistics:before { content: "\e95b"; } .adminIcon-about-yetiforce:before { content: "\e95a"; } .adminIcon-locks:before { content: "\e959"; } .adminIcon-automation:before { content: "\e958"; } .adminIcon-passwords-encryption:before { content: "\e950"; } .adminIcon-server-updates:before { content: "\e93d"; } .adminIcon-profiles:before { content: "\e957"; } .adminIcon-currencies:before { content: "\e956"; } .adminIcon-system-configuration:before { content: "\e938"; } .adminIcon-advenced-modules:before { content: "\e900"; } .adminIcon-ldap:before { content: "\e901"; } .adminIcon-backup:before { content: "\e902"; } .adminIcon-calendar-configuration:before { content: "\e903"; } .adminIcon-calendar-holidys:before { content: "\e904"; } .adminIcon-calendar-labels-colors:before { content: "\e905"; } .adminIcon-calendar-types:before { content: "\e906"; } .adminIcon-colors:before { content: "\e907"; } .adminIcon-company-detlis:before { content: "\e908"; } .adminIcon-company-information:before { content: "\e909"; } .adminIcon-contributors:before { content: "\e90a"; } .adminIcon-credit-limit-base_2:before { content: "\e90b"; } .adminIcon-cron:before { content: "\e90c"; } .adminIcon-currency:before { content: "\e90d"; } .adminIcon-customer-portal:before { content: "\e90e"; } .adminIcon-filed-mapping:before { content: "\e90f"; } .adminIcon-dav-applications:before { content: "\e910"; } .adminIcon-discount-configuration:before { content: "\e911"; } .adminIcon-discount-base:before { content: "\e912"; } .adminIcon-document_flow:before { content: "\e913"; } .adminIcon-document-templates:before { content: "\e914"; } .adminIcon-modules-fields:before { content: "\e915"; } .adminIcon-field-folders:before { content: "\e916"; } .adminIcon-fields-picklists:before { content: "\e917"; } .adminIcon-fields-picklists-relations:before { content: "\e918"; } .adminIcon-fields-quick-create:before { content: "\e919"; } .adminIcon-filters-configuration:before { content: "\e91a"; } .adminIcon-finances:before { content: "\e91b"; } .adminIcon-groups:before { content: "\e91c"; } .adminIcon-filed-hide-bloks:before { content: "\e91d"; } .adminIcon-integration:before { content: "\e91e"; } .adminIcon-languages-and-translations:before { content: "\e91f"; } .adminIcon-license:before { content: "\e920"; } .adminIcon-logs:before { content: "\e921"; } .adminIcon-oss_mailview:before { content: "\e922"; } .adminIcon-mail-auto-login:before { content: "\e923"; } .adminIcon-mail-configuration:before { content: "\e924"; } .adminIcon-mail-download-history:before { content: "\e925"; } .adminIcon-mail-roundcube:before { content: "\e926"; } .adminIcon-mail-scanner:before { content: "\e927"; } .adminIcon-mail-smtp-server:before { content: "\e928"; } .adminIcon-mail-tools:before { content: "\e929"; } .adminIcon-mapped-fields:before { content: "\e92a"; } .adminIcon-address:before { content: "\e92b"; } .adminIcon-marketing:before { content: "\e92c"; } .adminIcon-menu-configuration:before { content: "\e92d"; } .adminIcon-mobile-applications:before { content: "\e92e"; } .adminIcon-module-access:before { content: "\e92f"; } .adminIcon-modules-installation:before { content: "\e930"; } .adminIcon-modules-prefixes:before { content: "\e931"; } .adminIcon-modules-relations:before { content: "\e932"; } .adminIcon-modules-track-chanegs:before { content: "\e933"; } .adminIcon-modules-widgets:before { content: "\e934"; } .adminIcon-online-forms:before { content: "\e935"; } .adminIcon-brute-force:before { content: "\e936"; } .adminIcon-passwords-configuration:before { content: "\e937"; } .adminIcon-pbx-manager:before { content: "\e939"; } .adminIcon-modules-pdf-templates:before { content: "\e93a"; } .adminIcon-permissions:before { content: "\e93b"; } .adminIcon-processes:before { content: "\e93c"; } .adminIcon-realization:before { content: "\e93e"; } .adminIcon-recording-control:before { content: "\e93f"; } .adminIcon-roles:before { content: "\e940"; } .adminIcon-sales:before { content: "\e941"; } .adminIcon-search-and-filtres:before { content: "\e942"; } .adminIcon-search-configuration:before { content: "\e943"; } .adminIcon-security:before { content: "\e944"; } .adminIcon-server-configuration:before { content: "\e945"; } .adminIcon-special-access:before { content: "\e946"; } .adminIcon-standard-modules:before { content: "\e947"; } .adminIcon-support:before { content: "\e948"; } .adminIcon-users:before { content: "\e949"; } .adminIcon-system-messages:before { content: "\e94a"; } .adminIcon-system-tools:before { content: "\e94b"; } .adminIcon-taxes-caonfiguration:before { content: "\e94c"; } .adminIcon-taxes-rates:before { content: "\e94d"; } .adminIcon-terms-and-conditions:before { content: "\e94e"; } .adminIcon-triggers:before { content: "\e94f"; } .adminIcon-user:before { content: "\e951"; } .adminIcon-users-login:before { content: "\e952"; } .adminIcon-widgets-configuration:before { content: "\e953"; } .adminIcon-workflow:before { content: "\e954"; } .adminIcon-yeti-force:before { content: "\e955"; }
20.053628
68
0.665566
4ccb48eee38c0b9cf9e8989976f1004ec6309589
625
py
Python
ProjectEulerCode/prob27.py
khaleeque-ansari/Online-Coding-Problems-Solutions-Python
c8378ccad88ce5f50239f82cf9569344e1b92f18
[ "Apache-2.0" ]
null
null
null
ProjectEulerCode/prob27.py
khaleeque-ansari/Online-Coding-Problems-Solutions-Python
c8378ccad88ce5f50239f82cf9569344e1b92f18
[ "Apache-2.0" ]
null
null
null
ProjectEulerCode/prob27.py
khaleeque-ansari/Online-Coding-Problems-Solutions-Python
c8378ccad88ce5f50239f82cf9569344e1b92f18
[ "Apache-2.0" ]
null
null
null
from prime_check import isprime prim_list = [] for k in range(2,1000): prim_list.append(k) max_count = 0 for a in range(-999,999): for b in prim_list: for i in range(0,1000): #print i, #print isprime(i*i + a*i + b) if isprime(i*i + a*i + b) == False: if i > max_count : max_count = i max_a = a max_b = b break print max_count print max_a print max_b print max_a*max_b
23.148148
64
0.4112
f2088ffab0fa5d15e986b93f636994a7b021097d
3,631
cpp
C++
copyFileSet.cpp
CCJordan/cpb
026ded38733be2c9795094a075070dff1c698759
[ "CC0-1.0" ]
null
null
null
copyFileSet.cpp
CCJordan/cpb
026ded38733be2c9795094a075070dff1c698759
[ "CC0-1.0" ]
null
null
null
copyFileSet.cpp
CCJordan/cpb
026ded38733be2c9795094a075070dff1c698759
[ "CC0-1.0" ]
null
null
null
// // copyFileSet.cpp // cpProgressBar // // Created by Christopher Jordan on 26.09.15. // Copyright © 2015 Christopher Jordan. All rights reserved. // #include "copyFileSet.h" copyFileSet::copyFileSet(string destination) { dest = destination; copiedFiles = 0; destIsFile = !copyHelper::is_dir(dest.c_str()); if (!destIsFile) { if (dest[dest.length() - 1] != '/') dest = dest + '/'; } } void copyFileSet::addFile(string srcPath) { files = addDirs(srcPath); filesInSet = files.size(); arrFiles = new string[filesInSet]; int i = 0; for(string file:files) { arrFiles[i] = file; i++; } it = files.begin(); if (copyHelper::is_dir(srcPath.c_str())) { rootDir = copyHelper::getDirName(srcPath); } else { char * cAbsSrc = new char[PATH_MAX]; realpath(srcPath.c_str(), cAbsSrc); string strAbsSrc = cAbsSrc; string fileName = copyHelper::getFileName(srcPath); rootDir = strAbsSrc.erase(strAbsSrc.length() - fileName.length(), fileName.length()); } if (destIsFile && files.size() > 1) { cout << "WTF?! Mehrere Dateien in einer zu überschreiben ist jetzt nicht so der Bringer. " << endl; } } string copyFileSet::getSourcePath() { if (!endReached()) return *it; // arrFiles[copiedFiles]; return NULL; } string copyFileSet::getDestinationPath() { if (endReached()) return NULL; // destination is a file if (destIsFile) { return dest; } string ret = *it; // arrFiles[copiedFiles]; ret.erase(0, rootDir.length()); ret = dest + ret; return ret; } bool copyFileSet::endReached() { bool end = (copiedFiles >= filesInSet); return end; } bool copyFileSet::nextFile() { copiedFiles++; if (!endReached()) { it++; return true; } return false; } list<string> copyFileSet::addDirs(string path) { list<string> paths; paths.push_back(path); list<string> absolutePaths; char *resName = new char[PATH_MAX]; string tmpAbsPath; for (string strTmpPath:paths) { if (realpath(strTmpPath.c_str(), resName) != NULL) { tmpAbsPath = resName; } if (copyHelper::is_dir(tmpAbsPath.c_str())) { DIR *dir; struct dirent *ent; if ((dir = opendir( tmpAbsPath.c_str() )) != NULL) { absolutePaths.push_back(tmpAbsPath); while ((ent = readdir (dir)) != NULL) { string tmpFileName = ent->d_name; if (tmpFileName.compare(".") != 0 && tmpFileName.compare("..") != 0) { string tmpFullPath = getFullFileName( tmpAbsPath, tmpFileName ); absolutePaths.push_back(tmpFullPath); if (copyHelper::is_dir(tmpFullPath.c_str())) { paths.push_back(tmpFullPath); } } } closedir (dir); } else { cout << "Can't access " << tmpAbsPath << endl; } } else { absolutePaths.push_back( tmpAbsPath ); } } return absolutePaths; } string copyFileSet::getFullFileName(string outPathArg, string fileName) { if (outPathArg.length() > 0 && outPathArg[outPathArg.length() - 1] == '/') { return outPathArg + fileName; } // test if outPathArg is a folder if (copyHelper::is_dir(outPathArg.c_str())) { return outPathArg + "/" + fileName; } return outPathArg; }
28.367188
107
0.557973
a36075fc06d8b8357fcda9e791c0f99cf1288c4f
1,078
java
Java
src/main/java/com/ucar/eser/admin/service/schedule/EsBaseCenterJob.java
ucarGroup/EserKnife
2935f8ddd38526a513f8a38e0defd44c16b9cfbb
[ "Apache-2.0" ]
15
2018-05-03T09:34:36.000Z
2020-07-30T05:37:28.000Z
src/main/java/com/ucar/eser/admin/service/schedule/EsBaseCenterJob.java
ucarGroup/EserKnife
2935f8ddd38526a513f8a38e0defd44c16b9cfbb
[ "Apache-2.0" ]
null
null
null
src/main/java/com/ucar/eser/admin/service/schedule/EsBaseCenterJob.java
ucarGroup/EserKnife
2935f8ddd38526a513f8a38e0defd44c16b9cfbb
[ "Apache-2.0" ]
10
2018-05-03T08:09:49.000Z
2021-07-05T09:45:44.000Z
package com.ucar.eser.admin.service.schedule; import org.quartz.Job; import org.quartz.JobExecutionContext; import org.quartz.JobExecutionException; import org.slf4j.Logger; import org.slf4j.LoggerFactory; import java.io.Serializable; /** * * job父类,包含一个抽象函方法,将实现推迟到具体的子类 * Created by wangzhen on 2015/10/22 */ public abstract class EsBaseCenterJob implements Job, Serializable { private static final long serialVersionUID = -6605766126594260961L; protected Logger LOGGER = LoggerFactory.getLogger(this.getClass()); // 抽象方法,由子类实现,即具体的业务逻辑 public abstract void action(JobExecutionContext context); /** * 统计时间 * * @throws JobExecutionException */ @Override public void execute(JobExecutionContext context) throws JobExecutionException { long start = System.currentTimeMillis(); this.action(context); long end = System.currentTimeMillis(); LOGGER.info("job: {}, trigger: {}, cost: {} ms", context.getJobDetail().getKey(), context.getTrigger().getKey(), (end - start)); } }
29.135135
89
0.703154