TIA-Portal curso SCE (S7-1200) TIA-Portal V13...
SCE Training Curriculum | TIA Portal Module 031-100, Edition 02/2016 | Digital Factory, DF FA
Matching SCE Trainer Packages for these training curriculums • SIMATIC S7-1200 AC/DC/RELAY (set of 6) "TIA Portal" Order no.: 6ES7214-1BE30-4AB3 • SIMATIC S7-1200 DC/DC/DC (set of 6) "TIA Portal" Order no.: 6ES7214-1AE30-4AB3 • Upgrade SIMATIC STEP 7 BASIC V13 SP1 (for S7-1200) (set of 6) "TIA Portal" Order no.: 6ES7822-0AA03-4YE5
Note that these trainer packages are replaced with successor packages when necessary. An overview of the currently available SCE packages is available at: siemens.com/sce/tp
Continued training For regional Siemens SCE continued training, get in touch with your regional SCE contact siemens.com/sce/contact
Additional information regarding SCE siemens.com/sce
Information regarding use The SCE training curriculum for the integrated automation solution Totally Integrated Automation (TIA) was prepared for the program "Siemens Automation Cooperates with Education (SCE)" specifically for training purposes for public educational facilities and R&D institutions. Siemens AG does not guarantee the contents. This document is to be used only for initial training on Siemens products/systems, which means it can be copied in whole or part and given to those being trained for use within the scope of their training. Circulation or copying this training curriculum and sharing its content is permitted within public training and advanced training facilities for training purposes. Exceptions require written consent from the Siemens AG contact person: Roland Scheuerer
[email protected]. Offenders will be held liable. All rights including translation are reserved, particularly if a patent is granted or a utility model or design is registered. Use for industrial customer courses is explicitly not permitted. We do not consent to commercial use of the training curriculums. We wish to thank the TU Dresden, particularly Prof. Dr.-Ing. Leon Urbas and Dipl.-Ing. Annett Pfeffer, the Michael Dziallas Engineering Corporation and all other involved persons for their support during the preparation of this training curriculum.
For unrestricted use in educational and R&D institutions. © Siemens AG 2016. All rights reserved. SCE_EN_031-100 FC-Programming S7-1200_R1504.docx
2
SCE Training Curriculum | TIA Portal Module 031-100, Edition 02/2016 | Digital Factory, DF FA
Table of contents 1
Goal ...................................................................................................................................................... 4
2
Prerequisite ........................................................................................................................................... 4
3
Theory ................................................................................................................................................... 4 3.1
Operating system and application program .................................................................................. 4
3.2
Organization blocks ...................................................................................................................... 5
3.3
Process image and cyclic program processing ............................................................................ 6
3.4
Functions ...................................................................................................................................... 8
3.5
Function blocks and instance data blocks .................................................................................... 9
3.6
Global data blocks ...................................................................................................................... 10
3.7
Library-compatible logic blocks................................................................................................... 11
3.8
Programming languages ............................................................................................................. 12
4
Task .................................................................................................................................................... 13
5
Planning .............................................................................................................................................. 13
6
7
8
5.1
EMERGENCY STOP .................................................................................................................. 13
5.2
Manual mode – Conveyor motor in manual mode...................................................................... 13
5.3
Technology diagram ................................................................................................................... 14
5.4
Reference list .............................................................................................................................. 15
Structured step-by-step instructions ................................................................................................... 16 6.1
Retrieve an existing project ........................................................................................................ 16
6.2
Create a new tag table ................................................................................................................ 17
6.3
Create new tags within a tag table ............................................................................................. 19
6.4
Import "Tag_table_sorting_station"............................................................................................. 20
6.5
Create function FC1 "MOTOR_MANUAL" for the conveyor motor in manual mode ................. 24
6.6
Define the Interface of function FC1 "MOTOR_MANUAL" ......................................................... 26
6.7
Program FC1: MOTOR_MANUAL .............................................................................................. 29
6.8
Program the organization block OB1 – Control conveyor tracking forwards in manual mode ... 36
6.9
Save and compile the program ................................................................................................... 41
6.10
Download the program ............................................................................................................... 42
6.11
Monitor program blocks .............................................................................................................. 43
6.12
Archive the project ...................................................................................................................... 45
6.13
Checklist ..................................................................................................................................... 46
Exercise .............................................................................................................................................. 47 7.1
Task – Exercise .......................................................................................................................... 47
7.2
Technology diagram ................................................................................................................... 47
7.3
Reference list .............................................................................................................................. 48
7.4
Planning ...................................................................................................................................... 48
7.5
Checklist – Exercise ................................................................................................................... 49
Additional information ......................................................................................................................... 50
For unrestricted use in educational and R&D institutions. © Siemens AG 2016. All rights reserved. SCE_EN_031-100 FC-Programming S7-1200_R1504.docx
3
SCE Training Curriculum | TIA Portal Module 031-100, Edition 02/2016 | Digital Factory, DF FA
BASICS OF FC PROGRAMMING 1 Goal In this chapter, you will get to know the basic elements of a control program – the organization blocks (OBs), functions (FCs), function blocks (FBs) and data blocks (DBs). In addition, you will be introduced to library-compatible function und function block programming. You will get to know the Function Block Diagram (FBD) programming language and use it to program a function (FC1) and an organization block (OB1).
2 Prerequisite This chapter builds on the hardware configuration of SIMATIC S7 CPU1214C. However, other hardware configurations that have digital input and output cards can be used. For this chapter, you can use the following project, for example: SCE_EN_011_101_Hardware_Configuration_CPU1214C.zap13
3 Theory 3.1 Operating system and application program Every controller (CPU) contains an operating system, which organizes all functions and sequences of the CPU that are not associated with a specific control task. The tasks of the operating system include the following:
Performing a warm restart
Updating the process image of the inputs and output
Cyclically calling the user program
Detecting interrupts and calling interrupt OBs
Detecting and handling errors
Managing memory areas
The operating system is an integral component of the CPU and comes pre-installed. The user program contains all functions that are necessary for executing your specific automation task. The tasks of the user program include the following:
Checking the basic requirements for a warm restart using startup OBs
Processing of process data, i.e. activation of output signals as a function of the input signal states
Reaction to interrupts and interrupt inputs
Error handling during normal program execution
For unrestricted use in educational and R&D institutions. © Siemens AG 2016. All rights reserved. SCE_EN_031-100 FC-Programming S7-1200_R1504.docx
4
SCE Training Curriculum | TIA Portal Module 031-100, Edition 02/2016 | Digital Factory, DF FA
When a start event occurs, the following reactions are possible:
If an OB has been assigned to the event, this event triggers the execution of the assigned OB. If the priority of the assigned OB is greater than the priority of the OB that is currently being executed, it is executed immediately (interrupt). If not, the assigned OB waits until the higher-priority OB has been completely executed
If you have not assigned an OB to the event, the default system reaction is performed.
Table 1 shows examples for various start events for a SIMATIC S7-1200. Also shown are the possible OB number(s) and the default system reactions that occur when the respective organization block (OB) is not present in the controller. Start event
Possible OB numbers
Default system reaction
Startup
100, 123
Ignore
Cyclic program
1, 123
Ignore
Time-of-day interrupt
10 to 11
-
Update interrupt
56
Ignore
Scan cycle monitoring time exceeded once
80
Ignore
Scan cycle monitoring time exceeded twice
80
STOP
Diagnostic interrupt
82
Ignore
Table 1: OB numbers for various start events
3.3 Process image and cyclic program processing When the cyclic user program addresses the inputs (I) and outputs (O), it does not query the signal states directly from the input/output modules. Instead, it accesses a memory area of the CPU. This memory area contains an image of the signal states and is called the process image.
For unrestricted use in educational and R&D institutions. © Siemens AG 2016. All rights reserved. SCE_EN_031-100 FC-Programming S7-1200_R1504.docx
6
SCE Training Curriculum | TIA Portal Module 031-100, Edition 02/2016 | Digital Factory, DF FA
The cyclic program processing sequence is as follows: 1.
At the start of the cyclic program, a query is sent to determine whether or not the
individual inputs are energized. This status of the inputs is stored in the process image of the inputs (PII). In doing so, the information 1 or "High" is stored for energized inputs and the information 0 or "Low" for de-energized inputs. 2.
The CPU then executes the program stored in the cyclic organization block. For the
required input information, the CPU accesses the previously read process image of the inputs (PII) and the results of logic operation (RLOs) are written to a so-called process image of the outputs (PIQ). 3.
At the end of the cycle, the process image of the outputs (PIQ) is transferred as the
signal state to the output modules and these are energized or de-energized. The sequence then continues again with Item 1. 1. Save status of inputs in PII.
PLC program in the program memory 2. Processing the program instruction-byinstruction with access to PII and PIQ
1st instruction 2nd instruction 3rd instruction 4th instruction ...
Last instruction
PII Local data Bit memory Data blocks PIQ
3. Transfer status from the PIQ to the outputs. Figure 2: Cyclic program processing
Note: The time the CPU needs for this sequence is called cycle time. This depends, in turn, on the number and type of instructions and the processor performance of the controller.
For unrestricted use in educational and R&D institutions. © Siemens AG 2016. All rights reserved. SCE_EN_031-100 FC-Programming S7-1200_R1504.docx
7
SCE Training Curriculum | TIA Portal Module 031-100, Edition 02/2016 | Digital Factory, DF FA
3.4 Functions Functions (FCs) are logic blocks without memory. They have no data memory in which values of block parameters can be stored. Therefore, all interface parameters must be connected when a function is called. To store data permanently, global data blocks must be created beforehand. A function contains a program that is executed whenever the function is called from another logic block. Functions can be used, for example, for the following purposes:
Math functions – that return a result dependent on input values.
Technological functions – such as individual controls with binary logic operations.
A function can also be called several times at different points within a program.
Organization block Main [OB1] Calls the MOTOR_MANUAL [FC1] function
Function MOTOR_MANUAL [FC1] Contains a program for controlling a conveyor in manual mode, for example. The function has no memory.
Figure 3: Function with call from organization block Main [OB1]
For unrestricted use in educational and R&D institutions. © Siemens AG 2016. All rights reserved. SCE_EN_031-100 FC-Programming S7-1200_R1504.docx
8
SCE Training Curriculum | TIA Portal Module 031-100, Edition 02/2016 | Digital Factory, DF FA
3.5 Function blocks and instance data blocks Function blocks are logic blocks that store their input, output and in-out tags as well as static tags permanently in instance data blocks, so that they are available after the block has been executed. For this reason, they are also referred to as blocks with "memory". Function blocks can also operate with temporary tags. Temporary tags are not stored in the instance DB, however. Instead, they are only available for one cycle. Function blocks are used for tasks that cannot be implemented with functions:
Whenever timers and counters are required in the blocks, or
When information must be stored in the program, such as preselection of the operating mode with a button.
Function blocks are always executed when called from another logic block. A function block can also be called several times at different points within a program. This facilitates the programming of frequently recurring complex functions. A call of a function block is referred to as an instance. Each instance of a function block is assigned a memory area that contains the data that the function block uses. This memory is made available by data blocks created automatically by the software. It is also possible to provide memory for multiple instances in one data block in the form of a multi-instance. The maximum size of instance data blocks varies depending on the CPU. The tags declared in the function block determine the structure of the instance data block.
Organization block Main [OB1] Calls function block MOTOR_AUTO [FB1] together with its instance data block MOTOR_AUTO_DB1 [DB1]
Instance data block MOTOR_AUTO_DB1 [DB1] as memory for the call Function block of function MOTOR_AUTO [FB1] block MOTOR_AUTO Contains a program for [FB1] controlling a conveyor in automatic mode, for example. The function block uses instance data block MOTOR_AUTO_DB1 [DB1] as memory in this call.
Figure 4: Function block and instance with call from organization block Main [OB1]
For unrestricted use in educational and R&D institutions. © Siemens AG 2016. All rights reserved. SCE_EN_031-100 FC-Programming S7-1200_R1504.docx
9
SCE Training Curriculum | TIA Portal Module 031-100, Edition 02/2016 | Digital Factory, DF FA
3.6 Global data blocks In contrast to logic blocks, data blocks contain no instructions. Rather, they serve as memory for user data. Data blocks thus contain variable data that is used by the user program. You can define the structure of global data blocks as required. Global data blocks store data that can be used by all other blocks (see Figure 5). Only the associated function block should access instance data blocks. The maximum size of data blocks varies depending on the CPU.
Function_10 Global DB (DB_Global)
Access for all blocks
Function_11
Function block_12
Instance DB (DB_Instance)
Access only for function data block_12
Figure 5: Difference between global DB and instance DB.
Application examples for global data blocks are:
Saving of information about a storage system. "Which product is located where?"
Saving of recipes for particular products.
For unrestricted use in educational and R&D institutions. © Siemens AG 2016. All rights reserved. SCE_EN_031-100 FC-Programming S7-1200_R1504.docx
10
SCE Training Curriculum | TIA Portal Module 031-100, Edition 02/2016 | Digital Factory, DF FA
3.7 Library-compatible logic blocks A user program can be created with linear or structured programming. Linear programming writes the entire user program in the cycle OB, but is only suitable for very simple programs for which other less expensive control systems, such as LOGO!, can now be used. For more complex programs, structured programming is always recommended. Here, the overall automation task can be broken down into small sub-tasks in order to implement a solution for them in functions and function blocks. In this case, library-compatible logic blocks should be created preferentially. This means that the input and output parameters of a function or function block are defined generally and only supplied with the current global tags (inputs/outputs) when the block is used.
Figure 6: Library-compatible function with call in OB1
For unrestricted use in educational and R&D institutions. © Siemens AG 2016. All rights reserved. SCE_EN_031-100 FC-Programming S7-1200_R1504.docx
11
SCE Training Curriculum | TIA Portal Module 031-100, Edition 02/2016 | Digital Factory, DF FA
3.8 Programming languages For SIMATIC S7-1200, the available programming languages for programming functions and function blocks are Function Block Diagram (FBD), Ladder Logic (LAD) and Structured Control Language (SCL). The Function Block Diagram (FBD) programming language will be presented in the following. FBD is a graphical programming language. The representation is based on electronic switching systems. The program is mapped in networks. A network contains one or more logic operation paths. Binary and analog signals are linked together by boxes. The graphical logic symbols known from Boolean algebra are used to represent the binary logic. You can use binary functions to query binary operands and to logically combine their signal states. The following instructions are examples of binary functions: "AND operation", "OR operation" and "EXCLUSIVE OR operation". These are shown in Figure 7.
Figure 7: Binary functions in FBD and associated logic table
You can thus use simple instructions, for example, to control binary outputs, evaluate edges and execute jump functions in the program. Program elements such as IEC timers and IEC counters provide complex instructions. The empty box serves as a placeholder in which you can select the required instruction. Enable input EN (enable) / Enable output ENO (enable output) mechanism:
An instruction without EN/ENO mechanism is executed independent of the signal state at the box inputs.
Instructions with EN/ENO mechanism are only executed if enable input "EN input has signal state "1". When the box is processed correctly, enable output "ENO" has signal state "1". If an error occurs during processing, the enable output "ENO" is reset. If enable input EN is not connected, the box is always executed.
For unrestricted use in educational and R&D institutions. © Siemens AG 2016. All rights reserved. SCE_EN_031-100 FC-Programming S7-1200_R1504.docx
12
SCE Training Curriculum | TIA Portal Module 031-100, Edition 02/2016 | Digital Factory, DF FA
4 Task The following functions of the sorting station process description will be planned, programmed and tested in this chapter:
Manual mode – Control of conveyor tracking forwards in manual/jog mode
5 Planning The programming of all functions in OB1 is not recommended for reasons of clarity and reusability. The majority of the program code will therefore be moved into functions (FCs) and function blocks (FBs). The decision on which functions is to be moved to FCs and which is to run in OB 1 is planned below.
5.1 EMERGENCY STOP The EMERGENCY STOP does not require a separate function. Just like the operating mode, the current state of the EMERGENCY STOP relay can be used directly at the blocks.
5.2 Manual mode – Conveyor motor in manual mode Manual mode of the conveyor motor is to be encapsulated in a function (FC) "MOTOR_MANUAL". On the one hand, this preserves the clarity of OB1. On the other hand, it enables reuse if another conveyor belt is added to the station. Table 2 lists the planned parameters. Input
Data type
Comment
Manual_mode_active
BOOL
Manual mode activated
BOOL
Pushbutton to switch on conveyor in manual mode
BOOL
All enable conditions OK
BOOL
Safety shutoff active e.g. emergency stop operated
BOOL
Control of the conveyor motor in manual mode
Pushbutton_manual_mode Enable_OK Safety_shutoff_active Output Conveyor_motor_manual_mode
Table 2: Parameters for FC "MOTOR_MANUAL"
Output Conveyor_motor_manual_mode is ON as long as Pushbutton_manual_mode is pressed, manual mode is activated, the enable conditions are met and the safety shutoff is not active.
For unrestricted use in educational and R&D institutions. © Siemens AG 2016. All rights reserved. SCE_EN_031-100 FC-Programming S7-1200_R1504.docx
13
SCE Training Curriculum | TIA Portal Module 031-100, Edition 02/2016 | Digital Factory, DF FA
5.3 Technology diagram Here, you see the technology diagram for the task.
Figure 8: Technology diagram
Figure 9: Control panel
For unrestricted use in educational and R&D institutions. © Siemens AG 2016. All rights reserved. SCE_EN_031-100 FC-Programming S7-1200_R1504.docx
14
SCE Training Curriculum | TIA Portal Module 031-100, Edition 02/2016 | Digital Factory, DF FA
5.4 Reference list The following signals are needed as operands for this task. DI
Type
Identifier
I 0.0
BOOL
-A1
Return signal emergency stop ok
NC
I 0.1
BOOL
-K0
Main switch "ON"
NO
I 0.2
BOOL
-S0
Mode selector manual (0)/ automatic (1)
Function
NC/NO
Manual = 0 Auto = 1
I 0.5
BOOL
-B1
Sensor cylinder M4 retracted
NO
I 1.4
BOOL
-S3
Pushbutton manual mode conveyor M1 forward
NO
I 1.5
BOOL
-S4
Pushbutton manual mode conveyor M1 reverse
NO
DO
Type
Identifier
Q 0.0
BOOL
-Q1
Function Conveyor motor M1 forwards fixed speed
Legend for reference list
DI
Digital Input
DO
Digital Output
AI
Analog Input
AO
Analog Output
I
Input
Q
Output
NC
Normally Closed
NO
Normally Open
For unrestricted use in educational and R&D institutions. © Siemens AG 2016. All rights reserved. SCE_EN_031-100 FC-Programming S7-1200_R1504.docx
15
SCE Training Curriculum | TIA Portal Module 031-100, Edition 02/2016 | Digital Factory, DF FA
6 Structured step-by-step instructions You can find instructions on how to carry out planning below. If you already have a good understanding of everything, it is sufficient to focus on the numbered steps. Otherwise, simply follow the detailed steps in the instructions.
6.1 Retrieve an existing project Before we can start programming the function (FC) "MOTOR_MANUAL", we need a project with a hardware configuration (e.g. SCE_EN_011_101_Hardware_Configuration_CPU1214C.zap13). To retrieve an existing project that has been archived, you must select the relevant archive with Project Retrieve in the project view. Confirm your selection with Open ( Project Retrieve Select a .zap archive Open).
The next step is to select the target directory where the retrieved project will be stored. Confirm your selection with "OK". ( Target directory OK)
For unrestricted use in educational and R&D institutions. © Siemens AG 2016. All rights reserved. SCE_EN_031-100 FC-Programming S7-1200_R1504.docx
16
SCE Training Curriculum | TIA Portal Module 031-100, Edition 02/2016 | Digital Factory, DF FA
6.2 Create a new tag table In the project view, navigate to the PLC tags of your controller and create a new tag table by double-clicking Add new tag table.
For unrestricted use in educational and R&D institutions. © Siemens AG 2016. All rights reserved. SCE_EN_031-100 FC-Programming S7-1200_R1504.docx
17
SCE Training Curriculum | TIA Portal Module 031-100, Edition 02/2016 | Digital Factory, DF FA
Rename the tag table you just created as "Tag_table_sorting_station" ( right-click "Tag_table_1" "Rename" Tag_table_sorting_station).
Open this tag table with a double-click. ( Tag_table_sorting_station)
For unrestricted use in educational and R&D institutions. © Siemens AG 2016. All rights reserved. SCE_EN_031-100 FC-Programming S7-1200_R1504.docx
18
SCE Training Curriculum | TIA Portal Module 031-100, Edition 02/2016 | Digital Factory, DF FA
6.3 Create new tags within a tag table Add the name Q1 and confirm the entry with the Enter key. If you have not yet created additional tags, TIA Portal now automatically assigns data type "Bool" and address %I0.0 (I 0.0) ( Q1 Enter).
Change the address to %Q0.0 (Q 0.0) by entering this directly or by clicking the dropdown arrow to open the Addressing menu. Change the operand identifier to Q and confirm with Enter or by clicking the check mark ( %I0.0 Operand identifier Q )
Enter the "Conveyor motor M1 forwards fixed speed" comment for the tag.
For unrestricted use in educational and R&D institutions. © Siemens AG 2016. All rights reserved. SCE_EN_031-100 FC-Programming S7-1200_R1504.docx
19
SCE Training Curriculum | TIA Portal Module 031-100, Edition 02/2016 | Digital Factory, DF FA
Add a new Q2 tag in line 2. TIA Portal has automatically assigned the same data type as the one in line 1 and has incremented the address by 1 to %Q0.1 (Q0.1). Enter the comment "Conveyor motor M1 backwards fixed speed". ( Q2 Enter Comment Conveyor motor M1 backwards fixed speed)
6.4 Import "Tag_table_sorting_station" To insert an existing symbol table, right-click on an empty field of the created "Tag_table_sorting_station". Select "Import file" in the shortcut menu. ( Right-click in an empty field of the tag table Import file)
For unrestricted use in educational and R&D institutions. © Siemens AG 2016. All rights reserved. SCE_EN_031-100 FC-Programming S7-1200_R1504.docx
20
SCE Training Curriculum | TIA Portal Module 031-100, Edition 02/2016 | Digital Factory, DF FA
Select the desired symbol table (e.g. in .xlsx format) and confirm the selection with "Open". ( SCE_EN_020-100_Tag_table_sorting_station… Open)
When the import is finished, you will see a confirmation window and have an opportunity to view the log file for the import. Click OK.
For unrestricted use in educational and R&D institutions. © Siemens AG 2016. All rights reserved. SCE_EN_031-100 FC-Programming S7-1200_R1504.docx
21
SCE Training Curriculum | TIA Portal Module 031-100, Edition 02/2016 | Digital Factory, DF FA
You can see that some addresses have been highlighted in orange. These are duplicate addresses and the names of the associated tags have been numbered automatically to avoid confusion. Delete the duplicate tags by selecting the lines and pressing the Del key on your keyboard or selecting "Delete" in the shortcut menu. ( Right-click on selected tags Delete)
For unrestricted use in educational and R&D institutions. © Siemens AG 2016. All rights reserved. SCE_EN_031-100 FC-Programming S7-1200_R1504.docx
22
SCE Training Curriculum | TIA Portal Module 031-100, Edition 02/2016 | Digital Factory, DF FA
You now have a complete symbol table of the digital inputs and outputs in front of you. Save your project under the name 031-100_FC Programming. ( Project Save as ... 031-100_FC Programming Save)
For unrestricted use in educational and R&D institutions. © Siemens AG 2016. All rights reserved. SCE_EN_031-100 FC-Programming S7-1200_R1504.docx
23
SCE Training Curriculum | TIA Portal Module 031-100, Edition 02/2016 | Digital Factory, DF FA
6.5 Create function FC1 "MOTOR_MANUAL" for the conveyor motor in manual mode In the PLC programming section of the portal view, click "Add new block" to create a new function. ( PLC programming Add new block
)
For unrestricted use in educational and R&D institutions. © Siemens AG 2016. All rights reserved. SCE_EN_031-100 FC-Programming S7-1200_R1504.docx
24
SCE Training Curriculum | TIA Portal Module 031-100, Edition 02/2016 | Digital Factory, DF FA
Rename your new block to: "MOTOR_MANUAL", set the language to FBD and keep automatic assignment of the number. Select the "Add new and open" check box. You will thus be taken automatically to your created function block in the project view.Click "Add". ( Name: MOTOR_MANUAL Language: FBD Number: Automatic
Add new
and open Add)
For unrestricted use in educational and R&D institutions. © Siemens AG 2016. All rights reserved. SCE_EN_031-100 FC-Programming S7-1200_R1504.docx
25
SCE Training Curriculum | TIA Portal Module 031-100, Edition 02/2016 | Digital Factory, DF FA
6.6 Define the Interface of function FC1 "MOTOR_MANUAL" If you selected "Add new and open", the project view opens with a window for creating the block you just added. You can find the interface description of your function in the upper section of your programming view.
For unrestricted use in educational and R&D institutions. © Siemens AG 2016. All rights reserved. SCE_EN_031-100 FC-Programming S7-1200_R1504.docx
26
SCE Training Curriculum | TIA Portal Module 031-100, Edition 02/2016 | Digital Factory, DF FA
A binary output signal is needed for controlling the conveyor motor. For this reason, we first create local output tag #Conveyor_motor_manual_mode of the "Bool" type. Enter comment "Control of the conveyor motor in manual mode" for the parameter. ( Output: Conveyor_motor_manual_mode Bool Control of the conveyor motor in manual mode)
Add parameter #Manual_mode_active as the input interface under Input and confirm the entry with the Enter key or by exiting the entry field. Data type "Bool" is assigned automatically. This will be retained. Next, enter the associated comment "Manual mode activated". ( Manual_mode_active Enter Bool Manual mode activated) Continue by adding parameters #Pushbutton_manual_mode, #Enable_OK and #Safety_shutoff_active as additional binary input parameters and check their data types. Add descriptive comments.
For unrestricted use in educational and R&D institutions. © Siemens AG 2016. All rights reserved. SCE_EN_031-100 FC-Programming S7-1200_R1504.docx
27
SCE Training Curriculum | TIA Portal Module 031-100, Edition 02/2016 | Digital Factory, DF FA
For purposes of program documentation, assign the block title, a block comment and a helpful network title for Network 1. ( Block title: Motor control in manual mode Network 1: Control of the conveyor motor in manual mode)
For unrestricted use in educational and R&D institutions. © Siemens AG 2016. All rights reserved. SCE_EN_031-100 FC-Programming S7-1200_R1504.docx
28
SCE Training Curriculum | TIA Portal Module 031-100, Edition 02/2016 | Digital Factory, DF FA
6.7 Program FC1: MOTOR_MANUAL Below the interface description, you see a toolbar in the programming window with various logic functions and below that an area with networks. We have already specified the block title and the title for the first network there. Programming is performed within the networks using individual logic blocks. Distribution among multiple networks helps to preserve the clarity of the program. In the following, you will get to know the various ways you can insert logic blocks.
On the right side of your programming window is a list of instructions you can use in the program. Under Basic instructions Bit logic operations, find function –[=] (Assignment) and use a drag-and-drop operation to move it to Network 1 (green line appears, mouse pointer with + symbol). ( Instructions Basic instructions Bit logic operations –[=])
For unrestricted use in educational and R&D institutions. © Siemens AG 2016. All rights reserved. SCE_EN_031-100 FC-Programming S7-1200_R1504.docx
29
SCE Training Curriculum | TIA Portal Module 031-100, Edition 02/2016 | Digital Factory, DF FA
Now use drag-and-drop to move your output parameter #Conveyor_motor_manual_mode onto above the block you just inserted. The best way to select a parameter in the interface description is by "grabbing" it at the blue symbol (
.
Conveyor_motor_manual_mode)
For unrestricted use in educational and R&D institutions. © Siemens AG 2016. All rights reserved. SCE_EN_031-100 FC-Programming S7-1200_R1504.docx
30
SCE Training Curriculum | TIA Portal Module 031-100, Edition 02/2016 | Digital Factory, DF FA
This determines that the #Conveyor_motor_manual_mode parameter is written by this block. Still missing, however, are the input conditions so that this actually happens. For this, use drag-and-drop to move input parameter #Manual_mode_active to the left side of the assignment block. (
Manual_mode_active)
The input of the assignment block will also be logically combined with other parameters by an AND logic operation. To do this, first click the input of the block to which #Manual_mode_active is already connected, so that the input line has a blue background.
For unrestricted use in educational and R&D institutions. © Siemens AG 2016. All rights reserved. SCE_EN_031-100 FC-Programming S7-1200_R1504.docx
31
SCE Training Curriculum | TIA Portal Module 031-100, Edition 02/2016 | Digital Factory, DF FA
Click the
icon in your logic toolbar to insert an AND logic operation between the
#Manual_mode_active tag and your assignment block.
Double-click the second input of the & logic operation and enter the letter "P" in the field that appears in orer to see a list of available tags starting with "P". Click the #Pushbutton_manual_mode tag and apply with Enter. ( & block P #Pushbutton_manual_mode Enter)
Note: When assigning tags in this way, there is a risk of a mix-up with the global tags from the tag table. The previously presented procedure using drag and drop from the interface description should therefore be used preferentially.
For unrestricted use in educational and R&D institutions. © Siemens AG 2016. All rights reserved. SCE_EN_031-100 FC-Programming S7-1200_R1504.docx
32
SCE Training Curriculum | TIA Portal Module 031-100, Edition 02/2016 | Digital Factory, DF FA
To ensure that the output can only be controlled when the enable conditions are met and the safety shutoff is not active, the #Enable_OK and #Safety_shutoff_active input tags are logically combined with the AND logic operation. To do this, click twice on the yellow star
of your AND block to add two additional inputs.
Add input tags #Enable_OK and #Safety_shutoff_active to your newly created inputs of the AND block.
Negate the input connected to parameter #Safety_shutoff_active by selecting it and clicking
.
For unrestricted use in educational and R&D institutions. © Siemens AG 2016. All rights reserved. SCE_EN_031-100 FC-Programming S7-1200_R1504.docx
33
SCE Training Curriculum | TIA Portal Module 031-100, Edition 02/2016 | Digital Factory, DF FA
Do not forget to click
regularly. The finished function "MOTOR_MANUAL"
[FC1] in FBD is shown below.
For unrestricted use in educational and R&D institutions. © Siemens AG 2016. All rights reserved. SCE_EN_031-100 FC-Programming S7-1200_R1504.docx
34
SCE Training Curriculum | TIA Portal Module 031-100, Edition 02/2016 | Digital Factory, DF FA
Under "General" in the properties of the block, you can change the "Language" to LAD (Ladder Logic) (Properties General Language: LAD)
The program has the following appearance in LAD.
For unrestricted use in educational and R&D institutions. © Siemens AG 2016. All rights reserved. SCE_EN_031-100 FC-Programming S7-1200_R1504.docx
35
SCE Training Curriculum | TIA Portal Module 031-100, Edition 02/2016 | Digital Factory, DF FA
6.8 Program the organization block OB1 – Control conveyor tracking forwards in manual mode Before programming organization block "Main [OB1]", we switch the programming language to FBD (Function Block Diagram). To do so, first click on "Main [OB1]" in the "Program blocks" folder. ( CPU_1214C [CPU 1214C DC/DC/DC Program blocks Main [OB1] Switch programming language FBD)
Open the "Main [OB1]" organization block with a double-click.
For unrestricted use in educational and R&D institutions. © Siemens AG 2016. All rights reserved. SCE_EN_031-100 FC-Programming S7-1200_R1504.docx
36
SCE Training Curriculum | TIA Portal Module 031-100, Edition 02/2016 | Digital Factory, DF FA
Assign Network 1 the name "Control conveyor tracking forwards in manual/jog mode" ( Network 1:... Control conveyor tracking forwards in manual/jog mode)
Use drag-and-drop to move your "MOTOR_MANUAL [FC1]" function onto the green line in Network 1.
For unrestricted use in educational and R&D institutions. © Siemens AG 2016. All rights reserved. SCE_EN_031-100 FC-Programming S7-1200_R1504.docx
37
SCE Training Curriculum | TIA Portal Module 031-100, Edition 02/2016 | Digital Factory, DF FA
A block with the interface you defined and connections EN and ENO are inserted in Network 1.
To insert an AND before input parameter "Enable_OK", select this input and insert the AND by clicking the
icon in your logic toolbar (
).
For unrestricted use in educational and R&D institutions. © Siemens AG 2016. All rights reserved. SCE_EN_031-100 FC-Programming S7-1200_R1504.docx
38
SCE Training Curriculum | TIA Portal Module 031-100, Edition 02/2016 | Digital Factory, DF FA
Click the yellow star
of the AND block to add another input (
).
To connect the block to the global tags from "Tag_table_sorting_station", we have two options: Either select the "Tag_table_sorting_station" in the project tree and use drag-and-drop to move the desired global tag from the Details view to the interface of FC1 ( Tag_table_sorting_station Details view. -S0 Manual_mode_active)
Or, enter the starting letters (e.g. "-S") of the desired global tag for and select the global input tag "-S0" (%I0.2) from the displayed list ( Manual_mode_active -S -S0).
For unrestricted use in educational and R&D institutions. © Siemens AG 2016. All rights reserved. SCE_EN_031-100 FC-Programming S7-1200_R1504.docx
39
SCE Training Curriculum | TIA Portal Module 031-100, Edition 02/2016 | Digital Factory, DF FA
Insert the other input tags "-S3", "-K0", "-B1", "-S4" and "-A1" and then insert output tag "-Q1" (%Q0.0) at output "Conveyor_motor_manual_mode".
Negate the querying of input tags "-S0", "-S4" and "-A1" by selecting them and clicking . ( -S0
-S4
-A1
)
For unrestricted use in educational and R&D institutions. © Siemens AG 2016. All rights reserved. SCE_EN_031-100 FC-Programming S7-1200_R1504.docx
40
SCE Training Curriculum | TIA Portal Module 031-100, Edition 02/2016 | Digital Factory, DF FA
6.9 Save and compile the program To save your project, select the
button in the menu. To compile all blocks,
click the "Program blocks" folder and select the (
Program blocks
icon for compiling in the menu
).
The "Info", "Compile" area shows which blocks were successfully compiled.
For unrestricted use in educational and R&D institutions. © Siemens AG 2016. All rights reserved. SCE_EN_031-100 FC-Programming S7-1200_R1504.docx
41
SCE Training Curriculum | TIA Portal Module 031-100, Edition 02/2016 | Digital Factory, DF FA
6.10 Download the program After successful compilation, the complete controller with the created program, as previously described in the modules for hardware configuration, can be downloaded (
).
For unrestricted use in educational and R&D institutions. © Siemens AG 2016. All rights reserved. SCE_EN_031-100 FC-Programming S7-1200_R1504.docx
42
SCE Training Curriculum | TIA Portal Module 031-100, Edition 02/2016 | Digital Factory, DF FA
The "MOTOR_MANUAL" [FC1] function called in the "Main [OB1]" organization block can be selected directly for "Open and monitor" after right-clicking ( "MOTOR_MANUAL" [FC1] Open and monitor).
Note: The monitoring here is function-related and controller-independent. The actuation of sensors and the station status are shown here with TRUE or FALSE.
For unrestricted use in educational and R&D institutions. © Siemens AG 2016. All rights reserved. SCE_EN_031-100 FC-Programming S7-1200_R1504.docx
44
SCE Training Curriculum | TIA Portal Module 031-100, Edition 02/2016 | Digital Factory, DF FA
If a particular point of use of the "MOTOR_MANUAL" [FC1] function is to be monitored, the call environment can be selected using the
icon (
Call environment
OK)
6.12 Archive the project As the final step, we want to archive the complete project. Select the "Archive ..." command in the "Project" menu. Select a folder where you want to archive your project and save it with the file type "TIA Portal project archive". ( Project Archive TIA Portal project archive 031-100_FC Programming…. Save)
For unrestricted use in educational and R&D institutions. © Siemens AG 2016. All rights reserved. SCE_EN_031-100 FC-Programming S7-1200_R1504.docx
45
SCE Training Curriculum | TIA Portal Module 031-100, Edition 02/2016 | Digital Factory, DF FA
6.13 Checklist No.
Description
1
Compiling successful and without error message
2
Download successful and without error message
3
Switch on station (-K0 = 1) Cylinder retracted / Feedback activated (-B1 = 1) EMERGENCY OFF (-A1 = 1) not activated MANUAL mode (-S0 = 0) Activate manual mode conveyor forwards (-S3 = 1) Conveyor motor forwards fixed speed (-Q1 = 1)
4
Same as 3 but activate EMERGENCY OFF (-A1 = 0) -Q1 = 0
5
Same as 3 but AUTO mode (-S0 = 1) -Q1 = 0
6
Same as 3 but switch off station (-K0 = 0) -Q1 = 0
7
Same as 3 but cylinder not retracted (-B1 = 0) -Q1 = 0
8
Same as 8 but also activate manual mode conveyor backwards (-S4 = 1) -Q1 = 0
9
Project successfully archived
For unrestricted use in educational and R&D institutions. © Siemens AG 2016. All rights reserved. SCE_EN_031-100 FC-Programming S7-1200_R1504.docx
Completed
46
SCE Training Curriculum | TIA Portal Module 031-100, Edition 02/2016 | Digital Factory, DF FA
7 Exercise 7.1 Task – Exercise The following functions of the sorting station process description will be planned, programmed and tested in this chapter:
Manual mode – Control of conveyor tracking backwards in manual/jog mode
7.2 Technology diagram Here, you see the technology diagram for the task.
Figure 10: Technology diagram
Figure 11: Control panel
For unrestricted use in educational and R&D institutions. © Siemens AG 2016. All rights reserved. SCE_EN_031-100 FC-Programming S7-1200_R1504.docx
47
SCE Training Curriculum | TIA Portal Module 031-100, Edition 02/2016 | Digital Factory, DF FA
7.3 Reference list The following signals are needed as operands for this task. DI
Type
Identifier
Function
NC/NO
I 0.0
BOOL
-A1
Return signal emergency stop ok
NC
I 0.1
BOOL
-K0
Main switch "ON"
NO
I 0.2
BOOL
-S0
Mode selector manual (0)/ automatic (1)
I 0.5
BOOL
-B1
Sensor cylinder M4 retracted
NO
I 1.4
BOOL
-S3
Pushbutton manual mode conveyor M1 forward
NO
I 1.5
BOOL
-S4
Pushbutton manual mode conveyor M1 reverse
NO
DO
Type
Identifier
Q 0.1
BOOL
-Q2
Manual = 0 Auto = 1
Function Conveyor motor M1 backwards fixed speed
Legend for reference list
DI
Digital Input
DO
Digital Output
AI
Analog Input
AO
Analog Output
I
Input
Q
Output
NC
Normally Closed
NO
Normally Open
7.4 Planning Plan the implementation of the task on your own.
For unrestricted use in educational and R&D institutions. © Siemens AG 2016. All rights reserved. SCE_EN_031-100 FC-Programming S7-1200_R1504.docx
48
SCE Training Curriculum | TIA Portal Module 031-100, Edition 02/2016 | Digital Factory, DF FA
7.5 Checklist – Exercise No.
Description
1
Compiling successful and without error message
2
Download successful and without error message
3
Switch on station (-K0 = 1) Cylinder retracted / Feedback activated (-B1 = 1) EMERGENCY OFF (-A1 = 1) not activated MANUAL mode (-S0 = 0) Activate manual mode conveyor backwards (-S4 = 1) Conveyor motor backwards fixed speed (-Q2 = 1)
4
Same as 8 but activate EMERGENCY OFF (-A1 = 0) -Q2 = 0
5
Same as 8 but AUTO mode (-S0 = 1) -Q2 = 0
6
Same as 8 but switch off station (-K0 = 0) -Q2 = 0
7
Same as 8 but cylinder not retracted (-B1 = 0) -Q2 = 0
8
Same as 8 but also activate manual mode conveyor forwards (-S3 = 1) -Q1 = 0 and -Q2 = 0
9
Project successfully archived
For unrestricted use in educational and R&D institutions. © Siemens AG 2016. All rights reserved. SCE_EN_031-100 FC-Programming S7-1200_R1504.docx
Completed
49
SCE Training Curriculum | TIA Portal Module 031-100, Edition 02/2016 | Digital Factory, DF FA
8 Additional information You can find additional information as an orientation aid for initial and advanced training, for example: Getting Started, videos, tutorials, apps, manuals, programming guidelines and trial software/firmware, at the following link: www.siemens.com/sce/s7-1200
For unrestricted use in educational and R&D institutions. © Siemens AG 2016. All rights reserved. SCE_EN_031-100 FC-Programming S7-1200_R1504.docx
50
96657481 8915)11962 867(98:4 8915;()("*%.+'(%"`.,a.=()".%("%(`/.,(-"b+*>")&,,())$%"`.,a.=()"b>('"'(,()).%c3" 7'"$?(%?+(b"$d"*>(",&%%('*/c".?.+/.e/("5@A"`.,a.=()"+)".?.+/.e/(".*Y")+(6(')3,$6f),(f*`"
1878 5678789
#$%"%(=+$'./"5+(6(')"5@A",$'*+'&(-"*%.+'+'=g"=(*"+'"*$&,>"b+*>"c$&%"%(=+$'./"5@A",$'*.,*" )+(6(')3,$6f),(f,$'*.,*" 7786 78O5 6785965789012 )+(6(')3,$6f),(" " " 8O5 6785965789 N h>("5@A"*%.+'+'=",&%%+,&/&6"d$%"*>("+'*(=%.*(-".&*$6.*+$'")$/&*+$'"h$*.//c"i'*(=%.*(-"7&*$6.*+$'" jhi7k"b.)"`%(`.%(-"d$%"*>("`%$=%.6"l5+(6(')"7&*$6.*+$'"@$$`(%.*()"b+*>"A-&,.*+$'"j5@Akl" )`(,+d+,.//c"d$%"*%.+'+'="`&%`$)()"d$%"`&e/+,"(-&,.*+$'./"d.,+/+*+()".'-"012"+')*+*&*+$')3"5+(6(')"78" -$()"'$*"=&.%.'*(("*>(",$'*('*)3" " h>+)"-$,&6('*"+)"*$"e("&)(-"$'/c"d$%"+'+*+./"*%.+'+'="$'"5+(6(')"`%$-&,*)f)c)*(6)g"h>+)"6(.')"+*" ,.'"e(",$`+(-"+'"b>$/("$%"`.%*".'-"=+?('"*$"*>$)("e(+'="*%.+'(-"d$%"&)("b+*>+'"*>("),$`("$d"*>(+%" *%.+'+'=3"@+%,&/.*+$'"$%",$`c+'="*>+)"*%.+'+'=",&%%+,&/&6".'-")>.%+'="+*)",$'*('*"+)"`(%6+**(-"b+*>+'" `&e/+,"*%.+'+'=".'-".-?.',(-"*%.+'+'="d.,+/+*+()"d$%"*%.+'+'="`&%`$)()3" " AK,(`*+$')"%(m&+%("b%+**('",$')('*"d%$6"*>("5+(6(')"78",$'*.,*"`(%)$'Y"0$/.'-"5,>(&(%(%" %$/.'-3),>(&(%(%n)+(6(')3,$63" " Xdd('-(%)"b+//"e(">(/-"/+.e/(3"7//"%+=>*)"+',/&-+'="*%.')/.*+$'".%("%()(%?(-g"`.%*+,&/.%/c"+d"."`.*('*"+)" =%.'*(-"$%"."&*+/+*c"6$-(/"$%"-()+='"+)"%(=+)*(%(-3" " o)("d$%"+'-&)*%+./",&)*$6(%",$&%)()"+)"(K`/+,+*/c"'$*"`(%6+**(-3"p("-$"'$*",$')('*"*$",$66(%,+./" &)("$d"*>("*%.+'+'=",&%%+,&/&6)3" " p("b+)>"*$"*>.'a"*>("ho"2%()-('g"`.%*+,&/.%/c"G%$d3"2%3Ei'=3"q($'"o%e.)".'-"2+`/3Ei'=3"7''(**"Gd(dd(%g"*>(" r+,>.(/"2s+.//.)"A'=+'((%+'="@$%`$%.*+$'".'-".//"$*>(%"+'?$/?(-"`(%)$')"d$%"*>(+%")&``$%*"-&%+'="*>(" `%(`.%.*+$'"$d"*>+)"*%.+'+'=",&%%+,&/&63"
#$%"&'%()*%+,*(-"&)("+'"(-&,.*+$'./".'-"012"+')*+*&*+$')3"4"5+(6(')"78"9:;*)"%()(%?(-3" 5@ABACB:D;E9::"#FEG%$=%.66+'="5HE;9::B0;I:J3-$,K"
9"
"
"
"
012456787891 557
456 27787976 65! "
L.M/("$N",$'*('*)"
;O 8$./"333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333"JO 9O G%(%(P&+)+*("3333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333"JO @O L>($%Q"333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333"JO @3;O RS(%.*+'=")Q)*(6".'-".SS/+,.*+$'"S%$=%.6"3333333333333333333333333333333333333333333333333333333333333333333333333333333333"JO @39O R%=.'+T.*+$'"M/$,U)"3333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333"IO @3@O G%$,())"+6.=(".'-",Q,/+,"S%$=%.6"S%$,())+'="3333333333333333333333333333333333333333333333333333333333333333333333333333"'$/$=Q"-+.=%.6"3333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333";JO I3JO 0(N(%(',("/+)*"333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333";IO .R*(%"W&+/-)"$'"*>(">.%-U.%(",$'X+=&%.*+$'"$X"5Q
7QA"5I"AH;9;@A3"$U(?(%S"$*>(%" >.%-U.%(",$'X+=&%.*+$')"*>.*">.?("-+=+*./"+'R&*".'-"$&*R&*"W$.%-"W("&)(-3"#$%"*>+)",>.R*(%S"T$&" ,.'"&)("*>("X$//$U+'="R%$(,*S"X$%"(K.6R/(" 5ABCBDC:;;C;:;C.%-U.%(CA$'X+=&%.*+$'CAH;9;@A3.R;E"
45!
E3;"M56789t!t 686 76785956 "
B?(%T",$'*%$//(%"AH",$'*.+')".'"Z{|[]a_^\bgxga|zS"U>+,>"$%=.'+()".//"X&',*+$')".'-" )(&(',()"$X"*>("AH"*>.*".%("'$*".))$,+.*(-"U+*>".")R(,+X+,",$'*%$/"*.)V3"" >("*.)V)"$X"*>("$R(%.*+'=")T)*(6"+',/&-("*>("X$//$U+'=" " H(%X$%6+'="."U.%6"%()*.%*" " R-.*+'="*>("R%$,())"+6.=("$X"*>("+'R&*)".'-"$&*R&*" " AT,/+,.//T",.//+'="*>("&)(%"R%$=%.6" " 2(*(,*+'="+'*(%%&R*)".'-",.//+'="+'*(%%&R*"G)" " 2(*(,*+'=".'-">.'-/+'="(%%$%)" "
.'.=+'="6(6$%T".%(.)" >("$R(%.*+'=")T)*(6"+)".'"+'*(=%./",$6R$'('*"$X"*>("AH".'-",$6()"R%(F+')*.//(-3" >("ng|[b{[Z\[]z",$'*.+')".//"X&',*+$')"*>.*".%("'(,()).%T"X$%"(K(,&*+'="T$&%")R(,+X+," .&*$6.*+$'"*.)V3">("*.)V)"$X"*>("&)(%"R%$=%.6"+',/&-("*>("X$//$U+'=" " A>(,V+'="*>("W.)+,"%(&+%(6('*)"X$%"."U.%6"%()*.%*"&)+'=")*.%*&R"G)" " H%$,())+'="$X"R%$,())"-.*.S"+3(3".,*+?.*+$'"$X"$&*R&*")+='./)".)"."X&',*+$'"$X"*>("+'R&*" )+='./")*.*()" " 0(.,*+$'"*$"+'*(%%&R*)".'-"+'*(%%&R*"+'R&*)" " B%%$%">.'-/+'="-&%+'="'$%6./"R%$=%.6"(K(,&*+$'"
#$%"&'%()*%+,*(-"&)("+'"(-&,.*+$'./".'-"012"+')*+*&*+$')3"4"5+(6(')"78"9:;*)"%()(%?(-3" 5ABCBDC:E;F9::"#GFH%$=%.66+'="5IF;9::C0;J:@3-$,K"
@"
"
"
"
012456787891 557
456 27787976 65! "
E39"L59687M678N OP
Q%=.'+R.*+$'"S/$,T)"UQG)V"W$%6"*>("+'*(%W.,("S(*X(('"*>("$Y(%.*+'=")Z)*(6"$W"*>(",$'*%$//(%" UAH[V".'-"*>(".YY/+,.*+$'"Y%$=%.63"\>(Z".%(",.//(-"W%$6"*>("$Y(%.*+'=")Z)*(6".'-",$'*%$/"*>(" W$//$X+'="$Y(%.*+$')]" ^" AZ,/+,"Y%$=%.6"Y%$,())+'="U(3=3"QG;V" ^" 5*.%*&Y",>.%.,*(%+)*+,)"$W"*>(",$'*%$//(%" ^" _'*(%%&Y*F-%+?('"Y%$=%.6"Y%$,())+'=" ^" B%%$%">.'-/+'=" 7"Y%$`(,*"6&)*">.?(a".*"."6+'+6&6a"bcdefgbchibjhecdklemndoefdmpmlhmdqfegfbrdqfemstthcg3" 7'"QG"+)",.//(-"SZ"."tjbfjdsuscj".)")>$X'"+'"#+=&%(";3"_'".--+*+$'a"*>("+'-+?+-&./"QG)">.?(" -(W+'(-"Y%+$%+*+()")$"*>.*a"W$%"(K.6Y/(a".'"QGv9"W$%"(%%$%">.'-/+'=",.'"+'*(%%&Y*"*>(",Z,/+,"QG;3" " Lwxy 8z
1! {|}~}
065 5 78 " QG";::".%6"%()*.%*" " 1! 7" 5956 5PP789 QG";"
cjsffqjfhuscd qfegfbrdqfemstthcgd "
{|}~}
| {|}~}
|
L56789P!P #+=&%(";]"5*.%*"(?('*)"+'"*>("$Y(%.*+'=")Z)*(6".'-"QG",.//)"
ffefdbclhcgd d QG"v:" QG"v9" " "
"
#$%"&'%()*%+,*(-"&)("+'"(-&,.*+$'./".'-"012"+')*+*&*+$')3"4"5+(6(')"78"9:;*)"%()(%?(-3" 5ABCBDC:E;F9::"#GFH%$=%.66+'="5IF;9::C0;@:J3-$,K"
@"
"
"
"
012456787891 557
456 27787976 65! "
L>('".")*.%*"(?('*"$,,&%)M"*>("N$//$O+'="%(.,*+$')".%("P$))+Q/(R" S" TN".'"UF">.)"Q(('".))+='(-"*$"*>("(?('*M"*>+)"(?('*"*%+==(%)"*>("(K(,&*+$'"$N"*>(".))+='(-" UF3"TN"*>("P%+$%+*V"$N"*>(".))+='(-"UF"+)"=%(.*(%"*>.'"*>("P%+$%+*V"$N"*>("UF"*>.*"+)",&%%('*/V" Q(+'="(K(,&*(-M"+*"+)"(K(,&*(-"+66(-+.*(/V"W+'*(%%&P*X3"TN"'$*M"*>(".))+='(-"UF"O.+*)"&'*+/" *>(">+=>(%EP%+$%+*V"UF">.)"Q(('",$6P/(*(/V"(K(,&*(-" S" TN"V$&">.?("'$*".))+='(-".'"UF"*$"*>("(?('*M"*>("-(N.&/*")V)*(6"%(.,*+$'"+)"P(%N$%6(-3" " Y.Q/(";")>$O)"(K.6P/()"N$%"?.%+$&)")*.%*"(?('*)"N$%"."5TZ7YT@"5HE;9::3""7/)$")>$O'".%("*>(" P$))+Q/("UF"'&6Q(%W)X".'-"*>("-(N.&/*")V)*(6"%(.,*+$')"*>.*"$,,&%"O>('"*>("%()P(,*+?(" $%=.'+[.*+$'"Q/$,\"WUFX"+)"'$*"P%()('*"+'"*>(",$'*%$//(%3" 065]8 ^^7_ `a b6 ^!^ 8
_5^ 5678 5*.%*&P" T='$%(" ;::M"c";9D" defghfijklmknoi T='$%(" ;M"c";9D" Y+6(E$NE-.V"+'*(%%&P*" ;:"*$";;" E" pP-.*("+'*(%%&P*" I("+'P&*)"WTX".'-"$&*P&*)"WUXM"+*"-$()"'$*"s&(%V"*>(" )+='./")*.*()"-+%(,*/V"N%$6"*>("+'P&*t$&*P&*"6$-&/()3"T')*(.-M"+*".,,())()"."6(6$%V".%(."$N"*>(" @Gp3"Y>+)"6(6$%V".%(.",$'*.+')".'"+6.=("$N"*>(")+='./")*.*()".'-"+)",.//(-"*>("r5^^ 7 693""
#$%"&'%()*%+,*(-"&)("+'"(-&,.*+$'./".'-"012"+')*+*&*+$')3"4"5+(6(')"78"9:;*)"%()(%?(-3" 5@ABACB:D;E9::"#FEG%$=%.66+'="5HE;9::B0;I:J3-$,K"
(")*.%*"$P"*>(",M,/+,"N%$=%.6S"."O&(%M"+)")('*"*$"-(*(%6+'("Q>(*>(%"$%"'$*"*>(" +'-+?+-&./"+'N&*)".%("('(%=+T(-3"L>+)")*.*&)"$P"*>("+'N&*)"+)")*$%(-"+'"*>("U5VV7 69WX 78U VYZ3"['"-$+'=")$S"*>("+'P$%6.*+$'";"$%"\]+=>\"+)")*$%(-"P$%"('(%=+T(-"+'N&*)".'-"*>(" +'P$%6.*+$'":"$%"\^$Q\"P$%"-(F('(%=+T(-"+'N&*)3"" 93" L>("AH_"*>('"(K(,&*()"*>("N%$=%.6")*$%(-"+'"*>(",M,/+,"$%=.'+T.*+$'"`/$,a3"#$%"*>(" %(O&+%(-"+'N&*"+'P$%6.*+$'S"*>("AH_".,,())()"*>("N%(?+$&)/M"%(.-"U5VV7 69WX 78U VYZ".'-"*>("%()&/*)"$P"/$=+,"$N(%.*+$'"b0^c)d".%("Q%+**('"*$".")$F,.//(-"U5VV 7 69WX U VYeZ3"" E3" 7*"*>("('-"$P"*>(",M,/(S"*>("U5VV7 69WX U Vbed"+)"*%.')P(%%(-".)"*>(" )+='./")*.*("*$"*>("$&*N&*"6$-&/()".'-"*>()(".%("('(%=+T(-"$%"-(F('(%=+T(-3"L>(")(O&(',(" *>('",$'*+'&()".=.+'"Q+*>"[*(6";3""
" " 3"5.?(")*.*&)"$P"+'N&*)"+'"H[[3" " " " " H^A"N%$=%.6"+'"*>(" " N%$=%.6"6(6$%M"" " ""H%$,())+'="*>(" ;)*"+')*%&,*+$'" +')*%&,*+$'F`MF 9'-"+')*%&,*+$'" "N+'%)$*=%&%.,6" *+$'"Q+*>".,,())" E%-"+')*%&,*+$'" "*$"H[[".'-"H["" J*>"+')*%&,*+$'" 333" " " " " " ^.)*"+')*%&,*+$'" " " " L%.')P(%")*.*&)"P%$6"*>("H["*$"*>("$&*N&*)3"
6 66 7 " 5! 66 V e
#+=&%("9R"AM,/+,"N%$=%.6"N%$,())+'="
fghijklmnopqrnopmnostuovnnwxoyz{opmqxoxn|}nv~noqxo~nwo~~nopqrnolmqxownnvwxoqvop}{vo zvopmnov}r
n{ovwopnozyoqvxp{}~pqzvxovwopmno{z~nxxz{on{yz{rv~nozyopmno~zvp{zn{o
#$%"&'%()*%+,*(-"&)("+'"(-&,.*+$'./".'-"012"+')*+*&*+$')3"4"5+(6(')"78"9:;*)"%()(%?(-3" 5ABCBDC:E;F9::"#GFH%$=%.66+'="5@F;9::C0;I:J3-$,K"
@"
"
"
"
012456787891 557
456 27787976 65! "
E3K" 878M
#&',*+$')"N#A)O".%("/$=+,"P/$,Q)"R+*>$&*"6(6$%S3"T>(S"UVWXYZ[Y\V]VY^X^[_`"+'"R>+,>" ?./&()"$a"P/$,Q"b.%.6(*(%)",.'"P(")*$%(-3"T>(%(a$%(c".//"+'*(%a.,("b.%.6(*(%)"6&)*"P(" ,$''(,*(-"R>('"."a&',*+$'"+)",.//(-3"T$")*$%("-.*."b(%6.'('*/Sc"=/$P./"-.*."P/$,Q)"6&)*"P(" ,%(.*(-"P(a$%(>.'-3" 7"a&',*+$'",$'*.+')"."b%$=%.6"*>.*"+)"(L(,&*(-"R>('(?(%"*>("a&',*+$'"+)",.//(-"a%$6".'$*>(%" /$=+,"P/$,Q3"" #&',*+$')",.'"P("&)(-c"a$%"(L.6b/(c"a$%"*>("a$//$R+'="b&%b$)()d" e" f.*>"a&',*+$')"g"*>.*"%(*&%'"."%()&/*"-(b('-('*"$'"+'b&*"?./&()3" e" T(,>'$/$=+,./"a&',*+$')"g")&,>".)"+'-+?+-&./",$'*%$/)"R+*>"P+'.%S"/$=+,"$b(%.*+$')3" 7"a&',*+$'",.'"./)$"P(",.//(-")(?(%./"*+6()".*"-+aa(%('*"b$+'*)"R+*>+'"."b%$=%.63" " " " " " j%=.'+h.*+$'"P/$,Q"" " f.+'"ijG;k" " " #&',*+$'" A.//)"*>(" " fjTj0Cf7Dl7m" fjTj0C f7Dl7m " " i#A;k" i#A;k"a&',*+$'" " " " A$'*.+')"."b%$=%.6"a$%" " ,$'*%$//+'=".",$'?(S$%" +'"6.'&./"6$-(c"a$%" " (L.6b/(3"" " " T>("a&',*+$'">.)"'$" " 6(6$%S3" " " " " " " " #+=&%("Ed"#&',*+$'"R+*>",.//"a%$6"$%=.'+h.*+$'"P/$,Q"f.+'"ijG;k"
"
#$%"&'%()*%+,*(-"&)("+'"(-&,.*+$'./".'-"012"+')*+*&*+$')3"4"5+(6(')"78"9:;*)"%()(%?(-3" 5ABCBDC:E;F9::"#GFH%$=%.66+'="5IF;9::C0;J:K3-$,L"
@"
"
"
"
012456787891 557
456 27787976 65! "
E3J" 878M NO6878O6866M NO
#&',*+$'"P/$,Q)".%("/$=+,"P/$,Q)"*>.*")*$%("*>(+%"+'R&*S"$&*R&*".'-"+'F$&*"*.=)".)"T(//".)")*.*+," *.=)"R(%6.'('*/U"+'"+')*.',("-.*."P/$,Q)S")$"*>.*"*>(U"VWXYVZV[\V]\XYV^_XWY_`XY]\abcY`VdY]XXeY XfXbg_Xh3"#$%"*>+)"%(.)$'S"*>(U".%("./)$"%(i(%%(-"*$".)"P/$,Q)"T+*>"j6(6$%Uj3" #&',*+$'"P/$,Q)",.'"./)$"$R(%.*("T+*>"*(6R$%.%U"*.=)3"k(6R$%.%U"*.=)".%("'$*")*$%(-"+'"*>(" +')*.',("2GS">$T(?(%3"l')*(.-S"*>(U".%("$'/U".?.+/.P/("i$%"$'(",U,/(3" #&',*+$'"P/$,Q)".%("&)(-"i$%"*.)Q)"*>.*",.''$*"P("+6R/(6('*(-"T+*>"i&',*+$')m" n" o>('(?(%"*+6(%)".'-",$&'*(%)".%("%(p&+%(-"+'"*>("P/$,Q)S"$%" n" o>('"+'i$%6.*+$'"6&)*"P(")*$%(-"+'"*>("R%$=%.6S")&,>".)"R%()(/(,*+$'"$i"*>("$R(%.*+'=" 6$-("T+*>"."P&**$'3" #&',*+$'"P/$,Q)".%("./T.U)"(L(,&*(-"T>('",.//(-"i%$6".'$*>(%"/$=+,"P/$,Q3"7"i&',*+$'"P/$,Q" ,.'"./)$"P(",.//(-")(?(%./"*+6()".*"-+ii(%('*"R$+'*)"T+*>+'"."R%$=%.63"k>+)"i.,+/+*.*()"*>(" R%$=%.66+'="$i"i%(p&('*/U"%(,&%%+'=",$6R/(L"i&',*+$')3" 7",.//"$i"."i&',*+$'"P/$,Q"+)"%(i(%%(-"*$".)".'"+')*.',(3"B.,>"+')*.',("$i"."i&',*+$'"P/$,Q"+)" .))+='(-"."6(6$%U".%(."*>.*",$'*.+')"*>("-.*."*>.*"*>("i&',*+$'"P/$,Q"&)()3"k>+)"6(6$%U"+)" 6.-(".?.+/.P/("PU"-.*."P/$,Q)",%(.*(-".&*$6.*+,.//U"PU"*>(")$i*T.%(3"" l*"+)"./)$"R$))+P/("*$"R%$?+-("6(6$%U"i$%"6&/*+R/("+')*.',()"+'"$'("-.*."P/$,Q"+'"*>("i$%6"$i"."
778O683"k>("6.L+6&6")+q("$i"+')*.',("-.*."P/$,Q)"?.%+()"-(R('-+'="$'"*>("AHr3"k>(" *.=)"-(,/.%(-"+'"*>("i&',*+$'"P/$,Q"-(*(%6+'("*>(")*%&,*&%("$i"*>("+')*.',("-.*."P/$,Q3" " " " " l')*.',("-.*."P/$,Q" " suku0C7rkuC2G;" u% = . ' + q . * + $ ' " P / $ , Q " " t2G;v".)"6(6$%U"" " s. + ' " t uG; v " #&',*+$'"P/$,Q" "" i$$i"%i"&*>'(,"*,+$.'//""" " " suku0C7rku"t#G; A.//)"i&',*+$'"P/$,Q" " v" P/$,Q"" " " suku0C 7rku" t #G; v " "i$%" suku0C7rku A$'*.+')"."R%$=%.6" " *$=(*>(%"T+*>"+*)" "U$%" t#G;v" , $ ' * % $ / / + ' = " . " , $ ' ? ( + ' ) * . ' , ( " . * . " P / $ , Q " " +'".&*$6.*+,"6$-(S"i$%" suku0C7rkuC2G;" (L.6R/(3" " t2G;v" k>("i&',*+$'"P/$,Q" " &)()"+')*.',("-.*." P/$,Q" " suku0C7rkuC2G;" " t2G;v".)"6(6$%U"+'" *>+)",.//3" " " " " " "
#+=&%("Km"#&',*+$'"P/$,Q".'-"+')*.',("T+*>",.//"i%$6"$%=.'+q.*+$'"P/$,Q"s.+'"tuG;v
#$%"&'%()*%+,*(-"&)("+'"(-&,.*+$'./".'-"012"+')*+*&*+$')3"4"5+(6(')"78"9:;*)"%()(%?(-3" 5ABCBDC:E;F9::"#GFH%$=%.66+'="5IF;9::C0;J:K3-$,L"
@"
"
"
"
012456787891 557
456 27787976 65! "
D3(%S"*>(T")(%?(".)"6(6$%T" U$%"&)(%"-.*.3" 2.*."Q/$,R)"*>&)",$'*.+'"?.%+.Q/("-.*."*>.*"+)"&)(-"QT"*>("&)(%"V%$=%.63"W$&",.'"-(U+'("*>(" )*%&,*&%("$U"=/$Q./"-.*."Q/$,R)".)"%(X&+%(-3"" 8/$Q./"-.*."Q/$,R)")*$%("-.*."*>.*",.'"Q("&)(-"YZ[\]][^_`ab[Y]^cde"f)(("#+=&%("Ig3"h'/T"*>(" .))$,+.*(-"U&',*+$'"Q/$,R")>$&/-".,,())"+')*.',("-.*."Q/$,R)3"i>("6.K+6&6")+j("$U"-.*." Q/$,R)"?.%+()"-(V('-+'="$'"*>("@Gk3"" #&',*+$'B;:"
8/$Q./"2F" f2FB8/$Q./g" 7,,())"U$%".//"Q/$,R)"
#&',*+$'B;;" #&',*+$'"" Q/$,RB;9"
P')*.',("2F" 7,,())"$'/T"U$%"U&',*+$'"" f2FBP')*.',(g" -.*."Q/$,RB;9"
#+=&%("Il"2+UU(%(',("Q(*m(('"=/$Q./"2F".'-"+')*.',("2F3"
"
" 7VV/+,.*+$'"(K.6V/()"U$%"9 M6 66M NO".%(l" n" 5.?+'="$U"+'U$%6.*+$'".Q$&*".")*$%.=(")T)*(63"op>+,>"V%$-&,*"+)"/$,.*(-"m>(%(qo" n" 5.?+'="$U"%(,+V()"U$%"V.%*+,&/.%"V%$-&,*)3"
#$%"&'%()*%+,*(-"&)("+'"(-&,.*+$'./".'-"012"+')*+*&*+$')3"4"5+(6(')"78"9:;*)"%()(%?(-3" 5@ABACB:D;E9::"#FEG%$=%.66+'="5HE;9::B0;I:J3-$,K"
;:"
"
"
"
012456787891 557
456 27787976 65! "
D3H"L7M565! N67M 97M OP
7"&)(%"Q%$=%.6",.'"R(",%(.*(-"S+*>"/+'(.%"$%")*%&,*&%(-"Q%$=%.66+'=3"TUVWXYZ[Y\]YX^^UV]" S%+*()"*>("('*+%("&)(%"Q%$=%.6"+'"*>(",_,/("`Fa"R&*"+)"$'/_")&+*.R/("b$%"?(%_")+6Q/("Q%$=%.6)"b$%" S>+,>"$*>(%"/())"(KQ(')+?(",$'*%$/")_)*(6)a")&,>".)"c`8`da",.'"'$S"R("&)(-3" #$%"6$%(",$6Q/(K"Q%$=%.6)a"efYghfgYWiZ[Y\]YX^^UV]"+)"./S._)"%(,$66('-(-3"j(%(a"*>(" $?(%.//".&*$6.*+$'"*.)k",.'"R("R%$k('"-$S'"+'*$")6.//")&RE*.)k)"+'"$%-(%"*$"+6Q/(6('*"." )$/&*+$'"b$%"*>(6"+'"b&',*+$')".'-"b&',*+$'"R/$,k)3" l'"*>+)",.)(a"/+R%.%_E,$6Q.*+R/("/$=+,"R/$,k)")>$&/-"R(",%(.*(-"Q%(b(%('*+.//_3"m>+)"6(.')"*>.*" *>("+'Q&*".'-"$&*Q&*"Q.%.6(*(%)"$b"."b&',*+$'"$%"b&',*+$'"R/$,k".%("-(b+'(-"=('(%.//_".'-"$'/_" )&QQ/+(-"S+*>"*>(",&%%('*"=/$R./"*.=)"n+'Q&*)o$&*Q&*)p"S>('"*>("R/$,k"+)"&)(-3""
"
#+=&%("",.//"+'"`F;"
"
#$%"&'%()*%+,*(-"&)("+'"(-&,.*+$'./".'-"012"+')*+*&*+$')3"4"5+(6(')"78"9:;*)"%()(%?(-3" 5@ABACB:D;E9::"#FEG%$=%.66+'="5HE;9::B0;I:J3-$,K"
;;"
"
"
"
012456787891 557
456 27787976 65! "
D3L"5956
789 689 69M
#$%"5NO7PN@"5HE;9::",$'*%$//(%Q"*>(".?.+/.R/("S%$=%.66+'="/.'=&.=()"T$%"S%$=%.66+'=" T&',*+$')".'-"T&',*+$'"R/$,U)".%("#&',*+$'"F/$,U"2+.=%.6"V#F2WQ"X.--(%"X$=+,"VX72W".'-" 5*%&,*&%(-"@$'*%$/"X.'=&.=("V5@XW3" P>("YZ[\]^_[`ab_\c`d^efgeh`iYadj"S%$=%.66+'="/.'=&.=("k+//"R("S%()('*(-"+'"*>(" T$//$k+'=3` #F2"+)"."=%.S>+,./"S%$=%.66+'="/.'=&.=(3"P>("%(S%()('*.*+$'"+)"R.)(-"$'"(/(,*%$'+," )k+*,>+'=")l)*(6)3"P>("S%$=%.6"+)"6.SS(-"+'"'(*k$%U)3"7"'(*k$%U",$'*.+')"$'("$%"6$%("/$=+," $S(%.*+$'"S.*>)3"F+'.%l".'-".'./$=")+='./)".%("/+'U(-"*$=(*>(%"Rl"R$K()3"P>("=%.S>+,./"/$=+," )l6R$/)"U'$k'"T%$6"F$$/(.'"./=(R%.".%("&)(-"*$"%(S%()('*"*>("R+'.%l"/$=+,3" m$&",.'"&)("R+'.%l"T&',*+$')"*$"n&(%l"R+'.%l"$S(%.'-)".'-"*$"/$=+,.//l",$6R+'("*>(+%")+='./" )*.*()3"P>("T$//$k+'="+')*%&,*+$')".%("(K.6S/()"$T"R+'.%l"T&',*+$')o"p7C2"$S(%.*+$'pQ"pq0" $S(%.*+$'p".'-"pAr@Xs5NtA"q0"$S(%.*+$'p3"P>()(".%(")>$k'"+'"#+=&%("H3"
"
#+=&%("Ho"F+'.%l"T&',*+$')"+'"#F2".'-".))$,+.*(-"/$=+,"*.R/("
"
m$&",.'"*>&)"&)(")+6S/("+')*%&,*+$')Q"T$%"(K.6S/(Q"*$",$'*%$/"R+'.%l"$&*S&*)Q"(?./&.*("(-=()" .'-"(K(,&*("u&6S"T&',*+$')"+'"*>("S%$=%.63" G%$=%.6"(/(6('*)")&,>".)"NA@"*+6(%)".'-"NA@",$&'*(%)"S%$?+-(",$6S/(K"+')*%&,*+$')3" P>("(6S*l"R$K")(%?()".)"."S/.,(>$/-(%"+'"k>+,>"l$&",.'")(/(,*"*>("%(n&+%(-"+')*%&,*+$'3" A'.R/("+'S&*"AC"V('.R/(Wv"A'.R/("$&*S&*"ACq"V('.R/("$&*S&*W"6(,>.'+)6o" w" 7'"+')*%&,*+$'"k+*>$&*"ACvACq"6(,>.'+)6"+)"(K(,&*(-"+'-(S('-('*"$T"*>(")+='./")*.*(".*" *>("R$K"+'S&*)3" w" N')*%&,*+$')"k+*>"ACvACq"6(,>.'+)6".%("$'/l"(K(,&*(-"+T"('.R/("+'S&*"pAC"+'S&*">.)" )+='./")*.*("p;p3"x>('"*>("R$K"+)"S%$,())(-",$%%(,*/lQ"('.R/("$&*S&*"pACqp">.)")+='./" )*.*("p;p3"NT".'"(%%$%"$,,&%)"-&%+'="S%$,())+'=Q"*>("('.R/("$&*S&*"pACqp"+)"%()(*3"NT"('.R/(" +'S&*"AC"+)"'$*",$''(,*(-Q"*>("R$K"+)"./k.l)"(K(,&*(-3"
#$%"&'%()*%+,*(-"&)("+'"(-&,.*+$'./".'-"012"+')*+*&*+$')3"4"5+(6(')"78"9:;*)"%()(%?(-3" 5@ABACB:D;E9::"#FEG%$=%.66+'="5HE;9::B0;I:J3-$,K"
;9"
"
"
"
012456787891 557
456 27787976 65! "
L46MN
O>("P$//$Q+'="P&',*+$')"$P"*>(")$%*+'=")*.*+$'"R%$,())"-(),%+R*+$'"Q+//"S("R/.''(-T"R%$=%.66(-" .'-"*()*(-"+'"*>+)",>.R*(%U" V" 7&*$6.*+,"6$-("E"A$'?(W$%"6$*$%"
X 688789
O>("R%$=%.66+'="$P".//"P&',*+$')"+'"YF;"+)"'$*"%(,$66('-(-"P$%"%(.)$')"$P",/.%+*W".'-" %(&).S+/+*W3"O>("6.Z$%+*W"$P"*>("R%$=%.6",$-("Q+//"*>(%(P$%("S("6$?(-"+'*$"P&',*+$')"[#A)\".'-" P&',*+$'"S/$,])"[#F)\3"O>("-(,+)+$'"$'"Q>+,>"P&',*+$')"+)"*$"S("6$?(-"*$"*>("#F".'-"Q>+,>"+)" *$"%&'"+'"YF";"+)"R/.''(-"S(/$Q3"
I3;"22^_2`1a04b
O>("BcB08BDAd"5OYG"-$()"'$*"%(e&+%(".")(R.%.*("P&',*+$'3"f&)*"/+]("*>("$R(%.*+'="6$-(T" *>(",&%%('*")*.*("$P"*>("BcB08BDAd"5OYG"%(/.W",.'"S("&)(-"-+%(,*/W".*"*>("S/$,])3"
I39" 67 18g!5 5
7&*$6.*+,"6$-("$P"*>(",$'?(W$%"6$*$%"+)"*$"S("(',.R)&/.*(-"+'"."P&',*+$'"S/$,]"[#F\" hcYOY0C7iOYh3"Y'"*>("$'(">.'-T"*>+)"R%()(%?()"*>(",/.%+*W"$P"YF;3"Y'"*>("$*>(%">.'-T"+*" ('.S/()"%(&)("+P".'$*>(%",$'?(W$%"S(/*"+)".--(-"*$"*>(")*.*+$'3"O.S/("9"/+)*)"*>("R/.''(-" R.%.6(*(%)3" 8j 2.*." A$66('*" *FYYk WR("" 7&*$6.*+,"6$-(".,*+?.*(-" 7&*$6.*+,C6$-(C.,*+?(" 5*.%*" FYYk" G&)>S&**$'".&*$6.*+,")*.%*" 5*$R" FYYk" G&)>S&**$'".&*$6.*+,")*$R" B'.S/(CYl" FYYk" 7//"('.S/(",$'-+*+$')"Yl" 5.P(*WC)>&*$PPC.,*+?(" FYYk" 5.P(*W")>&*$PP".,*+?("(3=3"(6(%=(',W")*$R" $"R(%.*(-" b j " '*%$/"$P"*>(",$'?(W$%"6$*$%"+'".&*$6.*+," A$'?(W$%C6$*$%C.&*$6.*+,C6$-(" FYYk" A$ 6$-(" 067 c(6$%WC.&*$6.*+,C)*.%*C)*$R" FYYk" c(6$%W"&)(-"P$%")*.%*m)*$R".&*$6.*+,"6$-(" O.S/("9U"G.%.6(*(%)"P$%"#F"hcYOY0C7iOYh"
O>("c(6$%WC.&*$6.*+,C)*.%*C)*$R"+)"/.*,>(-"Q+*>"5*.%*"S&*"$'/W"+P"*>("%()(*",$'-+*+$')".%("'$*" R%()('*3"" O>("c(6$%WC.&*$6.*+,C)*.%*C)*$R"+)"%()(*"+P"5*$R"+)"R%()('*"$%").P(*W")>&*$PP"+)".,*+?("$%" .&*$6.*+,"6$-("+)"'$*".,*+?.*(-"[6.'&./"6$-(\3" O>("A$'?(W$%C6$*$%C.&*$6.*+,C6$-("$&*R&*"+)",$'*%$//(-"Q>('" c(6$%WC.&*$6.*+,C)*.%*C)*$R"+)")(*".'-"*>("('.S/(",$'-+*+$')".%("6(*3" #$%"&'%()*%+,*(-"&)("+'"(-&,.*+$'./".'-"012"+')*+*&*+$')3"4"5+(6(')"78"9:;*)"%()(%?(-3" 5ABCBDC:@;E9::"#FEG%$=%.66+'="5HE;9::C0;I:J3-$,K"
;@"
"
"
"
012456787891 557
456 27787976 65! "
J3E"421LMNONPQPR
S(%(T"U$&")(("*>("*(,>'$/$=U"-+.=%.6"V$%"*>("*.)W3" "
#+=&%("XY"Z(,>'$/$=U"-+.=%.6"
#+=&%("[Y"A$'*%$/"\.'(/"
"
"
"
#$%"&'%()*%+,*(-"&)("+'"(-&,.*+$'./".'-"012"+')*+*&*+$')3"4"5+(6(')"78"9:;*)"%()(%?(-3" 5ABCBDC:E;F9::"#GFH%$=%.66+'="5IF;9::C0;J:@3-$,K"
;@"
"
"
"
012456787891 557
456 27787976 65! "
@3J"L2 2L2M12N04
O>("P$//$Q+'=")+='./)".%("'((-(-".)"$R(%.'-)"P$%"*>+)"*.)S3" 4!T 87U75 878 W":3:" GXXY" F7;" 0(*&%'")+='./"(6(%=(',Z")*$R"$S" W":3;" GXXY" F[:" \.+'")Q+*,>"]XD]" W":39" GXXY" F5:" \$-(")(/(,*$%"6.'&./"^:_`".&*$6.*+,"^;_" W":3E" GXXY" F5;" H&)>b&**$'".&*$6.*+,")*.%*" W":3J" GXXY" F59" H&)>b&**$'".&*$6.*+,")*$R" W":3@" GXXY" FG;" 5(')$%",Z/+'-(%"\J"%(*%.,*(-" " V 4!T 87U75 878 c":3:" GXXY" Fc;" A$'?(Z$%"6$*$%"\;"P$%Q.%-)"P+K(-")R((-" d efgfhidjkldlfjflfhmfdnopqd " 2W" 2+=+*./"W'R&*" 2X" 2+=+*./"X&*R&*" " 7X" 7'./$="X&*R&*" " 7W" 7'./$="W'R&*" " W" W'R&*" c" X&*R&*" " DA" D$%6.//Z"A/$)(-"" " " DX" D$%6.//Z"XR('"" " " "
#$%"&'%()*%+,*(-"&)("+'"(-&,.*+$'./".'-"012"+')*+*&*+$')3"4"5+(6(')"78"9:;*)"%()(%?(-3" 5ABCBDC:E;F9::"#GFH%$=%.66+'="5IF;9::C0;@:J3-$,K"
M1MV DA" DX" \.'&./"a":" 7&*$"a";" DX" DA" DX" "
;@"
"
"
"
012456787891 557
456 27787976 65! "
05 5LMN!LM78L5 78L
O$&",.'"P+'-"+')*%&,*+$')"$'">$Q"*$",.%%R"$&*"S/.''+'="T(/$Q3"UP"R$&"./%(.-R">.?("."=$$-" &'-(%)*.'-+'="$P"(?(%R*>+'=V"+*"Q+//"T(")&PP+,+('*"*$"P$,&)"$'"*>("'&6T(%(-")*(S)3"W*>(%Q+)(V" )+6S/R"P$//$Q"*>("-(*.+/(-")*(S)"+'"*>("+')*%&,*+$')3"
".">.%-Q.%(",$'P+=&%.*+$'"^(3=3" 5@ABACB:;;B;:;Be.%-Q.%(B@$'P+=&%.*+$'B5HE@Gc;9;
[email protected]_3"b$"%(*%+(?(".'" (K+)*+'="S%$d(,*"*>.*">.)"T(('".%,>+?(-V"R$&"6&)*")(/(,*"*>("%(/(?.'*".%,>+?("Q+*>"\" G%$d(,*"\"0(*%+(?("+'"*>("S%$d(,*"?+(Q3"@$'P+%6"R$&%")(/(,*+$'"Q+*>"WS('"^\"G%$d(,*"\" 0(*%+(?("\"5(/(,*"."3f.S".%,>+?("\"WS('_3"
" \"b>("'(K*")*(S"+)"*$")(/(,*"*>("*.%=(*"-+%(,*$%R"Q>(%("*>("%(*%+(?(-"S%$d(,*"Q+//"T(")*$%(-3" @$'P+%6"R$&%")(/(,*+$'"Q+*>"`Wg`3"^\"b.%=(*"-+%(,*$%R"\"Wg_" "
#$%"&'%()*%+,*(-"&)("+'"(-&,.*+$'./".'-"012"+')*+*&*+$')3"4"5+(6(')"78"9:;*)"%()(%?(-3" 5@ABACB:D;E9::"#FEG%$=%.66+'="5HE;9::B0;I:J3-$,K"
;("N"HTA"*.=)"$U"V$&%",$'*%$//(%".'-",%(.*("."'(R"*.=" *.W/("WV"-$&W/(F,/+,X+'="N"7--"'(R"*.="*.W/(3""
"
"
#$%"&'%()*%+,*(-"&)("+'"(-&,.*+$'./".'-"012"+')*+*&*+$')3"4"5+(6(')"78"9:;*)"%()(%?(-3" 5ABCBDC:E;F9::"#GFH%$=%.66+'="5@F;9::C0;I:J3-$,K"
;@"
"
"
"
012456787891 557
456 27787976 65! "
M"0('.6("*>("*.="*.N/("O$&"P&)*",%(.*(-".)"QR.=C*.N/(C)$%*+'=C)*.*+$'Q"SM"%+=>*F,/+,T" QR.=C*.N/(C;Q"M"Q0('.6(Q"M"R.=C*.N/(C)$%*+'=C)*.*+$'U3"
"
M"VW('"*>+)"*.="*.N/("X+*>"."-$&N/(F,/+,T3"" SM"R.=C*.N/(C)$%*+'=C)*.*+$'U"
#$%"&'%()*%+,*(-"&)("+'"(-&,.*+$'./".'-"012"+')*+*&*+$')3"4"5+(6(')"78"9:;*)"%()(%?(-3" 5ABCBDC:E;F9::"#GFH%$=%.66+'="5IF;9::C0;J:K3-$,L"
;@"
"
"
"
012456787891 557
456 27787976 65! "
("('*%T"U+*>"*>("B'*(%"V(T3"WS"T$&">.?("'$*"T(*",%(.*(-" .--+*+$'./"*.=)X"YW7"H$%*./"'$U".&*$6.*+,.//T".))+=')"-.*."*TZ("[G$$/[".'-".--%())"\W:3:" ]W":3:^"]Q"_7--`"Q"R;"Q"B'*(%^3"
"
Q"A>.'=("*>(".--%())"*$"\R:3:"]R":3:^"aT"('*(%+'="*>+)"-+%(,*/T"$%"aT",/+,V+'="*>("-%$ZF -$U'".%%$U"*$"$Z('"*>("7--%())+'="6('&3"A>.'=("*>("$Z(%.'-"+-('*+S+(%"*$"R".'-" ,$'S+%6"U+*>"B'*(%"$%"aT",/+,V+'="*>(",>(,V"6.%V"]Q"\W:3:"Q"bZ(%.'-"+-('*+S+(%Q"R"Q"" ^"
Q"B'*(%"*>("[A$'?(T$%"6$*$%"c;"S$%U.%-)"S+L(-")Z((-[",$66('*"S$%"*>("*.=3"
"
#$%"&'%()*%+,*(-"&)("+'"(-&,.*+$'./".'-"012"+')*+*&*+$')3"4"5+(6(')"78"9:;*)"%()(%?(-3" 5ABCBDC:E;F9::"#GFH%$=%.66+'="5IF;9::C0;J:K3-$,L"
"
"
;@"
"
"
"
012456787891 557
456 27787976 65! "
L"7--"."'(M"N9"*.="+'"/+'("93"OP7"G$%*./">.)".&*$6.*+,.//Q".))+='(-"*>(").6("-.*."*QR(".)" *>("$'("+'"/+'(";".'-">.)"+',%(6('*(-"*>(".--%())"SQ";"*$"TN:3;"UN:3;V3"A'*(%"*>(" ,$66('*"W@$'?(Q$%"6$*$%"X;"S.,YM.%-)"Z+K(-")R((-W3"" UL"[7--\"L"N9"L"A'*(%"L"@$66('*"L"@$'?(Q$%"6$*$%"X;"S.,YM.%-)"Z+K(-")R((-V"
*E,/+,Y"$'".'"(6R*Q"Z+(/-"$Z"*>(",%(.*(-" WO.=B*.S/(B)$%*+'=B)*.*+$'W3"5(/(,*"WP6R$%*"Z+/(W"+'"*>(")>$%*,&*"6('&3" UL"0+=>*E,/+,Y"+'".'"(6R*Q"Z+(/-"$Z"*>("*.="*.S/("L"P6R$%*"Z+/(V"
"
#$%"&'%()*%+,*(-"&)("+'"(-&,.*+$'./".'-"012"+')*+*&*+$')3"4"5+(6(')"78"9:;*)"%()(%?(-3" 5@ABACB:D;E9::"#FEG%$=%.66+'="5HE;9::B0;I:J3-$,K"
"
9:"
"
"
"
012456787891 557
456 27787976 65! "
L"5(/(,*"*>("-()+%(-")M6N$/"*.N/("O(3=3"+'"3K/)K"P$%6.*Q".'-",$'P+%6"*>(")(/(,*+$'"R+*>" STU('S3" OL"5@ABACB:9:EVWWXYZ[X\Z]^_X`ab\cd[X`\Z\cadefL"TU('Q" L"g>('"*>("+6U$%*"+)"P+'+)>(-h"M$&"R+//")((".",$'P+%6.*+$'"R+'-$R".'-">.?(".'"$UU$%*&'+*M" *$"?+(R"*>("/$="P+/("P$%"*>("+6U$%*3"@/+,i"L"Tj3"
"
"
#$%"&'%()*%+,*(-"&)("+'"(-&,.*+$'./".'-"012"+')*+*&*+$')3"4"5+(6(')"78"9:;*)"%()(%?(-3" 5@ABACB:D;E9::"#FEG%$=%.66+'="5HE;9::B0;I:J3-$,K"
9;"
"
"
"
012456787891 557
456 27787976 65! "
L"M$&",.'")(("*>.*")$6(".--%())()">.?("N(('">+=>/+=>*(-"+'"$%.'=(3"O>()(".%("-&P/+,.*(" .--%())()".'-"*>("'.6()"$Q"*>(".))$,+.*(-"*.=)">.?("N(('"'&6N(%(-".&*$6.*+,.//R"*$" .?$+-",$'Q&)+$'3" L"2(/(*("*>("-&P/+,.*("*.=)"NR")(/(,*+'="*>("/+'()".'-"P%())+'="*>("2(/"S(R"$'"R$&%" S(RN$.%-"$%")(/(,*+'="T2(/(*(T"+'"*>(")>$%*,&*"6('&3" UL"0+=>*E,/+,S"$'")(/(,*(-"*.=)"L"2(/(*(V"
"
#$%"&'%()*%+,*(-"&)("+'"(-&,.*+$'./".'-"012"+')*+*&*+$')3"4"5+(6(')"78"9:;*)"%()(%?(-3" 5@ABACB:D;E9::"#FEG%$=%.66+'="5HE;9::B0;I:J3-$,K"
"
99"
"
"
"
012456787891 557
456 27787976 65! "
L"M$&"'$N">.?(".",$6O/(*(")P6Q$/"*.Q/("$R"*>("-+=+*./"+'O&*)".'-"$&*O&*)"+'"R%$'*"$R"P$&3" 5.?("P$&%"O%$S(,*"&'-(%"*>("'.6(":@;E9::C#FCG%$=%.66+'=3" TL"G%$S(,*"L"5.?(".)"333"L:@;E9::C#FCG%$=%.66+'="L"5.?(U"
"
#$%"&'%()*%+,*(-"&)("+'"(-&,.*+$'./".'-"012"+')*+*&*+$')3"4"5+(6(')"78"9:;*)"%()(%?(-3" 5ABCBDC:@;E9::"#FEG%$=%.66+'="5HE;9::C0;I:J3-$,K"
"
9@"
"
"
"
012456787891 557
456 27787976 65! "
("'&6O(%3"5(/(,*"*>("R7--"'(N".'-"$X('R",>(,P"O$K3"Z$&"N+//" *>&)"O("*.P('".&*$6.*+,.//M"*$"M$&%",%(.*(-"Y&',*+$'"O/$,P"+'"*>("X%$[(,*"?+(N3A/+,P"R7--R3" \L"D.6(Q"STUT0C7VUTL].'=&.=(Q"#G2"L"D&6O(%Q"7&*$6.*+,"L""7--"'(N".'-" $X('"L"7--^"
#$%"&'%()*%+,*(-"&)("+'"(-&,.*+$'./".'-"012"+')*+*&*+$')3"4"5+(6(')"78"9:;*)"%()(%?(-3" 5ABCBDC:E;F9::"#GFH%$=%.66+'="5IF;9::C0;@:J3-$,K"
"
9@"
"
"
"
012456787891 557
456 27787976 65! "
"."Y+'-$Y"V$%",%(.*+'=" *>("]/$,^"W$&"\&)*".--(-3" T"_$&",.'"V+'-"*>("+'*(%V.,("-(),%+Z*+$'"$V"W$&%"V&',*+$'"]/$,^"+'"*>("&ZZ(%")(,*+$'"$V"W$&%" Z%$=%.66+'="?+(Y3"
"
#$%"&'%()*%+,*(-"&)("+'"(-&,.*+$'./".'-"012"+')*+*&*+$')3"4"5+(6(')"78"9:;*)"%()(%?(-3" 5@ABACB:D;E9::"#FEG%$=%.66+'="5HE;9::B0;I:J3-$,K"
"
9(",$'?(N$%"6$*$%3"#$%"*>+)"%(.)$'Q"R(" P+%)*",%(.*("/$,./"$&*O&*"*.="SA$'?(N$%C6$*$%C.&*$6.*+,C6$-("$P"*>("TG$$/T"*NO(3"B'*(%" *>(",$66('*"TA$'*%$/"$P"*>(",$'?(N$%"6$*$%"+'".&*$6.*+,"6$-(T"P$%"*>("O.%.6(*(%3" UL"V&*O&*L"A$'?(N$%C6$*$%C.&*$6.*+,C6$-("L"G$$/"L"A$'*%$/"$P"*>(",$'?(N$%"6$*$%" +'".&*$6.*+,"6$-(W"
"
L"7--"O.%.6(*(%"S7&*$6.*+,C6$-(C.,*+?(".)"*>("+'O&*"+'*(%P.,("&'-(%"X'O&*".'-",$'P+%6" *>("('*%N"R+*>"*>("B'*(%"Y(N"$%"MN"(K+*+'="*>("('*%N"P+(/-3"2.*."*NO("TG$$/T"+)".))+='(-" .&*$6.*+,.//N3"Z>+)"R+//"M("%(*.+'(-3"D(K*Q"('*(%"*>(".))$,+.*(-",$66('*"T7&*$6.*+,"6$-(" .,*+?.*(-T3"" UL"X'O&*"L"7&*$6.*+,C6$-(C.,*+?("L"G$$/"L"7&*$6.*+,"6$-(".,*+?.*(-W"" L"A$'*+'&("MN".--+'="O.%.6(*(%)"S5*.%*Q"S5*$OQ"SB'.M/(CV[".'-"S5.P(*NC)>&*$PPC.,*+?(" .)".--+*+$'./"M+'.%N"+'O&*"O.%.6(*(%)".'-",>(,Y"*>(+%"-.*."*NO()3"7--"-(),%+O*+?(" ,$66('*)3""
"
#$%"&'%()*%+,*(-"&)("+'"(-&,.*+$'./".'-"012"+')*+*&*+$')3"4"5+(6(')"78"9:;*)"%()(%?(-3" 5ABCBDC:E;F9::"#GFH%$=%.66+'="5@F;9::C0;I:J3-$,K"
9@"
"
"
"
012456787891 557
456 27787976 65! "
M"N>(",$'?(O$%"+)")*.%*(-".'-")*$PP(-"Q+*>"P&)>R&**$')3"S("*>(%(T$%("'((-"."U5*.*+,U"*.=" .)"."6(6$%O3"V'-(%"5*.*+,W".--"*.="XY(6$%OC.&*$6.*+,C)*.%*C)*$P".'-",$'T+%6"*>("('*%O" Q+*>"*>("B'*(%"Z(O"$%"RO"(L+*+'="*>("('*%O"T+(/-3"2.*."*OP("UG$$/U"+)".))+='(-".&*$6.*+,.//O3" N>+)"Q+//"R("%(*.+'(-3"B'*(%"*>(".))$,+.*(-",$66('*"UY(6$%O"&)(-"T$%")*.%*C)*$P" .&*$6.*+,"6$-(U3"[M"5*.*+,"M"Y(6$%OC.&*$6.*+,C)*.%*C)*$P"M"G$$/"M"Y(6$%O"&)(-T$%" )*.%*\)*$P".&*$6.*+,"6$-(]""
M"#$%"P&%P$)()"$T"P%$=%.6"-$,&6('*.*+$'W".))+='"*>("R/$,Z"*+*/(W"."R/$,Z",$66('*".'-"." >(/PT&/"'(*Q$%Z"*+*/("T$%"D(*Q$%Z";3" [M"G/$,Z"*+*/(^"Y$*$%",$'*%$/"+'".&*$6.*+,"6$-("M"D(*Q$%Z";^" Y(6$%OC.&*$6.*+,C)*.%*C)*$P".'-",$'*%$/"$T"*>(",$'?(O$%"6$*$%"+'".&*$6.*+,"6$-(]"
"
#$%"&'%()*%+,*(-"&)("+'"(-&,.*+$'./".'-"012"+')*+*&*+$')3"4"5+(6(')"78"9:;*)"%()(%?(-3" 5ABCBDC:E;F9::"#GFH%$=%.66+'="5IF;9::C0;J:K3-$,L"
9@"
"
"
"
012456787891 557
456 27787976 65! "
("+'*(%U.,("-(),%+V*+$'W"X$&")(("."*$$/Y.%"+'"*>("V%$=%.66+'="T+'-$T"T+*>" ?.%+$&)"/$=+,"U&',*+$')".'-"Y(/$T"*>.*".'".%(."T+*>"'(*T$%Z)3"[(">.?("./%(.-X")V(,+U+(-" *>("Y/$,Z"*+*/(".'-"*>("*+*/("U$%"*>("U+%)*"'(*T$%Z"*>(%(3"H%$=%.66+'="+)"V(%U$%6(-"T+*>+'"*>(" '(*T$%Z)"&)+'="+'-+?+-&./"/$=+,"Y/$,Z)3"2+)*%+Y&*+$'".6$'="6&/*+V/("'(*T$%Z)">(/V)"*$" V%()(%?("*>(",/.%+*X"$U"*>("V%$=%.63"\'"*>("U$//$T+'=W"X$&"T+//"=(*"*$"Z'$T"*>("?.%+$&)"T.X)" X$&",.'"+')(%*"/$=+,"Y/$,Z)3"
" S"]'"*>("%+=>*")+-("$U"X$&%"V%$=%.66+'="T+'-$T"+)"."/+)*"$U"+')*%&,*+$')"X$&",.'"&)("+'"*>(" V%$=%.63"^'-(%"S"G.)+,"+')*%&,*+$')"S"G+*"/$=+,"$V(%.*+$')W"U+'-"U&',*+$'" " _7))+='6('*`".'-"&)("."-%.=F.'-F-%$V"$V(%.*+$'"*$"6$?("+*"*$"D(*T$%Z";"_=%(('"/+'(" .VV(.%)W"6$&)("V$+'*(%"T+*>"a")X6Y$/`3" _S"\')*%&,*+$')"S"G.)+,"+')*%&,*+$')"S"G+*"/$=+,"$V(%.*+$')"S" `"
"
#$%"&'%()*%+,*(-"&)("+'"(-&,.*+$'./".'-"012"+')*+*&*+$')3"4"5+(6(')"78"9:;*)"%()(%?(-3" 5ABCBDC:E;F9::"#GFH%$=%.66+'="5IF;9::C0;J:K3-$,L"
"
9@"
"
"
"
012456787891 557
456 27787976 65! "
L"D$M"&)("-%.=E.'-E-%$N"*$"6$?("O$&%"$&*N&*"N.%.6(*(%" PA$'?(O$%C6$*$%C.&*$6.*+,C6$-("$'*$"QRR3RS".T$?("*>("T/$,U"O$&"V&)*"+')(%*(-3"W>(" T()*"M.O"*$")(/(,*"."N.%.6(*(%"+'"*>("+'*(%X.,("-(),%+N*+$'"+)"TO"Y=%.TT+'=Y"+*".*"*>("T/&(" )O6T$/" 3" ZL" "A$'?(O$%C6$*$%C.&*$6.*+,C6$-(["
"
" L"W>+)"-(*(%6+'()"*>.*"*>("PA$'?(O$%C6$*$%C.&*$6.*+,C6$-("N.%.6(*(%"+)"M%+**('"TO"*>+)" T/$,U3"5*+//"6+))+'=\">$M(?(%\".%("*>("+'N&*",$'-+*+$')")$"*>.*"*>+)".,*&.//O">.NN(')3"7'" 50"X/+NEX/$N".'-"PB'.T/(C]^"N.%.6(*(%".%("/$=+,.//O",$6T+'(-"M+*>".'"7D2"/$=+," $N(%.*+$'".*"*>("+'N&*"$X"*>(".))+='6('*"T/$,U3"W$"-$"*>+)\"X+%)*",/+,U"*>("+'N&*"$X"*>("T/$,U" )$"*>.*"*>("+'N&*"/+'(">.)"."T/&("T.,U=%$&'-3"
"
"
#$%"&'%()*%+,*(-"&)("+'"(-&,.*+$'./".'-"012"+')*+*&*+$')3"4"5+(6(')"78"9:;*)"%()(%?(-3" 5ABCBDC:@;E9::"#FEG%$=%.66+'="5HE;9::C0;I:J3-$,K"
@:"
"
"
"
012456787891 557
456 27787976 65! "
L"A/+,M"*>(" "+,$'"+'"N$&%"/$=+,"*$$/O.%"*$"+')(%*".'"7D2"/$=+,"$P(%.*+$'"O(Q$%("N$&%" .))+='6('*"O/$,M3"
"
" L"R)("-%.=E.'-E-%$P"*$"6$?("+'P&*"P.%.6(*(%"SB'.O/(CTU"$'*$"*>(")(,$'-"+'P&*"$Q"*>("1" /$=+,"$P(%.*+$'"VWW3WX3"YL" "B'.O/(CTUZ"
"
#$%"&'%()*%+,*(-"&)("+'"(-&,.*+$'./".'-"012"+')*+*&*+$')3"4"5+(6(')"78"9:;*)"%()(%?(-3" 5ABCBDC:@;E9::"#FEG%$=%.66+'="5HE;9::C0;I:J3-$,K"
"
@;"
"
"
"
012456787891 557
456 27787976 65! "
L"M)("-%.=E.'-E-%$N"*$"6$?("*>("5(*O%()(*"P/+NEP/$N"P&',*+$'" "P%$6"*>("/+)*"$P" +')*%&,*+$')"&'-(%"L"F.)+,"+')*%&,*+$')"L"F+*"/$=+,"$N(%.*+$')"$'*$"*>("P+%)*"+'N&*"$P"*>("1" $N(%.*+$'" 3" QL"R')*%&,*+$')"L"F.)+,"+')*%&,*+$')"L"F+*"/$=+,"$N(%.*+$')"L" "L" "S"
L"T>("50"P/+NEP/$N"%(U&+%()"."6(6$%V"*.=3"#$%"*>+)W"&)("-%.=E.'-E-%$N"*$"6$?(")*.*+," N.%.6(*(%"XY(6$%VC.&*$6.*+,C)*.%*C)*$N"$'*$"*>("Z[[3[\".]$?("*>("50"P/+NEP/$N3"" QL" "Y(6$%VC.&*$6.*+,C)*.%*C)*$NS"
"
" #$%"&'%()*%+,*(-"&)("+'"(-&,.*+$'./".'-"012"+')*+*&*+$')3"4"5+(6(')"78"9:;*)"%()(%?(-3" 5ABCBDC:@;E9::"#FEG%$=%.66+'="5HE;9::C0;I:J3-$,K"
@9"
"
"
"
012456787891 557
456 27787976 65! "
L"M>("NO(6$%PC.&*$6.*+,C)*.%*C)*$Q"R+//"S(")(*"R+*>"+'Q&*"*.="N5*.%*3"A/+,T"*R+,("$'"*>("5" +'Q&*"$U"*>("50"U/+QEU/$Q"VWW3WX".'-"('*(%"Y5*.%*Y"+'"*>("U+(/-"*>.*".QQ(.%)"+'"$%-(%"*$")(("." /+)*"$U".?.+/.S/("*.=)")*.%*+'="R+*>"Y5*.%*Y3A/+,T"*>("N5*.%*"*.=".'-".QQ/P"R+*>"L"B'*(%3" ZL"50"U/+QEU/$Q"L"VWW3WX"L"5*.%*"L"N5*.%*"L"B'*(%["
" \]^_`abcdefghhijeiejfkgjhfiefkcihflgmnfkcdodfihfgfoihpfqrfgfsituvwflikcfkcdfjxqygxfkgjhfroqsfkcdf kgjfkgyxdzf{cdfwod|iqvhxmfwodhdekd}fwoq~d}vodfvhiejf}ogjfge}f}oqwfroqsfkcdfiekdorg~df }dh~oiwkiqefhcqvx}fkcdodrqodfydfvhd}fwodrdodekigxxmza " L"O&/*+Q/(",$'-+*+$')".%("*$"S(".S/("*$")*$Q"*>(",$'?(P$%3"7'"0"S/$,T"+)"*>(%(U$%("'((-(-" .*"*>("0;"+'Q&*"$U"*>("50"U/+QEU/$Q3"#+%)*",/+,T"*>("0;"+'Q&*"$U"*>("50"U/+QEU/$Q")$"*>.*"*>(" +'Q&*"/+'(">.)"."S/&("S.,T=%$&'-3"
"
#$%"&'%()*%+,*(-"&)("+'"(-&,.*+$'./".'-"012"+')*+*&*+$')3"4"5+(6(')"78"9:;*)"%()(%?(-3" 5ABCBDC:@;E9::"#FEG%$=%.66+'="5HE;9::C0;I:J3-$,K"
@@"
"
"
"
012456787891 557
456 27787976 65! "
L"B/+,M"*>(" "+,$'"+'"N$&%"/$=+,"*$$/O.%"*$"+')(%*".'"P0"/$=+,"$Q(%.*+$'3"
L"R>("P0"O/$,M">.)"9"+'Q&*)"+'+*+.//N3"S'"$%-(%"*$"/$=+,.//N",$6O+'(".'".--+*+$'./"+'Q&*"*.=T" ,/+,M"*>("N(//$U")*.%" "$V"N$&%"P0"O/$,M3"
"
" L"7--"+'Q&*"*.=)"W5*$QT"W5.V(*ND)>&*$VVD.,*+?(".'-"W7&*$6.*+,D6$-(D.,*+?("*$"*>("@" +'Q&*)"$V"*>("P0"O/$,M3"
"
#$%"&'%()*%+,*(-"&)("+'"(-&,.*+$'./".'-"012"+')*+*&*+$')3"4"5+(6(')"78"9:;*)"%()(%?(-3" 5BCDCED:@;F9::"#GFH%$=%.66+'="5IF;9::D0;J:A3-$,K"
@A"
"
"
"
012456787891 557
456 27787976 65! "
L"E(=.*("*>("+'M&*",$''(,*(-"*$"M.%.6(*(%"N7&*$6.*+,D6$-(D.,*+?("OP")(/(,*+'="+*".'-" ,/+,Q+'=" 3""
"
" L"2$"'$*"R$%=(*"*$",/+,Q" "%(=&/.%/P3"S>("R+'+)>(-"R&',*+$'"O/$,Q" TUVSV0D7WSVT"X#G;Y"+'"#G2"+)")>$Z'"O(/$Z3"
"
#$%"&'%()*%+,*(-"&)("+'"(-&,.*+$'./".'-"012"+')*+*&*+$')3"4"5+(6(')"78"9:;*)"%()(%?(-3" 5BCDCED:@;F9::"#GFH%$=%.66+'="5IF;9::D0;A:J3-$,K"
"
@A"
"
"
"
012456787891 557
456 27787976 65! "
L"M'-(%"N8('(%./N"+'"*>("O%$O(%*+()"$P"*>("Q/$,RS"T$&",.'",>.'=("*>("NU.'=&.=(N"*$"U72" VU.--(%"U$=+,W"VLG%$O(%*+()"L"8('(%./"L"U.'=&.=(X"U72W"
L"Y>("O%$=%.6">.)"*>("P$//$Z+'=".OO(.%.',("+'"U723"
"
"
#$%"&'%()*%+,*(-"&)("+'"(-&,.*+$'./".'-"012"+')*+*&*+$')3"4"5+(6(')"78"9:;*)"%()(%?(-3" 5ABCBDC:@;E9::"#FEG%$=%.66+'="5HE;9::C0;I:J3-$,K"
" @("Z%$=%.66+'=" /.'=&.=("*$"#G2"e#&',*+$'"G/$,]"2+.=%.6f3"g$"-$")$c"Y+%)*",/+,]"$'"^_.+'"`aG;b^"+'"*>(" ^H%$=%.6"\/$,])^"Y$/-(%3"" eX"BHhD;9;JB"`BHh";9;JB"2Bi2Bi2Bb"X"H%$=%.6"\/$,])"X"_.+'"`aG;b"X"5d+*,>" Z%$=%.66+'="/.'=&.=("X"#G2f"
"
X"aZ('"*>("^_.+'"`aG;b^"$%=.'+[.*+$'"\/$,]"d+*>"."-$&\/(F,/+,]3"
" #$%"&'%()*%+,*(-"&)("+'"(-&,.*+$'./".'-"012"+')*+*&*+$')3"4"5+(6(')"78"9:;*)"%()(%?(-3" 5BCDCED:@;F9::"#GFH%$=%.66+'="5AF;9::D0;I:J3-$,K"
@A"
"
"
"
012456787891 557
456 27787976 65! "
M"7))+='"E(*N$%O";"*>("'.6("PB$'*%$/",$'?(Q$%"*%.,O+'="R$%N.%-)"+'".&*$6.*+,"6$-(P" SM"E(*N$%O";T333"MB$'*%$/",$'?(Q$%"*%.,O+'="R$%N.%-)"+'".&*$6.*+,"6$-(U"
M"V)("-%.=F.'-F-%$W"*$"6$?("Q$&%"PXYZY0D7VZY"[#G;\P"R&',*+$'"]/$,O"$'*$"*>("=%(('" /+'("+'"E(*N$%O";3"
"
#$%"&'%()*%+,*(-"&)("+'"(-&,.*+$'./".'-"012"+')*+*&*+$')3"4"5+(6(')"78"9:;*)"%()(%?(-3" 5BCDCED:@;F9::"#GFH%$=%.66+'="5IF;9::D0;J:K3-$,L"
"
"
@A"
"
"
"
012456787891 557
456 27787976 65! "
M"N>("+')*.',("-.*."O/$,P"Q$%"*>+)",.//"$Q"#G;"+)",%(.*(-".&*$6.*+,.//R3"7))+='"."'.6(".'-" .SS/R"+*"T+*>"UV3"WM"XUNU0D7YNUD2G;"M"UVZ"
" M"7"O/$,P"T+*>"*>("+'*(%Q.,("R$&"-(Q+'(-["*>("+')*.',("-.*."O/$,P".'-",$''(,*+$')"CE".'-" CEU".%("+')(%*(-"+'"E(*T$%P";3"
" M"N$"+')(%*".'"7E2"O(Q$%("+'S&*"S.%.6(*(%"\C'.O/(DUV\[")(/(,*"*>+)"+'S&*".'-"+')(%*"*>(" 7E2"OR",/+,P+'="*>(" "+,$'"+'"R$&%"/$=+,"*$$/O.%"WM Z3"
" #$%"&'%()*%+,*(-"&)("+'"(-&,.*+$'./".'-"012"+')*+*&*+$')3"4"5+(6(')"78"9:;*)"%()(%?(-3" 5BCDCED:@;F9::"#GFH%$=%.66+'="5IF;9::D0;J:K3-$,L"
@A"
"
"
"
012456787891 557
456 27787976 65! "
L"M$",$''(,*"*>("N/$,O"*$"*>("=/$N./"*.=)"P%$6"QM.=C*.N/(C)$%*+'=C)*.*+$'QR"S(">.?("*S$" $T*+$')U" L"B+*>(%")(/(,*"*>("QM.=C*.N/(C)$%*+'=C)*.*+$'Q"+'"*>("T%$V(,*"*%((".'-"&)("-%.=F.'-F-%$T"*$" 6$?("*>("-()+%(-"=/$N./"*.="P%$6"*>("2(*.+/)"?+(S"*$"*>("+'*(%P.,("$P"#A;" "W"L"M.=C*.N/(C)$%*+'=C)*.*+$'"L"2(*.+/)"?+(S"L"F5:"L"7&*$6.*+,C6$-(C.,*+?(X"
" L"Y%R"('*(%"*>(")*.%*+'="/(**(%)"W(3=3"QF5QX"$P"*>("-()+%(-"=/$N./"*.="P$%"Z[[3[\".'-")(/(,*"*>(" =/$N./"+'T&*"*.="QF5:Q"W]^:39X"P%$6"*>("-+)T/._(-"/+)*"WL"7&*$6.*+,C6$-(C.,*+?("L"F5"L" F5:X3"
"
#$%"&'%()*%+,*(-"&)("+'"(-&,.*+$'./".'-"012"+')*+*&*+$')3"4"5+(6(')"78"9:;*)"%()(%?(-3" 5ABCBDC:E;F9::"#GFH%$=%.66+'="5IF;9::C0;J:@3-$,K"
@:"
"
"
"
012456787891 557
456 27787976 65! "
L"M')(%*"*>("$*>(%"+'N&*"*.=)"OF5;OP"OF59OP"OFQ:OP"OFG;O".'-"OF7;O".'-"*>('"+')(%*"$&*N&*"*.="" OFR;O"STR:3:U".*"$&*N&*"OA$'?(V$%C6$*$%C.&*$6.*+,C6$-(O3"
" L"D(=.*("*>("W&(%V+'="$X"+'N&*"*.=)"OF59O".'-"OF7;O"YV")(/(,*+'="*>(6".'-",/+,Z+'=" " SL"F59"L" "L"F7;"L" U3"
#$%"&'%()*%+,*(-"&)("+'"(-&,.*+$'./".'-"012"+')*+*&*+$')3"4"5+(6(')"78"9:;*)"%()(%?(-3" 5ABCBDC:E;F9::"#GFH%$=%.66+'="5IF;9::C0;J:@3-$,K"
@;"
"
"
"
012456787891 557
456 27787976 65! "
("U72"VU.--(%"U$=+,W"X%$=%.66+'="/.'=&.=(">.)"*>("Y$//$Z+'=" .XX(.%.',(3" "
#$%"&'%()*%+,*(-"&)("+'"(-&,.*+$'./".'-"012"+')*+*&*+$')3"4"5+(6(')"78"9:;*)"%()(%?(-3" 5ABCBDC:E;F9::"#GFH%$=%.66+'="5IF;9::C0;J:@3-$,K"
"
@9"
"
"
"
012456787891 557
456 27787976 65! "
("WH%$=%.6"U/$,V)W"X$/-(%".'-")(/(,*"*>(" "+,$'"X$%",$6R+/+'="+'"*>("6('&"" YO" "O"H%$=%.6"U/$,V)"O" Z3"
" O"P>("W['X$WT"WB$6R+/(W".%(.")>$\)"\>+,>"U/$,V)"\(%(")&,,())X&//Q",$6R+/(-3"
#$%"&'%()*%+,*(-"&)("+'"(-&,.*+$'./".'-"012"+')*+*&*+$')3"4"5+(6(')"78"9:;*)"%()(%?(-3" 5BCDCED:A;F9::"#GFH%$=%.66+'="5IF;9::D0;J:@3-$,K"
"
@A"
"
"
"
012456787891 557
456 27787976 65! "
(",%(.*(-"Q%$=%.6R".)" Q%(?+$&)/T"-(),%+U(-"+'"*>("6$-&/()"P$%">.%-S.%(",$'P+=&%.*+$'R",.'"U("-$S'/$.-(-"" VO" W3"
#$%"&'%()*%+,*(-"&)("+'"(-&,.*+$'./".'-"012"+')*+*&*+$')3"4"5+(6(')"78"9:;*)"%()(%?(-3" 5ABCBDC:E;F9::"#GFH%$=%.66+'="5IF;9::C0;J:@3-$,K"
"
@@"
"
"
"
012456787891 557
456 27787976 65! "
("-()+%(-"R/$,S"6&)*"R("$T('"U$%"6$'+*$%+'="*>("-$V'/$.-(-"T%$=%.63"Q>("6$'+*$%+'=" ,.'"'$V"R(".,*+?.*(-W-(.,*+?.*(-"RX",/+,S+'="*>("" "+,$'"YP"Z.+'"[\H;]"P" ^3"
"
"
" _`abcdefghijklmjnlkohfgnghlphplokqrsngrqmgthqkthujkmnjrrgnstgvgktgkmwhefghplokqrhpmqmgphqmhmfgh mgnilkqrphqnghlktluqmgthxlmfheyz{hjnh|}~{wd
#$%"&'%()*%+,*(-"&)("+'"(-&,.*+$'./".'-"012"+')*+*&*+$')3"4"5+(6(')"78"9:;*)"%()(%?(-3" 5BCDCED:F;G9::"#HGI%$=%.66+'="5JG;9::D0;A:@3-$,K"
@A"
"
"
"
012456787891 557
456 27787976 65! "
L"M>("NOPMP0C7QMPN"R#G;S"T&',*+$'"U/$,V",.//(-"+'"*>("NO.+'"RPG;SN"$%=.'+W.*+$'"U/$,V" ,.'"U(")(/(,*(-"-+%(,*/X"T$%"NPY('".'-"6$'+*$%N".T*(%"%+=>*F,/+,V+'="ZL"NOPMP0C7QMPN" R#G;S"L"PY('".'-"6$'+*$%[3"
"
" \]^_`abcdefghijgkihlecdkdeimenohpjighqkdrsjdteshtepghjkgrrdkqihtdudhtdhjvebcdespjosjighegne mdhmgkmeshtejcdemjsjighemjsjomeskdemcgwhecdkdewijcebxyzegke{|}~zva " #$%"&'%()*%+,*(-"&)("+'"(-&,.*+$'./".'-"012"+')*+*&*+$')3"4"5+(6(')"78"9:;*)"%()(%?(-3" 5ABCBDC:E;F9::"#GFH%$=%.66+'="5IF;9::C0;J:@3-$,K"
@.*"+)",.//(-" 6&/*+O/("*+6()"+)"*$"W("6$'+*$%(-Y"*>+)",.'"W("O(%N$%6(-"&)+'="*>(" "+,$'3"S>(%(".%("*Z$" ./*(%'.*+?()".?.+/.W/("N$%")O(,+N[+'="*>(",.//"('?+%$'6('*\"&)+'="*>(",.//"('?+%$'6('*"$%" *>("+')*.',("-.*."W/$,X"]L" "L"M')*.',("-.*."W/$,X"L"QRSR0D7TSRD2H;"U2H;V"L" B.//"('?+%$'6('*"L"7--%())\"RH;"L"2(*.+/)\"Q.+'"E^;"L"R_`3"
"
"
"
#$%"&'%()*%+,*(-"&)("+'"(-&,.*+$'./".'-"012"+')*+*&*+$')3"4"5+(6(')"78"9:;*)"%()(%?(-3" 5BCDCED:F;G9::"#HGI%$=%.66+'="5AG;9::D0;J:@3-$,K"
@A"
"
"
"
012456787891 557
456 27787976 65! "
+?("*>(",$6S/(*("S%$V(,*3"5(/(,*"*>("Q"W7%,>+?("333W" ,$66.'-"+'"*>("Q"WI%$V(,*W"6('&3"5(/(,*"."R$/-(%"U>(%("X$&"U.'*"*$".%,>+?("X$&%"S%$V(,*" .'-").?("+*"U+*>"*>("R+/("*XS("WYZ7"I$%*./"S%$V(,*".%,>+?(W3"[Q"I%$V(,*"Q"7%,>+?("Q"YZ7" I$%*./"S%$V(,*".%,>+?("Q":F;G\]]^_`abcdecfgghiejkaQ"5.?(l"
m
#$%"&'%()*%+,*(-"&)("+'"(-&,.*+$'./".'-"012"+')*+*&*+$')3"4"5+(6(')"78"9:;*)"%()(%?(-3" 5BCDCED:F;G9::"#HGI%$=%.66+'="5JG;9::D0;K:@3-$,L"
"
@A"
"
"
"
012456787891 557
456 27787976 65! "
$&*"(%%$%"6()).=(" 5U+*,>"$'")*.*+$'"VGW:"X";Y" BZ/+'-(%"%(*%.,*(-"["#((-\.,]".,*+?.*(-"VGH;"X";Y" C^C08CEB_"`##"VG7;"X";Y"'$*".,*+?.*(-" B"6$-("VG5:"X";Y" F" 7ab`^7bc I&)>\&**$'".&*$6.*+,")*$S"'$*".,*&.*(-"VG59"X";Y" H%+(T/Z"S%())"*>(".&*$6.*+,")*.%*"S&)>\&**$'"VG5;"X";Y" B$'?(Z$%"6$*$%"T$%U.%-)"T+L(-")S((-"*>('")U+*,>()"$'"VGd;"X";Y" )U+*,>()"$'".'-")*.Z)"$'3" @" H%+(T/Z"S%())"*>(".&*$6.*+,")*$S"S&)>\&**$'"VG59"X":Y"e"Gd;"X":" K" 7,*+?.*("C^C08CEB_"`##"VG7;"X":Y"e"Gd;"X":" +?(-"
1 R " " " " " " " " "
" "
#$%"&'%()*%+,*(-"&)("+'"(-&,.*+$'./".'-"012"+')*+*&*+$')3"4"5+(6(')"78"9:;*)"%()(%?(-3" 5BCDCED:F;G9::"#HGI%$=%.66+'="5JG;9::D0;K:@3-$,L"
@A"
"
"
"
012456787891 557
456 27787976 65! "
L2M57N
I3;"46NOP2M57N"
Q'"*>+)"(K(%,+)(R".'"('(%=S").?+'="T&',*+$'"+)"*$"U(".--(-"*$"*>("VWXW0C7YXW"Z#G;["T&',*+$'" U/$,\3"X>("(K].'-(-"T&',*+$'"U/$,\"^+//"U("]/.''(-R"]%$=%.66(-".'-"*()*(-_" X$").?("('(%=SR"*>(",$'?(S$%")>$&/-"$'/S"%&'"^>('"."].%*"+)"]%()('*3" X>("A$'?(S$%C6$*$%C.&*$6.*+,C6$-("$&*]&*"+)"*>(%(T$%("$'/S".,*+?.*(-"^>('" V(6$%SC.&*$6.*+,C)*.%*C)*$]"+)")(*R"*>("('.U/(",$'-+*+$')".%("6(*".'-" V(6$%SC,$'?(S$%C)*.%*C)*$]"+)")(*3" X>("V(6$%SC,$'?(S$%C)*.%*C)*$]"+)")(*"^>('"5(')$%C,>&*(C$,,&]+(-")+='./)"."].%*".'-"+)" %()(*"^>('"5(')$%C('-C$TC,$'?(S$%"]%$-&,()"."'(=.*+?("(-=("$%").T(*S")>&*$TT"+)".,*+?("$%" .&*$6.*+,"6$-("+)"'$*".,*+?.*(-"`6.'&./"6$-(a3" "
I39"4b8 9!76956
c(%(R"S$&")(("*>("*(,>'$/$=S"-+.=%.6"T$%"*>("*.)\3" "
"
#+=&%(";:_"X(,>'$/$=S"-+.=%.6"
#+=&%(";;_"A$'*%$/"].'(/"
"
"
#$%"&'%()*%+,*(-"&)("+'"(-&,.*+$'./".'-"012"+')*+*&*+$')3"4"5+(6(')"78"9:;*)"%()(%?(-3" 5ABCBDC:E;F9::"#GFH%$=%.66+'="5IF;9::C0;@:J3-$,K"
@:"
"
"
"
012456787891 557
456 27787976 65! "
I3E"LM58 7N
O>("P$//$Q+'=")+='./)".%("'((-(-".)"=/$R./"$S(%.'-)"P$%"*>+)"*.)T3" 4!U 87M75 878 X":3:" GYYZ" F7;" 0(*&%'")+='./"(6(%=(',[")*$S"$T" X":3;" GYYZ" F\:" ].+'")Q+*,>"^YD^" X":39" GYYZ" F5:" ]$-(")(/(,*$%"6.'&./"_:`a".&*$6.*+,"_;`" X":3E" X":3J" X":3@" X";3:" X";3E"
"
GYYZ" GYYZ" GYYZ" GYYZ" GYYZ"
F5;" F59" FG;" FGJ" FGI"
H&)>R&**$'".&*$6.*+,")*.%*" H&)>R&**$'".&*$6.*+,")*$S" 5(')$%",[/+'-(%"]J"%(*%.,*(-" 5(')$%".*",>&*("$,,&S+(-" 5(')$%"S.%*".*"('-"$P",$'?([$%"
W 4!U 87M75 878 c":3:" GYYZ" Fc;" A$'?([$%"6$*$%"];"P$%Q.%-)"P+K(-")S((-" d efgfhidjkldlfjflfhmfdnopqd " 2Y" 2+=+*./"Y&*S&*" 2X" 2+=+*./"X'S&*" " 7Y" 7'./$="Y&*S&*" " 7X" 7'./$="X'S&*" " X" X'S&*" c" Y&*S&*" " DA" D$%6.//["A/$)(-"" " " DY" D$%6.//["YS('"" " "
V1VW DA" DY" ].'&./"b":" 7&*$"b";" DY" DA" DY" DY" DY" "
I3J" 688789
H/.'"*>("+6S/(6('*.*+$'"$P"*>("*.)T"$'"[$&%"$Q'3" rkqfsdtuvwxyvz{|}y}~uy|uy{y}~uyxuv}uyuuyxy
y
yxy}~uy{xxuy~uy
#$%"&'%()*%+,*(-"&)("+'"(-&,.*+$'./".'-"012"+')*+*&*+$')3"4"5+(6(')"78"9:;*)"%()(%?(-3" 5ABCBDC:E;F9::"#GFH%$=%.66+'="5IF;9::C0;@:J3-$,K"
@;"
"
"
"
012456787891 557
456 27787976 65! "
I3@"1LM 7NO2P57N "
QR N57S78 ;" A$6T+/+'=")&,,())U&/".'-"V+*>$&*"(%%$%"6()).=(" 9" 2$V'/$.-")&,,())U&/".'-"V+*>$&*"(%%$%"6()).=(" 5V+*,>"$'")*.*+$'"WFX:"Y";Z" A[/+'-(%"%(*%.,*(-"\"#((-].,^".,*+?.*(-"WFG;"Y";Z" B_B08BDA`"a##"WF7;"Y";Z"'$*".,*+?.*(-" 7bca_7cdA"6$-("WF5:"Y";Z" E" H&)>]&**$'".&*$6.*+,")*$T"'$*".,*&.*(-"WF59"Y";Z" G%+(U/["T%())"*>(".&*$6.*+,")*.%*"T&)>]&**$'"WF5;"Y";Z" 5(')$%".*",>&*(".,*+?.*(-"WFGJ"Y";Z" A$'?([$%"6$*$%"U$%V.%-)"U+K(-")T((-"*>('")V+*,>()"$'"WFe;"Y";Z" )V+*,>()"$'".'-")*.[)"$'3" J" 5(')$%".*"('-"$U",$'?([$%".,*+?.*(-"WFGI"Y";Z"f"Fe;"Y":" @" G%+(U/["T%())"*>(".&*$6.*+,")*$T"T&)>]&**$'"WF59"Y":Z"f"Fe;"Y":" "d$&%"%(=+$'./"5@A",$'*.,*" )+(6(')3,$6g),(g,$'*.,*" 7786 78O5 6785965789012 )+(6(')3,$6g),( 8O5 6785965789 N G>("5@A"*%.+'+'=",&%%+,&/&6"e$%"*>("+'*(=%.*(-".&*$6.*+$'")$/&*+$'"G$*.//d"F'*(=%.*(-"7&*$6.*+$'"iGF7j" c.)"a%(a.%(-"e$%"*>("a%$=%.6"k5+(6(')"7&*$6.*+$'"@$$a(%.*()"c+*>"A-&,.*+$'"i5@Ajk")a(,+e+,.//d"e$%" *%.+'+'="a&%a$)()"e$%"a&f/+,"(-&,.*+$'./"e.,+/+*+()".'-"012"+')*+*&*+$')3"5+(6(')"78"-$()"'$*"=&.%.'*((" *>(",$'*('*)3" " G>+)"-$,&6('*"+)"*$"f("&)(-"$'/d"e$%"+'+*+./"*%.+'+'="$'"5+(6(')"a%$-&,*)g)d)*(6)h"G>+)"6(.')"+*",.'"f(" ,$a+(-"+'"c>$/("$%"a.%*".'-"=+?('"*$"*>$)("f(+'="*%.+'(-"e$%"&)("c+*>+'"*>("),$a("$e"*>(+%"*%.+'+'=3" @+%,&/.*+$'"$%",$ad+'="*>+)"*%.+'+'=",&%%+,&/&6".'-")>.%+'="+*)",$'*('*"+)"a(%6+**(-"c+*>+'"a&f/+,"*%.+'+'=" .'-".-?.',(-"*%.+'+'="e.,+/+*+()"e$%"*%.+'+'="a&%a$)()3"" " AK,(a*+$')"%(l&+%("c%+**('",$')('*"e%$6"*>("5+(6(')"78",$'*.,*"a(%)$'Y"0$/.'-"5,>(&(%(%" %$/.'-3),>(&(%(%m)+(6(')3,$63" " Xee('-(%)"c+//"f(">(/-"/+.f/(3"7//"%+=>*)"+',/&-+'="*%.')/.*+$'".%("%()(%?(-h"a.%*+,&/.%/d"+e"."a.*('*"+)"=%.'*(-" $%"."&*+/+*d"6$-(/"$%"-()+='"+)"%(=+)*(%(-3" " n)("e$%"+'-&)*%+./",&)*$6(%",$&%)()"+)"(Ka/+,+*/d"'$*"a(%6+**(-3"o("-$"'$*",$')('*"*$",$66(%,+./"&)("$e" *>("*%.+'+'=",&%%+,&/&6)3" " o("c+)>"*$"*>.'b"*>("Gn"2%()-('h"a.%*+,&/.%/d"p%$e3"2%3EF'=3"q($'"n%f.)".'-"2+a/3EF'=3"7''(**"pe(ee(%h"*>(" r+,>.(/"2s+.//.)"A'=+'((%+'="@$%a$%.*+$'".'-".//"$*>(%"+'?$/?(-"a(%)$')"e$%"*>(+%")&aa$%*"-&%+'="*>("" a%(a.%.*+$'"$e"*>+)"*%.+'+'=",&%%+,&/&63" ""
#$%"&'%()*%+,*(-"&)("+'"(-&,.*+$'./".'-"012"+')*+*&*+$')3"4"5+(6(')"78"9:;*)"%()(%?(-3" 5@ABACB:D;ED::"FA@EG+6()".'-"@$&'*(%)"5HE;9::B0;I:J3-$,K"
9"
"
"
"
012456787891 557
456 27787976 65! "
G.L/("$M",$'*('*)"
;N 8$./"333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333"JN 9N O%(%(P&+)+*("3333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333"JN @N G>($%Q"333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333"JN @3;N F')*.',()".'-"6&/*+E+')*.',()"+'"5FR7GFA"5HE;9::"33333333333333333333333333333333333333333333333333333333333333333333"JN @3;3;N F')*.',("-.*."L/$,S)"T"5+'=/("+')*.',()"33333333333333333333333333333333333333333333333333333333333333333333333333333333"IN @3;39N R&/*+E+')*.',()"3333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333""*+6("M&',*+$'"333333333333333333333333333333333333333333333333333333333333333333"UN I39N G(,>'$/$=Q"-+.=%.6"333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333"WN I3@N 0(M(%(',("/+)*"333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333";:N ("&)("$Y")+'=/("+')*.',()".'-"6&/*+F +')*.',()"Y$%"S%$=%.66+'="$Y"5GZ7HGA"5IF;9::"V+*>"*>("HG7"[$%*./"S%$=%.66+'="*$$/3"" H>("6$-&/("(KS/.+')"*>("?.%+$&)"*US()"$Y"+')*.',("-.*."W/$,\)".'-")>$V)")*(SFWUF)*(S">$V"*$" .--"GBA"*+6(%)".'-"GBA",$&'*(%)"*$"."S%$=%.6"W/$,\3"
55] 7^7
H>+)",>.S*(%"W&+/-)"$'"*>("#_"S%$=%.66+'="Y$%"5GZ7HGA"5I"A[`;9;@A3"#$%"*>+)",>.S*(%T"U$&" ,.'"&)("*>("Y$//$V+'="S%$a(,*T"Y$%"(K.6S/(b"" :E;F9::C#_F[%$=%.66+'=C5IFcdeefghijck"
4l5!
m8^68^68 778^68^780410Q
H>(",.//"$Y"."Y&',*+$'"W/$,\"+)"%(Y(%%(-"*$".)".'"78^683"7'"78^68"+)".))+='(-"*$"(?(%U",.//" $Y"."Y&',*+$'"W/$,\".'-")(%?()".)"."-.*."6(6$%U3"G*")*$%()"*>(".,*&./"S.%.6(*(%)".'-"*>(")*.*+," -.*."$Y"*>("Y&',*+$'"W/$,\3"" H>("*.=)"-(,/.%(-"+'"*>("Y&',*+$'"W/$,\"-(*(%6+'("*>(")*%&,*&%("$Y"*>("+')*.',("-.*."W/$,\3"" O^n^789 78^68^68 778^68^ o$&",.'".))+='"+')*.',()".)"Y$//$V)b" " A.//".)"."^789 78^68b" F"7")(S.%.*("+')*.',("-.*."W/$,\"Y$%"(.,>"+')*.',("$Y"."Y&',*+$'"W/$,\"" A.//".)"." 778^68b" F"p'("+')*.',("-.*."W/$,\"Y$%")(?(%./"+')*.',()"$Y"$'("$%"6$%("Y&',*+$'"W/$,\)" "
#$%"&'%()*%+,*(-"&)("+'"(-&,.*+$'./".'-"012"+')*+*&*+$')3"4"5+(6(')"78"9:;*)"%()(%?(-3" 5ABCBDC:E;FE::"GBAFH+6()".'-"A$&'*(%)"5IF;9::C0;J:@3-$,K"
@"
"
"
"
012456787891 557
456 27787976 65! "
E3;3;"LMNOPMQRSTPOPSUVWQXNSYSZ[M\VRS[MNOPMQRNS
H>(",.//"$]"."]&',*+$'"^/$,_"*>.*"+)".))+='(-"+*)"$`'"+')*.',("-.*."^/$,_"+)",.//(-"."a789 78a683" G]"*>("]&',*+$'"^/$,_"`.)",%(.*(-".,,$%-+'="*$"*>("%&/()"]$%"/+^%.%bF,$6c.*+^/(")*.'-.%-"^/$,_)d" +*",.'"./)$"^(",.//(-"6&/*+c/("*+6()3" e$`(?(%d"b$&"6&)*".))+='".'$*>(%"+')*.',("-.*."^/$,_"]$%"(.,>",.//".)".")+'=/("+')*.',(3"" 2f6 g ha789 78a68ai H>("]$//$`+'="]+=&%(")>$`)"*>(",$'*%$/"$]"*`$"6$*$%)"&)+'="$'("]&',*+$'"^/$,_"#j;:".'-"*`$" -+]](%('*"-.*."^/$,_)k" H>("-+]](%('*"-.*."]$%"*>("+'-+?+-&./"6$*$%)d")&,>".)")c((-d".,,(/(%.*+$'"*+6(".'-"*$*./" $c(%.*+'="*+6(d".%(").?(-"+'"*>("+')*.',("-.*."^/$,_)"2j;:".'-"2j;;3"" " j;" "" #A;" A. //"$]"#A;" " 2j;:" " " A.//"$]"#j;:" #j;:" "G')*.',("2j"]$%" `+*>"+')*.',(" " " ",.//"`+*>"-.*." 2j;:"]$%",$'*%$/" 5*.'-.%-"^/$,_" ]]+$%)%"*$ *$%";" $ ] " $ * $ % " ; " `+ * > " 6$ * $ % " " " c%$=%.6" " " " 2j;;" A.//"$]"#j;:" " #j; : " `+*>"+')*.',(" G')*.',("2j"]$%" " " 2j;;"]$%",$'*%$/" 5* . ' . % " ^ / $ , _ " )(,$'-",.//"`+*>" $]"$*$%"9" -.*."]$%"$*$%"9" `+ * > " 6$ * $ % " " c%$=%.6" " " " lWORmSnopqrsopptuvwxrwyszrtwr{|pq}wrtuvrsoyu{q}wxr~qztqr|qryus{|our~oswrzqur {zqwqrt}qrstqvxr{zq
rtwor}qy|}qrturtww|uqvrpqpo}
rt}qtxrqxr|ur{zqro}prortur|uw{tusqr vt{tr~osr " "
#$%"&'%()*%+,*(-"&)("+'"(-&,.*+$'./".'-"012"+')*+*&*+$')3"4"5+(6(')"78"9:;*)"%()(%?(-3" 5ABCBDC:E;FE::"GBAFH+6()".'-"A$&'*(%)"5IF;9::C0;@:J3-$,K"
@"
"
"
"
012456787891 557
456 27787976 65! "
D3;39"LMNOPQPRSOTRUVSW
X$&"6.Y"Z.'*"*$"/+6+*"*>("'&6[(%"$\"-.*."[/$,])"&)(-"\$%"+')*.',()"$%"*>+)"6.Y"[("'(,()).%Y" -&("*$"/.,]"$\"6(6$%Y"+'"*>("&*+/+^(-"@_`3"" F\"$*>(%"\&',*+$'"[/$,])a"*+6(%)a",$&'*(%)a"(*,3"*>.*"./%(.-Y"(K+)*".%("*$"[(",.//(-"+'"."\&',*+$'" [/$,]"+'"Y$&%"&)(%"b%$=%.6a"Y$&",.'",.//"*>()("$*>(%"\&',*+$'"[/$,])"Z+*>$&*")(b.%.*("c+3(3" .--+*+$'./d"+')*.',("2e)3"" fghijklmnjnoplq 778r68sltuvlpwn",.//"$b*+$')x"" "
"
W yzOVS{W|}~
~
~~}
~
~
~~}
~
~~~
}~}
~
~~}
~
} }}~~
~~~}
~~~
~~} ~
" " "
#$%"&'%()*%+,*(-"&)("+'"(-&,.*+$'./".'-"012"+')*+*&*+$')3"4"5+(6(')"78"9:;*)"%()(%?(-3" 5@ABACB:D;ED::"FA@EG+6()".'-"@$&'*(%)"5HE;9::B0;I:J3-$,K"
("-+QQ(%('*"-.*."Q$%"*>("*R$",$&'*(%)"+)")*$%(-".)"-+QQ(%('*" 778O68O"+'"*>("+')*.',(" -.*."X/$,Y"2Z;"$Q"*>(",.//+'="Q&',*+$'"X/$,Y"#Z;3" " "\Z;" 2Z;" ""A.//"$Q"#Z;" #Z;" VG')*.',("2Z"" " R+*>"+')*.',(" A.//"$Q"GBACH+6(%" Q"$%"#Z;W" [H+6(%;" "2Z;" . ) " 6& / * + F + ' ) * . ' , ( " $Q"*ST("GBACH+6(%" " " [ H+ 6( % ; " " " " 5*.*+,"*.="V5*.*+,W"" " " " " " H+6(%;" A.//"$Q"GBACH+6(%" [GBAC H+6(%" .)"6&/*+F+')*.',(" [H+6( [H+6(%9" " %9" [H+6(%9" $Q"*ST("GBACH+6(%" G BAC H+ 6( % " " .)"6&/*+F+')*.',("" " " " "
#$%"&'%()*%+,*(-"&)("+'"(-&,.*+$'./".'-"012"+')*+*&*+$')3"4"5+(6(')"78"9:;*)"%()(%?(-3" 5ABCBDC:E;FE::"GBAFH+6()".'-"A$&'*(%)"5@F;9::C0;I:J3-$,K"
@"
"
"
"
012456787891 557
456 27787976 65! "
K" 46MN
G'"*>+)",>.O*(%P".'"GBA"*+6(%"Q+//"R(".--(-"*$"*>("S&',*+$'"R/$,T"S%$6",>.O*(%"U5ABCBDC:E;F 9::"#V"W%$=%.66+'="5IF;9::U3"
X 688789
H>("GBA"*+6(%"+)"O%$=%.66(-".)".'".--+*+$'"*$"*>("YZHZ0C7[HZ"\#V;]"S&',*+$'"R/$,T"S%$6" *>("U:E;F9::C#VFW%$=%.66+'=C5IF;9::3^.O;EU"O%$_(,*3"H>+)"O%$_(,*"6&)*"R("%(*%+(?(-"+'" $%-(%"*$"'$Q".--"*>("GBA"*+6(%"HW"`/.*,>+'="O&/)(a3"7"6&/*+F+')*.',("Q+//"R(",%(.*(-".)"." 6(6$%b"S$%"*>("*+6(%3" "
Xc 67 18d!5 5e7f7 g 878
H>("Y(6$%bC.&*$6.*+,C)*.%*C)*$O"+)"/.*,>(-"Q+*>"5*.%*"R&*"$'/b"+S"*>("%()(*",$'-+*+$')".%("'$*" O%()('*3""" H>("Y(6$%bC.&*$6.*+,C)*.%*C)*$O"+)"%()(*"+S"5*$O"+)"O%()('*"$%").S(*b")>&*$SS"+)".,*+?("$%" .&*$6.*+,"6$-("+)"'$*".,*+?.*(-"`6.'&./"6$-(a3" H>("A$'?(b$%C6$*$%C.&*$6.*+,C6$-("$&*O&*"+)".,*+?.*(-"Q>('" Y(6$%bC.&*$6.*+,C)*.%*C)*$O"+)")(*P"*>("('.R/(",$'-+*+$')".%("6(*".'-" Y(6$%bC,$'?(b$%C)*.%*C)*$O"+)")(*3" H$").?("('(%=bP"*>(",$'?(b$%")>$&/-"$'/b"%&'"Q>('"."O.%*"+)"O%()('*3" #$%"*>+)"%(.)$'P"*>("Y(6$%bC,$'?(b$%C)*.%*C)*$O"+)")(*"Q>('"5(')$%C,>&*(C$,,&O+(-")+='./)" ."O.%*".'-"%()(*"Q>('"5(')$%C('-C$SC,$'?(b$%"O%$-&,()"."'(=.*+?("(-=("$%").S(*b")>&*$SS"+)" .,*+?("$%".&*$6.*+,"6$-("+)"'$*".,*+?.*(-"`6.'&./"6$-(a3" 778g7 g 878h V(,.&)("*>("5(')$%C('-C$SC,$'?(b$%"+)"'$*".R/("*$"R("6$&'*(-"-+%(,*/b".*"*>("('-"$S"*>(" ,$'?(b$%P"*>("5(')$%C('-C$SC,$'?(b$%")+='./"6&)*"R(")*%(*,>(-3" H$".,>+(?("*>+)P"."/.*,>+'="O&/)("Q+//"R("+')(%*(-"R(*Q(('"5(')$%C('-C$SC,$'?(b$%".'-"*>(" '(=.*+?("(-=("-(*(,*+$'3" "
#$%"&'%()*%+,*(-"&)("+'"(-&,.*+$'./".'-"012"+')*+*&*+$')3"4"5+(6(')"78"9:;*)"%()(%?(-3" 5ABCBDC:E;FE::"GBAFH+6()".'-"A$&'*(%)"5IF;9::C0;J:K3-$,L"
@"
"
"
"
012456787891 557
456 27787976 65! "
J39"4M8 9!76956
N(%(O"P$&")(("*>("*(,>'$/$=P"-+.=%.6"Q$%"*>("*.)R3" "
#+=&%(";S"H(,>'$/$=P"-+.=%.6"
#+=&%("9S"A$'*%$/"T.'(/"
"
"
"
#$%"&'%()*%+,*(-"&)("+'"(-&,.*+$'./".'-"012"+')*+*&*+$')3"4"5+(6(')"78"9:;*)"%()(%?(-3" 5ABCBDC:E;FE::"GBAFH+6()".'-"A$&'*(%)"5IF;9::C0;J:K3-$,L"
@"
"
"
"
012456787891 557
456 27787976 65! "
I3D"LM58 7N
G>("O$//$P+'=")+='./)".%("'((-(-".)"=/$Q./"$R(%.'-)"O$%"*>+)"*.)S3" 4!T 87M75 878 F":3:" WXXY" E7;" 0(*&%'")+='./"(6(%=(',Z")*$R"$S" F":3;" WXXY" E[:" \.+'")P+*,>"]XC]" F":39" WXXY" E5:" \$-(")(/(,*$%"6.'&./"^:_`".&*$6.*+,"^;_" F":3D" F":3J" F":3I" F";3:" F";3D"
"
WXXY" WXXY" WXXY" WXXY" WXXY"
E5;" E59" EW;" EWJ" EWH"
b&)>Q&**$'".&*$6.*+,")*.%*" b&)>Q&**$'".&*$6.*+,")*$R" 5(')$%",Z/+'-(%"\J"%(*%.,*(-" 5(')$%".*",>&*("$,,&R+(-" 5(')$%"R.%*".*"('-"$O",$'?(Z$%"
V 4!T 87M75 878 c":3:" WXXY" Ec;" @$'?(Z$%"6$*$%"\;"O$%P.%-)"O+K(-")R((-" d efgfhidjkldlfjflfhmfdnopqd " 2F" 2+=+*./"F'R&*" 2X" 2+=+*./"X&*R&*" " 7X" 7'./$="X&*R&*" " 7F" 7'./$="F'R&*" " F" F'R&*" c" X&*R&*" " C@" C$%6.//Z"@/$)(-"" " " CX" C$%6.//Z"XR('"" " "
#$%"&'%()*%+,*(-"&)("+'"(-&,.*+$'./".'-"012"+')*+*&*+$')3"4"5+(6(')"78"9:;*)"%()(%?(-3" 5@ABACB:D;ED::"FA@EG+6()".'-"@$&'*(%)"5HE;9::B0;I:J3-$,K"
U1UV C@" CX" \.'&./"a":" 7&*$"a";" CX" C@" CX" CX" CX" "
;:"
"
"
"
012456787891 557
456 27787976 65! "
.*">.)"T(('".%,>+?(-U"R$&"6&)*" )(/(,*"*>("%(/(?.'*".%,>+?("Q+*>"\"d%$f(,*"\"0(*%+(?("+'"*>("S%$f(,*"?+(Q3"@$'P+%6"R$&%" )(/(,*+$'"Q+*>"VS('"g\"d%$f(,*"\"0(*%+(?("\"5(/(,*"."3e.S".%,>+?("\":D;E9::B#]E d%$=%.66+'=B5HE;9::3e.S;D"\"VS('h3"
"
" \"G>("'(K*")*(S"+)"*$")(/(,*"*>("*.%=(*"-+%(,*$%R"Q>(%("*>("%(*%+(?(-"S%$f(,*"Q+//"T(")*$%(-3" @$'P+%6"R$&%")(/(,*+$'"Q+*>"^Vi^3"" " "
#$%"&'%()*%+,*(-"&)("+'"(-&,.*+$'./".'-"012"+')*+*&*+$')3"4"5+(6(')"78"9:;*)"%()(%?(-3" 5@ABACB:D;ED::"FA@EG+6()".'-"@$&'*(%)"5HE;9::B0;I:J3-$,K"
;;"
"
"
"
012456787891 557
456 27787976 65! "
L"5.?("*>("$M('(-"M%$N(,*"&'-(%"*>("'.6(":D;ED::BFA@BG+6(%)B@$&'*(%)"" OL"P%$N(,*"L"5.?(".)"333"L":D;ED::BFA@BG+6(%)B@$&'*(%)"L"5.?(Q"
#$%"&'%()*%+,*(-"&)("+'"(-&,.*+$'./".'-"012"+')*+*&*+$')3"4"5+(6(')"78"9:;*)"%()(%?(-3" 5@ABACB:D;ED::"FA@EG+6()".'-"@$&'*(%)"5HE;9::B0;I:J3-$,K"
"
;9"
"
"
"
012456787891 557
456 27787976 65! "
("XYZGZ0C7[GZ"\#];^X"_&',*+$'"`/$,a"b+*>"."-$&`/(E,/+,a3"
"
" U"F')(%*".'$*>(%"'(*b$%a".*"*>("`(=+''+'="$_"*>("XYZGZ0C7[GZ"\#];^X"_&',*+$'"`/$,a"`c" )(/(,*+'="*>("U"X`/$,a"*+*/(X".'-",/+,a+'="*>("U" "+,$'"_$%"XF')(%*"'(*b$%aX3"
"
"
#$%"&'%()*%+,*(-"&)("+'"(-&,.*+$'./".'-"012"+')*+*&*+$')3"4"5+(6(')"78"9:;*)"%()(%?(-3" 5ABCBDC:@;E@::"FBAEG+6()".'-"A$&'*(%)"5HE;9::C0;I:J3-$,K"
;@"
"
"
"
012456787891 557
456 27787976 65! "
L"7--">(/MN&/"+'N$%6.*+$'"*$"*>("O/$,P",$66('*".'-"*>("'(*Q$%P"*+*/("$N"RD(*Q$%P";SR3"
" L"T'"*>("%+=>*")+-("$N"U$&%"M%$=%.66+'="Q+'-$QV"U$&"Q+//")(("*>("*+6(%"N&',*+$')"+'"*>("/+)*" $N"+')*%&,*+$')3"W'-(%"L"X.)+,"+')*%&,*+$')"L"H+6(%"$M(%.*+$')V"N+'-"N&',*+$'" " Y8('(%.*("M&/)(Z".'-"&)("."-%.=F.'-F-%$M"$M(%.*+$'"*$"6$?("+*"*$"D(*Q$%P";"Y=%(('"/+'(" .MM(.%)V"6$&)("M$+'*(%"Q+*>"[")U6O$/Z3" YL"G')*%&,*+$')"L"X.)+,"+')*%&,*+$')"L"H+6(%"$M(%.*+$')"L" "Z"
"
#$%"&'%()*%+,*(-"&)("+'"(-&,.*+$'./".'-"012"+')*+*&*+$')3"4"5+(6(')"78"9:;*)"%()(%?(-3" 5ABCBDC:E;FE::"GBAFH+6()".'-"A$&'*(%)"5IF;9::C0;J:@3-$,K"
"
;@"
"
"
"
012456787891 557
456 27787976 65! "
L"H>("*+6(%"M&',*+$'"%(N&+%()"."6(6$%O3"H>+)"6(6$%O"+)"P%$?+-(-"+'"*>+)",.)("Q+*>+'"*>(" +')*.',("-.*."R/$,S"$M"*>("M&',*+$'"R/$,S"Q+*>$&*",%(.*+'="."'(Q"+')*.',("-.*."R/$,S3" 5(/(,*"*>("LTU&/*+F+')*.',(T"$P*+$'"M$%"*>+)3"B'*(%"."'.6("M$%"*>("6&/*+F+')*.',(".'-" ,$'M+%6"Q+*>"L"TVWT3"XL"U&/*+F+')*.',("L"GBACH+6(%C$?(%%&'"L"VWY"
"
" L"7)"."%()&/*Z"."*.=")*%&,*&%("$M"T5*.*+,T"*OP(")&+*.R/("M$%"H["H+6(%"Q+//"R(",%(.*(-"+'"*>(" +'*(%M.,("-(),%+P*+$'3""
" \]^_`abcdefghihjkgljmncmljcojfpcqnceknrcsotcutovtlddhjvcwhgxhjclcsejmghojcqfomycqnmleknc kglghmcglvkcltncojfpclzlhflqfncgxntn{cc
#$%"&'%()*%+,*(-"&)("+'"(-&,.*+$'./".'-"012"+')*+*&*+$')3"4"5+(6(')"78"9:;*)"%()(%?(-3" 5ABCBDC:E;FE::"GBAFH+6()".'-"A$&'*(%)"5IF;9::C0;@:J3-$,K"
;@"
"
"
"
012456787891 557
456 27787976 65! "
L"M)("-%.=E.'-E-%$N"*$"6$?("+'N&*"N.%.6(*(%"O5(')$%B('-B$PB,$'?(Q$%"*$"RSS3ST"+'"P%$'*" $P"N.%.6(*(%"UFCU"$P"GV"G+6(%")$"*>.*"*>+)"W+//"X(")*.%*(-".*"."N$)+*+?("(-=(".*"+'N&*" O5(')$%B('-B$PB,$'?(Q$%3"G>("X()*"W.Q"*$")(/(,*"."N.%.6(*(%"+'"*>("+'*(%P.,(" -(),%+N*+$'"+)"XQ"U=%.XX+'=U"+*".*"*>("X/&(")Q6X$/" "YL" "5(')$%B('-B$PB,$'?(Q$%Z3"
" L"A'*(%"*>("%([&+%(-"N&/)("-&%.*+$'"$P"9")(,$'-)"+'"P%$'*"$P"N.%.6(*(%"UVGU"YL9)"Z3"
"
"
#$%"&'%()*%+,*(-"&)("+'"(-&,.*+$'./".'-"012"+')*+*&*+$')3"4"5+(6(')"78"9:;*)"%()(%?(-3" 5@ABACB:D;ED::"FA@EG+6()".'-"@$&'*(%)"5HE;9::B0;I:J3-$,K"
"
;("('*%M"$N"9)"+)",$'?(%*(-".&*$6.*+,.//M"*$"*>("GBAFH+6("N$%6.*")&+*.O/("N$%"*>("GBA" *+6(%".'-"+)")>$P'".)",$')*.'*"QHR9)Q3"
"
" L"D$P"6$?("$&*S&*"QTQ"N%$6"*.=")*%&,*&%("QGBACH+6(%C$?(%%&'Q"$'*$"+'S&*"QAUVQ"$N" '(=.*+?("(-=("QDCH0G8Q"+'"D(*P$%W"93"H>+)"P+//"%(S/.,("*>("R5(')$%C('-C$NC,$'?(M$%" +'S&*"*.="S%(?+$&)/M"('*(%(-"*>(%(".'-"*>(",$'?(M$%"P+//"O(")*$SS(-"OM"."'(=.*+?("(-=("$N" *>("GBACH+6(%C$?(%%&'"S&/)(3" XL"D(*P$%W"9"L"GBACH+6(%C$?(%%&'L"T"L"R5(')$%C('-C$NC,$'?(M$%Y"
"
#$%"&'%()*%+,*(-"&)("+'"(-&,.*+$'./".'-"012"+')*+*&*+$')3"4"5+(6(')"78"9:;*)"%()(%?(-3" 5ABCBDC:E;FE::"GBAFH+6()".'-"A$&'*(%)"5@F;9::C0;I:J3-$,K"
"
;@"
"
"
"
012456787891 557
456 27787976 65! "
M"2$"'$*"N$%=(*"*$",/+,O" "%(=&/.%/P3"H>("N+'+)>(-"N&',*+$'"Q/$,O"RSTHT0C7UHTR" V#W;X"Y+*>"*>("*+6(%"+)")>$Y'"+'"#W2"Q(/$Y3"
"
"
#$%"&'%()*%+,*(-"&)("+'"(-&,.*+$'./".'-"012"+')*+*&*+$')3"4"5+(6(')"78"9:;*)"%()(%?(-3" 5ABCBDC:E;FE::"GBAFH+6()".'-"A$&'*(%)"5IF;9::C0;J:K3-$,L"
"
;@"
"
"
"
012456787891 557
456 27787976 65! "
M"N'-(%"O8('(%./O"+'"*>("P%$P(%*+()"$Q"*>("R/$,ST"U$&",.'",>.'=("*>("OV.'=&.=(O"*$"V72" WV.--(%"V$=+,X"WMY%$P(%*+()"M"8('(%./"M"V.'=&.=(Z"V72X"
M"H>+)"+)"[>.*"'(*[$%S)";".'-"9"/$$S"/+S("+'"V723"
#$%"&'%()*%+,*(-"&)("+'"(-&,.*+$'./".'-"012"+')*+*&*+$')3"4"5+(6(')"78"9:;*)"%()(%?(-3" 5ABCBDC:E;FE::"GBAFH+6()".'-"A$&'*(%)"5IF;9::C0;J:K3-$,L"
"
"
;@"
"
"
"
012456787891 557
456 27787976 65! "
"."-$&[/(E,/+,\3"
" R"F'"C(*]$%\";"$^"*>("UV.+'"WSX;U"$%=.'+Z.*+$'"[/$,\_"+')*.',("-.*."[/$,\" UVSGS0B7`GSB2X;U"^$%"*>("UVSGS0B7`GS"W#X;YU"^&',*+$'"[/$,\".TT(.%)"+',$%%(,*_" [(,.&)("*>(".--+*+$'./"6(6$%a"^$%"*>("Gb"G+6(%">.)"'$*"a(*"[(('".--(-"*>(%(3"@/+,\"*>(" R"U U"+,$'"^$%"U`T-.*("+',$')+)*('*"[/$,\",.//)U3"G>+)"]+//".--"*>(" UVSGS0B7`GSB2X;U"+')*.',("-.*."[/$,\",$%%(,*/a".=.+'"cR" "d3"
" #$%"&'%()*%+,*(-"&)("+'"(-&,.*+$'./".'-"012"+')*+*&*+$')3"4"5+(6(')"78"9:;*)"%()(%?(-3" 5@ABACB:D;ED::"FA@EG+6()".'-"@$&'*(%)"5HE;9::B0;I:J3-$,K"
9:"
"
"
"
012456787891 557
456 27787976 65! "
("VW%$=%.6"T/$,U)V"X$/-(%".'-")(/(,*"*>(" "+,$'"X$%",$6Q+/+'="+'"*>("6('&"" YO" "O"W%$=%.6"T/$,U)"O" Z3"
"
O"G>("VF'X$VS"V@$6Q+/(V".%(.")>$[)"[>+,>"T/$,U)"[(%(")&,,())X&//P",$6Q+/(-3"
#$%"&'%()*%+,*(-"&)("+'"(-&,.*+$'./".'-"012"+')*+*&*+$')3"4"5+(6(')"78"9:;*)"%()(%?(-3" 5@ABACB:D;ED::"FA@EG+6()".'-"@$&'*(%)"5HE;9::B0;I:J3-$,K"
"
9;"
"
"
"
012456787891 557
456 27787976 65! "
(",%(.*(-"Q%$=%.6"+',/&-+'=" *>(">.%-S.%(",$'P+=&%.*+$'R".)"Q%(?+$&)/T"-(),%+U(-"+'"*>("6$-&/()R",.'"U("-$S'/$.-(-" VO" W3"
#$%"&'%()*%+,*(-"&)("+'"(-&,.*+$'./".'-"012"+')*+*&*+$')3"4"5+(6(')"78"9:;*)"%()(%?(-3" 5@ABACB:D;ED::"FA@EG+6()".'-"@$&'*(%)"5HE;9::B0;I:J3-$,K"
"
99"
"
"
"
012456787891 557
456 27787976 65! "
("-$U'/$.-(-"S%$=%.63"V$'+*$%+'=",.'" '$U"Q(".,*+?.*(-W-(.,*+?.*(-"QX",/+,R+'="*>("" "+,$'"YP"V.+'"Z[\;]"P" ^3"
"
" _`abcdefghijklmjnlkohfgnghlphplokqrsngrqmgthqkthujkmnjrrgnstgvgktgkmwhefghplokqrhpmqmgphqmhmfgh mgnilkqrphqnghlktluqmgthxlmfheyz{hjnh|}~{w"
#$%"&'%()*%+,*(-"&)("+'"(-&,.*+$'./".'-"012"+')*+*&*+$')3"4"5+(6(')"78"9:;*)"%()(%?(-3" 5ABCBDC:@;E@::"FBAEG+6()".'-"A$&'*(%)"5HE;9::C0;I:J3-$,K"
9@"
"
"
"
012456787891 557
456 27787976 65! "
L"H>("MNOHO0C7PHOM"Q#R;S"T&',*+$'"U/$,V",.//(-"+'"*>("MN.+'"QOR;SM"$%=.'+W.*+$'"U/$,V" ,.'"U(")(/(,*(-"-+%(,*/X"T$%"MOY('".'-"6$'+*$%M".T*(%"%+=>*F,/+,V+'=Z"*>(%(UX".//$[+'="*>(" Y%$=%.6",$-("+'"*>("T&',*+$'"U/$,V"[+*>"*>("H\"H+6(%"*$"U("6$'+*$%(-"" ]L"MNOHO0C7PHOM"Q#R;S"L"OY('".'-"6$'+*$%^3"
"
" _`abcdefghijklmjnlkohfgnghlphqrksmljktnguvmgwhvkwhsjkmnjuugntlkwgxgkwgkmyhefghvsmrvmljkhjqh pgkpjnphvkwhmfghpmvmljkhpmvmrphvnghpfjzkhfgnghzlmfhe{|}hjnh~}yd "
#$%"&'%()*%+,*(-"&)("+'"(-&,.*+$'./".'-"012"+')*+*&*+$')3"4"5+(6(')"78"9:;*)"%()(%?(-3" 5ABCBDC:E;FE::"GBAFH+6()".'-"A$&'*(%)"5IF;9::C0;J:@3-$,K"
9@"
"
"
"
012456787891 557
456 27787976 65! "
+?("*>(",$6R/(*("R%$U(,*3"5(/(,*"*>("P"V7%,>+?("333V" ,$66.'-"+'"*>("P"VW%$U(,*V"6('&3"5(/(,*"."Q$/-(%"T>(%("X$&"T.'*"*$".%,>+?("X$&%"R%$U(,*" .'-").?("+*"T+*>"*>("Q+/("*XR("VHG7"W$%*./"R%$U(,*".%,>+?(V3"YP"W%$U(,*"P"7%,>+?("P"HG7" W$%*./"R%$U(,*".%,>+?("P"5ABCBDC:E;FE::CGBACH+6(%)CA$&'*(%)C5IFZ[\\]^_P"5.?(`"
a
#$%"&'%()*%+,*(-"&)("+'"(-&,.*+$'./".'-"012"+')*+*&*+$')3"4"5+(6(')"78"9:;*)"%()(%?(-3" 5ABCBDC:E;FE::"GBAFH+6()".'-"A$&'*(%)"5IF;9::C0;@:J3-$,K"
"
9@"
"
"
"
012456787891 557
456 27787976 65! "
(".&*$6.*+,")*.%*"P&)>Y&**$'"SE5;"U";V" 5(')$%".*",>&*(".,*+?.*(-"SE[J"U";V" @$'?(W$%"6$*$%"Q$%R.%-)"Q+K(-")P((-"*>('")R+*,>()"$'"SEa;"U";V" .'-")*.W)"$'3" ')$%".*"('-"$Q",$'?(W$%".,*+?.*(-"SE[H"U";V"b"Ea;"U":"S.Q*(%"9" J" 5( )(,$'-)V" I" [%+(Q/W"P%())"*>(".&*$6.*+,")*$P"P&)>Y&**$'"SE59"U":V"b"Ea;"U":" ("(K\.'-(-"Z&',*+$'"S/$,["]+//"S("\/.''(-R"\%$=%.66(-".'-"*()*(-^" " H>("6.=._+'("Z$%"\/.)*+,">$/-)"$'/`"I"\.%*)3"H>("\.%*)".%("*>(%(Z$%("S(",$&'*(-".*"*>("('-"$Z" *>(",$'?(`$%3" a>('"I"\.%*)".%(")*$%(-"+'"*>("6.=._+'(R".&*$6.*+,"6$-("+)"*$"S(")*$\\(-3" U',("*>("6.=._+'(">.)"S(('"(6\*+(-R".&*$6.*+,"6$-("]+//"S("%()*.%*(-"]+*>"5*.%*C,$66.'-" +)")*.%*(-".=.+'".'-"*>(",$&'*(%"+)"%()(*3" "
NO4b8 9!76956
c(%(R"`$&")(("*>("*(,>'$/$=`"-+.=%.6"Z$%"*>("*.)[3" "
#+=&%("E^"H(,>'$/$=`"-+.=%.6"
#+=&%("J^"A$'*%$/"\.'(/"
"
"
"
#$%"&'%()*%+,*(-"&)("+'"(-&,.*+$'./".'-"012"+')*+*&*+$')3"4"5+(6(')"78"9:;*)"%()(%?(-3" 5ABCBDC:E;FE::"GBAFH+6()".'-"A$&'*(%)"5@F;9::C0;I:J3-$,K"
9@"
"
"
"
012456787891 557
456 27787976 65! "
I3E"MN58 7O
H>("P$//$Q+'=")+='./)".%("'((-(-".)"=/$R./"$S(%.'-)"P$%"*>+)"*.)T3" 4!U 87N75 878 G":3:" XYYZ" F7;" 0(*&%'")+='./"(6(%=(',[")*$S"$T" G":3;" XYYZ" F\:" ].+'")Q+*,>"^YD^" G":39" XYYZ" F5:" ]$-(")(/(,*$%"6.'&./"_:`a".&*$6.*+,"_;`" G":3E" G":3K" G":3J" G";3:" G";3E"
"
XYYZ" XYYZ" XYYZ" XYYZ" XYYZ"
F5;" F59" FX;" FXK" FXI"
c&)>R&**$'".&*$6.*+,")*.%*" c&)>R&**$'".&*$6.*+,")*$S" 5(')$%",[/+'-(%"]K"%(*%.,*(-" 5(')$%".*",>&*("$,,&S+(-" 5(')$%"S.%*".*"('-"$P",$'?([$%"
V1VW DA" DY" ].'&./"b":" 7&*$"b";" DY" DA" DY" DY" DY"
W 4!U 87N75 878 d":3:" XYYZ" Fd;" A$'?([$%"6$*$%"];"P$%Q.%-)"P+L(-")S((-" e fghgijeklmemgkgmgingeopqre " 2G" 2+=+*./"G'S&*" 2Y" 2+=+*./"Y&*S&*" " 7Y" 7'./$="Y&*S&*" " 7G" 7'./$="G'S&*" " G" G'S&*" d" Y&*S&*" " DA" D$%6.//["A/$)(-"" " " DY" D$%6.//["YS('"" " " "
"
stu 688789
c/.'"*>("+6S/(6('*.*+$'"$P"*>("*.)T"$'"[$&%"$Q'3" vlrgwexyz{|}z~}y}y}}
}|y{}|}
}}|}y}||y}y}
#$%"&'%()*%+,*(-"&)("+'"(-&,.*+$'./".'-"012"+')*+*&*+$')3"4"5+(6(')"78"9:;*)"%()(%?(-3" 5ABCBDC:E;FE::"GBAFH+6()".'-"A$&'*(%)"5IF;9::C0;J:K3-$,L"
9@"
"
"
"
012456787891 557
456 27787976 65! "
I3J"1MN 7OP2Q57O "
RS O57T78 ;" A$6U+/+'=")&,,())V&/".'-"W+*>$&*"(%%$%"6()).=(" 9" 2$W'/$.-")&,,())V&/".'-"W+*>$&*"(%%$%"6()).=(" 5W+*,>"$'")*.*+$'"XFY:"Z";[" A\/+'-(%"%(*%.,*(-"]"#((-^.,_".,*+?.*(-"XF`;"Z";[" BaB08BDAb"c##"XF7;"Z";["'$*".,*+?.*(-" 7dHca7HGA"6$-("XF5:"Z";[" E" e&)>^&**$'".&*$6.*+,")*$U"'$*".,*&.*(-"XF59"Z";[" `%+(V/\"U%())"*>(".&*$6.*+,")*.%*"U&)>^&**$'"XF5;"Z";[" 5(')$%".*",>&*(".,*+?.*(-"XF`K"Z";[" A$'?(\$%"6$*$%"V$%W.%-)"V+L(-")U((-"*>('")W+*,>()"$'"XFf;"Z";[" .'-")*.\)"$'3" ')$%".*"('-"$V",$'?(\$%".,*+?.*(-"XF`I"Z";["g"Ff;"Z":"X.V*(%"9" K" 5( )(,$'-)[" J" `%+(V/\"U%())"*>(".&*$6.*+,")*$U"U&)>^&**$'"XF59"Z":["g"Ff;"Z":" )*#b?)(#()-)**/&c4# 8(#%@)&@,)b#%d#+?)#-'&&)(+0c#/@/,0/e0)#6AB#`/-a/>)*#,*#/@/,0/e0)#/+Y#*,)7)(*4-%7f*-)f+`#
1878 5678789
$%&)>,%(/0#6,)7)(*#6AB#-%(+,(').#+&/,(,(>g#-%(+/-+#c%'&)>,%(/0#6AB#-%(+/-+# *,)7)(*4-%7f*-)f-%(+/-+# 7786 78O5 6785965789012 *,)7)(*4-%7f*-)# # # 8O5 6785965789 N h?)#6AB#+&/,(,(>#-'&&,-'0'7#d%+?)#,(+)>&/+).#/'+%7/+,%(#*%0'+,%(#h%+/00c#i(+)>&/+).#8'+%7/+,%(#jhi8k# b/*#`&)`/&).#d%+?)#`&%>&/7#l6,)7)(*#8'+%7/+,%(#A%%`)&/+)*#b,+?#B.'-/+,%(#j6ABkl#*`)-,d,-/00c#d% +&/,(,(>#`'&`%*)*#d%`'e0,-#).'-/+,%(/0#/(.#123#,(*+,+'+,%(*4#6,)7)(*#89#.%)*#(%+#>'/&/(+))#+?)# -%(+)(+*4# # h?,*#.%-'7)(+#,*#+%#e)#'*).#%(0c#d%,(,+,/0#+&/,(,(>#%(#6,)7)(*#`&%.'-+*f*c*+)7*g#b?,-?#7)/(*#,+#-/(#e)# -%`,).#,(#b?%0)#%`/&+#/(.#>,@)(#+%#+?%*)#e),(>#+&/,().#d%'*)#b,+?,(#+?)#*-%`)#%d#+?),+&/,(,(>4# A,&-'0/+,%(#%-%`c,(>#+?,*#+&/,(,(>#-'&&,-'0'7#/(.#*?/&,(>#,+*#-%(+)(+#,*#`)&7,++).#b,+?,(#`'e0,-#+&/,(,(># /(.#/.@/(-).#+&/,(,(>#d/-,0,+,)*#d%+&/,(,(>#`'&`%*)*4## # BK-)`+,%(*#&)m',&)#b&,++)(#-%(*)(+#d&%7#+?)#6,)7)(*#89#-%(+/-+#`)&*%(Y#1%0/(.#6-?)')&) &%0/(.4*-?)')&)&n*,)7)(*4-%74# # Xdd)(.)&*#b,00#e)#?)0.#0,/e0)4#800#&,>?+*#,(-0'.,(>#+&/(*0/+,%(#/&)#&)*)&@).g#`/&+,-'0/&0c#,d#/#`/+)(+#,*#>&/(+).# %/#'+,0,+c#7%.)0#%.)*,>(#,*#&)>,*+)&).4# # o*)#d%,(.'*+&,/0#-'*+%7)-%'&*)*#,*#)K`0,-,+0c#(%+#`)&7,++).4#p)#.%#(%+#-%(*)(+#+%#-%77)&-,/0#'*)#%d# +?)#+&/,(,(>#-'&&,-'0'7*4# # p)#b,*?#+%#+?/(a#+?)#ho#3&)*.)(g#`/&+,-'0/&0c#q&%d4#3&4Fi(>4#r)%(#o&e/*#/(.#3,`04Fi(>4#8(()++#qd)dd)&g#+?)# s,-?/)0#3t,/00/*#B(>,())&,(>#A%&`%&/+,%(#/(.#/00#%+?),(@%0@).#`)&*%(*#d%+?),*'``%&+#.'&,(>#+?)## `&)`/&/+,%(#%d#+?,*#+&/,(,(>#-'&&,-'0'74#
$%'(&)*+&,-+).#'*)#,(#).'-/+,%(/0#/(.#123#,(*+,+'+,%(*4#5#6,)7)(*#89#:;?+*#&)*)&@).4# 6ABCBDC;E4# # W?,*#7%.'0)#S,00#V&)*)(+#.,/>(%*+,-#X'(-+,%(*#+?/+R#X%)K/7V0)R#Y%'#-/(#+)*+#S,+?#+?)#WQ8# V&%Z)-+#X&%7#+?)#6BCDCED;F#S,+?#6Q\8WQB#6IG'&/+,%(#%X#6Q\8WQB#6I#B[_?+#'V#%(#+?)#B[_R#V%S)*'VV0Y#'(,+R#Qhf#7%.'0)*#%T'*# 7%.'0)*4# 8#B[_#X/'0+#,*#V&)*)(+#,(#+?,*#-/*)4#$%)K/7V0)R#/#7%.'0)#,(#+?)#/'+%7/+,%(#*Y*+)7#7,>?+#T)# .)X)-+,@)#%?/@)#/(#,(-%&&)-+#V/&/7)+)/**,>(7)(+#%/#T'*#*Y*+)7#X/'0+#7,>?+#T)#V&)*)(+4# 8(#,(+)&&'V+,%(#/(/0Y*,*#S,00#T)#V)&X%&7).#,(#+?,*#-/*)#TY#)@/0'/+,(>#+?)#?/&.S/&)#.,/>(%*+,-*# /(.#TY#&)/.,(>#+?)#7%.'0)#,(X%&7/+,%(#X&%7#+?)#.,/>(%*+,-#T'XX)%X#+?)#B[_4# # :4#W?)#B[_#,*#,(#/#X/'0+Y#1_E#%V)&/+,(>#*+/+)4#W?)#>&))(#1_E#gC3#0,>?+*#'V#/(.#%+?) ,(.,-/+%gC3*#0,>?+#'V#%/*?#%(#+?)#B[_R#V%S)*'VV0Y#'(,+R#Qhf#7%.'0)*#%T'*# 7%.'0)*4# # Q(#+?,*#-/*)R#/#X/'0+#7/Y#T)#V&)*)(+#,(#+?)#Qhf#.)@,-)*#%V%S)*'VV0Y4## 8#@,*'/0#-?)-i#S,00#T)#V)&X%&7).#,(,+,/00Y#+%#(/&&%S#.%S(#+?)#X/'0+#/&)/4#W?)#,(.,-/+%gC3*#%(# +?)#B[_#/(.#Qhf#.)@,-)*#S,00#T)#)@/0'/+).4#W?)#.,/>(%*+,-#./+/#%X#+?)#X/'0+Y#Qhf#/(.#T'*# 7%.'0)*#S,00#T)#&)/.#X&%7#+?)#?/&.S/&)#.,/>(%*+,-*4#Q(#/..,+,%(R#/#X/'0+#/(/0Y*,*#-/(#T)# V)&X%&7).#'*,(>#/#S/+-?#+/T0)#%(#+?)#V&%>&/77,(>#.)@,-)4# #
$%'(&)*+&,-+).#'*)#,(#).'-/+,%(/0#/(.#123#,(*+,+'+,%(*4#5#6,)7)(*#89#:;?+*#&)*)&@).4# 6BCDCED;F,@)*#X%'#/(#%@)&@,)T#%U#+?)# R&%>&/77).#Y0%-Z*#%U#+?)#'*)R&%>&/74#8#-%7R/&,*%(#%U#+?)#R&%>&/7#Y0%-Z*#'*).#%UU0,()#/(.# %(0,()#,*#.,*R0/X).#T,+?#+?)#?)0R#%U#.,/>(%*+,-#*X7Y%0*4##
#
$,>'&)#:[#\(0,()#@,)T#%U#+?)#]/,(#^\H)+?)W,+?#+?)#-&)/+).#R&%>&/74#XP# Y#
#
$%'(&)*+&,-+).#'*)#,(#).'-/+,%(/0#/(.#123#,(*+,+'+,%(*4#5#6,)7)(*#89#:;?+*#&)*)&@).4# 6BCDCED;FN#M,&*+#*)0)-+#+?)#O6+/&+#/00O#-?)-P#Q%K#'(.)-+,%(4# R?)(#-0,-P#O$,(,*?O4#SL#*)0)-+#-?)-P#Q%K#L#O$,(,*?OT#
#
=4E#1888 78
L#R%#>)+#*+/&+).#U,+?#+?)#.,/>(%*+,-#M'(-+,%(*N#U)#U,00#*)0)-+#%'-%(+&%00)SOAVWC#*+/+)# # Y?)#-%(P,>'&).#7%.'0)#.%)*#(%+#*'ZZ%&+#.,*Z0/a#%P#+?)#%Z)&/+,(># # *+/+)4# # #
$%'(&)*+&,-+).#'*)#,(#).'-/+,%(/0#/(.#123#,(*+,+'+,%(*4#5#6,)7)(*#89#:;?+*#&)*)&@).4# 6BCDCED;A# *\7]%0*4# 0" M 68789 # S?)#-%(()-+,%(#+%#/#BXY#,*#-'&&)(+0\#]),(>#)*+/]0,*?).4# S?)#BXY#,*#(%+#/--)**,]0)#/+#+?)#-%(V,>'&).#/..&)**4# # )#+\T)#%V#BXY#-%(V,>'&).#/(.#+\T)#%V#BXY#/-+'/00\#T&)*)(+#/&)# # S? ,(-%7T/+,]0)4# #)*+/]0,*?7)(+#%V#+?)#%(0,()#-%(()-+,%(#+%#/#T&%+)-+).#BXYW#+?)#T/**U%&.# # ^( .,/0%>#U/*#+)&7,(/+).#U,+?%'+#)(+&\#%V#+?)#-%&&)-+#T/**U%&.4# # E%#V/'0+# # _/,(+)(/(-)#&)`',&).# # _/,(+)(/(-)#.)7/(.).# # $/'0+# # S?)#7%.'0)#%.)@,-)#,*#.)/-+,@/+).4# )#7%.'0)#%.)@,-)#-/((%+#])#/--)**).#V&%7#+?)#BXY#Z@/0,.#V%%.'0)*# # S? /(.#.)@,-)*#])0%U#/#BXY[4# />(%*+,-#./+/#,*#(%+#/@/,0/]0)#])-/'*)#+?)#-'&&)(+#%(0,()#-%(V,>'&/+,%(# # 3, ./+/#.,VV)&*#V&%7#+?)#%VV0,()#-%(V,>'&/+,%(#./+/4# )#-%(V,>'&).#7%.'0)#%.)@,-)#/(.#+?)#7%.'0)#%.)@,-)#/-+'/00\#T&)*)(+# # S? /&)#,(-%7T/+,]0)#Z@/0,.#V%%.'0)*#%.)@,-)*#])0%U#/#BXY[4# )#-%(V,>'&).#7%.'0)#.%)*#(%+#*'TT%&+#.,*T0/\#%V#+?)#.,/>(%*+,-#*+/+'*# # S? Z@/0,.#V%%.'0)*#])0%U#/#BXY[4# )#-%(()-+,%(#?/*#]))(#)*+/]0,*?).W#]'+#+?)#*+/+)#%V#+?)#7%.'0)#,*# # S? -'&&)(+0\#*+,00#]),(>#.)+)&7,().4# S?)#-%(V,>'&).#7%.'0)#.%)*#(%+#*'TT%&+#.,*T0/\#%V#+?)#.,/>(%*+,-#*+/+'*4# # C&&%,(#0%U)&G0)@)0#-%7T%()(+a#8#V/'0+#,*#T&)*)(+#,(#/+#0)/*+#%()#0%U)&G0)@)0# # ?/&.U/&)#-%7T%()(+4# 1 5789Nb5L682P586M L R#S?)#*+/+'*#%V#T%&+*#/(.#C+?)&()+#-/]0)*#-/(#])#.,/>(%*).#,(#+?)#()+U%&c#@,)U#/(.# +%T%0%>\#@,)U4# R#S?)#V%00%U,(>#+/]0)#*?%U*#+?)#T%**,]0)#-%0%&*#/(.#+?),&)*T)-+,@)#7)/(,(>4# 1 5 68789 E%#V/'0+#%/,(+)(/(-)#&)`',&).# # _/,(+)(/(-)#.)7/(.).# # B%77'(,-/+,%(#)&&% # #
$%'(&)*+&,-+).#'*)#,(#).'-/+,%(/0#/(.#123#,(*+,+'+,%(*4#5#6,)7)(*#89#:;?+*#&)*)&@).4# 6BCDCED;F#/&)/#N,(.%N#-%(+/,(*#>)()&/0#,(P%&7/+,%(#/Q%'+#+?)#ARS4# TL#9)()&/0U#
# L#VP#.,/>(%*+,-#,(P%&7/+,%(#,*#/@/,0/Q0)W#,+#,*#.,*X0/Y).#,(#3,/>(%*+,-#*+/+'*4## TL#3,/>(%*+,-#*+/+'*U#
#
#
$%'(&)*+&,-+).#'*)#,(#).'-/+,%(/0#/(.#123#,(*+,+'+,%(*4#5#6,)7)(*#89#:;?+*#&)*)&@).4# 6ABCBDC;E(#/#Q1R$SDBT#.)@,-)#(/7)#+%#+?)#-%(U,>'&).#U,)0.# .)@,-)*#%(#Q1R$SDBT4#T?)#.)@,-)#(/7)#%U#+?)#AQM#-/((%+#V)#-?/(>).#?)&)4#S+#-/(#%(0P# V)#-?/(>).#VP#.%W(0%/.,(>#/#7%.,U,).#?/&.W/&)#-%(U,>'&/+,%(4# XL#$'(-+,%(*#L#8**,>(#(/7)Y#
L#M(.)N1)*)+#+%#U/-+%&P#*)++,(>*NO#P%'#-/(#&)*+%&)#+?)#U/-+%&P#*)++,(>*#%U#+?)#AQM4## XL$'(-+,%(*#L#1)*)+#+%#U/-+%&P#*)++,(>*#L#1)+/,(#%.)0)+)#SQ#/..&)**#L#1)*)+Y#
#
#
$%'(&)*+&,-+).#'*)#,(#).'-/+,%(/0#/(.#123#,(*+,+'+,%(*4#5#6,)7)(*#89#:;?+*#&)*)&@).4# 6ABCBDC;E/+,%(#R&%7#+?)#W6/R)+XD*?'+%RRD/-+,@)W#+/>#/+#+?)#8E3# R'(-+,%(#,(#+?)#WYZ[Z1DY8E\8]#^$B#/(.#7%.,NO,(>#N'(-+,%(*#/@/,0/P0)#N%*)0)-+,%(Q#+?)#N%00%R,(># -%0'7(*#-/(#P)#.,*S0/O).T## UVWWXYZ[\]^X_ZW`YabcX #da[XUVWWXefgda[e[XYZ[eX_ZW`YabcX 4## B%(+,(')#PO#*)0)-+,(>#+?)#+&,>>)+,7,(>#N%+?)#7%(,+%&,(>#hL#i)&7/()(+j4#
# 4kl m789 87578968 7l"789 n656o67 6p q r# i)&7/()(+#h,(#+?,*#7%.)Q#+?)#,(S'+*#/&)#7%(,+%&).s7%.,N,).#/+#+?)#*+/&+#%N#+?)# -O-0)#/(.#+?)#%'+S'+*#/+#+?)#)(.4j# r# t(-)#%(0OQ#/+#*+/&+#%N#*-/(#-O-0)# r# t(-)#%(0OQ#/+#)(.#%N#*-/(#-O-0)# r# i)&7/()(+0OQ#/+#*+/&+#%N#*-/(#-O-0)# r# i)&7/()(+0OQ#/+#)(.#%N#*-/(#-O-0)# r# t(-)#%(0OQ#/+#+&/(*,+,%(#+%#6Mti# r# i)&7/()(+0OQ#/+#+&/(*,+,%(#+%#6Mti# #
#
i&%-)**#,7/>)#%N#+?)#,(S'+*# u8+#*+/&+#%N#*-/(#-O-0)u#+&,>>)S%,(+# tI#>)S%,(+# u8+#)(.#%N#*-/(#-O-0)u#+&,>>)S%,(+#
i&%-)**#,7/>)#%N#+?)#%'+S'+*#
$%'(&)*+&,-+).#'*)#,(#).'-/+,%(/0#/(.#123#,(*+,+'+,%(*4#5#6,)7)(*#89#:;?+*#&)*)&@).4# 6BCDCED;F(#/#Q,L).#@/0')#+%#+/>*4#$%&-)#@/0')*#/&)# *S)-,Q,).#,(#/#*,7,0/T/U#/*#Q%+?)#PV%.,QU#+/>*P#Q'(-+,%(#R'+W#,(#-%(+&/*+W#/&)#&)+/,().# /Q+)+?)#BXY#,*#*T,+-?).#%QQ#%*+%SS).4#O?)#PV%.,QU#+/>*P#/(.#P$%&-)P#Q'(-+,%(*# )**)(+,/00U#.,QQ)/*#Q%00%T*Z# [(#-%(+&/*+#+%#PV%.,QU#+/>*PW#,+#,*#(%+#S%**,R0)#+%#/**,>(#@/0')*#+%#./+/#R0%-\*W#+,7)&*W# -%'(+)&*#/(.#R,+#7)7%&U#T,+?#+?)#P$%&-)P#Q'(-+,%(4# []^#.)@,-)#,(S'+*#_)4>4W#[`LLZXa#-/((%+#R)#7%.,Q,).#R'+#-/(#R)#S&)G/**,>().#RU#+?)# P$%&-)P#Q'(-+,%(4# Y(0,\)#T,+?#+?)#PV%.,QUP#Q'(-+,%(W#@/0')*#S)&7/()(+0U#/**,>().#RU#+?)#P$%&-)P#Q'(-+,%(# -/((%+#R)#%@)&T&,++)(#RU#+?)#'*)S&%>&/74# [Q#U%'#-0%*)#+?)#Q%&-)#+/R0)W#+?)#Q%&-)#@/0')*#/&)#&)+/,().4#O?,*#,*#(%+#+?)#-/*)#T,+?#+?)# PV%.,QUP#Q'(-+,%(4# [Q#+?)#%(0,()#-%(()-+,%(#+%#+?)#BXY#,*#,(+)&&'S+).W#+?)#+/>*#/**,>().#T,+?#+?)#P$%&-)P# Q'(-+,%(#&)+/,(#+?),@/0')4# # O%#Q%&-)#+/>*W#U%'#7'*+#Q,&*+#.%'R0)G-0,-\#+?)#Q%&-)#+/R0)#+%#%S)(#,+4#_N#$%&-)#+/R0)a#
#
$%'(&)*+&,-+).#'*)#,(#).'-/+,%(/0#/(.#123#,(*+,+'+,%(*4#5#6,)7)(*#89#:;?+*#&)*)&@).4# 6BCDCED;F#,*#/-+,@/+).#/(.#+?)#M)00%N#O4P2 #%(#+?)#BQR#0,>?+*#'S4#T(#/..,+,%(U#/(#!%(# /#&).#V/-W>&%'(.#,*#*?%N(#/+#+?)#+%S#&,>?+#%X#+?)#.,*S0/M#%X#+?)#6IF #/(.#-%(X,&7#+?)#()K+#.,/0%># N,+?# ¡)* 4## ¢L# #6+%S#X%&-,(>£#¤¥¦§#¢L#¡)*£#
#
$%&-,(>#,*#*+%SS).#/(.#+?)#M)00%N#O4P2 #%(#+?)#BQR#*N,+-?)*#%XX4# L#TX#/#X%&-)#&)¨')*+#/0&)/.M#)K,*+*#,(#+?)#-%(+&%00)&U#+?,*#,*#,(.,-/+).#VM#+?)# #*M7V%0#,(#+?)# N/+-?#+/V0)4#TX#M%'#+?)(#-0,-W# U#/..,+,%(/0#,(X%&7/+,%(#N,00#V)#.,*S0/M).#¢L# £4#
#
$%'(&)*+&,-+).#'*)#,(#).'-/+,%(/0#/(.#123#,(*+,+'+,%(*4#5#6,)7)(*#89#:;?+*#&)*)&@).4# 6BCDCED;AP#O% )K/7Q0)R#9)++,(>#6+/&+).P#@,.)%*P#+'+%&,/0*P#/QQ*P#7/('/0*P#Q&%>&/77,(>#>',.)0,()*#/(.#+&,/0# *%O+S/&)TO,&7S/&)P#/+#+?)#O%00%S,(>#0,(UR## # SSS4*,)7)(*4-%7T*-)T*JG#-'&&,-'0'7#g%+?)#,(+)>&/+).#/'+%7/+,%(#*%0'+,%(#j%+/00f#k(+)>&/+).#8'+%7/+,%(#ljk8m# e/*#c&)c/&).#g%+?)#c&%>&/7#n6,)7)(*#8'+%7/+,%(#A%%c)&/+)*#e,+?#B.'-/+,%(#l6ABmn#*c)-,g,-/00f#g% +&/,(,(>#c'&c%*)*#g%c'I0,-#).'-/+,%(/0#/(.#123#,(*+,+'+,%(*4#6,)7)(*#89#.%)*#(%+#>'/&/(+))#+?)# -%(+)(+*4# # j?,*#.%-'7)(+#,*#+%#I)#'*).#%(0f#g%,(,+,/0#+&/,(,(>#%(#6,)7)(*#c&%.'-+*h*f*+)7*4#j?,*#7)/(*#,+#-/(#I)# -%c,).#,(#e?%0)#%c/&+#/(.#>,@)(#+%#+?%*)#I),(>#+&/,().#g%'*)#e,+?,(#+?)#*-%c)#%g#+?),+&/,(,(>4# A,&-'0/+,%(#%-%cf,(>#+?,*#+&/,(,(>#-'&&,-'0'7#/(.#*?/&,(>#,+*#-%(+)(+#,*#c)&7,++).#e,+?,(#c'I0,-#+&/,(,(># /(.#/.@/(-).#+&/,(,(>#g/-,0,+,)*#g%+&/,(,(>#c'&c%*)*4## # BM-)c+,%(*# &)o',&)# e&,++)(# -%(*)(+# g&%7# +?)# 6,)7)(*# 89# -%(+/-+\# 1%0/(.# 6-?)')&) &%0/(.4*-?)')&)&p*,)7)(*4-%74# # [gg)(.)&*#e,00#I)#?)0.#0,/I0)4#800#&,>?+*#,(-0'.,(>#+&/(*0/+,%(#/&)#&)*)&@).i#c/&+,-'0/&0f#,g#/#c/+)(+#,*#>&/(+).# %/#'+,0,+f#7%.)0#%.)*,>(#,*#&)>,*+)&).4# # q*)#g%,(.'*+&,/0#-'*+%7)-%'&*)*#,*#)Mc&)**0f#c&%?,I,+).4#H)#.%#(%+#-%(*)(+#+%#-%77)&-,/0#'*)#%g#+?)# +&/,(,(>#-'&&,-'0'7*4# # H)#e,*?#+%#+?/(d#+?)#jq#3&)*.)(i#)*c)-,/00f#b&%g4#3&4Fk(>4#r)%(#q&I/*#'(.#3,c04Fk(>4#8(()++#bg)gg)&i#+?)# s,-?/)0#3t,/00/*#B(>,())&,(>#A%&c%&/+,%(#/(.#/00#%+?),(@%0@).#c)&*%(*#g%+?),*'cc%&+#.'&,(>#+?)# c&)c/&/+,%(#%g#+?,*#+&/,(,(>#-'&&,-'0'74#
$%'(&)*+&,-+).#'*)#,(#).'-/+,%(/0#/(.#123#,(*+,+'+,%(*4#5#6,)7)(*#89#:;?+*#1)*)&@).4# 6ABCBDC;E(%*+,-*#@,/#H)I*)&@)JF)*#%U#+?)#BVW4# 4XY Z789Z[[5Z\5\X6][8\Y5
87678Z7XX1^_ G#`(+)&()+#CMT0%&)ab)&*,%(#Lc# G#R%d,00/#$,&)U%M#ab)&*,%(#:'&)#'&/+,%(#%Q#+?)#R)I#*)&@)%Q#+?)#AVW#(/0#I%/&.# 8_#4W#6BCDCED;F)+#.,&)-+%&T#^#Xgc# #
$%'(&)*+&,-+).#'*)#,(#).'-/+,%(/0#/(.#123#,(*+,+'+,%(*4#5#6,)7)(*#89#:;?+*#1)*)&@).4# 6BCDCED;F(%*+,-*#@,/#I)J*)&@)AG*# %Q#+?)#YC@)&RJ%.RY#'*)&4#C(/J0)#+?,*#'*)+%#-/&&R#%'+#/00#Z%**,J0)#/-+,%(*#/(.#/--)Z+#R%' *)++,(>*4# SO# #O# V#
# \]^_`abcdefghifhjkdfglmhnmfoejnpqjmfekmlkfrmlmfspnrftpuumlminfhenrdlpvhnpdikwfxrmkmfekmlkfnrmif lmyeplmfhfqhkksdltwf # # $%'(&)*+&,-+).#'*)#,(#).'-/+,%(/0#/(.#123#,(*+,+'+,%(*4#5#6,)7)(*#89#:;?+*#1)*)&@).4# 6BCDCED;F(%*+,-*#@,/#I)J*)&@)KG)*#Q,00#(%+#I)#-&)/+).#?)&)4#H)#7'*+#)(/I0)#W1X$YDBO# ,(+)&U/-)C(%*+,-*#Q'RR)&Y#
#
# N#V?)#*+/+'*#%R#+?)#,(.,@,.'/0#7%.'0)*#%R#%'Z[8VZB#6KG)*#R%+?)#@,*'/0,Z/+,%(#/(.#/0*%#R%%Y)&/+%-%(+&%0#%R#Y&%-)**)*# U%'0.#J)#*))(#'(.)SQ*)Y/>)*S4## VN#Q*)Y/>)*W#
# #
# #
$%'(&)*+&,-+).#'*)#,(#).'-/+,%(/0#/(.#123#,(*+,+'+,%(*4#5#6,)7)(*#89#:;?+*#1)*)&@).4# 6BCDCED;F(%*+,-*#@,/#I)J*)&@)AG#0,(XU### # VVV4*,)7)(*4-%7W*-)W*KG#-'&&,-'0'7#e%+?)#,(+)>&/+).#/'+%7/+,%(#*%0'+,%(#i%+/00d#j(+)>&/+).#8'+%7/+,%(#kij8l# c/*#a&)a/&).#e%+?)#a&%>&/7#m6,)7)(*#8'+%7/+,%(#A%%a)&/+)*#c,+?#B.'-/+,%(#k6ABlm#*a)-,e,-/00d#e% +&/,(,(>#a'&a%*)*#e%a'f0,-#).'-/+,%(/0#/(.#123#,(*+,+'+,%(*4#6,)7)(*#89#.%)*#(%+#>'/&/(+))#+?)# -%(+)(+*4# # i?,*#.%-'7)(+#,*#+%#f)#'*).#%(0d#e%,(,+,/0#+&/,(,(>#%(#6,)7)(*#a&%.'-+*g*d*+)7*4#i?,*#7)/(*#,+#-/(#f)# -%a,).#,(#c?%0)#%a/&+#/(.#>,@)(#+%#+?%*)#f),(>#+&/,().#e%'*)#c,+?,(#+?)#*-%a)#%e#+?),+&/,(,(>4# A,&-'0/+,%(#%-%ad,(>#+?,*#+&/,(,(>#-'&&,-'0'7#/(.#*?/&,(>#,+*#-%(+)(+#,*#a)&7,++).#c,+?,(#a'f0,-#+&/,(,(># /(.#/.@/(-).#+&/,(,(>#e/-,0,+,)*#e%+&/,(,(>#a'&a%*)*4## # BK-)a+,%(*# &)n',&)# c&,++)(# -%(*)(+# e&%7# +?)# 6,)7)(*# 89# -%(+/-+Y# 1%0/(.# 6-?)')&) &%0/(.4*-?)')&)&o*,)7)(*4-%74# # Xee)(.)&*#c,00#f)#?)0.#0,/f0)4#800#&,>?+*#,(-0'.,(>#+&/(*0/+,%(#/&)#&)*)&@).h#a/&+,-'0/&0d#,e#/#a/+)(+#,*#>&/(+).# %/#'+,0,+d#7%.)0#%.)*,>(#,*#&)>,*+)&).4# # p*)#e%,(.'*+&,/0#-'*+%7)-%'&*)*#,*#)Ka&)**0d#a&%?,f,+).4#q)#.%#(%+#-%(*)(+#+%#-%77)&-,/0#'*)#%e#+?)# +&/,(,(>#-'&&,-'0'7*4# # q)#c,*?#+%#+?/(b#+?)#ip#3&)*.)(h#)*a)-,/00d#`&%e4#3&4Fj(>4#r)%(#p&f/*#'(.#3,a04Fj(>4#8(()++#`e)ee)&h#+?)# s,-?/)0#3t,/00/*#B(>,())&,(>#A%&a%&/+,%(#/(.#/00#%+?),(@%0@).#a)&*%(*#e%+?),*'aa%&+#.'&,(>#+?)# a&)a/&/+,%(#%e#+?,*#+&/,(,(>#-'&&,-'0'74#
$%'(&)*+&,-+).#'*)#,(#).'-/+,%(/0#/(.#123#,(*+,+'+,%(*4#5#6,)7)(*#89#:;?+*#1)*)&@).4# 6ABCBDC;E#H/0')*#6IF#@/0')#V&%-)**,(>#%\#+?)#6U]8^UB# 6JG&/77,(>#+%%04## ^?)#7%.'0)#)LV0/,(*#+?)#/-[',*,+,%(#/(.#V&%-)**,(>#%\#/(/0%>#*,>(/0*#/(.#>,@)*#/#*+)VGZXG *+)V#.)*-&,V+,%(#%\#&)/.#/(.#Y&,+)#/--)**#+%#/(/0%>#@/0')*#,(#+?)#6U]8^UB#6JG#['/(+,+,)*#,(#-%(+&%0#)(>,())&,(>e# G# ^)7V)&/+'&)#GH;#+%#)*P#-'&&)(+*#%&)*,*+/(-)*#Q,+?#+?)#?)0R#%S#/# 7)/*'&,(>#+&/(*.'-)&4#TSP#S%)K/7R0)P#/#*R)).#,*#+%#U)#7)/*'&).P#+?)#*R)).#&/(>)#%S#A;;#+%# )#&/(>)#%S#;#+%#V#+&/(*.'-)&4#8+# /#7)/*'&).#*R)).#%S#J=A#&R7P#+?)#7)/*'&,(>#+&/(*.'-)Q%'0.#%'+R'+#/#@%0+/>)#@/0')#%S# VF4=A#H4# # i
78# e 5j F=A
#
c
7,( ,+,Y)*#+?,*#*,>(/0#S%S'&+?)R&%-)**,(>#,(#+?)#Z[B4# TS#/(/0%>#O'/(+,+,)*#Q,00#U)#R&%-)**).#Q,+?#/#Z[BP#+?)#&)/.G,(#@%0+/>)P#-'&&)(+#%&)*,*+/(-)# @/0')#7'*+#U)#-%(@)&+).#+%#.,>,+/0#,(S%&7/+,%(4#N?)#/(/0%>#@/0')#,*#-%(@)&+).#+%#/#U,+#R/++)&(4# N?,*#-%(@)&*,%(#,*#&)S)&&).#+%#/*#/(/0%>G+%G.,>,+/0#-%(@)&*,%(#\8]3#-%(@)&*,%(^4#N?,*#7)/(*P# S%)K/7R0)P#+?/+#+?)#@%0+/>)#@/0')#%S#F4=A#H#,*#*+%&).#/*#,(S%&7/+,%(#,(#/#*)&,)*#%S#U,(/&_# .,>,+*4## N?)#&)*'0+#%S#+?,*#-%(@)&*,%(#,*#/0Q/_*#/#,+/0#@/0')# #
# #
$%'(&)*+&,-+).#'*)#,(#).'-/+,%(/0#/(.#123#,(*+,+'+,%(*4#5#6,)7)(*#89#:;?+*#1)*)&@).4# 6BCDCED;F#H/0')*#6IG#@/0')#+&/(*M%&7/+,%(#M%M'&+?)N&%-)**,(>#,(#+?)#OPB#,*#+?)#*/7)#M%/(/0%># ,(N'+*#/(.#/(/0%>#%'+N'+*4# L?)#.,>,+,Q).#@/0')#&/(>)*#/&)#/*#M%00%R*S# # X 786 5689YZ686 9 [6 # \#
\ # \# _^#
]^_#
7976 7` [6 Y5 Y 5Z5 a5bb78978Zc1# #
# TM+)(U#+?)*)#.,>,+,Q).#@/0')*#*+,00#?/@)#+%#V)#(%&7/0,Q).#VW#M'&+?)N&%-)**,(>#+?)7#,(#+?)#OPB# ,(#/(#/NN&%N&,/+)#7/(()&4# # # #
$%'(&)*+&,-+).#'*)#,(#).'-/+,%(/0#/(.#123#,(*+,+'+,%(*4#5#6,)7)(*#89#:;?+*#1)*)&@).4# 6BCDCED;F#I/0')*#6JG&/77).#,(#+?)# VXYWY1C6ZBB3AYDW1Y[V#\$A)#F#G;#&P7Q#+?)#@/0')#;#T,+?#./+/#+SP)#) O(+#T,00#U)#%'+P'+#/+#+?)#%'+P'+4#W?)#&)+'&(#@/0')#%R#+?)#R'(-+,%(#1)+CH/0#T,00#+?)(#U)# /**,>().#+?)#@/0')#W1B##,*#T,+?,(#+?)#&/(>)#F#G;#&P7Q#+?,*#@/0')#T,00#R,&*+#U)#(%&7/0,).#+%#+?)# oegpablbegvb_`agbtesavb_nbF#:I=J#T,+?#./+/#+SP)#)O(+#R%%'+P'+#/*#+?)# *P)).#7/(,P'0/+).#@/0')#/+#+?)#/(/0%>#%'+P'+4# # W?)#%'+P'+#T,00#+?)(#U)#-%(()-+).#T,+?#*,>(/0#&/7#P%+?)#+/*Q4# #
$,>'&)#O#.,/>&/7#
$,>'&)#:R#A%(+&%0#T/()0#
#
#
#
$%'(&)*+&,-+).#'*)#,(#).'-/+,%(/0#/(.#123#,(*+,+'+,%(*4#5#6,)7)(*#89#:;?+*#1)*)&@).4# 6ABCBDC;E#H/0')*#6IF#Z(U'+# l Z# Z(U'+# l DA# D%&7/00^#A0%*).## l l D\# D%&7/00^#\U)(## l
# #
3\# 3,>,+/0#\'+U'+# 8\# 8(/0%>#\'+U'+# h# \'+U'+#
$%'(&)*+&,-+).#'*)#,(#).'-/+,%(/0#/(.#123#,(*+,+'+,%(*4#5#6,)7)(*#89#:;?+*#1)*)&@).4# 6ABCBDC;E#H/0')*#6IF(#+?)#('7X) ^'/>)e#$j3#U#E'7X)&e#G/(.G.&%O#+%#7%@)#+?)#PB%(@)&*,%(#%O)&/+,%(P#P6B8QCDRP#,(+%#E)+S%&T#F#,(#%&.) +%#*-/0)#+?)#*O)).#*)+O%,(+#U&%7#+?)#(%&7/0,V).#WXG#)#U%+?)#/(/0%>#%'+O'+# WXG#:JY=K4## ZM#[/*,-#,(*+&'-+,%(*#M#B%(@)&*,%(#%O)&/+,%(*#M#6B8QCDR\#
#
# M#B%(()-+#+?)#-%(+/-+*#S,+?#+?)#-%(*+/(+*#/(.#0%-/0#+/>*#,(#E)+S%&T#F#/*#S)00]#/*#*?%S(# ?)&)4#^?)#./+/#+_O)*#,(#P6B8QCDRP#/&)#/'+%7/+,-/00_#-?/(>).#+%#P1)/0P#%P`(+P4#
#
$%'(&)*+&,-+).#'*)#,(#).'-/+,%(/0#/(.#123#,(*+,+'+,%(*4#5#6,)7)(*#89#:;?+*#1)*)&@).4# 6BCDCED;F#I/0')*#6JG)+#+%#-0,-N# 4#O?)#M,(,*?).#M'(-+,%(#PQROR1C6SBB3ARDO1RTP# U$A'&/+,%(S#+%#%U)(#,+4#
# P#A?)-R#+?)#/..&)**#*)++,(>#/(.#+?)#-%(T,>'&/+,%(#%T#+?)#/(/0%>#%'+U'+#-?/(()0#;4## VP#WXYZZ[\]]^X_`a_bXPc&%U)&+,)*#P#9)()&/0#P#8(/0%>#%'+U'+*#P#1)/-+,%(#+%#Acd# 6efcg#d*)#*'Q*+,+'+)#@/0')#P#A?/(()0#;#P#8(/0%>#%'+U'+#+hU)g#H%0+/>)#P#6'Q*+,+'+)# @/0')#T%-?/(()0#%(#/#-?/(>)#T&%7#1dD#+%#6efcg#;4;;;#H#P# #B(/Q0)#*?%&+#-,&-',+# .,/>(%*+,-*i#
#
$%'(&)*+&,-+).#'*)#,(#).'-/+,%(/0#/(.#123#,(*+,+'+,%(*4#5#6,)7)(*#89#:;?+*#1)*)&@).4# 6ABCBDC;E#H/0')*#6IFD1)+DI/0#R#X%%0e#
#
$%'(&)*+&,-+).#'*)#,(#).'-/+,%(/0#/(.#123#,(*+,+'+,%(*4#5#6,)7)(*#89#:;?+*#1)*)&@).4# 6BCDCED;F#I/0')*#6JG0%N/0#/(.#0%-/0#+/>*#?)&)#/*#*?%M(4##
#
# L#A?/(>)#+?)#-%(()-+,%(#%O#%'+P'+#+/>#QA%(@)R%&C7%+%&C/'+%7/+,-C7%.)Q#,(#D)+M%&S#:#+%# TFUET#VA%(@)R%%+%FW# +?)#/(/0%>#*P)).#*)++,(>#,(+%#-%(*,.)&/+,%(4#VL#FUEX#
#
$%'(&)*+&,-+).#'*)#,(#).'-/+,%(/0#/(.#123#,(*+,+'+,%(*4#5#6,)7)(*#89#:;?+*#1)*)&@).4# 6ABCBDC;E#H/0')*#6IF&/7#,(-0'.,(># +?)#?/&.U/&)#-%(R,>'&/+,%(#-/(T#/*#.)*-&,V).#,(#+?)#S&)@,%'*#7%.'0)*T#V)#.%U(0%/.).4# WQ# X#
$%'(&)*+&,-+).#'*)#,(#).'-/+,%(/0#/(.#123#,(*+,+'+,%(*4#5#6,)7)(*#89#:;?+*#1)*)&@).4# 6BCDCED;F#I/0')*#6JG)# 6R,+-?#%(#*+/+,%(#SFT;#U##*,>(/0*#/&)#&)T',&).#/*#>0%U/0#%V)&/(.*#R%+?,*#+/*W4# 4"X 87O75 ! 878 [#;4;# \]]^# G8#[(V'+# m [# [(V'+# m FC# F%&7/00_#C0%*).## m F]# F%&7/00_#]V)(## #
# #
3]# 3,>,+/0#]'+V'+# 8]# 8(/0%>#]'+V'+# k# ]'+V'+#
LM{ 688789
g0/(#+?)#,7V0)7)(+/+,%(#%R#+?)#+/*W#%(#_%'%S(4#
$%'(&)*+&,-+).#'*)#,(#).'-/+,%(/0#/(.#123#,(*+,+'+,%(*4#5#6,)7)(*#89#:;?+*#1)*)&@).4# 6CDEDFE;A#H/0')*#6IG#0,(UR### # SSS4*,)7)(*4-%7T*-)T*BG")&,,())$%"b.,H.=()"c>('"'(,()).%d3" 7'"$?(%?+(c"$e"*>(",&%%('*/d".?.+/.F/("5@A"b.,H.=()"+)"b%$?+-(-".*[")+(6(')3,$6f),(f*b""
" " 1878 5678789
#$%"%(=+$'./"5+(6(')"5@A",$'*+'&(-"*%.+'+'=g"b/(.)(",$'*.,*"d$&%"%(=+$'./"5@A",$'*.,*" )+(6(')3,$6f),(f,$'*.,*"
" " 7786 78Q5 6785965789012 )+(6(')3,$6f),(" " " 8Q5 6785965789 P
h>("5@A"*%.+'+'=",&%%+,&/&6"e$%"*>("+'*(=%.*(-".&*$6.*+$'")$/&*+$'"h$*.//d"i'*(=%.*(-"7&*$6.*+$'"jhi7k" c.)"b%(b.%(-"e$%"*>("b%$=%.6"l5+(6(')"7&*$6.*+$'"@$$b(%.*()"c+*>"A-&,.*+$'"j5@Akl")b(,+e+,.//d"e$%" *%.+'+'="b&%b$)()"e$%"b&F/+,"(-&,.*+$'./".'-"012"+')*+*&*+$')3"5+(6(')"78"-$()"'$*"=&.%.'*(("*>(" ,$'*('*)3" " h>+)"-$,&6('*"+)"*$"F("&)(-"$'/d"e$%"+'+*+./"*%.+'+'="$'"5+(6(')"b%$-&,*)f)d)*(6)3"h>+)"6(.')"+*",.'"F(" ,$b+(-"+'"c>$/("$%"b.%*".'-"=+?('"*$"*>$)("F(+'="*%.+'(-"e$%"&)("c+*>+'"*>("),$b("$e"*>(+%"*%.+'+'=3" @+%,&/.*+$'"$%",$bd+'="*>+)"*%.+'+'=",&%%+,&/&6".'-")>.%+'="+*)",$'*('*"+)"b(%6+**(-"c+*>+'"b&F/+,"*%.+'+'=" .'-".-?.',(-"*%.+'+'="e.,+/+*+()"e$%"*%.+'+'="b&%b$)()3"" " AL,(b*+$')" %(m&+%(" c%+**('" ,$')('*" e%$6" *>(" 5+(6(')" 78" ,$'*.,*[" 0$/.'-" 5,>(&(%(%" %$/.'-3),>(&(%(%n)+(6(')3,$63" " Zee('-(%)"c+//"F(">(/-"/+.F/(3"7//"%+=>*)"+',/&-+'="*%.')/.*+$'".%("%()(%?(-g"b.%*+,&/.%/d"+e"."b.*('*"+)"=%.'*(-" $%"."&*+/+*d"6$-(/"$%"-()+='"+)"%(=+)*(%(-3" " o)("e$%"+'-&)*%+./",&)*$6(%",$&%)()"+)"(Lb%())/d"b%$>+F+*(-3"p("-$"'$*",$')('*"*$",$66(%,+./"&)("$e"*>(" *%.+'+'=",&%%+,&/&6)3" " p("c+)>"*$"*>.'H"*>("ho"2%()-('g"()b(,+.//d"a%$e3"2%3Ei'=3"q($'"o%F.)"&'-"2+b/3Ei'=3"7''(**"ae(ee(%g"*>(" r+,>.(/"2s+.//.)"A'=+'((%+'="@$%b$%.*+$'".'-".//"$*>(%"+'?$/?(-"b(%)$')"e$%"*>(+%")&bb$%*"-&%+'="*>(" b%(b.%.*+$'"$e"*>+)"*%.+'+'=",&%%+,&/&63"
#$%"&'%()*%+,*(-"&)("+'"(-&,.*+$'./".'-"012"+')*+*&*+$')3"4"5+(6(')"78"9:;*)"0()(%?(-3" 5@ABACB:D;E($%S"333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333"PO @3;O 2.*."F/$,H)"33333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333"PO @39O 2.*."*ST()"$N"*>("5UV7MUA"5IE;9::"33333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333"JO @3@O WT*+6+X(-"F/$,H)"33333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333"'$/$=S"-+.=%.6"333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333"KO J3@O 0(N(%(',("/+)*"33333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333"ZO ("5V]7^VA" 5JF;9::"Z+*>"*>("^V7"_$%*./"W%$=%.66+'="*$$/3"" ^>("6$-&/("(MW/.+')"*>(")*%&,*&%(".'-",%(.*+$'"$\".'-".,,())"*$"=/$G./"-.*."G/$,I)"\$%"*>(" 5V]7^VA"5JF;9::3"V*"./)$")>$Z)"*>(")*(W)"\$%",%(.*+'="."=/$G./"-.*."G/$,I"+'"*>("^V7"_$%*./" .'-"\$%".,,())+'="*>+)"-.*."+'"*>("W%$=%.6"Z+*>"%(.-".'-"Z%+*(".,,())3"
55` 7a7
^>+)",>.W*(%"G&+/-)"$'"*>(",>.W*(%"7'./$="b./&()"Z+*>"*>("5V]7^VA"5J"A_c;9;@A" 2Ad2Ad2A3"e$&",.'"&)("*>("\$//$Z+'="W%$f(,*"\$%"*>+)",>.W*(%X"\$%"(M.6W/(g"h5ABCBDC:E;F K::C7'./$=Cb./&()C5JFijkklmnoipql"
4r5!
s66t ua
V'",$'*%.)*"*$"/$=+,"G/$,I)X"-.*."G/$,I)",$'*.+'"'$"+')*%&,*+$')3"0.*>(%X"*>(Y")(%?(".)"6(6$%Y" \$%"&)(%"-.*.3" 2.*."G/$,I)"*>&)",$'*.+'"?.%+.G/("-.*."*>.*"+)"&)(-"GY"*>("&)(%"W%$=%.63"e$&",.'"-(\+'("*>(" )*%&,*&%("$\"=/$G./"-.*."G/$,I)".)"%([&+%(-3"" 8/$G./"-.*."G/$,I)")*$%("-.*."*>.*",.'"G("&)(-"vwxyzzx{|}~xvz{")(("#+=&%(";3"
'/Y"*>(" .))$,+.*(-"\&',*+$'"G/$,I")>$&/-".,,())"+')*.',("-.*."G/$,I)3"^>("6.M+6&6")+("$\"-.*." G/$,I)"?.%+()"-(W('-+'="$'"*>("&*+/+(-"A_c3"" #&',*+$'C;: #&',*+$'C;; #&',*+$'C" G/$,IC;9
8/$G./"2H" 2HC8/$G./ 7,,())"\$%".//"G/$,I)" V')*.',("2H" 7,,())"$'/Y"\$%"" 2HCV')*.',( #&',*+$'C-.*.CG/$,IC;9
#+=&%(";g"2+\\(%(',("G(*Z(('"=/$G./"2H".'-"+')*.',("2H3"
#$%"&'%()*%+,*(-"&)("+'"(-&,.*+$'./".'-"012"+')*+*&*+$')3"4"5+(6(')"78"9:;*)"0()(%?(-3" 5ABCBDC:E;F('"%(*.+'(-"+'"*>(" (?('*"$N"."M$W(%"N.+/&%("$%".N*(%"."5YZ[\5Y70Y"$N"*>("A[]3"
^66!_Q`a0410b
Y>("5cd7YcA"5JF;9::">.)"6.'T"-+NN(%('*"-.*."*TM()"N$%"%(M%()('*+'="-+NN(%('*"'&6(%+,./" N$%6.*)3"7"/+)*"$N")$6("$N"*>("(/(6('*.%T"-.*."*TM()"+)"=+?('"G(/$W3" 66!_07efO7Qgh689 2i6 _ `8Q6885! H$$/" ;" :"*$";" Y0]Bj"#7k5Bj"Zj";" HT*(" K" ;(".%%.T"*.=3"" 5*%&,*" " Y>("5Y0]AY"-.*."*TM("%(M%()('*)"" ."-.*.")*%&,*&%("*>.*",$')+)*)"$N"." N+L(-"'&6G(%"$N",$6M$'('*)"$N" -+NN(%('*"-.*."*TM()3"A$6M$'('*)"$N" 5Y0]AY"$%"7007{"-.*."*TM(",.'" ./)$"G("'()*(-"+'".")*%&,*&%(3"" |" " #$%"$*>(%"-.*."*TM()j"%(N(%"*$"*>(" " $'/+'(">(/M3" " "
#$%"&'%()*%+,*(-"&)("+'"(-&,.*+$'./".'-"012"+')*+*&*+$')3"4"5+(6(')"78"9:;*)"0()(%?(-3" 5ABCBDC:E;F(+%"-.*."*WT(3"X>(")$%*+'="(')&%()"*>.*"-.*."=.T)"F(*Y(('"*>(" *.=)".%("6+'+6+U(-".'-"*>("*.=)".%(")*$%(-"+'"."6.''(%"*>.*"$T*+6+U()"*>(+%".,,())"FW"*>(" ,$'*%$//(%3" Z"X>("*.=)".%("./Y.W)".,,())(-".)"[.)*".)"T$))+F/("F(,.&)("*>("[+/(")*$%.=("FW"*>(" )W)*(6"+)"$T*+6+U(-".'-"+)"+'-(T('-('*"$["*>("-(,/.%.*+$'3" Z"X>(%("+)"'$"-.'=(%"$["+',$')+)*(',+()"-&("*$"+',$%%(,*\".F)$/&*(".,,())()"F(,.&)(" )W6F$/+,".,,())"+)"=('(%.//W"&)(-3" Z"2(,/.%.*+$'",>.'=()"-$"'$*"%()&/*"+'".,,())"(%%$%)"F(,.&)(".,,())()"FW"T%$,())" ?+)&./+U.*+$'")W)*(6)\"[$%"(L.6T/(\"$,,&%")W6F$/+,.//W3" Z"V'-+?+-&./"*.=)",.'"F(")(/(,*+?(/W"-([+'(-".)"%(*('*+?(3" Z"C$")(**+'=)".%("'((-(-"$%"T$))+F/("+'"*>("+')*.',("-.*."F/$,H3"A?(%W*>+'="Y+//"F(")(*"+'" *>(".))+='(-"#G"](3=3\"%(*('*+?+*W^3" Z"_(6$%W"%()(%?()"+'"*>("-.*."F/$,H"('.F/(",>.'=()"*$"F("6.-("Y+*>$&*"/$))"$[".,*&./" ?./&()"]-$Y'/$.-"Y+*>$&*"%(+'+*+./+U.*+$'^3"
M`a8 6789a7b 578776 7P678
X$"('.F/("*>(")&F)(c&('*"(-+*+'="$["&)(%"T%$=%.6)"*>.*".%("./%(.-W"%&''+'="+'"."@de\"*>("5IE ;9::",$'*%$//(%)")&TT$%*"*>("$T*+$'"$["(LT.'-+'="*>("+'*(%[.,()"$["$T*+6+U(-"[&',*+$'"$%"-.*." F/$,H)"-&%+'="$T(%.*+$'3"f$&",.'"-$Y'/$.-"*>("6$-+[+(-"F/$,H)"Y+*>$&*")Y+*,>+'="*>(" ,$'*%$//(%"*$"5Xgd"6$-(".'-"Y+*>$&*".[[(,*+'="*>(".,*&./"?./&()"$["T%(?+$&)/W"-$Y'/$.-(-" *.=)3"
#+=&%("9h"2$Y'/$.-"Y+*>$&*"%(+'+*+./+U.*+$'"
"
X>("[$//$Y+'=")*(T)",.'"F("T(%[$%6(-"Y>+/("*>(",$'*%$//(%"+)"+'"0eC"6$-(h" ;3"7,*+?.*("i2$Y'/$.-"Y+*>$&*"%(+'+*+./+U.*+$'i" 93"V')(%*"'(Y/W"-([+'(-"*.=)"+'".'"(L+)*+'="F/$,H" D3"2$Y'/$.-"(LT.'-(-"F/$,H"*$"*>(",$'*%$//(%" X>("'(Y/W"-([+'(-"*.=)".%("+'+*+./+U(-3"X>("(L+)*+'="*.=)"%(*.+'"*>(+%",&%%('*"?./&(3" d%(%(c&+)+*(h"."6(6$%W"%()(%?("6&)*">.?("F(('"-([+'(-"[$%"*>("F/$,H"F([$%(>.'-".'-"*>(" F/$,H"Y+*>"*>+)"6(6$%W"%()(%?("6&)*">.?("-$Y'/$.-(-"*$"*>("@de3"
#$%"&'%()*%+,*(-"&)("+'"(-&,.*+$'./".'-"012"+')*+*&*+$')3"4"5+(6(')"78"9:;*)"0()(%?(-3" 5@ABACB:D;E+)",>.Q*(%R"*>("Q%$=%.6"S%$6",>.Q*(%"T5ABCBDC:E;FJ::"7'./$="U./&()C5@FVWXXYZ[\]]Z^_Z (LQ.'-(-"*$"+',/&-("."-.*."G/$,I"*>.*",('*%.//`"Q%$?+-()"*>("Q.%.6(*(%)"S$%"*>("*a$"S&',*+$')" TbcdcefghiijkcldecmY"n#A;:o".'-"TbcdcefZghiijbclpdceplqY"n#A;;o3"
r 688789
s>("-.*."6.'.=(6('*".'-")(*Q$+'*")(**+'="S$%"*>("Ttusu0C5vBB2AuDs0uwT"n#A;:o".'-" Ttusu0C5vBB2tuDPsu0PD8T"n#A;;o"S&',*+$')"a+//"G(",.%%+(-"$&*"&)+'="*>("=/$G./"-.*." G/$,I"T5vBB2Ctusu0T"n2H9o3" s>+)"a+//"G(".--(-"*$"*>("T:E;FJ::C7'./$=CU./&()C5@F;9::T"Q%$x(,*3"s>+)"Q%$x(,*"6&)*"G(" %(*%+(?(-"S%$6"*>(".%,>+?("G(S$%(>.'-3" P'"*>("Tt.+'T"nuH;o"$%=.'+y.*+$'"G/$,IR"*>("*a$"S&',*+$')"Ttusu0C5vBB2AuDs0uwT"n#A;:o" .'-"Ttusu0C5vBB2tuDPsu0PD8T"n#A;;o"6&)*"*>('"G(",$''(,*(-"a+*>"*>("*.=)"S%$6" =/$G./"-.*."G/$,I"T5vBB2Ctusu0T"n2H9o3" "
rz{ |6 66| O}5N~85 68N~ 875789}
5 5Q((-")(*Q$+'*".'-".,*&./")Q((-"?./&("a+//"G(",%(.*(-"+'"0(./"-.*."S$%6.*"E9FG+*"S/$.*+'=FQ$+'*" '&6G(%".)"*>("S+%)*"*.=)"+'"*>("T5vBB2Ctusu0T"n2H9o"-.*."G/$,I3"s>(")Q((-")(*Q$+'*"+)" *>(%(G`"=+?('"*>(")*.%*"?./&("";:"%Q63" 7")*%&,*&%("5*%&,*"v$)+*+?(C5Q((-"a+//"*>('"G(",%(.*(-"S$%"6$'+*$%+'="*>("Q$)+*+?(")Q((-" /+6+*)3" s>+)")*%&,*&%(",$'*.+')"*>("9"*.=)"s>%()>$/-CB%%$%")*.%*"?./&("";J"%Q6".'-" s>%()>$/-C.%'+'=")*.%*"?./&("";:"%Q6"+'"0(./"-.*."S$%6.*"E9FG+*"S/$.*+'=FQ$+'*"'&6G(%" .'-"*>("9"*.=)"B%%$%".'-".%'+'="+'"H$$/"-.*."S$%6.*"G+'.%`"'&6G(%3" s>(")*%&,*&%("5*%&,*"v$)+*+?(C5Q((-"a+//"*>('"G("+')(%*(-".=.+'".)".",$Q`".'-"%('.6(-"*$" D(=.*+?(C5Q((-"S$%"6$'+*$%+'="*>("'(=.*+?(")Q((-"/+6+*)3" s>("s>%()>$/-CB%%$%"*.="+)"=+?('"*>(")*.%*"?./&("F";'$/$=Q"-+.=%.6"R$%"*>("*.)I3" "
#+=&%("ES"T(,>'$/$=Q"-+.=%.6"
#+=&%("US"A$'*%$/"V.'(/"
"
"
"
#$%"&'%()*%+,*(-"&)("+'"(-&,.*+$'./".'-"012"+')*+*&*+$')3"4"5+(6(')"78"9:;*)"0()(%?(-3" 5ABCBDC:E;F"a\Da" [":39" H\\]" F5:" `$-(")(/(,*$%"6.'&./"b:cd".&*$6.*+,"b;c"
[":3E" [":3g" [":3K" [";3:" [";3E" [hG&**$'".&*$6.*+,")*$W" DA" 5(')$%",^/+'-(%"F`g"%(*%.,*(-" D\" 5(')$%"W.%*".*")/+-(" D\" 5(')$%"W.%*".*"('-"$T",$'?(^$%" D\" 5(')$%".,*&./"?./&(")W((-"$T"*>("6$*$%"idF;:j" " ,$%%()W$'-)"*$"idF"K:"%W6"
Z 4!X 87Q75 878 k":39" H\\]" FkE" A$'?(^$%"6$*$%"F`;"?.%+.G/(")W((-" '+W&/.*(-"?./&(")W((-"$T"*>("6$*$%"+'"9" kh"$R"*$",.%%S"$&*"T/.''+'="F(/$R3"UQ"S$&"./%(.-S">.?("."=$$-" &'-(%)*.'-+'="$Q"(?(%S*>+'=V"+*"R+//"F(")&QQ+,+('*"*$"Q$,&)"$'"*>("'&6F(%(-")*(T)3"W*>(%R+)(V" )+6T/S"Q$//$R"*>("-(*.+/(-")*(T)"+'"*>("+')*%&,*+$')3"
XY57Z68[7M789N5\
]"G(Q$%("R(",.'"(LT.'-"*>("^5@ABACB:D;EJ::B7'./$=B_./&()B5IE;9::3`.T;D^"T%$a(,*" Q%$6",>.T*(%"^5@ABACB:D;EJ::B7'./$=B_./&()B5IE;9::^V"R("6&)*"%(*%+(?("*>+)"T%$a(,*" Q%$6"*>(".%,>+?(3"b$"%(*%+(?(".'"(L+)*+'="T%$a(,*"*>.*">.)"F(('".%,>+?(-V"S$&"6&)*")(/(,*" *>("%(/(?.'*".%,>+?("R+*>"]"c%$a(,*"]"0(*%+(?("+'"*>("T%$a(,*"?+(R3"@$'Q+%6"S$&%")(/(,*+$'" R+*>"WT('3"" d]"c%$a(,*"]"0(*%+(?("]"5(/(,*"."3`.T".%,>+?("]"WT('e"
"
" ]"b>("'(L*")*(T"+)"*$")(/(,*"*>("*.%=(*"-+%(,*$%S"R>(%("*>("%(*%+(?(-"T%$a(,*"R+//"F(")*$%(-3" @$'Q+%6"S$&%")(/(,*+$'"R+*>"^Wf^3"" d]"b.%=(*"-+%(,*$%S"]"Wfe" "
#$%"&'%()*%+,*(-"&)("+'"(-&,.*+$'./".'-"012"+')*+*&*+$')3"4"5+(6(')"78"9:;*)"0()(%?(-3" 5@ABACB:D;E("'(L*"-+./$=".'-"%('.6("Y$&%"'(^"F/$,H"*$c"]5WAA2Bdefe0]3"5(/(,*" V8/$F./"2GV".)"*>("*Yg(3"f>("'&6F(%"V9V"^+//"F(".&*$6.*+,.//Y".))+='(-3"5(/(,*"*>("]7--" '(^".'-"$g(']",>(,H"F$L3"@/+,H"]eh]3"" _U U"C.6(c"5WAA2Bdefe0"U"fYg(c"8/$F./"2G"U""7--"'(^".'-"$g('"U"ehb"
"
#$%"&'%()*%+,*(-"&)("+'"(-&,.*+$'./".'-"012"+')*+*&*+$')3"4"5+(6(')"78"9:;*)"0()(%?(-3" 5@ABACB:D;E("O5PBB2CQRNR0O"-.*."F/$,H"+)".&*$6.*+,.//S"-+)T/.S(-3"5*.%*"FS",%(.*+'="*>(" U5T((-C5(*T$+'*U".'-"U5T((-C7,*&./CV./&(U"*.=)")>$W'">(%("W+*>"*>(+%".))$,+.*(-" ,$66('*)3"5(/(,*"U0(./U".)"*>("-.*."*ST(3"7/)$")(*".")*.%*"?./&("$X";:3:"%T6"X$%"*>(" U5T((-C5(*T$+'*U3"" YM"5T((-C5(*T$+'*"M"0(./"M";:3:"M"5T((-C7,*&./CV./&("M"0(./Z"
[\]^_`ab`cdeb`fg`dcb`fhb`igeebif`jkfk`flmbcn` " M"D(L*"W(",%(.*("."*.=")*%&,*&%("U5*%&,*U")$"+*",.'"F("-&T/+,.*(-"/.*(%3"YM"5*%&,*Z"
"
#$%"&'%()*%+,*(-"&)("+'"(-&,.*+$'./".'-"012"+')*+*&*+$')3"4"5+(6(')"78"9:;*)"0()(%?(-3" 5ABCBDC:@;E("'(N")*%&,*&%("*$"OC(=.*+?(B5P((-O".'-"('*(%".",$66('*3"" QM"C(=.*+?(B5P((-R"
" M"2$"'$*"S$%=(*"*$",/+,H" 3"T>("S+'+)>(-"=/$F./"-.*."F/$,H"U5VAA2BWXTX0U" Y2G9Z"+)")>$N'"F(/$N3"@>(,H"*$"?(%+S["*>.*"0(*.+'"+)")(/(,*(-" ".'-"*>(",$%%()P$'-+'=" )*.%*"?./&("+)"('*(%(-"S$%".//"*.=)3"T>("-.*."N+//"*>&)"F("%(*.+'(-"+'"*>("-.*."F/$,H"(?('" .S*(%"."P$N(%"S.+/&%("$%"."5TXV\5T70T"$S"*>("@V]3"T>(",>(,H"F$L()"S$%"O7,,())+F/("S%$6" ^W_O" ".'-"O`+)+F/("+'"^W_O" ")>$&/-"./)$".//">.?(".",>(,H"6.%H")$"*>.*".//"*.=)"+'"S&*&%(" (LP.')+$')"$S"*>+)"P%$a(,*"N+//"F(".,,())+F/("F["*>("?+)&./+b.*+$'")[)*(6)"Q^W_R3"c("N+//" )(/(,*"*>("O5(*P$+'*O",>(,H"F$L" "$'/["S$%"*>("-(S.&/*"?./&()"+'"$&%"-.*."F/$,H3"" QM""""R"
defghijklimnliopinlqrostqnisniulnvwsxluipmwqklwixlyozistiqklinqlr{x|{nqlristnqwmvqsotn}i
#$%"&'%()*%+,*(-"&)("+'"(-&,.*+$'./".'-"012"+')*+*&*+$')3"4"5+(6(')"78"9:;*)"0()(%?(-3" 5@ABACB:D;E("Y Y"+,$'"*$"?(%*+,.//X")W/+*"*>("(-+*$%".%(.3"" ZM" ["
" M"\)("-%.=F.'-F-%$W"*$"6$?("*>("*.=)"'((-(-"]$%"*>("+'*(%,$''(,*+$'"]%$6"*>(" O5PBB2CQRSR0O"T2H9U"-.*."G/$,I"$'*$"*>(",$''(,*+$')"$]"*>(",.//(-"]&',*+$')".'-" ]&',*+$'"G/$,I)"+'"*>("OQ.+'O"TRH;U"$%=.'+V.*+$'"G/$,I3"#+%)*"^("6$?("*>(" Y5W((-C7,*&./C_./&(Y"*.="$'*$"*>("Y7,*&./C)W((-Y"$&*W&*"$]"*>(" OQRSR0C5PBB2QRD`SR0`D8O"T#A;;U"G/$,I3" ZM"5W((-C7,*&./C_./&(["
" #$%"&'%()*%+,*(-"&)("+'"(-&,.*+$'./".'-"012"+')*+*&*+$')3"4"5+(6(')"78"9:;*)"0()(%?(-3" 5ABCBDC:E;F("$*>(%",$'*.,*)"+'"D(*O$%I";"O+*>"*.=)"P%$6"*>("Q5RBB2CSTUT0Q"V2H9W" -.*."G/$,I".)")>$O'">(%(3""
"
" N"A$''(,*"*>(",$'*.,*)"+'"D(*O$%I"9"O+*>"*.=)"P%$6"*>("Q5RBB2CSTUT0Q"V2H9W"-.*."G/$,I" .)")>$O'">(%(3""
"
#$%"&'%()*%+,*(-"&)("+'"(-&,.*+$'./".'-"012"+')*+*&*+$')3"4"5+(6(')"78"9:;*)"0()(%?(-3" 5ABCBDC:E;F("P5QAA2BRSTS0P"U2G9V"-.*."F/$,H" .)")>$N'">(%(3""
"
#$%"&'%()*%+,*(-"&)("+'"(-&,.*+$'./".'-"012"+')*+*&*+$')3"4"5+(6(')"78"9:;*)"0()(%?(-3" 5@ABACB:D;E(" "F&**$'"+'"*>("6('&3"S$",$6U+/(".//"F/$,H)W" ,/+,H"*>("XY%$=%.6"F/$,H)X"Z$/-(%".'-")(/(,*"*>(" "+,$'"Z$%",$6U+/+'="+'"*>("6('&3"" [R "R"Y%$=%.6"F/$,H)"R" \"
"
R"S>("X]'Z$XW"X@$6U+/(X".%(.")>$^)"^>+,>"F/$,H)"^(%(")&,,())Z&//T",$6U+/(-3"
#$%"&'%()*%+,*(-"&)("+'"(-&,.*+$'./".'-"012"+')*+*&*+$')3"4"5+(6(')"78"9:;*)"0()(%?(-3" 5@ABACB:D;E(",$6T/(*(",$'*%$//(%"V+*>"*>(",%(.*(-"T%$=%.6"+',/&-+'=" *>(">.%-V.%(",$'S+=&%.*+$'",.'U".)"-(),%+F(-"+'"*>("T%(?+$&)"6$-&/()U"F("-$V'/$.-(-3" WR" X"
#$%"&'%()*%+,*(-"&)("+'"(-&,.*+$'./".'-"012"+')*+*&*+$')3"4"5+(6(')"78"9:;*)"0()(%?(-3" 5@ABACB:D;E("-()+%(-"F/$,H"6&)*"F("$U('"V$%"6$'+*$%+'="*>("*.=)"$V"."-$W'/$.-(-"-.*."F/$,H3"T>(" 6$'+*$%+'=",.'"*>('"F(".,*+?.*(-X-(.,*+?.*(-"FY",/+,H+'="*>(" "+,$'3"" ZS"5[BB2C\]T]0"^2G9_"S" `"
" S"a'"*>("b\$'+*$%"?./&(b",$/&6'c"*>("?./&()",&%%('*/Y".?.+/.F/("+'"*>("A[d",.'"F("6$'+*$%(-3""
"
"
#$%"&'%()*%+,*(-"&)("+'"(-&,.*+$'./".'-"012"+')*+*&*+$')3"4"5+(6(')"78"9:;*)"0()(%?(-3" 5ABCBDC:@;E*F,/+,I"$'"$'("$P"*>("?./&()R"*>("ST$-+PQS"-+./$="P$%"6$-+PQ+'="*>+)"?./&("$U(')" VN"T$-+PQ"N"T$-+PQ"?./&(W";:3:"N"XYZ"
[\8776 7]^_78^5^^65`6 ^
"
N"a>(")(*U$+'*)",.'"G("+'+*+./+b(-"GQ",/+,I+'="*>("S S"+,$'3"#$%"*>("*.=)"c>$)("S5(*U$+'*S" ,>(,I"G$M"+)")(/(,*(-" "R"*>(")*.%*"?./&("c+//"*>('"G(".UU/+(-".)"*>(",&%%('*"?./&(3"" VN Z"
"
#$%"&'%()*%+,*(-"&)("+'"(-&,.*+$'./".'-"012"+')*+*&*+$')3"4"5+(6(')"78"9:;*)"0()(%?(-3" 5ABCBDC:E;F$*"$V"*>("6$'+*$%(-"?./&()",.'"F("*.H('"+'"$%-(%"*$" .ZZ/W"*>()("?./&()".)")*.%*"?./&()"$%"*$"*%.')V(%"*>(6"F.,H"*$"*>("@[\"/.*(%"" ]T" ^3"
"
"
#$%"&'%()*%+,*(-"&)("+'"(-&,.*+$'./".'-"012"+')*+*&*+$')3"4"5+(6(')"78"9:;*)"0()(%?(-3" 5@ABACB:D;E("R R"+,$'"P$%"*>(")*.%*"?./&()"$'/N3"S'/N"*>(")(*Q$+'*)".%("'((-(-" >(%("+'"6$)*",.)()"" TM" U"
"
"
"
#$%"&'%()*%+,*(-"&)("+'"(-&,.*+$'./".'-"012"+')*+*&*+$')3"4"5+(6(')"78"9:;*)"0()(%?(-3" 5ABCBDC:E;F$*"G.,I"*$"*>("AQRS"T$&"6&)*",/+,I"U U3"" VM" "W"
"
"
#$%"&'%()*%+,*(-"&)("+'"(-&,.*+$'./".'-"012"+')*+*&*+$')3"4"5+(6(')"78"9:;*)"0()(%?(-3" 5ABCBDC:E;F(")*.%*"?./&()T"Q$&",.'"+'+*+.*("*>+)"GQ",/+,I+'="U U3"V>("?./&()"+'"*>("AWX"P$%"R>+,>"*>("U5(*S$+'*U",>(,I"G$M"R.)"'$*")(/(,*(-".%(" *>(%(GQ"%(*.+'(-3"" YN" Z"
"
"
#$%"&'%()*%+,*(-"&)("+'"(-&,.*+$'./".'-"012"+')*+*&*+$')3"4"5+(6(')"78"9:;*)"0()(%?(-3" 5ABCBDC:E;F("\5]BB2C^_W_0\"`2G9a"-.*."F/$,Hb" c$&"6&)*"=$"$[[/+'("X X".'-"*>('"$d('"*>("d%$d(%*+()"$["*>("-.*."F/$,H3"" eV" "V"5]BB2C^_W_0"`2G9a"V"]%$d(%*+()f"
" V"5(/(,*"*>("X_d*+6+Z(-"F/$,H".,,())X",>(,H"F$L" "+'"*>("d%$d(%*+()"&'-(%"X8('(%./Xb" X7**%+F&*()X3"" eV"8('(%./"V"7**%+F&*()"V""_d*+6+Z(-"F/$,H".,,())f"
"
#$%"&'%()*%+,*(-"&)("+'"(-&,.*+$'./".'-"012"+')*+*&*+$')3"4"5+(6(')"78"9:;*)"0()(%?(-3" 5ABCBDC:@;E("-.*."F/$,H"P$%"N2$Q'/$.-"Q+*>$&*" %(+'+*+./+R.*+$'N3"" SM2$Q'/$.-"Q+*>$&*"%(+'+*+./+R.*+$'"M"0(*('*+?("6(6$%O"%()(%?("M";:"FO*()"M"TUV"
"
" M"2$Q'/$.-"O$&%"W5XBB2CYTZT0W"[2G\"-.*."F/$,H"*$"*>(",$'*%$//(%".=.+'".'-")(/(,*"N N3"" SM5XBB2CYTZT0"[2G\"M" "M" V"
"
#$%"&'%()*%+,*(-"&)("+'"(-&,.*+$'./".'-"012"+')*+*&*+$')3"4"5+(6(')"78"9:;*)"0()(%?(-3" 5ABCBDC:@;E('",/+,H"*>("O O"+,$'"*$".,*+?.*("-$P'/$.-+'="P+*>$&*"%(+'+*+./+Q.*+$'".'-",$'R+%6"*>(" ).R(*S"T%$6T*"P+*>"OUVO3"" WM" "M"UVX"
"
"
#$%"&'%()*%+,*(-"&)("+'"(-&,.*+$'./".'-"012"+')*+*&*+$')3"4"5+(6(')"78"9:;*)"0()(%?(-3" 5ABCBDC:@;E(",$'*%$//(%".=.+'3" OM5WBB2CXYZY0"[2G\"M" "M"2$U'/$.-T"
"
" #$%"&'%()*%+,*(-"&)("+'"(-&,.*+$'./".'-"012"+')*+*&*+$')3"4"5+(6(')"78"9:;*)"0()(%?(-3" 5ABCBDC:@;E("G/$,I".=.+'S"Q$&"T+//")(("*>.*"*>("6$'+*$%(-"?./&()"P$%"*>(" U%(?+$&)/Q"(M+)*+'="*.=)">.?("'$*"G(('"$?(%T%+**('"T+*>"*>(")*.%*"?./&()3"" VN" W"
"
"
X5Y7ZY[5\
N"7)"*>("P+'./")*(US"T("T.'*"*$".%,>+?("*>(",$6U/(*("U%$](,*3"5(/(,*"*>("N"R7%,>+?("333R" ,$66.'-"+'"*>("N"R^%$](,*R"6('&3"5(/(,*"."P$/-(%"T>(%("Q$&"T.'*"*$".%,>+?("Q$&%"U%$](,*" .'-").?("+*"T+*>"*>("P+/("*QU("_`O7"^$%*./"U%$](,*".%,>+?(_3"" VN"^%$](,*"N"7%,>+?("N"`O7"^$%*./"U%$](,*".%,>+?("N":@;F(")Q((-")(*Q$+'*"+'"*>("%.'=("e`F"A:" %Q6" 5(')$%"Q.%*".*"('-"$X",$'?(Y$%".,*+?.*(-"\FHJ"^";_"f"Fd@"^":"\.X*(%" " 9")(,$'-)_" H%+(X/Y"Q%())"*>(".&*$6.*+,")*$Q"Q&)>G&**$'"\F59"^":_"f"Fd@"^":" " " 7,*+?.*("CSC08CEBa"T##"\F7;"^":_"f"Fd@"^":" " S.'&./"6$-("\F5:"^":_"f"Fd@"^":" " 5Z+*,>"$XX")*.*+$'"\F]:"^":_"f"Fd@"^":" " BY/+'-(%"'$*"%(*%.,*(-"\FH;"^":_"f"Fd@"^":" " 5Q((-"h"S$*$%D)Q((-D6$'+*$%+'=D(%%$%D6.L"f"Fd@"^":" " 5Q((-"i"S$*$%D)Q((-D6$'+*$%+'=D(%%$%D6+'"f"Fd@"^":" " R%$j(,*")&,,())X&//Y".%,>+?(-"
"
#$%"&'%()*%+,*(-"&)("+'"(-&,.*+$'./".'-"012"+')*+*&*+$')3"4"5+(6(')"78"9:;*)"0()(%?(-3" 5BCDCED:@;F(",$&'*(%"_$%"*>("^/.)*+,"^.%*)"\+//"F(")^(,+_+(-".'-" -+)^/.](-"+'"*>+)"-.*."F/$,H3" 7",$''(,*.F/("+'^&*"_$%"*>(")(*^$+'*")(**+'=".'-".'"$&*^&*"_$%"-+)^/.]+'="*>(".,*&./"?./&("\+//" ./)$"F(".--(-"*$"*>("TU`Y`0C7aY`T"Z#G;["_&',*+$'"F/$,H3" "
MP4b8 9!76956
c(%("]$&")(("*>("*(,>'$/$=]"-+.=%.6"_$%"*>("*.)H3" "
#+=&%("Jd"Y(,>'$/$=]"-+.=%.6"
#+=&%("+)"*.)I3" 4!W 87P75 878 Z":3:" H[[\" F7;" 0(*&%'")+='./"(6(%=(',]")*$V"[^" Z":3;" H[[\" F^:" _.+'")T+*,>"`[E`" Z":39" H[[\" F5:" _$-(")(/(,*$%"6.'&./"a:bc".&*$6.*+,"a;b"
Z":3@" Z":3f" Z":3J" Z";3:" Z";3@" ZgG&**$'".&*$6.*+,")*$V" EB" 5(')$%",]/+'-(%"F_f"%(*%.,*(-" E[" 5(')$%"V.%*".*")/+-(" E[" 5(')$%"V.%*".*"('-"$S",$'?(]$%" E[" 5(')$%".,*&./"?./&(")V((-"$S"*>("6$*$%"hcF;:i" " ,$%%()V$'-)"*$"hcF"J:"%V6"
Y 4!W 87P75 878 j":39" H[[\" Fj@" B$'?(]$%"6$*$%"F_;"?.%+.G/(")V((-" '+V&/.*(-"?./&(")V((-"$S"*>("6$*$%"+'"9" jg"("*.)I"$'"]$&%"$T'3"
#$%"&'%()*%+,*(-"&)("+'"(-&,.*+$'./".'-"012"+')*+*&*+$')3"4"5+(6(')"78"9:;*)"0()(%?(-3" 5BCDCED:@;F$&*"(%%$%"6()).=(" " 2$c'/$.-")&,,())^&/".'-"c+*>$&*"(%%$%"6()).=(" 5c+*,>"$'")*.*+$'"dFe:"f";g" " B_/+'-(%"%(*%.,*(-"h"#((-G.,I".,*+?.*(-"dFH;"f";g" CVC08CEBi"`##"dF7;"f";g"'$*".,*+?.*(-" 7a[`V7[XB"6$-("dF5:"f";g" Y&)>G&**$'".&*$6.*+,")*$U"'$*".,*&.*(-"dF59"f";g" H%+(^/_"U%())"*>(".&*$6.*+,")*.%*"U&)>G&**$'"dF5;"f";g" 5(')$%"U.%*".*")/+-(".,*+?.*(-"dFHb"f";g" *>('"B$'?(_$%"6$*$%"V;"?.%+.G/(")U((-"dFj@"f";g" )c+*,>()"$'".'-")*._)"$'3" [>(")U((-",$%%()U$'-)"*$"*>(")U((-")(*U$+'*"+'"*>("%.'=("khF"K:" %U6" 5(')$%"U.%*".*"('-"$^",$'?(_$%".,*+?.*(-"dFHJ"f";g"l"Fj@"f":"d.^*(%" " 9")(,$'-)g" H%+(^/_"U%())"*>(".&*$6.*+,")*$U"U&)>G&**$'"dF59"f":g"l"Fj@"f":" " " 7,*+?.*("CVC08CEBi"`##"dF7;"f":g"l"Fj@"f":" " V.'&./"6$-("dF5:"f":g"l"Fj@"f":" " 5c+*,>"$^^")*.*+$'"dFe:"f":g"l"Fj@"f":" " B_/+'-(%"'$*"%(*%.,*(-"dFH;"f":g"l"Fj@"f":" " 5U((-"n"V$*$%D)U((-D6$'+*$%+'=D(%%$%D6.L"l"Fj@"f":" " 5U((-"o"V$*$%D)U((-D6$'+*$%+'=D(%%$%D6+'"l"Fj@"f":" " Y%$p(,*")&,,())^&//_".%,>+?(-"
#$%"&'%()*%+,*(-"&)("+'"(-&,.*+$'./".'-"012"+')*+*&*+$')3"4"5+(6(')"78"9:;*)"0()(%?(-3" 5BCDCED:@;F