├── Custom Column TUBs
├── timeOfExecution.bambda
├── catpics.bambda
├── poop.bambda
├── scrabble.bambda
├── concern.bambda
├── morse_method.bambda
├── magic-8-ball.bambda
├── fish_fingers.bambda
├── comic_sans.bambda
├── Tib3rius.bambda
└── bsod.bambda
├── Custom Filter TUBs
├── alt-f4.bambda
├── coin_flip.bambda
├── secure_coin_flip.bambda
├── party_colors.bambda
├── manual_filter.bambda
├── definitely_useless.bambda
├── neverending_popups.bambda
├── fade_in_out.bambda
├── burp_dvd.bambda
├── tic-tac-toe.bambda
└── quack.bambda
├── README.md
└── LICENSE
/Custom Column TUBs/timeOfExecution.bambda:
--------------------------------------------------------------------------------
1 | // Custom column that displays the time/date at which the bambda was executed
2 | return LocalDateTime.now();
3 |
--------------------------------------------------------------------------------
/Custom Filter TUBs/alt-f4.bambda:
--------------------------------------------------------------------------------
1 | /*
2 | The most(?) useless Lambda? Using it just closes Burp.
3 | */
4 | Runtime.getRuntime().exit(0);
5 | return true;
--------------------------------------------------------------------------------
/Custom Filter TUBs/coin_flip.bambda:
--------------------------------------------------------------------------------
1 | // A custom filter Bambda that flips a virtual coin to determine whether a request/response is displayed.
2 |
3 | if (new Random().nextBoolean()) {
4 | return true;
5 | }
6 | return false;
--------------------------------------------------------------------------------
/Custom Filter TUBs/secure_coin_flip.bambda:
--------------------------------------------------------------------------------
1 | // A custom filter Bambda that flips a secure virtual coin to determine whether a request/response is displayed.
2 |
3 | if (new java.security.SecureRandom().nextBoolean()) {
4 | return true;
5 | }
6 | return false;
--------------------------------------------------------------------------------
/README.md:
--------------------------------------------------------------------------------
1 | # Tib's TUBs
2 |
3 | A collection of TUBs (Totally Useless Bambdas) for Burp Suite, created by Tib3rius & friends.
4 |
5 | For a Bambda to be considered "totally useless" it should either add nothing of value for a tester, or actively impede their work. Use your imagination and submit a PR for a new TUB today!
6 |
--------------------------------------------------------------------------------
/Custom Filter TUBs/party_colors.bambda:
--------------------------------------------------------------------------------
1 | java.util.Random random = new java.util.Random();
2 |
3 | HighlightColor[] colors = HighlightColor.values();
4 | HighlightColor randomColor;
5 |
6 | do {
7 | randomColor = colors[random.nextInt(colors.length)];
8 | } while (randomColor == HighlightColor.NONE);
9 |
10 | requestResponse.annotations().setHighlightColor(randomColor);
11 | return true;
--------------------------------------------------------------------------------
/Custom Column TUBs/catpics.bambda:
--------------------------------------------------------------------------------
1 | // A custom column Bambda that adds a random image of a cat.
2 | // Suggested column header: Cat!
3 | // Note: This uses an external cat image API. Every single row will cause a new request to be sent. Don't use this. :P
4 |
5 | java.awt.image.BufferedImage image = javax.imageio.ImageIO.read(new java.net.URL("https://cataas.com/cat"));
6 | return new javax.swing.ImageIcon(image.getScaledInstance(30, 30, java.awt.Image.SCALE_FAST));
7 |
--------------------------------------------------------------------------------
/Custom Column TUBs/poop.bambda:
--------------------------------------------------------------------------------
1 | // A custom column Bambda that displays 1-5 poop emojis (as determined by a random number generator).
2 | // Suggested column header: Poop
3 | // Note: The random number generator is not SECURE. Do not rely on the number of poop emojis in any cryptographic operation.
4 |
5 | int num = new Random().nextInt(1, 6);
6 | StringBuilder sb = new StringBuilder();
7 | for (int i = 0; i < num; i++) {
8 | sb.append("💩");
9 | }
10 | return sb.toString();
11 |
--------------------------------------------------------------------------------
/Custom Column TUBs/scrabble.bambda:
--------------------------------------------------------------------------------
1 | // A custom column Bambda that calculates the scrabble score for the request's Host header.
2 | // Suggested column header: Scrabble Score
3 |
4 | if (requestResponse.host() == null) return 0;
5 |
6 | int[] letterScores = new int[]{1, 3, 3, 2, 1, 4, 2, 4, 1, 8, 5, 1, 3, 1, 1, 3, 10, 1, 1, 1, 1, 4, 4, 8, 4, 10};
7 |
8 | int score = requestResponse.host().toUpperCase().chars()
9 | .map(i -> i - 65)
10 | .filter(i -> 0<=i && i<=26)
11 | .map(i -> letterScores[i])
12 | .sum();
13 |
14 | return score;
--------------------------------------------------------------------------------
/Custom Column TUBs/concern.bambda:
--------------------------------------------------------------------------------
1 | // A custom column Bambda that displays how concerning a response is.
2 | // Suggested column header: Concern-o-meter
3 |
4 | String str = requestResponse.hasResponse() ? requestResponse.response().bodyToString() : "";
5 |
6 | int count = 0;
7 | for (int i = 0; i < str.length(); i++) {
8 | if (str.charAt(i) == '?') {
9 | count++;
10 | }
11 | }
12 |
13 | if (count == 0) {
14 | return "Cool";
15 | }
16 |
17 | if (count < 5) {
18 | return "Calm";
19 | }
20 |
21 | if (count < 10) {
22 | return "Concern";
23 | }
24 |
25 | return "Panic!";
--------------------------------------------------------------------------------
/Custom Column TUBs/morse_method.bambda:
--------------------------------------------------------------------------------
1 | // A custom column Bambda that displays the HTTP method in Morse code.
2 | // Suggested column header: Morse Method
3 |
4 | String morseCode [] = {".-","-...","-.-.","-..",".","..-.","--.","....","..",".---","-.-",".-..","--","-.","---",".--.","--.-",".-.","...","-","..-","...-",".--","-..-","-.--","--.."};
5 | char[] method = requestResponse.request().method().toUpperCase().toCharArray();
6 | StringBuilder sb = new StringBuilder();
7 | for (int i = 0; i < method.length; i++) {
8 | int index = method[i] - (int) 'A';
9 | if (0 <= index && index < morseCode.length) {
10 | sb.append(morseCode[method[i] - (int) 'A']);
11 | } else {
12 | sb.append(method[i]);
13 | }
14 | sb.append(" ");
15 | }
16 | return sb.toString().trim();
17 |
--------------------------------------------------------------------------------
/Custom Column TUBs/magic-8-ball.bambda:
--------------------------------------------------------------------------------
1 | // A custom column Bambda that displays an answer stright from the Magic-8-ball.
2 | // Really helpful to identify new attack vectors, boost your stamina and courage.
3 |
4 | String[] Answers = new String[]{"It is certain", "It is decidedly so", "Without a doubt", "Yes definitely", "You may rely on it", "As I see it", "Yes", "Most likely", "Outlook good", "Yes", "Signs point to yes", "Ask again later", "Better not tell you now", "Without a doubt", "Cannot predict now", "Concentrate and ask again", "Don't count on it", "My reply is no", "My sources say no", "Outlook not so good", "Very doubtful"};
5 | java.util.zip.CRC32 requestCrc32 = new java.util.zip.CRC32();
6 | requestCrc32.update(requestResponse.request().toString().getBytes(java.nio.charset.StandardCharsets.UTF_8));
7 |
8 | return "🎱 " + Answers[Math.abs((int)requestCrc32.getValue())%Answers.length];
9 |
--------------------------------------------------------------------------------
/Custom Column TUBs/fish_fingers.bambda:
--------------------------------------------------------------------------------
1 | // A custom column Bambda that tells you how many bites it would take you to consume all the bytes in a response, based on the number of bites it takes you to eat an entire fish finger.
2 | // Suggested column header: How many bites?
3 |
4 | var numberOfFishFingers = requestResponse.response().toByteArray().length() / numberOfBitesForFishFinger;
5 |
6 | return new java.text.DecimalFormat("0.#").format(numberOfFishFingers);
7 | }
8 |
9 | static double numberOfBitesForFishFinger = 0;
10 |
11 | static {
12 | var validInput = false;
13 | while (!validInput) {
14 | var input = javax.swing.JOptionPane.showInputDialog("How many bytes does it take for you to eat a fish finger?");
15 | try {
16 | numberOfBitesForFishFinger = Double.parseDouble(input);
17 | validInput = true;
18 | }
19 | catch (Exception e) {
20 | javax.swing.JOptionPane.showMessageDialog(null, input + " isn't a number you silly salmon", "Silly salmon", javax.swing.JOptionPane.ERROR_MESSAGE);
21 | }
22 | }
23 | }
24 |
25 | void sauna() {
--------------------------------------------------------------------------------
/Custom Filter TUBs/manual_filter.bambda:
--------------------------------------------------------------------------------
1 | // A custom filter Bambda that displays a confirmation dialog box for every single request/response in the current results table, putting the power BACK into your hands.
2 | // Requests/responses will only be included in the results if you manually approve them (by clicking the "Yes" option).
3 | // DOWN with AUTOMATION. MAKE BAMBDAS MANUAL AGAIN!
4 |
5 | Object jOptionPane = Class.forName("javax.swing.JOptionPane").newInstance();
6 | int yesNoOption = jOptionPane.getClass().getDeclaredField("YES_NO_OPTION").getInt(jOptionPane);
7 | int yesOption = jOptionPane.getClass().getDeclaredField("YES_OPTION").getInt(jOptionPane);
8 | int decision = (int) (jOptionPane.getClass().getMethod("showConfirmDialog", Class.forName("java.awt.Component"), Object.class, String.class, int.class)).invoke(jOptionPane, null, "Do you wish to include the following request/response in the filtered results:\n\n[" + requestResponse.request().method() + "] " + requestResponse.request().url() + "\n\nStatus: " + requestResponse.response().statusCode() + ", Length: " + requestResponse.response().toByteArray().length(), "Filter", yesNoOption);
9 | if (decision == yesOption) {
10 | return true;
11 | }
12 | return false;
13 |
--------------------------------------------------------------------------------
/Custom Column TUBs/comic_sans.bambda:
--------------------------------------------------------------------------------
1 | // A custom column Bambda that replaces every font in Burp Suite with Comic Sans.
2 | // Suggested column header: Comic Sans
3 |
4 | if (isComicSansAvailable) {
5 | for (java.awt.Window window : java.awt.Window.getWindows()) {
6 | doIt(window.getComponents());
7 | }
8 | }
9 |
10 | return true;
11 | }
12 |
13 | void doIt(java.awt.Component[] components) {
14 | for (java.awt.Component component : components) {
15 | if (component instanceof java.awt.Container) {
16 | doIt(((java.awt.Container) component).getComponents());
17 | }
18 |
19 | if (component instanceof javax.swing.JComponent) {
20 |
21 | ((javax.swing.JComponent) component).setFont(new java.awt.Font("Comic Sans MS", java.awt.Font.PLAIN, 24));
22 | }
23 | }
24 | }
25 |
26 | static boolean isComicSansAvailable = false;
27 |
28 | static {
29 | String fonts[] = java.awt.GraphicsEnvironment.getLocalGraphicsEnvironment().getAvailableFontFamilyNames();
30 |
31 | for (int i = 0; i < fonts.length && !isComicSansAvailable; i++) {
32 | String font = fonts[i];
33 | if (font.equals("Comic Sans MS")) {
34 | isComicSansAvailable = true;
35 | }
36 | }
37 | }
38 |
39 | void bob() {
--------------------------------------------------------------------------------
/Custom Filter TUBs/definitely_useless.bambda:
--------------------------------------------------------------------------------
1 | // A custom filter Bambda that replaces the Burp Suite interface with ZAP.
2 |
3 | if (started) {
4 | return true;
5 | }
6 |
7 | var imageUrl = "https://devopedia.org/images/article/72/2450.1523863706.jpg";
8 | java.awt.image.BufferedImage overlayImage;
9 |
10 | started = true;
11 |
12 | javax.swing.JFrame targetWindow = (javax.swing.JFrame) Arrays.stream(java.awt.Window.getWindows())
13 | .filter(window -> window instanceof javax.swing.JFrame && window.isVisible())
14 | .findFirst()
15 | .orElse(null);
16 |
17 | if (targetWindow == null) {
18 | return true;
19 | }
20 |
21 | try {
22 | java.net.URL url = new java.net.URL(imageUrl);
23 | overlayImage = javax.imageio.ImageIO.read(url);
24 |
25 | } catch (IOException e) {
26 | e.printStackTrace();
27 | return true;
28 | }
29 |
30 | javax.swing.JPanel overlayPanel = new javax.swing.JPanel() {
31 | @Override
32 | protected void paintComponent(java.awt.Graphics g) {
33 | super.paintComponent(g);
34 | if (overlayImage != null) {
35 | g.drawImage(overlayImage, 0, 0, getWidth(), getHeight(), this);
36 | }
37 | }
38 | };
39 |
40 | targetWindow.setGlassPane(overlayPanel);
41 | overlayPanel.setVisible(true);
42 |
43 | return true;
44 | }
45 |
46 | boolean started = false;
47 |
48 | {
--------------------------------------------------------------------------------
/Custom Filter TUBs/neverending_popups.bambda:
--------------------------------------------------------------------------------
1 | /*
2 | Creates never-ending popups (1/4 chance to spawn app shutdown).
3 | */
4 |
5 | java.security.SecureRandom secureRandom = new java.security.SecureRandom();
6 | java.awt.Dimension screenSize = java.awt.Toolkit.getDefaultToolkit().getScreenSize();
7 |
8 | final String image = "https://fastly.picsum.photos/id/237/536/354.jpg?hmac=i0yVXW1ORpyCZpQ-CknuyV-jbtU7_x9EBQVhvT5aRr0";
9 | final java.net.URL imageUrl = new java.net.URL(image);
10 | final javax.swing.ImageIcon imageIcon = new javax.swing.ImageIcon(imageUrl);
11 | final javax.swing.JLabel label = new javax.swing.JLabel(imageIcon);
12 |
13 | javax.swing.JButton buttonShutdown = new javax.swing.JButton("Emergency Shutdown!");
14 | buttonShutdown.addActionListener(new java.awt.event.ActionListener() {
15 | public void actionPerformed(java.awt.event.ActionEvent e) {
16 | Runtime.getRuntime().exit(0);
17 | }
18 | });
19 |
20 | javax.swing.JButton button = new javax.swing.JButton("Hey, how's it going?");
21 | button.addActionListener(new java.awt.event.ActionListener() {
22 | public void actionPerformed(java.awt.event.ActionEvent e) {
23 | javax.swing.JFrame frame = new javax.swing.JFrame("Popup");
24 | int x = secureRandom.nextInt(screenSize.width - frame.getWidth());
25 | int y = secureRandom.nextInt(screenSize.height - frame.getHeight());
26 | frame.setSize(400, 500);
27 | frame.setLocation(x, y);
28 | if (secureRandom.nextInt(4) == 0) {
29 | frame.setDefaultCloseOperation(javax.swing.JFrame.EXIT_ON_CLOSE);
30 | frame.getContentPane().add(buttonShutdown);
31 | } else {
32 | frame.setDefaultCloseOperation(javax.swing.JFrame.DISPOSE_ON_CLOSE);
33 | try { frame.getContentPane().add(label, java.awt.BorderLayout.SOUTH); }
34 | catch (Exception ef) { ef.printStackTrace(); }
35 | frame.getContentPane().add(button, java.awt.BorderLayout.CENTER);
36 | }
37 | frame.setVisible(true);
38 | }
39 | });
40 |
41 | while (true) {
42 | javax.swing.JFrame frameStart = new javax.swing.JFrame("Popup");
43 | frameStart.setSize(300, 200);
44 | frameStart.setDefaultCloseOperation(javax.swing.JFrame.DISPOSE_ON_CLOSE);
45 | int x = secureRandom.nextInt(screenSize.width - frameStart.getWidth());
46 | int y = secureRandom.nextInt(screenSize.height - frameStart.getHeight());
47 | frameStart.setLocation(x, y);
48 | frameStart.getContentPane().add(button, java.awt.BorderLayout.CENTER);
49 | frameStart.setVisible(true);
50 | try {
51 | java.lang.Thread.sleep(2000);
52 | } catch (java.lang.InterruptedException e) {
53 | e.printStackTrace();
54 | return true;
55 | }
56 | }
--------------------------------------------------------------------------------
/Custom Filter TUBs/fade_in_out.bambda:
--------------------------------------------------------------------------------
1 | /**
2 | * A custom filter Bambda that creates a fade in/out effect for the Burp Suite.
3 | * @author Tur24Tur / BugBountyzip (https://github.com/BugBountyzip)
4 | **/
5 |
6 |
7 |
8 | if (started) {
9 | return true;
10 | }
11 |
12 | java.awt.EventQueue.invokeLater(() -> {
13 | javax.swing.JFrame targetWindow = (javax.swing.JFrame) Arrays.stream(java.awt.Window.getWindows())
14 | .filter(window -> window instanceof javax.swing.JFrame && window.isVisible())
15 | .findFirst()
16 | .orElse(null);
17 |
18 | if (targetWindow == null) {
19 | return;
20 | }
21 |
22 | // semi-transparent overlay panel
23 | class FadePanel extends javax.swing.JPanel {
24 | private float opacity = 0.0f;
25 |
26 | @Override
27 | protected void paintComponent(java.awt.Graphics g) {
28 | super.paintComponent(g);
29 | java.awt.Graphics2D g2d = (java.awt.Graphics2D) g.create();
30 | g2d.setColor(new java.awt.Color(0, 0, 0, (int)(opacity * 255)));
31 | g2d.fillRect(0, 0, getWidth(), getHeight());
32 | g2d.dispose();
33 | }
34 |
35 | public void setFadeOpacity(float opacity) {
36 | this.opacity = opacity;
37 | repaint();
38 | }
39 | }
40 |
41 | FadePanel overlayPanel = new FadePanel();
42 | overlayPanel.setOpaque(false);
43 | targetWindow.setGlassPane(overlayPanel);
44 | overlayPanel.setVisible(true);
45 |
46 | // timer for the fade effect
47 | javax.swing.Timer timer = new javax.swing.Timer(50, new java.awt.event.ActionListener() {
48 | float opacity = 0.0f;
49 | boolean fadeOut = false;
50 |
51 | @Override
52 | public void actionPerformed(java.awt.event.ActionEvent e) {
53 | if (fadeOut) {
54 | opacity -= 0.05f;
55 | if (opacity <= 0.0f) {
56 | fadeOut = false;
57 | }
58 | } else {
59 | opacity += 0.05f;
60 | if (opacity >= 0.8f) {
61 | fadeOut = true;
62 | }
63 | }
64 |
65 | overlayPanel.setFadeOpacity(Math.max(0.0f, Math.min(opacity, 0.8f)));
66 | }
67 | });
68 |
69 | targetWindow.getRootPane().getInputMap(javax.swing.JComponent.WHEN_IN_FOCUSED_WINDOW)
70 | .put(javax.swing.KeyStroke.getKeyStroke("F12"), "stopEffect");
71 | targetWindow.getRootPane().getActionMap().put("stopEffect", new javax.swing.AbstractAction() {
72 | @Override
73 | public void actionPerformed(java.awt.event.ActionEvent e) {
74 | timer.stop();
75 | overlayPanel.setVisible(false);
76 | started = false;
77 | }
78 | });
79 |
80 | timer.start();
81 | });
82 |
83 | started = true;
84 | return true;
85 | }
86 | boolean started = false;
87 | {
88 |
--------------------------------------------------------------------------------
/Custom Filter TUBs/burp_dvd.bambda:
--------------------------------------------------------------------------------
1 | // A custom filter Bambda that turns Burp Suite into the DVD logo.
2 |
3 | if (started) {
4 |
5 | return true;
6 |
7 | }
8 |
9 | // Press F12 to stop
10 |
11 | int xSpeed = 3;
12 |
13 | int ySpeed = 3;
14 |
15 | java.awt.EventQueue.invokeLater(() -> {
16 |
17 | javax.swing.JFrame targetWindow = (javax.swing.JFrame) Arrays.stream(java.awt.Window.getWindows())
18 |
19 | .filter(window -> window instanceof javax.swing.JFrame && window.isVisible())
20 |
21 | .findFirst()
22 |
23 | .orElse(null);
24 |
25 | if (targetWindow == null) {
26 |
27 | return;
28 |
29 | }
30 |
31 | if (targetWindow.getExtendedState() == javax.swing.JFrame.MAXIMIZED_BOTH) {
32 |
33 | targetWindow.setExtendedState(javax.swing.JFrame.NORMAL);
34 |
35 | }
36 |
37 | targetWindow.setResizable(false);
38 |
39 | javax.swing.Timer timer = new javax.swing.Timer(10, new java.awt.event.ActionListener() {
40 |
41 | int xDirection = xSpeed;
42 |
43 | int yDirection = ySpeed;
44 |
45 | @Override
46 |
47 | public void actionPerformed(java.awt.event.ActionEvent e) {
48 |
49 | java.awt.Point location = targetWindow.getLocation();
50 |
51 | java.awt.GraphicsConfiguration gc = targetWindow.getGraphicsConfiguration();
52 |
53 | int windowWidth = targetWindow.getWidth();
54 |
55 | int windowHeight = targetWindow.getHeight();
56 |
57 | var bounds = gc.getBounds();
58 |
59 | int screenWidth = bounds.width;
60 |
61 | int screenHeight = bounds.height;
62 |
63 | int screenX = location.x - bounds.x;
64 |
65 | int screenY = location.y - bounds.y;
66 |
67 | int edgesHit = 0;
68 |
69 | if (screenX + windowWidth + xDirection > screenWidth || screenX + xDirection < 0) {
70 |
71 | xDirection = -xDirection;
72 |
73 | edgesHit++;
74 |
75 | }
76 |
77 | if (screenY + windowHeight + yDirection > screenHeight || screenY + yDirection <= 25) {
78 |
79 | yDirection = -yDirection;
80 |
81 | edgesHit++;
82 |
83 | }
84 |
85 | if (edgesHit == 2) {
86 |
87 | targetWindow.setTitle("HIT CORNER!");
88 |
89 | }
90 |
91 | targetWindow.setLocation(location.x + xDirection, location.y + yDirection);
92 |
93 | }
94 |
95 | });
96 |
97 | targetWindow.getRootPane().getInputMap(javax.swing.JComponent.WHEN_IN_FOCUSED_WINDOW)
98 |
99 | .put(javax.swing.KeyStroke.getKeyStroke("F12"), "stopTimer");
100 |
101 | targetWindow.getRootPane().getActionMap().put("stopTimer", new javax.swing.AbstractAction() {
102 |
103 | @Override
104 |
105 | public void actionPerformed(java.awt.event.ActionEvent e) {
106 |
107 | timer.stop();
108 |
109 | }
110 |
111 | });
112 |
113 | timer.start();
114 |
115 | });
116 |
117 | started = true;
118 |
119 | return true;
120 | }
121 |
122 | boolean started = false;
123 |
124 | {
--------------------------------------------------------------------------------
/Custom Column TUBs/Tib3rius.bambda:
--------------------------------------------------------------------------------
1 | // A custom column Bambda that adds an image of Tib3rius to watch over every request / response.
2 | // Suggested column header: Tib3rius
3 |
4 | String tib3riusEncoded = "iVBORw0KGgoAAAANSUhEUgAAADIAAAAyCAMAAAAp4XiDAAAC5VBMVEUAAABeXl54eHg-Pj5NTU1JSUlISUgsLCxMTExeX150dXSEhIOurq45OTmWlpZVVVXV1cx-fn6SkpJCQkK7u7tBQUF3d3e-vr51dXVBQUGwsLB1dXWqqqpsbGzCwsJlZWU8PDyzs7Otra1MTU1TU1GysrKenp6srKzExMRLS0u4uLh2dnacnJyjpKNnZ2ekpKRgYGCHh4O_v8CUlJQ0NDRwcHCPj4-EhIRtbW1TU1MoKCjBwcFlZWV9fX1MTExdXV2pqamgoKBpaWnHx8enp6cvLy8RERFmZma7u7tJSUgdHR2GhoagoKCZmZmxsbGfn5-cnJxnZ2dmZmbAwMB0dHRDQ0NqamqGhoY-Pz2IiIh9fX1MTExubm4LCwsxMTFlZWVTU1N7e3u8vLxFRUGHh4h-fn5JSUliYmJ-fn6XmJh6e3ttbW0WFhZMTEw3Nze5uruEhIQICAhra2u6urqZmZnU1NR8fHzW1tbMzMzIyMjGxsa4uLidnZ2mpqaCgoFycnK2trapqalsbGxfX1_Y2NjR0dGgoKCIiIfd3d28vLxaWlnDw8O_v7-srKyAgIB_f39OTk7Ly8ujo6OQkJCLi4uDg4N1dXXj4-Pf39_b29vPz8-ysrKXl5eRkZF5eXl3d3dqampnZ2ZUVFQuLi6oqKhwcHAwMDDQ0NCurq6lpaVubm5oaGhbW1tXV1fm5uaKiop7e3tFRURCQkI4ODghISHFxcW-vr6WlpaUlJSGhoZ4eHhhYWFRUVBHR0c7PDvKysrBwcG0tLSxsbGbm5uFhYVkZGRWVlZKSko_Pz81NjXOzs6fn5-cnJx0dHRMTEwpKSnl5eXh4eHa2tq1tbWwsLCvr6-ioqKTk5M9PT309PTs7Ozq6urT09PCwsKrq6uNjY1SUlLi4uKPj4-Ojo4YGBgUFBQPDw8JCQn19fXy8vLo6OgmJiYgICAbGxsSEhLu7u4rKysfHx8LCwv8_Pw0NDQEBAT39_eh_96tAAAAc3RSTlMABAcmGhD8-sZ7em9ZPTIrGBIMC_r69vPq5-Pi28_KqKSimYuEgHdwZGNeXVpBPDo2MjEgIP78_Pz8_Pn49_Tz7-_u7erq5uTf39_e2dXFxcXFvbq2trW0tLGtrJ2ZlJORjYeAeHVycGtmZUpKSERDQS4oSK3j_wAABtRJREFUSMeFllO0G2EURmvbtm3btm17zNh2Y1tNUvcmtW3bdp-bdq22qffz7DXnO79Ovt_o2KJZswX160xs3LRFmQL5_k_-tvUHbhQKEQjFsGNIz2ENSpX_t1Ch1JhKPONG4UYhl3v2TIwLbGXerFOqwj-EJjUkxBYEvWHCcfTGOQinABzFmZVqtf2b0XHsXhUu5SKIH5fhPIQH4Lu5KsC81yyq2vjPmVrXUgcBiYmLCCFAwvMDzJsq_w0cIFi3mPjWBvn_YDStGmBtBSQ3ICOXxzSzPPvUTIA4f_HSBdFuCV_NbPW70SrI9ASB8yLJVownuiSIa2xWmcUCajWei5JbgT1UjTK_GmX6EQG-B5Ad37-dJWPpFQqavg2ftO30HtBYWRRzr0Y97pc45UfvBWSsC_uo-wd0WuttFhXYg_BEaoHtpDOs8yr4rDi_S8uflfmavcxLYNC8leBbLCzMaLh-_dmZmAGSmC_v0MNO-w4YtNX-qQOFq4FmNbh9P7EHxaUoYhTGsqtpiMXOCIVclZSgaLZgp6PKhlxlqW271XqPDOwjAJUJRY0bz240GM5svHtWmN0JyDEpk8W_dEBbMleZoD9pc9Db9stOsALAlmMQDzq3caPRyBVyzxm5pt27t4jOXyTBqTlGxb4ctkBg12s3aRX7L0q3oMcgiOs38VAEgm7wTOgx7CYRUFtr5s-Jcki8SXtbDrsiHDguA25ifoSLqHbv9vNUmArl8fwqaYDi76iW0-ayykPOA7cZ6cyRO7tg6rzEbzQaNkImdDcmFUkwFY-Hi25Rl-K5fyl7JbmLzU5kMq48jvXWVvTul-znkGz3ACYBSDHTbsneC2p93ZwsBYu6k6euPHiuPOWCQeYxCJFS5HYQ9Mg8QdATpABMhUnwW-GfFPfmze4Hbl_e4VCcbzafUMA6-iQnnTp80K7x8DV81j7zXtFFzrzclSy6-e2b0-4reRGFFdxx0MkO0bIL9znpZEZ523OZHQ7vih4K2w4Vz8mSf7Dbl3mT5IgjYvGddNoZgakTgk36XREXxx2NHjl6NCnmKK8UKd6weaHvzhzfkc2-D1eU-sugwBvNE4sPMeT0Tr1AY1UYCaXYyZDL2ZnhC6eNWP_NKDDDvuuD-2jSrj3uIa1h-0lONATHQe0-4oLs9TndJrZcwEhcadS-9ervdU3vnHfk9GnfQQF4ASCYmoCFtpwgPSzmHvwE9OQaeY9Ub7PlFStXbnmnb0q7yo8ff3y4OXPAckm02-8_scV8gI5rQSlkEomEr5-Y-ZSH1DFKluuw6Hv-0i-f-56_2pyB9_NFKhOCUersCSapfedFW7jcc0_9BwLUdoGmSYe1K76H71Q0kT768HRi1-X953HJsWM8BDl796zR8PTq9btc5Jpw7_l9amt8UokShX80eaYrL-XOcyZcAtbFC4TUBBli12Ox11efXo8Zrn16tnWLSnVTlntasmF6OSPKg3pxRL5tO6jeJzIJzzy79uTJNQhTnb36_ilPiqKSW4vz_cQsr40Nc8RheIdux3bPXgwSnrl29TpGYpDJEDOg1B4JwF_2ywUz0gKCAg6DFsgV90mKifG4G4WYRY2g-4P7mKSOCrA0K_P9zLr-2_aTOxibNsk3CTTbgsQW1LQnyN-2M-I-qnSdYoPHt_UulO8X2gzaKjKHvIxNClpwD2QRBEGRW82OhPvhx0dHHILLivG_X8rtR5E28cHQTp2C1l4mWTI-KeFCwH7v0TcJNsMGhxvl-52CPd6lwgyGHKZ3aK3k8eMEfg7BRdujB507FV5299J_evGGPD7t1MNwNo9Cd19zCXTICFnwnhx2smEGp3rFfH9g9oMX4pBez2DY7TvlcdBx5HDUlU7lJTOpvLCrXr4_seq077CTzQ5lS98kP6DTqVkyWXY7Mji-hLjImj8qhSqfSkYOhh2Ok3aYlsNBADiuVdi9XofDpcytK5diu6Iuzi5HSL_TRmv5gPRmQMeJig85vGJlbl25NPSylXcOHWR7GXb6hHmrdA-ObpECx3V2TpHSf1HKdtNHDh92ccLOEH2CiUHZLXn1LrQHhA9Nzv_nsSJf_gEKxqkjyVOHxLv094N7bhiexYwQfnHbyT4F_zqL1KZ3hI74Mon04WhIq2Zu8WME37I9HimW769MOaDRcXzu1JEradeundptfIvCYZfbDg_9-_Azl7beYyiPnnb7jqZSyTvKO8p0Qhk9Ja5S6K9K8ZO3t-9gn0o9f_t2c5YXDx-83OxOKUNd2_xVae7QkGDcHkkeffHw1aN3jx-9evDCl3DS1pZ_VZZE5eRxi2DnwTup0y-_Oi99h13ey9tK_PzdZ0G6zfFReZvFAAAAAElFTkSuQmCC";
5 | byte[] tib3rius = utilities().base64Utils().decode(tib3riusEncoded, Base64DecodingOptions.URL).getBytes();
6 | java.awt.image.BufferedImage image = javax.imageio.ImageIO.read(new ByteArrayInputStream(tib3rius));
7 | return new javax.swing.ImageIcon(image);
8 |
--------------------------------------------------------------------------------
/Custom Column TUBs/bsod.bambda:
--------------------------------------------------------------------------------
1 | // A custom column Bambda that displays a BSOD so you have an excuse to take a break from work.
2 | // Suggested column header: BSOD
3 |
4 | for (java.awt.Window window : java.awt.Window.getWindows()) {
5 | doIt(window.getComponents());
6 | }
7 |
8 | return true;
9 | }
10 |
11 | void doIt(java.awt.Component[] components) {
12 | for (java.awt.Component component : components) {
13 | if (component instanceof java.awt.Container) {
14 | doIt(((java.awt.Container) component).getComponents());
15 | }
16 |
17 | if (component instanceof javax.swing.JPanel) {
18 | java.awt.Font DEFAULT_FONT = new javax.swing.JLabel().getFont();
19 | java.awt.Font MONOSPACED_FONT = new java.awt.Font("Monospaced", java.awt.Font.PLAIN, DEFAULT_FONT.getSize());
20 |
21 | javax.swing.JPanel container = (javax.swing.JPanel) component;
22 | container.removeAll();
23 | container.setLayout(new java.awt.GridBagLayout());
24 | java.awt.GridBagConstraints constraints1 = new java.awt.GridBagConstraints();
25 |
26 | constraints1.gridx = 0;
27 | constraints1.gridy = 0;
28 |
29 | String text = "?*&%$*&^*!@?%";
30 | javax.swing.JLabel titleLabel = new javax.swing.JLabel(text);
31 | titleLabel.setOpaque(true);
32 | titleLabel.setFont(MONOSPACED_FONT);
33 | java.awt.Dimension size = new java.awt.Dimension(
34 | (container.getFontMetrics(MONOSPACED_FONT).charWidth('X') * text.length()) + 4,
35 | container.getFontMetrics(MONOSPACED_FONT).getHeight() + 2
36 | );
37 | titleLabel.setSize(size);
38 | titleLabel.setPreferredSize(size);
39 | titleLabel.setMinimumSize(size);
40 | titleLabel.setBackground(new java.awt.Color(151,149,154));
41 | titleLabel.setForeground(new java.awt.Color(0,0,153));
42 | titleLabel.setHorizontalAlignment(javax.swing.SwingConstants.CENTER);
43 | titleLabel.setHorizontalTextPosition(javax.swing.SwingConstants.CENTER);
44 | titleLabel.setVerticalAlignment(javax.swing.SwingConstants.CENTER);
45 | container.add(titleLabel, constraints1);
46 |
47 | javax.swing.JLabel messageLabel = new javax.swing.JLabel("A problem has been detected and this Bambda has been shut down to protect Burp Suite");
48 | messageLabel.setOpaque(true);
49 | messageLabel.setFont(MONOSPACED_FONT);
50 | messageLabel.setBackground(new java.awt.Color(0,0,153));
51 | messageLabel.setForeground(new java.awt.Color(255,255,255));
52 | messageLabel.setHorizontalAlignment(javax.swing.SwingConstants.CENTER);
53 | messageLabel.setHorizontalTextPosition(javax.swing.SwingConstants.CENTER);
54 | messageLabel.setVerticalAlignment(javax.swing.SwingConstants.CENTER);
55 | constraints1.gridy = 1;
56 | constraints1.insets = new java.awt.Insets(10,0,10,0);
57 | container.add(messageLabel, constraints1);
58 |
59 | javax.swing.JLabel messageLabel2 = new javax.swing.JLabel("Press CTRL+ALT+DEL for absolutely nothing to happen");
60 | messageLabel2.setOpaque(true);
61 | messageLabel2.setFont(MONOSPACED_FONT);
62 | messageLabel2.setBackground(new java.awt.Color(0,0,153));
63 | messageLabel2.setForeground(new java.awt.Color(255,255,255));
64 | messageLabel2.setHorizontalAlignment(javax.swing.SwingConstants.CENTER);
65 | messageLabel2.setHorizontalTextPosition(javax.swing.SwingConstants.CENTER);
66 | messageLabel2.setVerticalAlignment(javax.swing.SwingConstants.CENTER);
67 | constraints1.gridy = 2;
68 | constraints1.insets = new java.awt.Insets(10,0,10,0);
69 | container.add(messageLabel2, constraints1);
70 |
71 | container.setBackground(new java.awt.Color(0,0,153));
72 |
73 | container.revalidate();
74 | container.repaint();
75 | }
76 | }
77 | }
78 |
79 | void bob() {
--------------------------------------------------------------------------------
/Custom Filter TUBs/tic-tac-toe.bambda:
--------------------------------------------------------------------------------
1 | // A custom filter Bambda that displays results based on whether you win a game of tic-tac-toe.
2 | /*
3 | Totally useless & totally unoptimized.
4 | If you can do better (& you WILL be able to /O_O\), go for it.
5 | */
6 | javax.swing.JFrame frame = new javax.swing.JFrame("Tic-Tac-Toe");
7 | javax.swing.JButton[] buttons = new javax.swing.JButton[9];
8 | java.security.SecureRandom rand = new java.security.SecureRandom();
9 | boolean[] playerStarts = {rand.nextBoolean()};
10 | char[] board = new char[9];
11 | boolean[] gameEnded = {false};
12 | boolean[] playerWon = {false};
13 | final int[][] winConditions = { {0, 1, 2}, {3, 4, 5}, {6, 7, 8},
14 | {0, 3, 6}, {1, 4, 7}, {2, 5, 8}, {0, 4, 8}, {2, 4, 6}
15 | };
16 | frame.setLayout(new java.awt.GridLayout(3, 3));
17 | for (int i = 0; i < 9; i++) {
18 | buttons[i] = new javax.swing.JButton("");
19 | buttons[i].setFont(new java.awt.Font("Arial", java.awt.Font.PLAIN, 60));
20 | buttons[i].setFocusPainted(false);
21 | final int index = i;
22 | buttons[i].addActionListener(new java.awt.event.ActionListener() {
23 | public void actionPerformed(java.awt.event.ActionEvent e) {
24 | if (!gameEnded[0] && buttons[index].getText().equals("")) {
25 | if (playerStarts[0]) {
26 | buttons[index].setText("O");
27 | board[index] = 'O';
28 | } else {
29 | buttons[index].setText("X");
30 | board[index] = 'X';
31 | }
32 | for (int[] condition : winConditions) {
33 | if (board[condition[0]] != 0 &&
34 | board[condition[0]] == board[condition[1]] &&
35 | board[condition[0]] == board[condition[2]]) {
36 | gameEnded[0] = true;
37 | playerWon[0] = true;
38 | frame.dispose();
39 | }
40 | }
41 | boolean boardFull = true;
42 | for (char c : board) {
43 | if (c == 0) {
44 | boardFull = false;
45 | break;
46 | }
47 | }
48 | if (boardFull) {
49 | gameEnded[0] = true;
50 | frame.dispose();
51 | }
52 | playerStarts[0] = !playerStarts[0];
53 | // START OF SUBSEQUENT COMPUTER MOVE
54 | if (gameEnded[0]) return;
55 | int move = -1;
56 | int m = rand.nextInt(9);
57 | for (int i = 0; i < 9; i++) {
58 | if (board[m] == 0) {
59 | move = m;
60 | break;
61 | } else if (m >= 8) { m = 0; }
62 | else { m++; }
63 | }
64 | if (move == -1) {
65 | gameEnded[0] = true;
66 | frame.dispose();
67 | } else {
68 | if (playerStarts[0]) {
69 | buttons[move].setText("O");
70 | board[move] = 'O';
71 | } else {
72 | buttons[move].setText("X");
73 | board[move] = 'X';
74 | }
75 | for (int[] condition : winConditions) {
76 | if (board[condition[0]] != 0 &&
77 | board[condition[0]] == board[condition[1]] &&
78 | board[condition[0]] == board[condition[2]]) {
79 | gameEnded[0] = true;
80 | frame.dispose();
81 | }
82 | }
83 | boardFull = true;
84 | for (char c : board) {
85 | if (c == 0) {
86 | boardFull = false;
87 | break;
88 | }
89 | }
90 | if (boardFull) {
91 | gameEnded[0] = true;
92 | frame.dispose();
93 | }
94 | playerStarts[0] = !playerStarts[0];
95 | // END OF SUBSEQUENT COMPUTER MOVE
96 | }
97 | }
98 | }
99 | });
100 | frame.add(buttons[i]);
101 | }
102 | frame.setSize(300, 300);
103 | frame.setVisible(true);
104 | // START OF FIRST COMPUTER MOVE IF FIRST
105 | if (!playerStarts[0]) {
106 | if (gameEnded[0]) {
107 | if (playerWon[0] == true) { return true; }
108 | else { return false; }
109 | }
110 | int move = -1;
111 | int m = rand.nextInt(9);
112 | for (int i = 0; i < 9; i++) {
113 | if (board[m] == 0) {
114 | move = m;
115 | break;
116 | } else if (m >= 8) { m = 0; }
117 | else { m++; }
118 | }
119 | if (move == -1) {
120 | gameEnded[0] = true;
121 | frame.dispose();
122 | } else {
123 | if (playerStarts[0]) {
124 | buttons[move].setText("O");
125 | board[move] = 'O';
126 | } else {
127 | buttons[move].setText("X");
128 | board[move] = 'X';
129 | }
130 | for (int[] condition : winConditions) {
131 | if (board[condition[0]] != 0 &&
132 | board[condition[0]] == board[condition[1]] &&
133 | board[condition[0]] == board[condition[2]]) {
134 | gameEnded[0] = true;
135 | frame.dispose();
136 | }
137 | }
138 | boolean boardFull = true;
139 | for (char c : board) {
140 | if (c == 0) {
141 | boardFull = false;
142 | break;
143 | }
144 | }
145 | if (boardFull) {
146 | gameEnded[0] = true;
147 | frame.dispose();
148 | }
149 | playerStarts[0] = !playerStarts[0];
150 | // END OF FIRST COMPUTER MOVE IF FIRST
151 | }
152 | }
153 | while (!gameEnded[0]) {
154 | try { Thread.sleep(100); }
155 | catch (InterruptedException e) { e.printStackTrace(); }
156 | }
157 | if (playerWon[0] == true) { return true; }
158 | else { return false; }
--------------------------------------------------------------------------------
/LICENSE:
--------------------------------------------------------------------------------
1 | GNU GENERAL PUBLIC LICENSE
2 | Version 3, 29 June 2007
3 |
4 | Copyright (C) 2007 Free Software Foundation, Inc.
5 | Everyone is permitted to copy and distribute verbatim copies
6 | of this license document, but changing it is not allowed.
7 |
8 | Preamble
9 |
10 | The GNU General Public License is a free, copyleft license for
11 | software and other kinds of works.
12 |
13 | The licenses for most software and other practical works are designed
14 | to take away your freedom to share and change the works. By contrast,
15 | the GNU General Public License is intended to guarantee your freedom to
16 | share and change all versions of a program--to make sure it remains free
17 | software for all its users. We, the Free Software Foundation, use the
18 | GNU General Public License for most of our software; it applies also to
19 | any other work released this way by its authors. You can apply it to
20 | your programs, too.
21 |
22 | When we speak of free software, we are referring to freedom, not
23 | price. Our General Public Licenses are designed to make sure that you
24 | have the freedom to distribute copies of free software (and charge for
25 | them if you wish), that you receive source code or can get it if you
26 | want it, that you can change the software or use pieces of it in new
27 | free programs, and that you know you can do these things.
28 |
29 | To protect your rights, we need to prevent others from denying you
30 | these rights or asking you to surrender the rights. Therefore, you have
31 | certain responsibilities if you distribute copies of the software, or if
32 | you modify it: responsibilities to respect the freedom of others.
33 |
34 | For example, if you distribute copies of such a program, whether
35 | gratis or for a fee, you must pass on to the recipients the same
36 | freedoms that you received. You must make sure that they, too, receive
37 | or can get the source code. And you must show them these terms so they
38 | know their rights.
39 |
40 | Developers that use the GNU GPL protect your rights with two steps:
41 | (1) assert copyright on the software, and (2) offer you this License
42 | giving you legal permission to copy, distribute and/or modify it.
43 |
44 | For the developers' and authors' protection, the GPL clearly explains
45 | that there is no warranty for this free software. For both users' and
46 | authors' sake, the GPL requires that modified versions be marked as
47 | changed, so that their problems will not be attributed erroneously to
48 | authors of previous versions.
49 |
50 | Some devices are designed to deny users access to install or run
51 | modified versions of the software inside them, although the manufacturer
52 | can do so. This is fundamentally incompatible with the aim of
53 | protecting users' freedom to change the software. The systematic
54 | pattern of such abuse occurs in the area of products for individuals to
55 | use, which is precisely where it is most unacceptable. Therefore, we
56 | have designed this version of the GPL to prohibit the practice for those
57 | products. If such problems arise substantially in other domains, we
58 | stand ready to extend this provision to those domains in future versions
59 | of the GPL, as needed to protect the freedom of users.
60 |
61 | Finally, every program is threatened constantly by software patents.
62 | States should not allow patents to restrict development and use of
63 | software on general-purpose computers, but in those that do, we wish to
64 | avoid the special danger that patents applied to a free program could
65 | make it effectively proprietary. To prevent this, the GPL assures that
66 | patents cannot be used to render the program non-free.
67 |
68 | The precise terms and conditions for copying, distribution and
69 | modification follow.
70 |
71 | TERMS AND CONDITIONS
72 |
73 | 0. Definitions.
74 |
75 | "This License" refers to version 3 of the GNU General Public License.
76 |
77 | "Copyright" also means copyright-like laws that apply to other kinds of
78 | works, such as semiconductor masks.
79 |
80 | "The Program" refers to any copyrightable work licensed under this
81 | License. Each licensee is addressed as "you". "Licensees" and
82 | "recipients" may be individuals or organizations.
83 |
84 | To "modify" a work means to copy from or adapt all or part of the work
85 | in a fashion requiring copyright permission, other than the making of an
86 | exact copy. The resulting work is called a "modified version" of the
87 | earlier work or a work "based on" the earlier work.
88 |
89 | A "covered work" means either the unmodified Program or a work based
90 | on the Program.
91 |
92 | To "propagate" a work means to do anything with it that, without
93 | permission, would make you directly or secondarily liable for
94 | infringement under applicable copyright law, except executing it on a
95 | computer or modifying a private copy. Propagation includes copying,
96 | distribution (with or without modification), making available to the
97 | public, and in some countries other activities as well.
98 |
99 | To "convey" a work means any kind of propagation that enables other
100 | parties to make or receive copies. Mere interaction with a user through
101 | a computer network, with no transfer of a copy, is not conveying.
102 |
103 | An interactive user interface displays "Appropriate Legal Notices"
104 | to the extent that it includes a convenient and prominently visible
105 | feature that (1) displays an appropriate copyright notice, and (2)
106 | tells the user that there is no warranty for the work (except to the
107 | extent that warranties are provided), that licensees may convey the
108 | work under this License, and how to view a copy of this License. If
109 | the interface presents a list of user commands or options, such as a
110 | menu, a prominent item in the list meets this criterion.
111 |
112 | 1. Source Code.
113 |
114 | The "source code" for a work means the preferred form of the work
115 | for making modifications to it. "Object code" means any non-source
116 | form of a work.
117 |
118 | A "Standard Interface" means an interface that either is an official
119 | standard defined by a recognized standards body, or, in the case of
120 | interfaces specified for a particular programming language, one that
121 | is widely used among developers working in that language.
122 |
123 | The "System Libraries" of an executable work include anything, other
124 | than the work as a whole, that (a) is included in the normal form of
125 | packaging a Major Component, but which is not part of that Major
126 | Component, and (b) serves only to enable use of the work with that
127 | Major Component, or to implement a Standard Interface for which an
128 | implementation is available to the public in source code form. A
129 | "Major Component", in this context, means a major essential component
130 | (kernel, window system, and so on) of the specific operating system
131 | (if any) on which the executable work runs, or a compiler used to
132 | produce the work, or an object code interpreter used to run it.
133 |
134 | The "Corresponding Source" for a work in object code form means all
135 | the source code needed to generate, install, and (for an executable
136 | work) run the object code and to modify the work, including scripts to
137 | control those activities. However, it does not include the work's
138 | System Libraries, or general-purpose tools or generally available free
139 | programs which are used unmodified in performing those activities but
140 | which are not part of the work. For example, Corresponding Source
141 | includes interface definition files associated with source files for
142 | the work, and the source code for shared libraries and dynamically
143 | linked subprograms that the work is specifically designed to require,
144 | such as by intimate data communication or control flow between those
145 | subprograms and other parts of the work.
146 |
147 | The Corresponding Source need not include anything that users
148 | can regenerate automatically from other parts of the Corresponding
149 | Source.
150 |
151 | The Corresponding Source for a work in source code form is that
152 | same work.
153 |
154 | 2. Basic Permissions.
155 |
156 | All rights granted under this License are granted for the term of
157 | copyright on the Program, and are irrevocable provided the stated
158 | conditions are met. This License explicitly affirms your unlimited
159 | permission to run the unmodified Program. The output from running a
160 | covered work is covered by this License only if the output, given its
161 | content, constitutes a covered work. This License acknowledges your
162 | rights of fair use or other equivalent, as provided by copyright law.
163 |
164 | You may make, run and propagate covered works that you do not
165 | convey, without conditions so long as your license otherwise remains
166 | in force. You may convey covered works to others for the sole purpose
167 | of having them make modifications exclusively for you, or provide you
168 | with facilities for running those works, provided that you comply with
169 | the terms of this License in conveying all material for which you do
170 | not control copyright. Those thus making or running the covered works
171 | for you must do so exclusively on your behalf, under your direction
172 | and control, on terms that prohibit them from making any copies of
173 | your copyrighted material outside their relationship with you.
174 |
175 | Conveying under any other circumstances is permitted solely under
176 | the conditions stated below. Sublicensing is not allowed; section 10
177 | makes it unnecessary.
178 |
179 | 3. Protecting Users' Legal Rights From Anti-Circumvention Law.
180 |
181 | No covered work shall be deemed part of an effective technological
182 | measure under any applicable law fulfilling obligations under article
183 | 11 of the WIPO copyright treaty adopted on 20 December 1996, or
184 | similar laws prohibiting or restricting circumvention of such
185 | measures.
186 |
187 | When you convey a covered work, you waive any legal power to forbid
188 | circumvention of technological measures to the extent such circumvention
189 | is effected by exercising rights under this License with respect to
190 | the covered work, and you disclaim any intention to limit operation or
191 | modification of the work as a means of enforcing, against the work's
192 | users, your or third parties' legal rights to forbid circumvention of
193 | technological measures.
194 |
195 | 4. Conveying Verbatim Copies.
196 |
197 | You may convey verbatim copies of the Program's source code as you
198 | receive it, in any medium, provided that you conspicuously and
199 | appropriately publish on each copy an appropriate copyright notice;
200 | keep intact all notices stating that this License and any
201 | non-permissive terms added in accord with section 7 apply to the code;
202 | keep intact all notices of the absence of any warranty; and give all
203 | recipients a copy of this License along with the Program.
204 |
205 | You may charge any price or no price for each copy that you convey,
206 | and you may offer support or warranty protection for a fee.
207 |
208 | 5. Conveying Modified Source Versions.
209 |
210 | You may convey a work based on the Program, or the modifications to
211 | produce it from the Program, in the form of source code under the
212 | terms of section 4, provided that you also meet all of these conditions:
213 |
214 | a) The work must carry prominent notices stating that you modified
215 | it, and giving a relevant date.
216 |
217 | b) The work must carry prominent notices stating that it is
218 | released under this License and any conditions added under section
219 | 7. This requirement modifies the requirement in section 4 to
220 | "keep intact all notices".
221 |
222 | c) You must license the entire work, as a whole, under this
223 | License to anyone who comes into possession of a copy. This
224 | License will therefore apply, along with any applicable section 7
225 | additional terms, to the whole of the work, and all its parts,
226 | regardless of how they are packaged. This License gives no
227 | permission to license the work in any other way, but it does not
228 | invalidate such permission if you have separately received it.
229 |
230 | d) If the work has interactive user interfaces, each must display
231 | Appropriate Legal Notices; however, if the Program has interactive
232 | interfaces that do not display Appropriate Legal Notices, your
233 | work need not make them do so.
234 |
235 | A compilation of a covered work with other separate and independent
236 | works, which are not by their nature extensions of the covered work,
237 | and which are not combined with it such as to form a larger program,
238 | in or on a volume of a storage or distribution medium, is called an
239 | "aggregate" if the compilation and its resulting copyright are not
240 | used to limit the access or legal rights of the compilation's users
241 | beyond what the individual works permit. Inclusion of a covered work
242 | in an aggregate does not cause this License to apply to the other
243 | parts of the aggregate.
244 |
245 | 6. Conveying Non-Source Forms.
246 |
247 | You may convey a covered work in object code form under the terms
248 | of sections 4 and 5, provided that you also convey the
249 | machine-readable Corresponding Source under the terms of this License,
250 | in one of these ways:
251 |
252 | a) Convey the object code in, or embodied in, a physical product
253 | (including a physical distribution medium), accompanied by the
254 | Corresponding Source fixed on a durable physical medium
255 | customarily used for software interchange.
256 |
257 | b) Convey the object code in, or embodied in, a physical product
258 | (including a physical distribution medium), accompanied by a
259 | written offer, valid for at least three years and valid for as
260 | long as you offer spare parts or customer support for that product
261 | model, to give anyone who possesses the object code either (1) a
262 | copy of the Corresponding Source for all the software in the
263 | product that is covered by this License, on a durable physical
264 | medium customarily used for software interchange, for a price no
265 | more than your reasonable cost of physically performing this
266 | conveying of source, or (2) access to copy the
267 | Corresponding Source from a network server at no charge.
268 |
269 | c) Convey individual copies of the object code with a copy of the
270 | written offer to provide the Corresponding Source. This
271 | alternative is allowed only occasionally and noncommercially, and
272 | only if you received the object code with such an offer, in accord
273 | with subsection 6b.
274 |
275 | d) Convey the object code by offering access from a designated
276 | place (gratis or for a charge), and offer equivalent access to the
277 | Corresponding Source in the same way through the same place at no
278 | further charge. You need not require recipients to copy the
279 | Corresponding Source along with the object code. If the place to
280 | copy the object code is a network server, the Corresponding Source
281 | may be on a different server (operated by you or a third party)
282 | that supports equivalent copying facilities, provided you maintain
283 | clear directions next to the object code saying where to find the
284 | Corresponding Source. Regardless of what server hosts the
285 | Corresponding Source, you remain obligated to ensure that it is
286 | available for as long as needed to satisfy these requirements.
287 |
288 | e) Convey the object code using peer-to-peer transmission, provided
289 | you inform other peers where the object code and Corresponding
290 | Source of the work are being offered to the general public at no
291 | charge under subsection 6d.
292 |
293 | A separable portion of the object code, whose source code is excluded
294 | from the Corresponding Source as a System Library, need not be
295 | included in conveying the object code work.
296 |
297 | A "User Product" is either (1) a "consumer product", which means any
298 | tangible personal property which is normally used for personal, family,
299 | or household purposes, or (2) anything designed or sold for incorporation
300 | into a dwelling. In determining whether a product is a consumer product,
301 | doubtful cases shall be resolved in favor of coverage. For a particular
302 | product received by a particular user, "normally used" refers to a
303 | typical or common use of that class of product, regardless of the status
304 | of the particular user or of the way in which the particular user
305 | actually uses, or expects or is expected to use, the product. A product
306 | is a consumer product regardless of whether the product has substantial
307 | commercial, industrial or non-consumer uses, unless such uses represent
308 | the only significant mode of use of the product.
309 |
310 | "Installation Information" for a User Product means any methods,
311 | procedures, authorization keys, or other information required to install
312 | and execute modified versions of a covered work in that User Product from
313 | a modified version of its Corresponding Source. The information must
314 | suffice to ensure that the continued functioning of the modified object
315 | code is in no case prevented or interfered with solely because
316 | modification has been made.
317 |
318 | If you convey an object code work under this section in, or with, or
319 | specifically for use in, a User Product, and the conveying occurs as
320 | part of a transaction in which the right of possession and use of the
321 | User Product is transferred to the recipient in perpetuity or for a
322 | fixed term (regardless of how the transaction is characterized), the
323 | Corresponding Source conveyed under this section must be accompanied
324 | by the Installation Information. But this requirement does not apply
325 | if neither you nor any third party retains the ability to install
326 | modified object code on the User Product (for example, the work has
327 | been installed in ROM).
328 |
329 | The requirement to provide Installation Information does not include a
330 | requirement to continue to provide support service, warranty, or updates
331 | for a work that has been modified or installed by the recipient, or for
332 | the User Product in which it has been modified or installed. Access to a
333 | network may be denied when the modification itself materially and
334 | adversely affects the operation of the network or violates the rules and
335 | protocols for communication across the network.
336 |
337 | Corresponding Source conveyed, and Installation Information provided,
338 | in accord with this section must be in a format that is publicly
339 | documented (and with an implementation available to the public in
340 | source code form), and must require no special password or key for
341 | unpacking, reading or copying.
342 |
343 | 7. Additional Terms.
344 |
345 | "Additional permissions" are terms that supplement the terms of this
346 | License by making exceptions from one or more of its conditions.
347 | Additional permissions that are applicable to the entire Program shall
348 | be treated as though they were included in this License, to the extent
349 | that they are valid under applicable law. If additional permissions
350 | apply only to part of the Program, that part may be used separately
351 | under those permissions, but the entire Program remains governed by
352 | this License without regard to the additional permissions.
353 |
354 | When you convey a copy of a covered work, you may at your option
355 | remove any additional permissions from that copy, or from any part of
356 | it. (Additional permissions may be written to require their own
357 | removal in certain cases when you modify the work.) You may place
358 | additional permissions on material, added by you to a covered work,
359 | for which you have or can give appropriate copyright permission.
360 |
361 | Notwithstanding any other provision of this License, for material you
362 | add to a covered work, you may (if authorized by the copyright holders of
363 | that material) supplement the terms of this License with terms:
364 |
365 | a) Disclaiming warranty or limiting liability differently from the
366 | terms of sections 15 and 16 of this License; or
367 |
368 | b) Requiring preservation of specified reasonable legal notices or
369 | author attributions in that material or in the Appropriate Legal
370 | Notices displayed by works containing it; or
371 |
372 | c) Prohibiting misrepresentation of the origin of that material, or
373 | requiring that modified versions of such material be marked in
374 | reasonable ways as different from the original version; or
375 |
376 | d) Limiting the use for publicity purposes of names of licensors or
377 | authors of the material; or
378 |
379 | e) Declining to grant rights under trademark law for use of some
380 | trade names, trademarks, or service marks; or
381 |
382 | f) Requiring indemnification of licensors and authors of that
383 | material by anyone who conveys the material (or modified versions of
384 | it) with contractual assumptions of liability to the recipient, for
385 | any liability that these contractual assumptions directly impose on
386 | those licensors and authors.
387 |
388 | All other non-permissive additional terms are considered "further
389 | restrictions" within the meaning of section 10. If the Program as you
390 | received it, or any part of it, contains a notice stating that it is
391 | governed by this License along with a term that is a further
392 | restriction, you may remove that term. If a license document contains
393 | a further restriction but permits relicensing or conveying under this
394 | License, you may add to a covered work material governed by the terms
395 | of that license document, provided that the further restriction does
396 | not survive such relicensing or conveying.
397 |
398 | If you add terms to a covered work in accord with this section, you
399 | must place, in the relevant source files, a statement of the
400 | additional terms that apply to those files, or a notice indicating
401 | where to find the applicable terms.
402 |
403 | Additional terms, permissive or non-permissive, may be stated in the
404 | form of a separately written license, or stated as exceptions;
405 | the above requirements apply either way.
406 |
407 | 8. Termination.
408 |
409 | You may not propagate or modify a covered work except as expressly
410 | provided under this License. Any attempt otherwise to propagate or
411 | modify it is void, and will automatically terminate your rights under
412 | this License (including any patent licenses granted under the third
413 | paragraph of section 11).
414 |
415 | However, if you cease all violation of this License, then your
416 | license from a particular copyright holder is reinstated (a)
417 | provisionally, unless and until the copyright holder explicitly and
418 | finally terminates your license, and (b) permanently, if the copyright
419 | holder fails to notify you of the violation by some reasonable means
420 | prior to 60 days after the cessation.
421 |
422 | Moreover, your license from a particular copyright holder is
423 | reinstated permanently if the copyright holder notifies you of the
424 | violation by some reasonable means, this is the first time you have
425 | received notice of violation of this License (for any work) from that
426 | copyright holder, and you cure the violation prior to 30 days after
427 | your receipt of the notice.
428 |
429 | Termination of your rights under this section does not terminate the
430 | licenses of parties who have received copies or rights from you under
431 | this License. If your rights have been terminated and not permanently
432 | reinstated, you do not qualify to receive new licenses for the same
433 | material under section 10.
434 |
435 | 9. Acceptance Not Required for Having Copies.
436 |
437 | You are not required to accept this License in order to receive or
438 | run a copy of the Program. Ancillary propagation of a covered work
439 | occurring solely as a consequence of using peer-to-peer transmission
440 | to receive a copy likewise does not require acceptance. However,
441 | nothing other than this License grants you permission to propagate or
442 | modify any covered work. These actions infringe copyright if you do
443 | not accept this License. Therefore, by modifying or propagating a
444 | covered work, you indicate your acceptance of this License to do so.
445 |
446 | 10. Automatic Licensing of Downstream Recipients.
447 |
448 | Each time you convey a covered work, the recipient automatically
449 | receives a license from the original licensors, to run, modify and
450 | propagate that work, subject to this License. You are not responsible
451 | for enforcing compliance by third parties with this License.
452 |
453 | An "entity transaction" is a transaction transferring control of an
454 | organization, or substantially all assets of one, or subdividing an
455 | organization, or merging organizations. If propagation of a covered
456 | work results from an entity transaction, each party to that
457 | transaction who receives a copy of the work also receives whatever
458 | licenses to the work the party's predecessor in interest had or could
459 | give under the previous paragraph, plus a right to possession of the
460 | Corresponding Source of the work from the predecessor in interest, if
461 | the predecessor has it or can get it with reasonable efforts.
462 |
463 | You may not impose any further restrictions on the exercise of the
464 | rights granted or affirmed under this License. For example, you may
465 | not impose a license fee, royalty, or other charge for exercise of
466 | rights granted under this License, and you may not initiate litigation
467 | (including a cross-claim or counterclaim in a lawsuit) alleging that
468 | any patent claim is infringed by making, using, selling, offering for
469 | sale, or importing the Program or any portion of it.
470 |
471 | 11. Patents.
472 |
473 | A "contributor" is a copyright holder who authorizes use under this
474 | License of the Program or a work on which the Program is based. The
475 | work thus licensed is called the contributor's "contributor version".
476 |
477 | A contributor's "essential patent claims" are all patent claims
478 | owned or controlled by the contributor, whether already acquired or
479 | hereafter acquired, that would be infringed by some manner, permitted
480 | by this License, of making, using, or selling its contributor version,
481 | but do not include claims that would be infringed only as a
482 | consequence of further modification of the contributor version. For
483 | purposes of this definition, "control" includes the right to grant
484 | patent sublicenses in a manner consistent with the requirements of
485 | this License.
486 |
487 | Each contributor grants you a non-exclusive, worldwide, royalty-free
488 | patent license under the contributor's essential patent claims, to
489 | make, use, sell, offer for sale, import and otherwise run, modify and
490 | propagate the contents of its contributor version.
491 |
492 | In the following three paragraphs, a "patent license" is any express
493 | agreement or commitment, however denominated, not to enforce a patent
494 | (such as an express permission to practice a patent or covenant not to
495 | sue for patent infringement). To "grant" such a patent license to a
496 | party means to make such an agreement or commitment not to enforce a
497 | patent against the party.
498 |
499 | If you convey a covered work, knowingly relying on a patent license,
500 | and the Corresponding Source of the work is not available for anyone
501 | to copy, free of charge and under the terms of this License, through a
502 | publicly available network server or other readily accessible means,
503 | then you must either (1) cause the Corresponding Source to be so
504 | available, or (2) arrange to deprive yourself of the benefit of the
505 | patent license for this particular work, or (3) arrange, in a manner
506 | consistent with the requirements of this License, to extend the patent
507 | license to downstream recipients. "Knowingly relying" means you have
508 | actual knowledge that, but for the patent license, your conveying the
509 | covered work in a country, or your recipient's use of the covered work
510 | in a country, would infringe one or more identifiable patents in that
511 | country that you have reason to believe are valid.
512 |
513 | If, pursuant to or in connection with a single transaction or
514 | arrangement, you convey, or propagate by procuring conveyance of, a
515 | covered work, and grant a patent license to some of the parties
516 | receiving the covered work authorizing them to use, propagate, modify
517 | or convey a specific copy of the covered work, then the patent license
518 | you grant is automatically extended to all recipients of the covered
519 | work and works based on it.
520 |
521 | A patent license is "discriminatory" if it does not include within
522 | the scope of its coverage, prohibits the exercise of, or is
523 | conditioned on the non-exercise of one or more of the rights that are
524 | specifically granted under this License. You may not convey a covered
525 | work if you are a party to an arrangement with a third party that is
526 | in the business of distributing software, under which you make payment
527 | to the third party based on the extent of your activity of conveying
528 | the work, and under which the third party grants, to any of the
529 | parties who would receive the covered work from you, a discriminatory
530 | patent license (a) in connection with copies of the covered work
531 | conveyed by you (or copies made from those copies), or (b) primarily
532 | for and in connection with specific products or compilations that
533 | contain the covered work, unless you entered into that arrangement,
534 | or that patent license was granted, prior to 28 March 2007.
535 |
536 | Nothing in this License shall be construed as excluding or limiting
537 | any implied license or other defenses to infringement that may
538 | otherwise be available to you under applicable patent law.
539 |
540 | 12. No Surrender of Others' Freedom.
541 |
542 | If conditions are imposed on you (whether by court order, agreement or
543 | otherwise) that contradict the conditions of this License, they do not
544 | excuse you from the conditions of this License. If you cannot convey a
545 | covered work so as to satisfy simultaneously your obligations under this
546 | License and any other pertinent obligations, then as a consequence you may
547 | not convey it at all. For example, if you agree to terms that obligate you
548 | to collect a royalty for further conveying from those to whom you convey
549 | the Program, the only way you could satisfy both those terms and this
550 | License would be to refrain entirely from conveying the Program.
551 |
552 | 13. Use with the GNU Affero General Public License.
553 |
554 | Notwithstanding any other provision of this License, you have
555 | permission to link or combine any covered work with a work licensed
556 | under version 3 of the GNU Affero General Public License into a single
557 | combined work, and to convey the resulting work. The terms of this
558 | License will continue to apply to the part which is the covered work,
559 | but the special requirements of the GNU Affero General Public License,
560 | section 13, concerning interaction through a network will apply to the
561 | combination as such.
562 |
563 | 14. Revised Versions of this License.
564 |
565 | The Free Software Foundation may publish revised and/or new versions of
566 | the GNU General Public License from time to time. Such new versions will
567 | be similar in spirit to the present version, but may differ in detail to
568 | address new problems or concerns.
569 |
570 | Each version is given a distinguishing version number. If the
571 | Program specifies that a certain numbered version of the GNU General
572 | Public License "or any later version" applies to it, you have the
573 | option of following the terms and conditions either of that numbered
574 | version or of any later version published by the Free Software
575 | Foundation. If the Program does not specify a version number of the
576 | GNU General Public License, you may choose any version ever published
577 | by the Free Software Foundation.
578 |
579 | If the Program specifies that a proxy can decide which future
580 | versions of the GNU General Public License can be used, that proxy's
581 | public statement of acceptance of a version permanently authorizes you
582 | to choose that version for the Program.
583 |
584 | Later license versions may give you additional or different
585 | permissions. However, no additional obligations are imposed on any
586 | author or copyright holder as a result of your choosing to follow a
587 | later version.
588 |
589 | 15. Disclaimer of Warranty.
590 |
591 | THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY
592 | APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT
593 | HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY
594 | OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO,
595 | THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
596 | PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM
597 | IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF
598 | ALL NECESSARY SERVICING, REPAIR OR CORRECTION.
599 |
600 | 16. Limitation of Liability.
601 |
602 | IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING
603 | WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS
604 | THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY
605 | GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE
606 | USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF
607 | DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD
608 | PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS),
609 | EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF
610 | SUCH DAMAGES.
611 |
612 | 17. Interpretation of Sections 15 and 16.
613 |
614 | If the disclaimer of warranty and limitation of liability provided
615 | above cannot be given local legal effect according to their terms,
616 | reviewing courts shall apply local law that most closely approximates
617 | an absolute waiver of all civil liability in connection with the
618 | Program, unless a warranty or assumption of liability accompanies a
619 | copy of the Program in return for a fee.
620 |
621 | END OF TERMS AND CONDITIONS
622 |
623 | How to Apply These Terms to Your New Programs
624 |
625 | If you develop a new program, and you want it to be of the greatest
626 | possible use to the public, the best way to achieve this is to make it
627 | free software which everyone can redistribute and change under these terms.
628 |
629 | To do so, attach the following notices to the program. It is safest
630 | to attach them to the start of each source file to most effectively
631 | state the exclusion of warranty; and each file should have at least
632 | the "copyright" line and a pointer to where the full notice is found.
633 |
634 |
635 | Copyright (C)
636 |
637 | This program is free software: you can redistribute it and/or modify
638 | it under the terms of the GNU General Public License as published by
639 | the Free Software Foundation, either version 3 of the License, or
640 | (at your option) any later version.
641 |
642 | This program is distributed in the hope that it will be useful,
643 | but WITHOUT ANY WARRANTY; without even the implied warranty of
644 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
645 | GNU General Public License for more details.
646 |
647 | You should have received a copy of the GNU General Public License
648 | along with this program. If not, see .
649 |
650 | Also add information on how to contact you by electronic and paper mail.
651 |
652 | If the program does terminal interaction, make it output a short
653 | notice like this when it starts in an interactive mode:
654 |
655 | Copyright (C)
656 | This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'.
657 | This is free software, and you are welcome to redistribute it
658 | under certain conditions; type `show c' for details.
659 |
660 | The hypothetical commands `show w' and `show c' should show the appropriate
661 | parts of the General Public License. Of course, your program's commands
662 | might be different; for a GUI interface, you would use an "about box".
663 |
664 | You should also get your employer (if you work as a programmer) or school,
665 | if any, to sign a "copyright disclaimer" for the program, if necessary.
666 | For more information on this, and how to apply and follow the GNU GPL, see
667 | .
668 |
669 | The GNU General Public License does not permit incorporating your program
670 | into proprietary programs. If your program is a subroutine library, you
671 | may consider it more useful to permit linking proprietary applications with
672 | the library. If this is what you want to do, use the GNU Lesser General
673 | Public License instead of this License. But first, please read
674 | .
675 |
--------------------------------------------------------------------------------
/Custom Filter TUBs/quack.bambda:
--------------------------------------------------------------------------------
1 | // A custom filter Bambda that quacks at you.
2 |
3 | final String QUACK = "524946460e55000057415645666d7420100000000100020044ac000010b102000400100064617461805400005fff5fffb3feb3fe19fe19fefafdfafd3bfe3bfeabfeabfe16ff16ff24ff24ffedfeedfecafecafeeefeeefe7bff7bff40004000e000e00042014201600160014d014d013501350111011101da00da00b200b200890089003d003d00d8ffd8ff7cff7cff57ff57ff62ff62ff72ff72ff7bff7bff71ff71ff45ff45ff2dff2dff48ff48ff76ff76ffa7ffa7ffdcffdcff0d000d002600260010001000e7ffe7ffdcffdcfffcfffcff4b004b00bb00bb00150115013d013d0129012901cf00cf00600060002200220023002300340034001b001b00ceffceff7eff7eff4eff4eff41ff41ff58ff58ff89ff89ffb8ffb8ffd9ffd9fff6fff6ff090009000a000a00180018004e004e00820082009000900086008600740074006f006f0084008400a700a700bd00bd00a200a200560056000c000c00e5ffe5ffdbffdbffe3ffe3ffeaffeaffe8ffe8ffdcffdcffb9ffb9ff95ff95ffa0ffa0ffd4ffd4ff0b000b0035003500580058007400740082008200840084008e008e00940094008f008f008e008e00780078002f002f00e0ffe0ffb9ffb9ffbbffbbffd1ffd1ffe1ffe1ffdfffdfffd7ffd7ffceffceffcaffcaffd6ffd6fff0fff0ff1600160044004400600060005900590043004300370037003a003a004300430053005300670067005e005e00320032000b000b00f8fff8ffe4ffe4ffcfffcfffc8ffc8ffc9ffc9ffccffccffd0ffd0ffd1ffd1ffd0ffd0ffcdffcdffc5ffc5ffc2ffc2ffc7ffc7ffc6ffc6ffcaffcaffdfffdffff5fff5ff000000000e000e001b001b00190019000e000e00080008000e000e001d001d002f002f00380038003c003c0047004700590059006400640067006700650065006500650071007100850085009000900090009000740074001e001e0098ff98ff06ff06ff83fe83fe31fe31fe2afe2afe56fe56fe8efe8efeb9feb9fed9fed9fe01ff01ff45ff45ffb4ffb4ff5500550019011901eb01eb01a302a302f802f802b702b702fe01fe0110011001260026007cff7cff5aff5affcbffcbff69006900b800b8009900990040004000eeffeeffd8ffd8ff0a000a005c005c008300830045004500abffabffe5fee5fe13fe13fe4ffd4ffde3fce3fc2afd2afd2dfe2dfe78ff78ff7e007e0021012101a501a5012a022a0285028502930293027502750263026302760276028e028e0262026202ba01ba019a009a004dff4dff40fe40feb6fdb6fda3fda3fdd3fdd3fd15fe15fe4bfe4bfe6bfe6bfe7dfe7dfea2fea2fe0bff0bffcaffcaffb500b500870187010b020b023d023d023f023f022b022b020f020f02f201f201c801c80176017601f800f80060006000bfffbfff18ff18ff78fe78fef5fdf5fda5fda5fd94fd94fdc4fdc4fd26fe26fea1fea1fe20ff20ffa1ffa1ff2f002f00c700c70050015001b501b501f001f00102020202ed01ed01ac01ac013e013e01b900b9003d003d00deffdeffa2ffa2ff7cff7cff54ff54ff21ff21ffeffeeffedbfedbfef4fef4fe29ff29ff66ff66ffa6ffa6ffe3ffe3ff1600160033003300360036002d002d002d002d003a003a004e004e005c005c005b005b0052005200500050005600560063006300730073007e007e008000800073007300550055002c002c00f5fff5ff98ff98ff0aff0aff70fe70fe1bfe1bfe44fe44fed5fed5fe7dff7dff020002005d005d0095009500ad00ad00b000b000b900b900d900d9000401040114011401e500e50074007400f0fff0ff92ff92ff7aff7aff95ff95ffb5ffb5ffbfffbfffc1ffc1ffe4ffe4ff48004800ea00ea0087018701cc01cc018a018a01d800d800fdfffdff56ff56ff1fff1fff53ff53ffbbffbbff09000900fcfffcff90ff90ff13ff13fff0fef0fe58ff58ff1e001e00e400e40057015701580158010d010d01ba00ba008f008f009b009b00c900c900fd00fd001c011c0119011901ef00ef00a500a5004d004d0002000200d7ffd7ffb7ffb7ff8aff8aff54ff54ff2bff2bff24ff24ff47ff47ff85ff85ffc7ffc7ff06000600480048008d008d00cf00cf0008010801310131013c013c011f011f01e600e600a800a8006f006f003d003d0010001000d9ffd9ff90ff90ff48ff48ff24ff24ff34ff34ff70ff70ffc5ffc5ff170017004c004c005e005e006000600064006400720072008c008c00a900a900b300b3009a009a00660066002a002a00f2fff2ffc6ffc6ffb4ffb4ffc1ffc1ffdfffdffff4fff4ffe8ffe8ffbbffbbff8fff8fff8fff8fffc4ffc4ff030003002200220027002700300030004c004c006d006d007c007c0068006800380038000c000c00010001000f000f001800180006000600dcffdcffafffafff94ff94ff93ff93ffa1ffa1ffb4ffb4ffcbffcbffe0ffe0ffe3ffe3ffd4ffd4ffcaffcaffd2ffd2ffe3ffe3fff6fff6ff0e000e00310031005a005a007e007e008f008f008d008d008500850084008400850085007c007c005e005e0028002800deffdeff90ff90ff59ff59ff43ff43ff46ff46ff56ff56ff6fff6fff8aff8aff9cff9cff9bff9bff84ff84ff5eff5eff3bff3bff35ff35ff54ff54ff82ff82ffa0ffa0ffa3ffa3ff97ff97ff95ff95ffb9ffb9ff140014009b009b0031013101c201c20151025102d802d8023203320330033003c802c8022b022b0299019901220122019300930097ff97fff6fdf6fdcefbcefbc9f9c9f9eff8eff8f0f9f0f94cfc4cfc94fe94fea0ffa0ff7aff7aff18ff18ff72ff72ffe400e4002c032c039405940517071707d006d006b604b604ee01ee0116001600f0fff0ffdb00db00870187011d011d01b7ffb7ff17fe17fe01fd01fdb6fcb6fceafceafc34fd34fd7efd7efdeefdeefd88fe88fe35ff35ffdaffdaff54005400810081007a007a0091009100fa00fa009501950122022202780278028102810242024202cd01cd011d011d013500350054ff54ffd1fed1febcfebcfed8fed8fee8fee8fec8fec8fe70fe70fe0dfe0dfef7fdf7fd61fe61fe2fff2fff21002100e500e5002a012a01df00df00590059000e000e00320032009e009e00050105012c012c010b010b01d200d200b800b800c700c700e000e000d500d50089008900090009007dff7dff03ff03ffa2fea2fe58fe58fe30fe30fe2cfe2cfe36fe36fe44fe44fe67fe67fea9fea9fefcfefcfe5dff5dffd7ffd7ff66006600e400e400230123011e011e01f200f200c700c700b800b800c000c000bb00bb008a008a002a002a00bdffbdff69ff69ff3cff3cff30ff30ff3aff3aff50ff50ff6cff6cff84ff84ff8dff8dff8fff8fff9eff9effbcffbcffd3ffd3ffceffceffb7ffb7ffa6ffa6ffa6ffa6ffabffabffa8ffa8ff9aff9aff97ff97ffbaffbaff080008005e005e00850085005f005f000d000d00d2ffd2ffe2ffe2ff3e003e00a600a600ca00ca009000900032003200f9fff9fff3fff3fffbfffbfff5fff5ffd5ffd5ff9aff9aff57ff57ff2aff2aff23ff23ff46ff46ff83ff83ffbdffbdffe1ffe1fff7fff7ff160016004a004a0093009300e500e50012011201f200f2009a009a00460046000a000a00d7ffd7ffa4ffa4ff7aff7aff5cff5cff3eff3eff1eff1eff03ff03fff8fef8fe0bff0bff46ff46ff99ff99ffebffebff2e002e00630063008f008f00b800b800de00de00f700f700e900e900a700a7004f004f0002000200d4ffd4ffc0ffc0ffb3ffb3ff98ff98ff6eff6eff43ff43ff2aff2aff2dff2dff44ff44ff62ff62ff80ff80ffa3ffa3ffc7ffc7ffdaffdaffddffddfff8fff8ff39003900750075007c007c0049004900fefffeffc3ffc3ffa7ffa7ffa6ffa6ffa5ffa5ff91ff91ff6cff6cff43ff43ff20ff20ff07ff07fffbfefbfefbfefbfe11ff11ff41ff41ff7cff7cffa9ffa9ffc2ffc2ffd4ffd4ffeaffeaff020002001e001e003c003c004a004a0045004500420042004c004c00580058005b005b00530053003a003a0011001100eeffeeffe6ffe6ffeeffeefff4fff4fff3fff3ffd8ffd8ff88ff88fffcfefcfe47fe47fe8ffd8ffd02fd02fdcafccafcf0fcf0fc56fd56fde3fde3fd7efe7efefefefefe41ff41ff73ff73ff06000600480148010e030e03b804b80489058905130513056d036d033701370154ff54ff86fe86fe00ff00ff330033001a011a01e300e30058ff58ffe4fce4fc68fa68fa11f911f9b8f9b8f92afc2afc12ff12fff700f70056015601b500b500f9fff9ffcfffcfff75007500b901b901f002f0024803480363026302cc00cc00b4ffb4ff0400040086018601f002f002ec02ec0235013501c1fec1fef5fcf5fca1fca1fc97fd97fde6fee6fe90ff90ff33ff33ff3efe3efe86fd86fda6fda6fda3fea3fe0700070033013301b701b7019401940133013301090109013801380186018601a901a9017c017c01f900f90042004200a5ffa5ff6fff6fff9eff9effd4ffd4ffaaffaaff03ff03ff20fe20fe6bfd6bfd3efd3efdaffdaffd84fe84fe61ff61fff4fff4ff17001700dfffdfff9aff9affa9ffa9ff3700370016011601d901d90120022002dc01dc014d014d01cb00cb00840084006200620035003500d9ffd9ff54ff54ffd4fed4fe88fe88fe7cfe7cfe97fe97febbfebbfedcfedcfefdfefdfe30ff30ff84ff84fff1fff1ff51005100800080007800780052005200310031002b002b00320032001e001e00e2ffe2ff9dff9dff83ff83ffa5ffa5ffddffddffe0ffe0ff75ff75ffa8fea8feddfdddfd92fd92fd02fe02fefbfefbfe010001009d009d00a800a8005d005d00260026004e004e00db00db008f018f01fc01fc01c501c501eb00eb00deffdeff28ff28ff02ff02ff39ff39ff65ff65ff4cff4cfffffefffeb0feb0fe71fe71fe36fe36fe00fe00fefffdfffd81fe81fec0ffc0ff8d018d014403440327042704f503f503fd02fd02b901b9017a007a0076ff76ffd8fed8feabfeabfebffebffed5fed5fecefecefeb4feb4fea7fea7fec3fec3fe15ff15ff8cff8cff0e000e0084008400dc00dc000b010b01150115010c010c01fe00fe00f000f000f200f200120112014001400147014701f600f6004f004f007fff7fffc6fec6fe61fe61fe68fe68fec0fec0fe33ff33ff92ff92ffc4ffc4ffc7ffc7ffbaffbaffd7ffd7ff3b003b00c800c8003d013d016c016c015201520106010601b300b300820082007800780077007700550055000600060092ff92ff1bff1bffcdfecdfecafecafe0cff0cff74ff74ffe1ffe1ff3c003c007600760092009200a600a600c000c000d000d000bb00bb007c007c0026002600d4ffd4ff9cff9cff88ff88ff90ff90ffa4ffa4ffb6ffb6ffc2ffc2ffc8ffc8ffccffccffdaffdafff4fff4ff0a000a0009000900f3fff3ffddffddffd6ffd6ffdcffdcffddffddffcfffcfffb3ffb3ff99ff99ff8bff8bff89ff89ff92ff92ffabffabffd9ffd9ff12001200460046006d006d008c008c00a900a900c300c300dc00dc00ef00ef00e900e900bb00bb006e006e001e001e00dcffdcffa6ffa6ff7cff7cff68ff68ff6cff6cff7bff7bff85ff85ff8bff8bff9eff9effd1ffd1ff1f001f005e005e005b005b00fefffeff5dff5dffb8feb8fe53fe53fe4efe4efe82fe82fea6fea6fe9ffe9ffea5fea5fe00ff00ffcbffcbfffd00fd0083028302240424046f056f05ff05ff05cd05cd051905190516041604b202b202b500b500fffdfffdfbfafbfac2f8c2f87bf87bf833fa33fa97fc97fc1dfe1dfe52fe52fef0fdf0fdecfdecfdb5feb5fe1c001c00a001a001e902e9022c042c04b605b605f806f8069906990615041504d800d80017ff17ff94ff94ff13011301ee01ee019001900158005800d1fed1fe6afd6afd81fc81fc44fc44fc9cfc9cfc66fd66fd9bfe9bfe0c000c003a013a01ae01ae016d016d01e000e00069006900420042009c009c008e018e01d102d102b703b7039d039d036d026d02b500b50043ff43ff99fe99feb1feb1fe1aff1aff54ff54ff27ff27ffc0fec0fe7afe7afe86fe86feccfeccfe24ff24ff81ff81ffe0ffe0ff250025003800380027002700280028006d006d00fb00fb00a401a4011a021a0228022802dd01dd018c018c0175017501810181015c015c01d800d8002100210082ff82ff23ff23ffecfeecfeb8feb8fe85fe85fe6afe6afe79fe79fea5fea5fedcfedcfe20ff20ff7aff7affdcffdcff2c002c006300630091009100c300c300f900f900260126013901390124012401eb00eb00aa00aa007d007d00560056000100010067ff67ffc4fec4fe7afe7afea9fea9fe13ff13ff65ff65ff84ff84ff91ff91ffbbffbbff1800180098009800090109014a014a01630163016001600138013801d700d70054005400e6ffe6ffb4ffb4ffaeffaeffacffacff92ff92ff6aff6aff4cff4cff4cff4cff70ff70ffb9ffb9ff1c001c0083008300d700d700180118014c014c017201720186018601890189017901790147014701ea00ea00740074000a000a00c8ffc8ffaeffaeffa1ffa1ff7fff7fff41ff41ff0fff0fff23ff23ff95ff95ff42004200e400e400430143015a015a014a014a013e013e013f013f01420142013c013c01300130011f011f01f600f600a100a1002c002c00c3ffc3ff89ff89ff7aff7aff7eff7eff8bff8bff9bff9bff9eff9eff95ff95ff9fff9fffddffddff48004800b500b500f600f60000010001e800e800d500d500dc00dc00ea00ea00e200e200c500c500a500a50089008900690069003e003e00180018000600060001000100f6fff6ffdcffdcffc6ffc6ffcaffcaffecffecff220022005e005e00890089009200920087008700840084008d008d008a008a0073007300580058004400440039003900350035002f002f0019001900f5fff5ffd9ffd9ffc4ffc4ffa8ffa8ff8dff8dff8aff8aff9dff9dffa9ffa9ffa8ffa8ffacffacffbdffbdffd0ffd0ffdfffdfffeaffeaffecffecffebffebfff8fff8ff230023006a006a00ba00ba00f700f7000e010e010801080101010101090109010f010f01fa00fa00c100c1006c006c000c000c00b2ffb2ff72ff72ff59ff59ff65ff65ff7cff7cff86ff86ff88ff88ff9cff9cffd0ffd0ff0e000e0025002500d8ffd8ff0cff0cfffefdfefd38fd38fd2efd2efdddfdddfdcafecafe68ff68ff72ff72ff1fff1ffffffefffea5ffa5ff3a013a0158035803440544055006500636063606410541050c040c04100310035e025e02b801b801a100a1007efe7efe25fb25fb9ff79ff7f2f5f2f578f778f74dfb4dfbccfeccfee3ffe3ffd1fed1fe98fd98fdf4fdf4fd0d000d00d002d00213051305540654068a068a06b805b805f903f903f001f001c700c700230123013902390267026702e100e10081fe81fed1fcd1fc92fc92fc51fd51fd17fe17fe40fe40fecbfdcbfd48fd48fd75fd75fdb4feb4feaf00af007702770239033903e002e002fd01fd0135013501ce00ce00c300c300f700f7003901390134013401a400a4009aff9aff84fe84fef1fdf1fd2afe2afef8fef8fec6ffc6ff15001500e2ffe2ff93ff93ff89ff89ffcaffcaff1c001c004c004c004a004a0012001200a0ffa0ff14ff14ffc8fec8fe16ff16fff1fff1ffda00da00410141010c010c01a600a600970097000001000184018401ad01ad0157015701bd00bd002b002b00b8ffb8ff5aff5aff0fff0fffedfeedfef5fef5fef9fef9fec5fec5fe50fe50fed3fdd3fda2fda2fdf2fdf2fdacfeacfe6eff6effd8ffd8ffe0ffe0ffd3ffd3fff0fff0ff2e002e00600060007800780087008700910091008e008e00750075004900490018001800fcfffcff08000800270027002d002d0008000800d7ffd7ffb9ffb9ffa3ffa3ff7eff7eff5fff5fff6bff6bffa2ffa2ffd7ffd7ffe7ffe7ffcaffcaff84ff84ff21ff21ffc7fec7fea1fea1fec2fec2fe15ff15ff76ff76ffcaffcaff000000002700270068006800e400e40079017901da01da01d001d001730173010b010b01cb00cb00ac00ac007d007d001900190088ff88fff8fef8fe9bfe9bfe84fe84fea6fea6fee9fee9fe35ff35ff70ff70ff88ff88ff91ff91ffc1ffc1ff36003600c600c6002d012d01520152014f014f013801380104010401b000b000540054000d000d00dcffdcffa9ffa9ff64ff64ff19ff19ffe5fee5fed2fed2fed0fed0fed5fed5feeffeeffe34ff34ff97ff97ffedffedff1c001c003e003e007c007c00d600d6001a011a011c011c01e600e600ae00ae00910091007a007a0042004200e7ffe7ff8cff8cff57ff57ff43ff43ff3aff3aff3cff3cff5cff5cff97ff97ffc8ffc8ffdeffdeffecffecff0500050021002100320032003b003b003a003a0021002100f6fff6ffd3ffd3ffc8ffc8ffcfffcfffe2ffe2ffecffecffccffccff7dff7dff2eff2eff10ff10ff1aff1aff1cff1cff01ff01ffddfeddfec7fec7fecdfecdfef2fef2fe36ff36ff88ff88ffd7ffd7ff1e001e005b005b008c008c00b600b600e900e900250125014901490131013101df00df00800080003b003b000d000d00e1ffe1ffb2ffb2ff8cff8cff7cff7cff81ff81ff8dff8dffa1ffa1ffd6ffd6ff350035005f005f00acffacffe3fde3fdc2fbc2fb8afa8afae6fae6fa5ffc5ffcddfdddfd99fe99fe97fe97fe6dfe6dfec9fec9fe1b001b00600260020505050518071807cf07cf070e070e0769056905aa03aa035302530281018101ee00ee00f9fff9fff6fdf6fdcafacafa81f781f7f4f5f4f560f760f70bfb0bfb8bfe8bfecbffcbffd6fed6fe8dfd8dfdb5fdb5fd7cff7cffbd01bd016a036a0371047104360536057a057a0553045304be01be0198ff98ff08000800d302d302120512051d041d04430043004bfc4bfca9faa9fa9efb9efba0fda0fdeafeeafebbfebbfe99fd99fdc7fcc7fc35fd35fdd4fed4fec900c90034023402b702b7027b027b02f301f301940194018d018d01b801b801d101d101b801b801550155018c008c0074ff74ff86fe86fe40fe40fe98fe98fef8fef8fed4fed4fe3bfe3bfec1fdc1fde1fde1fd80fe80fe1fff1fff6cff6cff88ff88ffa6ffa6ffb4ffb4ff90ff90ff75ff75ffd9ffd9ffd700d700ef01ef0167026702fd01fd012101210190009000a400a400020102010e010e0183008300a1ffa1ffd5fed5fe66fe66fe55fe55fe77fe77fe97fe97fea0fea0fea7fea7fed4fed4fe39ff39ffb5ffb5ff0500050001000100c8ffc8ff97ff97ff85ff85ff83ff83ff8eff8effa6ffa6ffa7ffa7ff60ff60ffd8fed8fe54fe54fe13fe13fe20fe20fe5bfe5bfea6fea6fef9fef9fe64ff64ffedffedff77007700e200e2002b012b0163016301780178013f013f01b300b30013001300b2ffb2ffa7ffa7ffb6ffb6ff8bff8bff0fff0fff76fe76fe04fe04fed4fdd4fde3fde3fd24fe24fe7bfe7bfebdfebdfeddfeddfe02ff02ff65ff65ff0e000e00c700c7004d014d018a018a019f019f01b001b001b101b10178017801fb00fb006f006f0013001300ebffebffc4ffc4ff66ff66ffe4fee4fe86fe86fe80fe80feadfeadfec2fec2feaefeaefea5fea5fedffedffe61ff61ff0100010089008900d100d100dd00dd00d200d200cc00cc00c800c800be00be00b000b000a100a100860086004b004b00efffefff90ff90ff59ff59ff57ff57ff69ff69ff68ff68ff4dff4dff2aff2aff19ff19ff2aff2aff60ff60ffa2ffa2ffc9ffc9ffccffccffc5ffc5ffcdffcdffe9ffe9ff100010003300330045004500430043003d003d003c003c0038003800270027001300130006000600fcfffcffebffebffd5ffd5ffc5ffc5ffc5ffc5ffcfffcfffcdffcdffbaffbaffaaffaaffb0ffb0ffbdffbdffb5ffb5ff9cff9cff8eff8eff93ff93ff9cff9cff9aff9aff85ff85ff62ff62ff46ff46ff4eff4eff7eff7effc0ffc0fff2fff2ff02000200edffedffc6ffc6ffa2ffa2ff88ff88ff68ff68ff3fff3fff18ff18ff01ff01fff9fef9fefffefffe12ff12ff36ff36ff71ff71ffc7ffc7ff2e002e008e008e00d900d9000c010c012201220113011301e400e400a100a1005700570017001700edffedffc8ffc8ff91ff91ff59ff59ff45ff45ff5dff5dff8aff8affbdffbdfff3fff3ff13001300ebffebff4cff4cff30fe30fed9fcd9fcdcfbdcfbc5fbc5fb8cfc8cfc8ffd8ffd21fe21fe25fe25fe1cfe1cfebbfebbfe7200720018031803f005f00502080208ab08ab08f807f80782068206e804e8045d035d03b301b301a4ffa4fff9fcf9fcb9f9b9f9adf6adf669f569f503f703f794fa94faa4fda4fd65fe65fe5ffd5ffd9afc9afc7ffd7ffdb3ffb3ffe401e4017303730311051105680768076e096e09f608f608670567052001200153ff53ffb800b80010031003a803a803bb01bb017dfe7dfebcfbbcfb90fa90fad3fad3fa83fb83fbd5fbd5fb01fc01fcdcfcdcfcb6feb6fed900d9003c023c0271027102df01df013d013d010e010e017b017b01670267027703770314041404b103b10337023702340034008afe8afeddfdddfd34fe34fef9fef9fe6dff6dff3bff3bffacfeacfe4bfe4bfe44fe44fe65fe65fe93fe93fefafefafeabffabff480048005f005f00fcfffcffb7ffb7ff250025004a014a01860286020f030f0399029902a701a7011201120139013901a601a6019c019c01d900d900bfffbfffddfeddfe70fe70fe59fe59fe67fe67fe85fe85feb0feb0fed0fed0feb8feb8fe59fe59fef5fdf5fdfcfdfcfdabfeabfebfffbfffa800a80002010201dc00dc0096009600700070006a006a005d005d0036003600fafffaffbcffbcff91ff91ff89ff89ffa6ffa6ffdaffdaff1900190060006000a300a300c900c900be00be009000900060006000510051006c006c00920092008a008a003a003a00c9ffc9ff7aff7aff63ff63ff57ff57ff22ff22ffcafecafe8efe8efe9cfe9cfef0fef0fe5dff5dffbfffbfff1a001a00900090002d012d01cf01cf013c023c025502550230023002fa01fa01ca01ca019a019a0158015801f200f20065006500c1ffc1ff33ff33ffdcfedcfeb5feb5fe93fe93fe68fe68fe5ffe5ffea7fea7fe3bff3bffebffebff8f008f00190119017d017d01b601b601d001d001df01df01ea01ea01e601e601cd01cd01960196012d012d018d008d00d3ffd3ff40ff40ff06ff06ff1dff1dff4dff4dff5bff5bff3fff3fff20ff20ff29ff29ff68ff68ffd4ffd4ff56005600d400d4003101310161016101720172017f017f018e018e018801880150015001ec00ec008200820030003000efffefffaeffaeff65ff65ff23ff23ff01ff01ff15ff15ff5fff5fffb8ffb8fffefffeff3200320071007100c400c40014011401410141013c013c010f010f01d700d700b500b500ab00ab009d009d006f006f002b002b00efffefffccffccffbbffbbffa2ffa2ff6bff6bff16ff16ffbefebefe8efe8efe98fe98fecbfecbfe0dff0dff51ff51ff92ff92ffcdffcdff090009005a005a00cb00cb0049014901b201b201f301f301130213021902190201020102bd01bd014c014c01c400c40046004600e3ffe3ff8fff8fff42ff42ff18ff18ff31ff31ff7eff7effceffceff0b000b004f004f009e009e00a700a700f6fff6ff6cfe6cfe92fc92fc54fb54fb60fb60fb95fc95fc16fe16fefdfefdfe10ff10ffd9fed9fe26ff26ff82008200e802e802c105c1051e081e0832093209d208d20871077107a505a505b703b703a101a10133ff33ff29fc29fcabf8abf8e8f5e8f59ff59ff565f865f880fc80fc21ff21fffefefefe5efd5efda6fca6fc2efe2efe600160019104910472067206e606e606840684069c059c0519041904590259026b016b01e801e801fc02fc0229032903d201d201aaffaaffcdfdcdfdd5fcd5fcb1fcb1fcddfcddfcc0fcc0fc40fc40fc08fc08fcf8fcf8fc21ff21ff84018401f602f6021f031f038d028d02f301f301a601a601bd01bd0144024402090309037d037d0310031003b501b501ffffffffbbfebbfe67fe67fee1fee1fe82ff82ffa9ffa9ff39ff39ffa3fea3fe6ffe6ffecdfecdfe73ff73ffe4ffe4ffe5ffe5ffa6ffa6ff7eff7eff87ff87ffb2ffb2ff12001200ca00ca00b101b10156025602710271022a022a02ef01ef0109020902670267029e029e024102410246014601160016002cff2cffb3feb3fe7ffe7ffe4ffe4ffe0ffe0ffee8fde8fd13fe13fe9afe9afe42ff42ffc3ffc3ff0000000018001800370037006c006c0099009900a300a300a500a500d700d700350135016c016c01260126016400640075ff75ffb0feb0fe4dfe4dfe58fe58feb3feb3fe2fff2fffa9ffa9ff070007004500450074007400ae00ae00000100015f015f01bd01bd01fb01fb01e701e70167016701b500b5002b002b00dfffdfff9bff9bff3dff3dffe8fee8fec9fec9fed4fed4fee2fee2fee9fee9fe0cff0cff64ff64ffecffecff8b008b002d012d01c401c4013c023c027c027c02810281025c025c0215021502a601a6011201120187008700370037001f001f00fdfffdff9bff9bff14ff14ffb9feb9feb8feb8fef9fef9fe49ff49ff8dff8dffd1ffd1ff33003300c000c0005e015e01d501d501090209020c020c02f301f301b601b60156015601fb00fb00cd00cd00bf00bf00a400a400680068001b001b00d9ffd9ffb6ffb6ffadffadff9eff9eff71ff71ff44ff44ff58ff58ffbeffbeff340034006c006c006900690070007000a800a800ee00ee000a010a01fe00fe00f200f200f600f600e700e700ab00ab0051005100fbfffbffc2ffc2ffb0ffb0ffcbffcbff03000300370037005100510054005400530053005a005a006c006c008300830099009900b300b300cd00cd00d000d000990099002f002f00c6ffc6ff87ff87ff6eff6eff67ff67ff75ff75ff99ff99ffa9ffa9ff7fff7fff38ff38ff1fff1fff57ff57ffc0ffc0ff1e001e00480048002b002b00d8ffd8ff88ff88ff74ff74ffa6ffa6fffdfffdff510051008200820084008400710071007d007d00b600b600f700f70011011101f800f800b700b70057005700f1fff1ffa9ffa9ff85ff85ff72ff72ff66ff66ff6dff6dff89ff89ffb4ffb4ffefffefff400040009d009d00e600e600de00de002a002a00a2fea2fed0fcd0fcc3fbc3fb12fc12fc37fd37fd16fe16fe12fe12fe71fd71fdf0fcf0fc4ffd4ffd13ff13ff32023202e005e005d208d208fb09fb092b092b0920072007fb04fb0486038603a602a60268016801a3fea3fe0dfa0dfa1af51af58df28df24ff44ff452f952f91dfe1dfedfffdfffc5fec5fe31fd31fd30fd30fd0bff0bffa601a601b703b703f604f6045b065b06b308b308bf0abf0ad109d1091b051b057cff7cffd6fcd6fcfcfdfcfd49004900e400e4004cff4cffd7fcd7fcf3faf3fa52fa52fad4fad4fab7fbb7fb49fc49fcc8fcc8fc32fe32feec00ec00ec03ec038c058c0516051605490349037d017d0184008400750075001701170116021602d402d4027c027c02c200c20063fe63fe9efc9efc34fc34fcf9fcf9fc37fe37fe32ff32ff88ff88ff54ff54ff0bff0bff00ff00ff24ff24ff43ff43ff67ff67ffbeffbeff300030006000600023002300e1ffe1ff3e003e005f015f0196029602ea02ea020e020e02bf00bf000b000b0051005100ff00ff00320132018500850058ff58ff68fe68fe25fe25fe5ffe5ffe93fe93fe83fe83fe62fe62fe67fe67fe78fe78fe5bfe5bfe19fe19fe03fe03fe60fe60fe37ff37ff450045000f010f01230123017e007e00a0ffa0ff16ff16fffcfefcfe0bff0bff0cff0cff10ff10ff38ff38ff7cff7cffbcffbcffebffebff1a001a005c005c00ac00ac00e900e900e800e8009f009f0034003400e4ffe4ffcaffcaffcbffcbffbcffbcff8aff8aff38ff38ffc4fec4fe2ffe2ffea7fda7fd81fd81fde2fde2fd85fe85fef2fef2fe03ff03ff02ff02ff50ff50fffdfffdffda00da00b001b0015a025a02ad02ad028c028c020c020c027d017d012b012b0110011001d700d700370037004bff4bff72fe72fee8fde8fd99fd99fd66fd66fd5bfd5bfd86fd86fdd7fdd7fd3cfe3cfecafecafea3ffa3ffb200b200b301b301590259027b027b0226022602a101a1013d013d010d010d01d800d80067006700c4ffc4ff30ff30ffcefecefe8afe8afe4afe4afe15fe15fe0efe0efe3ffe3ffe8efe8efed6fed6fe0fff0fff4eff4effaeffaeff39003900da00da005b015b018a018a016301630116011601dc00dc00bb00bb008e008e002f002f00a0ffa0ff09ff09ff9afe9afe64fe64fe59fe59fe66fe66fe83fe83febafebafe0fff0fff74ff74ffd3ffd3ff1900190048004800650065006e006e006300630056005600590059005b005b0037003700edffedff9dff9dff4dff4dffe6fee6fe77fe77fe3cfe3cfe49fe49fe61fe61fe45fe45fe0dfe0dfefafdfafd19fe19fe42fe42fe6afe6afeabfeabfe19ff19ff98ff98ff0e000e0078007800d700d7001c011c0144014401660166018f018f018d018d012601260169006900adffadff2fff2fffe7fee7feb4feb4fe90fe90fe76fe76fe62fe62fe6cfe6cfebafebafe4bff4bfff1fff1ff74007400820082009cff9cff8cfd8cfd07fb07fb6df96df9a4f9a4f946fb46fb1cfd1cfd37fe37fe78fe78fe58fe58fe87fe87feb6ffb6ff4a024a02de05de05160916096d0a6d0a67096709e106e106270427040a020a02b700b700c5ffc5ff05fe05fe49fa49fa35f535f5c1f1c1f1b3f2b3f28cf78cf7c1fcc1fc24ff24ff83fe83fe14fd14fd17fd17fd3bff3bffad02ad0234063406fd08fd084f0a4f0afb08fb085304530435fe35fed6fad6fa08fd08fdce02ce02ce06ce065705570580ff80ff94f994f942f742f73df93df954fd54fd4500450024002400b5fdb5fd97fb97fbd9fbd9fb60fe60fe7f017f01a603a60352045204c603c603810281022601260170007000c300c300bf01bf0166026602da01da0106000600b4fdb4fd25fc25fc3dfc3dfcc3fdc3fd66ff66ffccffccffcffecffe88fd88fd20fd20fdc8fdc8fddcfedcfeb0ffb0ff02000200d1ffd1ff43ff43ffb5feb5feb5feb5fe9bff9bff1a011a0151025102770277029a019a01a400a400900090007a017a018b028b02c402c402d601d6013f003f00c9fec9fef5fdf5fdc9fdc9fdf9fdf9fd29fe29fe2cfe2cfe17fe17fe1dfe1dfe58fe58feb9feb9fe1dff1dff6bff6bff95ff95ff93ff93ff6fff6fff4eff4eff56ff56ff92ff92ffeeffeeff4a004a006f006f001d001d004aff4aff59fe59fee4fde4fd36fe36fe04ff04ffc7ffc7ff2b002b003d003d002e002e001c001c0002000200e4ffe4ffe7ffe7ff2c002c0091009100c500c500950095001f001f00abffabff6cff6cff65ff65ff74ff74ff67ff67ff23ff23ffbafebafe5dfe5dfe34fe34fe4efe4efe9dfe9dfe06ff06ff7eff7eff0b000b00b400b4005d015d01e001e001290229024102410225022502c401c4011e011e016c006c00f9fff9ffd7ffd7ffbdffbdff59ff59ffbafebafe44fe44fe3afe3afe76fe76feacfeacfedbfedbfe45ff45ff0c000c00f000f000850185019f019f016d016d013f013f013c013c015b015b01730173014b014b01bc00bc00f8fff8ff74ff74ff72ff72ffbaffbafff0fff0ffecffecffb8ffb8ff63ff63ff04ff04ffc0fec0feb5feb5fef6fef6fe8bff8bff4b004b00cb00cb00c300c3006d006d004e004e00a000a0002d012d019c019c01b301b3016e016e01ff00ff00a400a400740074005400540021002100c9ffc9ff59ff59ff08ff08ff0cff0cff55ff55ff96ff96ffa7ffa7ffa9ffa9ffbaffbaffd4ffd4fffdfffdff4a004a00a900a900e600e600f600f600f700f700ea00ea00a700a7002e002e00b6ffb6ff7fff7fff8fff8fffa9ffa9ff78ff78fff2fef2fe7ffe7ffe82fe82fedffedffe24ff24ff1dff1dfff4fef4fee3fee3fefbfefbfe3bff3bffa5ffa5ff33003300db00db008b018b011202120239023902fd01fd01970197013d013d01f200f200a400a40045004500dcffdcff80ff80ff4bff4bff48ff48ff64ff64ff7bff7bff76ff76ff71ff71ffacffacff460046000c010c017e017e010b010b0152ff52ffa7fca7fc61fa61fa0efa0efadafbdafb20fe20fe16ff16ff90fe90fec9fdc9fdebfdebfd63ff63ff1c021c029c059c05db08db08b60ab60ab40ab40a450945093a073a07230523050903090371007100c5fcc5fc15f815f8d3f3d3f35df25df20ff50ff561fa61faaefeaefe7aff7affaffdaffd43fc43fc29fd29fdf8fff8fff802f802f604f6045d065d06a208a208eb0beb0b7c0d7c0d270a270acc02cc02a3fca3fcf1fbf1fb8bff8bffc802c802900290025cff5cff6bfb6bfbc9f8c9f87ff87ff81afa1afae1fbe1fb96fc96fcfffcfffcd9fed9fe5102510263056305140614068e048e04a202a202c201c201120212020c030c032f042f04db04db045304530465026502cdffcdff9bfd9bfd5ffc5ffc24fc24fcc5fcc5fcdbfddbfdaafeaafeb4feb4fe48fe48fe33fe33fec7fec7fe95ff95ff130013004300430073007300b400b400d400d400e300e3005201520161026102a503a50344044404c703c70392029202900190015f015f01be01be01db01db012f012f01f9fff9ffd6fed6fe24fe24fee8fde8fd09fe09fe4efe4efe60fe60fe10fe10feabfdabfdaefdaefd35fe35fef3fef3fea3ffa3ff43004300e800e80083018301e501e501ef01ef01a501a50129012901a400a40029002900b4ffb4ff3eff3effdafedafeaefeaefed9fed9fe58ff58ff08000800bd00bd0058015801c901c90100020002f401f401ab01ab0142014201e500e500ba00ba00b900b900b200b2006a006a00dcffdcff31ff31ff94fe94fe15fe15fec9fdc9fde1fde1fd80fe80fe70ff70ff42004200b200b200e800e80041014101e801e801b002b002430343036c036c033e033e03e702e7027b027b02f801f8016d016d01f400f4007d007d00e7ffe7ff41ff41ffc6fec6fe87fe87fe52fe52fe0ffe0ffefcfdfcfd5dfe5dfe29ff29ff210021001801180104020402e302e3029a039a03f003f003b003b003f002f00223022302b001b001880188014b014b01ca00ca002700270087ff87fff1fef1fe74fe74fe3dfe3dfe62fe62fec5fec5fe32ff32ff90ff90ffddffddff1f001f006d006d00ef00ef00ad01ad016f026f02e602e602f602f602cb02cb029802980259025902e101e1012301230151005100acffacff4eff4eff20ff20ff0dff0dff0fff0fff25ff25ff48ff48ff7eff7effcfffcfff36003600a100a1000f010f0178017801c101c101cd01cd01a801a80180018001750175017a017a0162016201fc00fc004000400072ff72fff3fef3fed5fed5fed1fed1feb0feb0fe8cfe8cfe94fe94feb9feb9fed2fed2fedffedffe0fff0fff89ff89ff450045000f010f01ac01ac010a020a023e023e025e025e025902590220022002c701c7017701770136013601e800e80069006900bdffbdff19ff19ffc1fec1fecafecafe0bff0bff60ff60ffe8ffe8ffc200c200ad01ad01020202022801280110ff10ff6dfc6dfc6cfa6cfafaf9faf90afb0afba6fca6fcccfdccfd34fe34fe60fe60fe32ff32ff60016001e904e904e108e108e90be90b0e0d0e0d220c220c75097509910591052e012e01fcfcfcfc61f961f9a3f6a3f651f551f50af60af68df88df85dfb5dfbc5fcc5fc63fc63fc79fb79fb93fb93fb0cfd0cfd4dff4dff3802380267066706510b510b290e290e140c140ccc05cc05f2fff2ffd9fed9fe78027802e406e40644084408ab05ab05b700b700c2fbc2fb8ef88ef8abf7abf74ff84ff809f909f93bf93bf9bcf9bcf9a3fba3fba5fea5fe2c012c011b021b02f101f101ff01ff01f302f302890489042d062d0665076507ac07ac07900690062804280439013901b6feb6fe43fd43fd02fd02fd8bfd8bfd04fe04feb4fdb4fdb9fcb9fcfdfbfdfb3efc3efc51fd51fd8dfe8dfe92ff92ff55005500ab00ab005b005b00b7ffb7ffa9ffa9ffcf00cf00b002b0020f040f040d040d04db02db0279017901d400d400110111018f018f018c018c01c600c60091ff91ff64fe64fe85fd85fd12fd12fd19fd19fd87fd87fd25fe25febafebafe33ff33ff91ff91ffcfffcfffecffecff03000300350035007e007e00ba00ba00c400c400a100a100740074006b006b00890089008b008b000e000e00f0fef0fe90fd90fd90fc90fc53fc53fcc4fcc4fc8bfd8bfd68fe68fe46ff46ff0f000f009b009b00dd00dd000101010150015001e001e001720272029a029a0211021102f600f600beffbeffe9fee9fea6fea6febcfebcfecafecafea1fea1fe5afe5afe31fe31fe48fe48fe98fe98fe04ff04ff6cff6cffc4ffc4ff1a001a008d008d001c011c01a001a001e201e201ce01ce0172017201e900e9004c004c00bfffbfff6eff6eff6cff6cff99ff99ffbcffbcffb5ffb5ff92ff92ff79ff79ff7dff7dff99ff99ffc1ffc1fff3fff3ff320032007100710095009500920092008c008c00b600b600050105012c012c01eb00eb0053005300b4ffb4ff48ff48ff17ff17ff0dff0dff10ff10ff10ff10ff0bff0bff09ff09ff18ff18ff44ff44ff97ff97ff060006006d006d00a300a300a600a6009a009a009a009a00a000a0009b009b00810081005700570024002400f1fff1ffc1ffc1ff89ff89ff42ff42ff00ff00ffdffedffee9fee9fe15ff15ff5cff5cffb8ffb8ff09000900280028001e001e0022002200510051008700870095009500790079004b004b0011001100c3ffc3ff74ff74ff4fff4fff68ff68ff9cff9cffb1ffb1ff81ff81ff1fff1fffcafecafeb7feb7fee1fee1fe09ff09fff5fef5feaafeaafe62fe62fe4dfe4dfe6cfe6cfe9bfe9bfec2fec2fef3fef3fe4fff4fffd6ffd6ff59005900ad00ad00db00db000b010b0150015001900190019c019c014e014e01a300a300ceffceff1bff1bffbdfebdfeaefeaefec9fec9feeefeeefe02ff02ff04ff04ff18ff18ff73ff73ff1d001d00da00da004d014d0115011501daffdaffa8fda8fd46fb46fbecf9ecf933fa33fa65fb65fb2cfc2cfcdefbdefb15fb15fb16fb16fbe4fce4fcb300b300c405c405940a940a7b0d7b0da30da30d940b940bc408c4086e066e0694049404f401f40121fd21fd54f654f64cf04cf0aceeaceea1f2a1f231f931f988fd88fd4afd4afd55fa55fa78f878f8fcf9fcf953fe53fe46034603f506f5062e092e09140b140b040d040d150d150d0c090c0914021402fdfcfdfc55fd55fd45014501b203b203ea01ea01a9fda9fd17fa17fa9ef89ef8e4f8e4f800fa00fad9fad9fac1fac1fa9ffa9ffa81fc81fcf200f20070057005ba06ba065e045e04f700f70026ff26ff71ff71ff120112016a036a03c605c6059a069a067e047e041300130006fc06fcb5fab5fa1cfc1cfc58fe58fea3ffa3ff82ff82ff86fe86fe9efd9efd86fd86fd43fe43fe15ff15ff32ff32ff93fe93fee5fde5fdb1fdb1fdfcfdfcfda8fea8fec5ffc5ff4c014c01b502b502300330036902690214011401860086007f017f0136033603f003f003af02af02300030001cfe1cfe6bfd6bfdc4fdc4fd2cfe2cfef8fdf8fd3afd3afd85fc85fc68fc68fcedfcedfc95fd95fde0fde0fdcefdcefdcbfdcbfd2cfe2cfee9fee9fec6ffc6ffa000a0006b016b01fc01fc01f301f301040104016bff6bfff5fdf5fd63fd63fdbcfdbcfd48fe48fe5ffe5ffe12fe12fefcfdfcfd88fe88fe86ff86ff75007500f400f400f500f500ab00ab00720072008c008c00d100d100b700b700edffedffd2fed2fe15fe15feecfdecfdecfdecfda9fda9fd3dfd3dfd0afd0afd40fd40fdc6fdc6fd72fe72fe28ff28ffd3ffd3ff710071000e010e01a101a1010602060230023002340234021c021c02cf01cf0143014301a500a50022002200aeffaeff1fff1fff70fe70fec0fdc0fd31fd31fde0fce0fceefceefc66fd66fd1efe1efedbfedbfe8bff8bff3f003f00f100f10078017801bc01bc01c701c701aa01aa01670167010c010c01bc00bc008200820033003300abffabff06ff06ff8bfe8bfe60fe60fe75fe75feaffeaffe04ff04ff5eff5eff86ff86ff58ff58fffcfefcfed2fed2fe17ff17ffa9ffa9ff2e002e005f005f002f002f00ceffceff8eff8effa5ffa5ff0100010058005800750075006d006d006b006b006900690041004100f0fff0ff9fff9fff6dff6dff4fff4fff2dff2dff0aff0aff03ff03ff2aff2aff72ff72ffaaffaaffa8ffa8ff80ff80ff73ff73ffaeffaeff1a001a00750075007f007f001c001c0066ff66ffc6fec6feabfeabfe19ff19ff96ff96ffa7ffa7ff47ff47ffc1fec1fe5cfe5cfe2ffe2ffe2efe2efe2afe2afe08fe08fe01fe01fe7efe7efe78ff78ff62006200d600d6000401040141014101740174014d014d01d500d5006b006b003d003d0024002400f0fff0ff9fff9fff4aff4aff05ff05ffdbfedbfec0fec0feb5feb5fee3fee3fe7cff7cff7100710058015801a501a501da00da00bcfebcfed1fbd1fb83f983f928f928f9a1faa1fa60fc60fc13fd13fde2fce2fceffceffc20fe20fecd00cd00e704e704ae09ae09750d750d8f0e8f0eb60cb60c11091109bf04bf04d0ffd0ff24fa24faedf4edf48cf28cf268f468f417f917f909fd09fd7bfd7bfddefadefa4ff84ff893f893f88bfb8bfb97fe97febbffbbff4a004a00c503c503550b550bc912c912831383134c0b4c0bacffacff55f955f933fc33fc490449040a0a0a0ae608e608f601f601caf9caf998f498f4baf3baf396f596f589f789f75ef85ef836f936f9dafbdafb490049004a044a049c059c0557045704d702d7024a034a03bb05bb0573087308c609c6090c090c095406540627022702cdfdcdfd05fb05fbaffaaffaf0fbf0fbfafcfafcbffcbffca1fba1fbd7fad7fa61fb61fb50fd50fdabffabff2f012f016d016d012701270140014001a701a701be01be019401940100020002500350037b047b042204220427022702e5ffe5ffd8fed8fe51ff51ff6a006a00ec00ec0038003800bdfebdfe9dfd9dfdb2fdb2fdb2feb2fe7fff7fff59ff59ffaffeaffe8cfe8cfe66ff66ffa600a60054015401050105012000200062ff62ff49ff49ffbeffbeff52005200aa00aa00c600c600ce00ce00bb00bb004700470044ff44ffecfdecfde1fce1fcb7fcb7fc8bfd8bfde2fee2fefdfffdff73007300740074007b007b00c000c0002001200172017201be01be010e020e023f023f0225022502b401b401f900f9001500150054ff54ff05ff05ff0aff0affdafedafe35fe35fea0fda0fddcfddcfde2fee2fed8ffd8ff0a000a00bcffbcffd6ffd6ffd400d4003e023e0229032903140314034b024b027b017b010c010c01e700e700bf00bf007000700019001900e2ffe2ffcfffcfffc5ffc5ffb4ffb4ff9fff9fff8aff8aff86ff86ffc0ffc0ff5f005f003e013e01e901e9010a020a02b801b8014f014f01130113010a010a011101110103010301d800d800a100a100670067000b000b0084ff84ff1fff1fff3cff3cffd1ffd1ff5e005e009000900097009700c000c000fe00fe0013011301f700f700cf00cf00a500a5006a006a00380038003d003d006a006a008900890095009500b900b900f300f300fb00fb00a600a6002b002b00ebffebff1400140082008200ec00ec0015011501fb00fb00d500d500c200c200a100a10057005700110011000f000f004d004d0093009300cf00cf000e010e012e012e01f400f40078007800240024002f002f005400540037003700e2ffe2ff9bff9bff6eff6eff20ff20ff9dfe9dfe3afe3afe57fe57fedcfedcfe55ff55ff75ff75ff61ff61ff6cff6cffccffccff7f007f00560156010f020f027f027f02b402b402bf02bf0280028002d701d701fa00fa004a004a00eaffeaffbbffbbffb2ffb2ffd3ffd3ffeeffeeffc7ffc7ff8aff8aff9bff9bff0400040076007600de00de005c015c018a018a01860086003cfe3cfefbfbfbfb2afb2afba1fba1fb0bfc0bfca0fba0fbe1fae1facefacefa07fc07fcbdfebdfeb202b2020d070d07c40ac40a4f0d4f0d9b0e9b0e5e0e5e0e360c360c6c086c08c203c20365fe65fe3af83af895f295f268f068f058f358f330f930f969fd69fd65fd65fd84fa84fa3ff83ff8eef8eef870fc70fcf400f400a304a3041307130755095509270c270c010e010e060c060cbf05bf052fff2fff77fd77fd5201520115061506b006b006ad02ad029afd9afdb5fab5fa67fa67fa31fb31fb8afb8afbeffaeffa4afa4afa60fb60fbf0fef0fe3a033a035a055a0538043804750175015dff5dff02ff02ff62006200280328035806580616081608ef06ef066d036d03c6ffc6ffedfdedfd24fe24fe48ff48ff0e000e00e5ffe5ff22ff22ff8efe8efebdfebdfe7eff7eff000000009eff9eff93fe93fec7fdc7fddbfddbfda2fea2fe90ff90ff85008500bd01bd011f031f03fb03fb03c603c603db02db0244024402b402b402cc03cc0369046904be03be03160216027500750089ff89ff26ff26ffc7fec7fe3dfe3dfeb5fdb5fd67fd67fd85fd85fd29fe29fe09ff09ff82ff82ff45ff45ffd8fed8fe03ff03ffe3ffe3ffe900e90098019801e801e801f701f701d401d401a401a4019f019f01c401c401ce01ce0177017701b300b3009bff9bff59fe59fe30fd30fd8ffc8ffcd3fcd3fcf5fdf5fd63ff63ff590059008a008a0072007200c900c900b801b801a802a802f802f802a502a502150215027f017f01c500c500e6ffe6ff40ff40ff28ff28ff75ff75ffa4ffa4ff67ff67ffecfeecfe90fe90fe98fe98fe13ff13ffe3ffe3ffc900c9008b018b0121022102a502a5020e030e0323032303bf02bf02040204024c014c01dc00dc00a900a9006b006b00f5fff5ff78ff78ff54ff54ffaaffaaff2e002e006d006d0030003000abffabff60ff60ffbfffbfffb800b800b501b5012602260208020802c201c201ad01ad01d501d501130213021f021f02ba01ba01f700f7003f003f00ebffebfff0fff0ff100010002600260022002200fafffaffc4ffc4ffbdffbdfffefffeff5300530087008700a900a900d100d100e100e100a400a40032003200ebffebff1e001e00c100c10076017601cb01cb019101910109010901ad00ad00b800b800fa00fa0017011701e400e4008500850043004300520052009b009b00cb00cb00a200a20040004000fcfffcfff7fff7fff7fff7ffccffccffa0ffa0ffc5ffc5ff3c003c00a900a900bd00bd007e007e0027002700deffdeffb0ffb0ffa6ffa6ffccffccff0d000d002b002b00edffedff67ff67fff0fef0febefebefeb0feb0fe8ffe8ffe79fe79fec4fec4fe7aff7aff43004300c800c800080108012d012d015a015a0194019401c401c401c201c201820182012c012c01df00df0071007100c8ffc8ff39ff39ff25ff25ff5aff5aff5cff5cff2bff2bff4aff4affdfffdfff6a006a007e007e003c003c00f3fff3ff9fff9ffffcfefcfed1fdd1fd18fc18fc3afa3afa14f914f94ef94ef992fa92fae7fbe7fb02fd02fdb5feb5fece01ce01f005f005df09df099e0c9e0cea0dea0de00de00d8d0c8d0c010a010a65066506ce01ce012ffc2ffcf0f5f0f5a9f0a9f0a9eea9ee08f108f124f624f68dfa8dfabefbbefb12fa12fa2ef82ef8b4f8b4f83ffc3ffc38013801c505c505cc09cc09520e520ea812a812821382136d0e6d0eb105b10506ff06ffebfdebfd8a008a007a027a0252015201c2fdc2fd9bf99bf944f644f6a3f4a3f404f504f5c8f6c8f6f3f8f3f84ffb4ffb51fe51feb401b401fa03fa0305040504b102b1021802180257035703a305a3059b079b079b089b088208820803070307f103f10307000700a0fca0fcb0fab0fa46fa46fad8fad8faa9fba9fbf5fbf5fb80fb80fbf7faf7fa5ffb5ffbeffceffccdfecdfe1a001a00c700c700370137017e017e016f016f013c013c018e018e01cb02cb026b046b044d054d05b304b304f602f6022b012b0125002500d6ffd6ff9dff9dff03ff03ff24fe24fe6cfd6cfd2dfd2dfd5cfd5cfdacfdacfdcbfdcbfda3fda3fd64fd64fd5bfd5bfdb3fdb3fd5dfe5dfe21ff21ffd0ffd0ff6800680002010201860186018e018e01c200c20067ff67ff61fe61fe63fe63fe23ff23ff8dff8dffdcfedcfe81fd81fdb3fcb3fc32fd32fd97fe97fef1fff1ffbe00be001f011f014e014e0159015901490149012c012c01f500f500950095002e002e00fafffaffe4ffe4ff90ff90ffcafecafeb6fdb6fd9dfc9dfcc1fbc1fb74fb74fbfbfbfbfb2ffd2ffd82fe82fe77ff77ff0b000b00860086001b011b01c501c50165026502d902d90204030403e202e2028d028d022e022e02c501c501220122011f001f00e5fee5fed7fdd7fd37fd37fdf4fcf4fce1fce1fcf8fcf8fc41fd41fda8fda8fd07fe07fe59fe59feb8feb8fe56ff56ff66006600e901e9016a036a0328042804c103c1038e028e024a014a01760076001a001a00edffedffa5ffa5ff31ff31ffbdfebdfe74fe74fe49fe49fe15fe15fee1fde1fdd8fdd8fd0ffe0ffe86fe86fe42ff42ff27002700cb00cb00cb00cb005b005b002f002f00a700a7005d015d01a901a90162016201e000e0007800780024002400bcffbcff3dff3dffd4fed4fea9fea9feb5feb5fed0fed0fedffedffefafefafe4bff4bffcdffcdff3000300025002500c0ffc0ff7bff7bffb2ffb2ff37003700890089006d006d002500250002000200f9fff9ffbcffbcff2bff2bff73fe73fee4fde4fdbcfdbcfd00fe00fe62fe62fe71fe71fe0ffe0ffea6fda6fdb9fdb9fd4ffe4ffe08ff08ff99ff99ff060006006a006a00c300c3000e010e014601460149014901eb00eb004c004c00d4ffd4ffbdffbdffcdffcdffa9ffa9ff40ff40ffc2fec2fe52fe52fe0ffe0ffe23fe23fea1fea1fe63ff63ff410041003901390114021402110211026c006c006afd6afd74fa74fae6f8e6f8eff8eff8c1f9c1f98efa8efa27fb27fbd8fbd8fb1cfd1cfd74ff74ff2a032a03de07de07480c480cb00eb00ec30dc30d5409540991029102c1fbc1fb62f762f7c6f6c6f60ef90ef9b9fbb9fb7efc7efce2fae2fa25f825f80bf60bf6bff5bff567f767f76efa6efa46fe46fe0f030f03f908f908ae0eae0e27112711570e570e220822086203620311031103d104d10463036303a5fca5fc65f465f4bdf0bdf0dff3dff312fa12faaefdaefd96fc96fc99f999f91af91af9eefceefc2d032d0320082008110911090b060b06a601a60102ff02ff84ff84ff390239021005100549064906050505056e016e01effceffcaaf9aaf9ecf8ecf826fa26fab3fbb3fb7afc7afc96fc96fcc1fcc1fc92fd92fd30ff30ff4f014f0141034103510451043f043f04670367034b024b0214011401bdffbdffb2feb2feaffeaffebaffbaff90009000d5ffd5ffbffdbffdf9fbf9fbdcfbdcfb26fd26fd8bfe8bfe0eff0effb9feb9fe62fe62feddfeddfe3000300073017301c601c6013c013c019b009b0048004800e8ffe8ff16ff16ff10fe10fe7ffd7ffdb3fdb3fd54fe54fecffecffee5fee5fec4fec4fec4fec4fe13ff13ff9bff9bff0b000b00040004007cff7cffeffeeffeedfeedfe81ff81ff260026004500450097ff97ff3dfe3dfebcfcbcfcc6fbc6fba1fba1fbe8fbe8fb22fc22fc6dfc6dfc30fd30fd59fe59fe55ff55ffd9ffd9ff3b003b00ef00ef00df01df01840284027b027b02e001e0012d012d01cc00cc00c600c600d000d00088008800c8ffc8ffcafecafefdfdfdfd9cfd9cfd73fd73fd20fd20fd8efc8efc1cfc1cfc33fc33fcdafcdafcbcfdbcfd79fe79fefafefafe73ff73ff24002400140114010002000296029602b102b10276027602390239022c022c0227022702c501c501dd00dd00bcffbcffd6fed6fe5afe5afe2cfe2cfe1dfe1dfe0afe0afedbfddbfd9dfd9dfd86fd86fdc4fdc4fd4ffe4ffee8fee8fe62ff62ffcdffcdff5700570006010601a101a101ef01ef01eb01eb01b401b4015d015d01fb00fb00ae00ae008b008b007500750031003100a1ffa1ffe0fee0fe2bfe2bfeaffdaffd73fd73fd74fd74fdc1fdc1fd50fe50fee9fee9fe56ff56ff9eff9effebffebff47004700a600a6000d010d0176017601b101b1019301930136013601dd00dd00a400a400750075002c002c00c6ffc6ff57ff57fffdfefdfec3fec3fea5fea5fea6fea6fecafecafe01ff01ff32ff32ff57ff57ff77ff77ff91ff91ffa3ffa3ffb2ffb2ffc0ffc0ffbeffbeffa4ffa4ff78ff78ff3cff3cfff6fef6feb3feb3fe7efe7efe57fe57fe48fe48fe68fe68feaffeaffef6fef6fe2fff2fff79ff79ffeeffeeff8b008b003c013c01cb01cb01f401f4019e019e010101010168006800f6fff6ffafffafff95ff95ff91ff91ff7aff7aff3fff3fff04ff04ff08ff08ff74ff74ff4100410029012901d001d001d001d001dc00dc0019ff19ff4cfd4cfd2ffc2ffc7dfb7dfb43fa43fa5ef85ef8fdf6fdf650f750f750f950f92ffc2ffc67ff67ffd702d70254065406a409a409af0caf0c400f400fa210a210e70fe70fa70ca70c4207420761006100caf8caf810f210f2a0eea0eef6eff6efadf4adf43cf93cf9fcfafcfa0afa0afa6ef86ef847f847f8a0faa0fa06ff06ffd603d603880788070e0a0e0a5e0c5e0c6e0e6e0e3d0e3d0efe09fe093303330382fe82fe23ff23ff130313032e052e05de02de0225fe25fe46fa46fa78f878f84af84af816f916f917fa17fab6fab6faa3fba3fb3bfe3bfe25022502ed04ed04b204b20435023502c5ffc5ff2cff2cffec00ec006b046b04fd07fd0779097909a007a00744034403e7fee7fed0fcd0fc43fd43fd94fe94fe14ff14ff95fe95feeefdeefdb5fdb5fdf4fdf4fd93fe93fe4dff4dff8fff8fff0cff0cff55fe55fe44fe44fee4fee4fe70ff70ff81ff81ffb1ffb1ffd500d500be02be023a043a04590459047c037c03e202e2025003500353045304be04be04ce03ce03c401c40197ff97ff1cfe1cfe7afd7afd53fd53fd38fd38fd02fd02fdcbfccbfcc9fcc9fc18fd18fd9ffd9ffd3cfe3cfef4fef4fee6ffe6ff04010401fd01fd01820282028d028d02520252020a020a02de01de01d801d801ce01ce01520152010b000b002ffe2ffe88fc88fce5fbe5fb73fc73fcb6fdb6fdf0fef0fea2ffa2ffcbffcbffdbffdbff4c004c00380138014c024c02180318035e035e031903190371027102a401a401e100e1002e002e007cff7cffc5fec5fe1efe1efeb9fdb9fdc3fdc3fd26fe26fe7ffe7ffe8bfe8bfe89fe89fefdfefdfe1a001a0090019001d002d00275037503890389036d036d03720372037e037e03360336036c026c024f014f01330033006aff6aff19ff19ff11ff11fff0fef0fe8afe8afe13fe13fed8fdd8fdf9fdf9fd73fe73fe4aff4aff7c007c00df01df010d030d039203920354035403c702c70287028702bd02bd0201030103dc02dc022a022a0213011301e7ffe7fffffefffe8cfe8cfe84fe84feb2feb2fee0fee0fef9fef9fe18ff18ff6dff6dfffdfffdff990099001301130169016901a301a301cc01cc01fe01fe0144024402790279026602660209020902910191011f011f01bd00bd006c006c0024002400e4ffe4ffbcffbcffc3ffc3ffe6ffe6fffafffafff1fff1ffebffebff15001500800080000a010a01660166015c015c0106010601b400b4009a009a00a300a300950095005500550005000500d5ffd5ffc6ffc6ffbdffbdffb5ffb5ffbfffbfffcdffcdffcbffcbffccffccffecffecff1d001d00410041005b005b0068006800490049000a000a00f3fff3ff2e002e0097009700f700f700260126010f010f01d300d300c100c100e700e700f800f800dc00dc00f100f10052015201640164016d006d0061fe61fe01fc01fc76fa76fac5fac5faf1fcf1fcafffafff6b016b01ce01ce01ef01ef01f302f3029004900401050105e502e5024aff4aff4bfd4bfd00ff00ff13031303e405e405e504e504a400a4001bfc1bfc60fa60fa45fc45fcb0ffb0ff790179014a004a009afd9afd0bfc0bfc1bfd1bfd2f002f00440344039a049a040a040a04cd02cd0211021102f201f201d001d0013a013a017c007c00640064006e016e0108030803e103e10325032503330133011eff1effd8fdd8fdc1fdc1fd8bfe8bfe5eff5eff77ff77ffdafedafe58fe58fee0fee0fea800a800db02db02180418048f038f03d301d3016500650064006400a001a001cc02cc02a402a4021201120143ff43ff8bfe8bfe3bff3bff86008600540154010d010d01e9ffe9ffbafebafe39fe39fe7efe7efe29ff29ffe4ffe4ff8b008b000f010f0173017301c701c701f101f101c001c0013f013f01c400c40095009500ba00ba00140114016301630158015801ea00ea00760076005e005e0099009900d700d700d100d10071007100bcffbcffcefecefee6fde6fd5cfd5cfd82fd82fd5cfe5cfe8aff8aff8f008f000c010c01bb00bb008fff8fff32fe32fed6fdd6fd01ff01ffc100c100a301a3014301430195009500a700a70085018501660266029702970229022902c101c101de01de014d024d023a023a02ee00ee00adfeadfebdfcbdfc41fc41fc12fd12fd01fe01fe32fe32fec1fdc1fd41fd41fd25fd25fdaffdaffddefedefe400040003501350195019501cb01cb014a024a021e031e03f603f60367046704260426044c034c03460246028201820117011701cb00cb00550055008eff8eff8ffe8ffea5fda5fd26fd26fd35fd35fda4fda4fd10fe10fe31fe31fe28fe28fe66fe66fe34ff34ff5a005a004f014f01bf01bf01d201d201fa01fa018702870256035603e103e103a903a903ae02ae0277017701a700a7006700670053005300f4fff4ff44ff44ff9ffe9ffe53fe53fe62fe62fea7fea7fe07ff07ff66ff66ffa1ffa1ffabffabffa6ffa6ffc8ffc8ff2400240092009200db00db00ed00ed00e200e200d600d600cc00cc00b800b800950095006c006c004e004e0048004800520052005d005d00640064006b006b005e005e002d002d00ecffecffbdffbdffacffacffa7ffa7ffa0ffa0ff8dff8dff6cff6cff51ff51ff5cff5cff94ff94ffdeffdeff190019002f002f0013001300d7ffd7ffb1ffb1ffc8ffc8ff0d000d005300530085008500a500a500b200b200ab00ab00a500a500b300b300c600c600b100b10060006000f7fff7ffa6ffa6ff75ff75ff4cff4cff26ff26ff13ff13ff1aff1aff3bff3bff7fff7fffe2ffe2ff320032003900390003000300dbffdbffebffebff280028006a006a00980098009e009e0084008400710071007b007b00880088006d006d002e002e00f3fff3ffe1ffe1fff9fff9ff29002900500050005d005d005b005b005f005f006c006c00720072006200620032003200e6ffe6ff9bff9bff71ff71ff61ff61ff47ff47ff1fff1fff0aff0aff20ff20ff50ff50ff88ff88ffc3ffc3ffffffffff320032005c005c008000800099009900ac00ac00cc00cc00f700f7001101110101010101ce00ce00940094005e005e002a002a00eeffeeffa0ffa0ff47ff47fffafefafecefecefec1fec1fecffecffef4fef4fe27ff27ff5aff5aff83ff83ffa6ffa6ffc6ffc6ffe6ffe6ff0700070023002300330033003e003e005800580085008500af00af00c100c100b600b600910091005300530006000600c8ffc8ffadffadffa7ffa7ff9aff9aff7eff7eff65ff65ff62ff62ff6cff6cff69ff69ff4fff4fff2bff2bff18ff18ff32ff32ff7bff7bffdeffdeff39003900730073008b008b009200920097009700a500a500b800b800bd00bd009b009b0053005300fdfffdffb5ffb5ff88ff88ff72ff72ff6bff6bff69ff69ff6eff6eff85ff85ffafffafffe0ffe0ff070007001d001d002300230018001800ffffffffe6ffe6ffe5ffe5ff020002001f001f001f001f0006000600f4fff4fff9fff9ff100010002a002a003d003d00430043003c003c0031003100280028001d001d000d000d00f1fff1ffc0ffc0ff83ff83ff56ff56ff4fff4fff67ff67ff87ff87ffa4ffa4ffbeffbeffd9ffd9fff7fff7ff1a001a0038003800430043003300330010001000ecffecffd4ffd4ffc8ffc8ffc3ffc3ffc0ffc0ffbdffbdffbaffbaffbcffbcffccffccffe5ffe5fff7fff7fff3fff3ffe1ffe1ffceffceffc1ffc1ff4c4953542e000000494e464f49534654220000004c61766635382e37362e31303020286c6962736e6466696c652d312e302e33312900696433202c000000494433030000000000215458585800000017000000536f667477617265004c61766635382e37362e31303000";
4 | byte[] quackBytes = HexFormat.of().parseHex(QUACK);
5 | var quackByteStream = new java.io.ByteArrayInputStream(quackBytes);
6 |
7 | try{
8 | Class> audioSystemClass = Class.forName("javax.sound.sampled.AudioSystem");
9 | Class> clipClass = Class.forName("javax.sound.sampled.Clip");
10 | Class> audioInputStreamClass = Class.forName("javax.sound.sampled.AudioInputStream");
11 |
12 | Object audioInputStream = audioSystemClass.getMethod("getAudioInputStream", java.io.InputStream.class)
13 | .invoke(null, quackByteStream);
14 | Object clip = audioSystemClass.getMethod("getClip")
15 | .invoke(null);
16 | clipClass.getMethod("open", audioInputStreamClass)
17 | .invoke(clip, audioInputStream);
18 | clipClass.getMethod("start")
19 | .invoke(clip);
20 |
21 | }
22 | catch(Exception e){
23 | // ran out of ducks
24 | }
25 |
26 | return true;
--------------------------------------------------------------------------------