In [25]:
import PyPDF2
import re
import pandas as pd
import os
import matplotlib.pyplot as plt

In [26]:
def generate_text_from_pdf(path):
    convert_text_name=path[:-4]+'.txt'
    os.system('pdftotext -layout %s %s'%(path,convert_text_name))
    return convert_text_name

在fp.readlines()中返回的是个list,每个list中的选项是byte类型的obj,pattern.search的对象必须是str,所以才加上line.decode('utf-8')


In [27]:
def extract_info_from_convert_text(path):
    pattern=re.compile(r'^\d{2}\/\d{2}\/\d{4}.*')
    info_list=[]
    with open(path,'rb') as fp:
        for line in fp.readlines():
            match=pattern.search(line.decode('utf-8'))
            if match:
                info_list.append(line.decode('utf-8'))
    return info_list

In [28]:
print(extract_info_from_convert_text('canberra_land_sales_result.txt'))


['03/02/2017      Residential             3    Throsby       1 to 20        43       8,408            20           $7,899,900             Delta Design and Construction\n', '03/02/2017      Residential             5    Throsby    12;15;17 &        44       4,667            13           $4,810,000             Roman Development Holdings\n', '03/02/2017      Residential             6    Throsby       2 to 25        45       9,865            24           $9,393,600             Delta Design and Construction\n', '03/02/2017      Residential             9    Throsby    3;6;7;9 & 11      35       2,025             5           $1,854,000                     MSL Projects\n', '03/02/2017      Residential         11       Throsby                      33       2,954             7           $2,698,600                     MSL Projects\n', '03/02/2017      Residential         15       Throsby    1-14; 1-15; 1   4; 2; 3    18,101           45           $14,631,150             Wellington Property Group\n', '22/12/2016      Industrial                    Hume           9            21       22,671                        $2,800,000\n', '30/11/2016     Community                    Charnwood        22           97       3,600                         $2,145,000           Childcare Investments Aus Pty Ltd\n', '30/11/2016       Mix Use                     Amaroo          9           111        580              8            $635,000                      Anthony Lieu\n', '30/11/2016      Multi Unit                  Moncrieff        15           42       3,352            14           $2,000,000              RMD Projects No.4 Pty Ltd\n', '30/11/2016      Multi Unit                  Moncrieff        1            42       1,586             6            $975,000\n', '24/11/2016     Industrial             Hume         7         30       1,974                            $395,000\n', '14/09/2016     Industrial             Hume         3         29       7,683                           $1,120,000\n', '31/08/2016    Mixed Use               Dickson   1, 5 & 6     77       29,000            697          $40,000,000                Art Projects Nominees Pty Ltd\n', '29/08/2016     Industrial             Hume         6         30       2,073                            $385,000\n', '11/08/2016     Industrial             Hume        11         21       24,868                          $3,108,500                     FOY Group Limited\n', '14/07/2016     Industrial             Hume         4         30       1,682                            $335,000                  Christopher James Convine\n', '22/06/2016   Packaged lots     1      Throsby    17-19       33        749               3             $825,000                        Viscon Homes\n', '22/06/2016   Packaged lots     2      Throsby    20-21       33        500               2             $562,500                        Viscon Homes\n', '22/06/2016   Packaged lots     3      Throsby    22-23       33        500               2             $565,000                   Miller and Tait Properties\n', '22/06/2016   Packaged lots     4      Throsby    16-20       35       1,250              5            $1,410,000                 Congli & Kinwee Jing Zheng\n', '22/06/2016   Packaged lots     5      Throsby    21-24       35       1000               4            $1,120,000                   Brilliant Building Group\n', '22/06/2016   Packaged lots     6      Throsby    25-28       35       1,000              4           $1,100,000.00               Fairman Homes Pty Limited\n', '22/06/2016   Packaged lots       7      Throsby    16-19     36       1,000              4            $1,100,000                 Congli & Kinwee Jing Zheng\n', '22/06/2016   Packaged lots       8      Throsby    20-21     36        500               2           $560,000.00                         Trent Rudd\n', '22/06/2016   Packaged lots       9      Throsby    22-25     36       1,000              4            $1,100,000                 Fairman Homes Pty Limited\n', '22/06/2016   Packaged lots       10     Throsby    10-13     37       1,000              4           $1,125,000.00                 Platinum Constructions\n', '22/06/2016   Packaged lots       11     Throsby    14-17     37       1,000              4            $1,140,000                   Platinum Constructions\n', '22/06/2016   Packaged lots       14     Throsby    12-15     39       1,000              4           $1,100,000.00             A J Development Group Pty Ltd\n', '24/06/2016   Packaged lots       15     Throsby    16-17     39        500               2             $560,000               RoseDale Investments Pty Limited\n', '22/06/2016   Packaged lots       16     Throsby    18-21     39       1,000              4           $1,100,000.00            RoseDale Investments Pty Limited\n', '24/06/2016   Packaged lots       22     Throsby     2-7      51       1500               6            $1,615,000                   Platinum Constructions\n', '15/06/2016     Mixed Use                Kingston    2        67       3,697             100          $21,650,000                    Keggins Estate Pty Ltd\n', '02/06/2016   Industrial Land             Hume       2        30       2,613                            $470,000      J & M Gavin Pty Ltd as trustee for Gavin Family Trust\n', '09/05/2016     Multi Unit               Coombs      3        37                         109           $6,540,000                  WDC (ACT) No 3 Pty Ltd\n', '13/05/2016     Multi Unit             Coombs        2         39                         95           $5,700,000            M & A Groups No 2 Pty Ltd\n', '09/05/2016     Multi Unit             Coombs        2         12                         105          $6,300,000                   May 4 Pty Ltd\n', '04/05/2016     Multi Unit             Moncrieff     2         44                         42           $4,250,000            YXX6 Investments Pty Ltd\n', '04/05/2016     Multi Unit             Moncrieff     1         26                         28           $5,025,000       Antalijia Developments No 3 Pty Ltd\n', '04/05/2016     Multi Unit             Moncrieff     2         30                         40           $3,410,000               S and O Developers\n', '29/04/2016    Community                Rivett       22        28       1,943                          $801,000            Rivett Childcare Centre Pty Ltd\n', '22/04/2016    Community                Higgins      6         11       40,425                         $6,106,000                 Baitly Pty Limited\n', '16/03/2016    Community                Higgins      3         11       4,575                          $2,605,000         Higgins Childcare Centre Pty Ltd\n', '16/03/2016     Multi Unit             Greenway      1         79       3,582             21           $3,200,000\n', '26/02/2016   Packaged Lots            Throsby     18 - 25     31      various        1 per block      $2,230,000            F.G.C Development Pty Ltd\n', '26/02/2016   Packaged Lots            Throsby      1-7        32      various        1 per block      $1,895,000       Nablus Building and Electrical Pty Ltd\n', '26/02/2016     Multi Unit             Throsby       1         44      2,015m2             6           $1,500,000            Kolak Land SPV T Pty Ltd\n', '26/02/2016        Multi Unit                   Throsby         1          45      2,105m2            6           $1,420,000              Kolak Land SPV T Pty Ltd\n', '26/02/2016     Packaged Lots                   Throsby       7 - 16       57      various       1 per block      $2,750,000                  Burnt Ash Pty Ltd\n', '26/02/2016     Packaged Lots                   Throsby        1-8         58      various       1 per block      $2,310,000             F.G.C Development Pty Ltd\n', '26/02/2016        Multi Unit                   Throsby         1          60      7,940m2           24           $4,700,000             BRST Development Pty Ltd\n', '10/02/2016       Mixed Use                     Braddon         1          52      25,630m2          515          $47,000,000                 Altair No 1. Pty Ltd\n', '08/12/2015        Industrial                    Hume           1          29      14,130m2                       $1,900,000      Janak Blackley Pty Ltd & Phil Smith Pty Ltd\n', '25/11/2015   Service Station Site            Weston Creek   Part 1218             6,937m²                        $5,750,000                 Vincentia Sth Pty Ltd\n', '25/11/2015     Industrial Land                 Mitchell        29         4       1,513m²                         $415,000                     Josip Kuljanac\n', '04/11/2015     Industrial Land                  Hume           5          30      3,772m²                         $565,000\n', '30/10/2015       Mixed Use                    Gungahlin        1          12      1.875ha                        $5,055,000              Gungahlin Lifestyle Pty Ltd\n', '21/10/2015        Multi Unit                   Coombs          2          21      8,152m²           81           $4,900,000                     CD Build P/L\n', '21/10/2015        Multi Unit                   Coombs          1          18      9,758m²           97           $6,560,000              MPK Investments Pty Ltd\n', '19/10/2015       Industrial                 Hume         4         8       5,316m²                        $720,000     United Investments Group (ACT) Pty Ltd\n', '18/09/2015   Single residential   Lot 1    Moncrieff   various     31      various       1 per block      $876,000               Mitchell 18 Pty Ltd\n', '18/09/2015   Single residential    Lot 2   Moncrieff   various     42      various       1 per block      $880,000             Wonderhouse Pty Ltd\n', '18/09/2015   Single residential    Lot 3   Moncrieff   various     42      various       1 per block      $1,092,442           Elevated Construction\n', '18/09/2015   Single residential    Lot 4   Moncrieff   various     66      various       1 per block      $4,027,500               Mijoant Pty Ltd\n', '18/09/2015   Single residential    Lot 5   Moncrieff   various     73      various       1 per block      $3,680,000                Pinto Homes\n', '18/09/2015   Single residential    Lot 6   Moncrieff   various     68      various       1 per block      $810,000               Ruiz Constructions\n', '18/09/2015   Single residential    Lot 7   Moncrieff   various     69      various       1 per block      $463,000            Poppy Seed ACT Pty Ltd\n', '18/09/2015   Single residential    Lot 8   Moncrieff   various     74      various       1 per block      $640,000      Nablus Building and Electrical Pty Ltd\n', '18/09/2015   Single residential    Lot 9   Moncrieff   various     74      various       1 per block      $640,000      Nablus Building and Electrical Pty Ltd\n', '18/09/2015   Single residential   Lot 10   Moncrieff   various     74      various       1 per block      $351,600              Renaissance Homes\n', '18/09/2015   Single residential   Lot 11   Moncrieff   various     74      various       1 per block      $960,000      Nablus Building and Electrical Pty Ltd\n', '18/09/2015     Single residential     Lot 12     Moncrieff      various        74       various       1 per block       $1,038,000                 Renaissance Homes\n', '18/09/2015     Single residential     Lot 13     Moncrieff      various        74       various       1 per block       $420,000                    Ruiz Constructions\n', '14/09/2015         Industrial                     Hume             81          22      1.270ha                          $1,779,460              Haven Investments Pty Ltd\n', '26/08/2015   Mixed Use / Multi Unit             Greenway           1           78       10,960            229           $6,000,000       Empire Global Developments No.3 Pty Ltd\n', '26/08/2015   Mixed Use / Multi Unit              Moncrieff         1           16       12,603            155           $5,600,000              3 Property Group 2 Pty Ltd\n', '26/08/2015         Multi Unit                    Moncrieff         3           23       7,807             74            $4,050,000               Village No.14 Pty Limited\n', '26/08/2015         Multi Unit                    Moncrieff         1           30       4,363             28            $2,500,000              T&A Property Group Pty Ltd\n', '26/08/2015        Residential                    Moncrieff     1, 2, 8 & 9     10                     1 per block       $1,300,000                        Ping Li\n', '26/08/2015        Residential                    Moncrieff     3, 4, 6 & 7     10                     1 per block       $1,190,000               JBI Developments Pty Ltd\n', '14/08/2015         Industrial                     Hume             3           30       1,854                           $370,000\n', '28/07/2015         Englobo                     Prospect 1A &                            145ha            2,000         $241,300,000       Capital Estate Developments Pty Limited\n', '20/07/2015        Community                      Kambah            22         443      1.148ha                          $1,370,000    Bram Pty Ltd ACN 604 949 117 AFT BKAM Trust\n', '17/06/2015                          Belconnen    2       200       16,314            745          $22,100,000       NG Land Holdings Nominee Pty Ltd\n', '02/06/2015    Industrial             Hume        8        30       3,138             N/A           $542,850                Iron Property Pty Ltd\n', '02/06/2015    Industrial             Hume        66       22       8,059             N/A          $1,102,150               Iron Property Pty Ltd\n', '24/04/2015   Community               Gordon      2       517       3,615             N/A           $630,000       Matson Street Investments Pty Limiited\n', '31/03/2015   Mixed Use              Kingston     1        60       13,086            240          $14,000,000               TNRC Pty Limited\n', '31/03/2015    Industrial             Hume       4&5       29       14,088            N/A          $1,820,000            Hart Superannuation Fund\n', '18/03/2015   Aged Care              Kambah       4       239      3.679ha            150          $6,050,000    Kambah Retirement Development Pty Limited\n', '11/03/2015    Multi Unit             Lawson      1        28       6,692             45           $4,520,000            RMD Projects No3 Pty Ltd\n', '11/03/2015    Multi Unit             Lawson      2        28       7,072             48           $4,700,000           2611 Developments Pty Ltd\n', '11/03/2015    Multi Unit             Lawson      1        30       4,688             33           $3,400,000           Manix Property Group Pty Ltd\n', '11/03/2015    Multi Unit             Lawson      1        33       2,442             17           $2,000,000           Triswat Constructions Pty Ltd\n', '11/03/2015    Multi Unit             Lawson      1        42       11,355            80           $6,400,000              Art Homes Five Pty ltd\n', '11/03/2015         Multi Unit                  Lawson       1        44       7,580             53           $4,850,000   Antalija Developments No 2 Pty Ltd\n', '04/03/2015       Local Centre                  Coombs       3        36       8,424            2,500         $2,700,000               R A Cervo\n', '04/03/2015   Community Precinct                Coombs       1        17       8,844             N/A          $4,000,000      WSL Investments PTY LTD\n', '25/02/2015   Mixed Use / Multi Unit            Greenway     1        74       2,240             54           $2,625,000   Meteora Canberra Holdings Pty Ltd\n', '25/02/2015   Mixed Use / Multi Unit            Greenway     1        79       3,582             21           $2,881,000    Sale Terminated. Resold 16/3/16\n', '25/02/2015         Multi Unit                  Moncrieff    a        A4       1,586              6           $1,100,000      Highlands Building Co Pty ltd\n', '25/02/2015         Multi Unit                  Moncrieff    p        A5       2,263              9           $1,600,000     Monte Building Group Pty Ltd\n', '25/02/2015         Multi Unit                  Moncrieff    o        A4       3,352             14           $2,000,000      Highlands Building Co Pty ltd\n', '25/02/2015         Multi Unit                  Moncrieff    n        A3       4,405             16           $2,320,000   Long Term Investments Pty Limited\n', '25/02/2015         Multi Unit                  Moncrieff    d        AV       5,802             60           $3,100,000       RMD Projects No2 Pty Ltd\n', '25/02/2015         Multi Unit                  Moncrieff    c        AV       6,860             90           $4,400,000            L Colliss Pty Ltd\n', '18/02/2015         Multi Unit                  Coombs      1        28       1.16ha            116          $6,400,000                     Lomm Pty Ltd\n', '18/02/2015         Multi Unit                  Coombs      1        38       1.49ha            133          $7,250,000      Canberra Estates Consortium No. 50 Pty Ltd\n', '18/02/2015         Multi Unit                  Coombs      1        40       1.31ha            131          $6,900,000                BGC Nominees Pty Ltd\n', '11/02/2015        Community                    Kambah      21      443       3,506             N/A          $800,000                   Seed Seeker Pty Ltd\n', '11/02/2015        Community                    Kambah      5       239       4,652             N/A          $940,000                 Brahman Capital Pty Ltd\n', '26/11/2014        Mixed Use                    Kingston    50       19       9,348             N/A          $8,550,000\n', '19/11/2014        Community                    Gordon      2       517       3,615             N/A          Passed in\n', '19/11/2014   Mixed Use / Mutli Unit            Gordon      4       517       4,450             12           $700,000          United Investments Group (ACT) Pty Ltd\n', '29/10/2014                                     Lawson      1        21       5,693             40           $3,600,000              JZ Developments Australia\n', '29/10/2014                                     Lawson      2        21       6,288             44           $3,800,000           Peach Property (QLD) Pty Limited\n', '29/10/2014                                      Lawson       3        21       8,954             63           $5,500,000        Art Homes Four Pty Ltd\n', '29/10/2014                                      Lawson       14       37       2,172             15           $1,750,000   Antalija Developments No 1 Pty Ltd\n', '15/10/2014   Facility and Ancillary            Yarralumla    15       17        680              N/A          $860,000          Canberra Girls Grammar\n', '15/10/2014   Facility and Ancillary            Yarralumla    16       17        683              N/A          $920,000          Canberra Girls Grammar\n', '01/10/2014   Mixed Use / Mutli Unit            Greenway      1        75       2,278             54           $2,230,000        ZBD Investments Pty Ltd\n', '01/10/2014   Mixed Use / Mutli Unit            Greenway      1        76       7,285             185          $5,400,000   Geocon Land Holdings No.5 Pty Ltd\n', '01/10/2014   Mixed Use / Mutli Unit            Greenway      1        77       2,236             34           $2,075,000             Timothy Finn\n', '24/09/2014        Community                    Gungahlin     1       246       4,607            8,000         $3,510,000     R&R Medical Australia Pty Ltd\n', '23/09/2014         Industrial                    Hume        7        29       11,029            N/A          $1,490,000     Precast Projects Land Pty Ltd\n', '19/09/2014         Industrial                    Hume        1        30       1,863             N/A          $280,000          Couranga Hume Pty Ltd\n', '21/08/2014    Industrial              Hume       4        29       7,683             N/A             N/A        Sold on the 31/3/15 (see this date for sale details)\n', '20/08/2014   Local Centre            Franklin    4        93       6,221             81           $3,700,000                   M & A Group Pty Ltd\n', '20/08/2014   Mixed Use               Harrison    1       167       11,935            155          $6,700,000                ACN 601 334 744 Pty Ltd\n', '20/08/2014   Mixed Use               Franklin    1       127       5,574             73           $3,350,000                   Pelle Homes Pty Ltd\n', '20/08/2014   Community               Franklin    3        31       3,558             n/a          $2,200,000                   TP Childcare Pty Ltd\n', '25/06/2014   Mixed Use               Kingston    3        66       2,474             75           $6,950,000                Wetcreek Holdings Pty Ltd\n', '25/06/2014   Mixed Use               Kingston    4        66       2,715             76           $7,350,000              The Foreshore (ACT) Pty Ltd\n', '11/05/2014   Mixed Use               Campbell    1       130       7,020             205          $15,000,000          Celestial Development No5 Pty Ltd\n', '11/05/2014   Mixed Use               Campbell    1       131       5,719             103          $13,500,000          Celestial Development No2 Pty Ltd\n', '11/05/2014   Mixed Use               Campbell    1       132       4,257             110          $14,500,000          Celestial Development No3 Pty Ltd\n', '11/05/2014       Mixed Use                   Campbell    1       133       2,382             60           $11,000,000      Celestial Development No4 Pty Ltd\n', '11/05/2014       Mixed Use                   Campbell    8        5        2,095             50           $9,750,000         Celestial Development Pty Ltd\n', '05/05/2014       Mixed Use                   Amaroo      3       106       6,520             35           $5,005,000    Coles Group Property Developments Ltd\n', '03/06/2014                                   Lawson      1        22       6,856             48           $4,400,000        Jonathan Brothers International\n', '03/06/2014                                   Lawson      2        22       9,229             65           $5,070,000            Minerva Australia Pty Ltd\n', '29/04/2014                                   Coombs      1        24       14,940            150          $6,825,000       K.R. Holdings Australia Pty Limited\n', '10/04/2014        Multi Unit                 Lawson      1        40       8,526             59           $3,800,000    Peach Property (ACT) Proprietary Limited\n', '09/04/2014        Multi Unit                 Lawson      1        31       12,647            89           $5,000,000        Art Homes Three (ACT) Pty Ltd\n', '09/04/2014        Multi Unit                 Lawson      2        40       6,677             48           $3,500,000             Shining Starup Pty Ltd\n', '02/04/2014   Mixed Use/Multi-Unit            Kingston    1        66       2,653             67           $6,850,000           Peninsula ACT Pty Limited\n', '28/03/2014       Residential                  Watson      9        64       29,914            110          $7,300,000                Lonsdale 28 Pty Limited\n', '26/03/2014   Mixed Use/Multi-Unit             Franklin    2       127       6,114             80           $2,900,000           POD Property Group No5 Pty Ltd\n', '26/03/2014   Mixed Use/Multi-Unit             Franklin    1       126       7,381             96           $3,650,000                  BKL (ACT) Pty Ltd\n', '26/03/2014        Multi Unit                  Franklin    3        93       4,350             22           $2,260,000               Strika Homes Pty Limited\n', '13/03/2014   Mixed Use/Multi-Unit     2      Greenway     4        57       9,729             211          $4,500,000      Empire Global Developments No 2 Pty Ltd\n', '13/03/2014        Multi Unit          1      Greenway     1        73       8,219             95           $4,500,000              Kendrick Enterprise Pty Ltd\n', '07/03/2014   Mixed Use/Multi-Unit            Kingston     1        65       4,859             161          $10,100,000              Abacus Crafted 2 Pty Ltd\n', '03/03/2014                                    Dickson     21       30       7,866                          $8,450,000       Coles Group Property Developments Ltd\n', '26/02/2014   Mixed Use/Multi-Unit            Ngunnawal    20       44       2,520             10           $1,300,000           H B Constructions (ACT) Pty Ltd\n', '26/02/2014       Residential                  Watson      9        64       29,914            110                        Sold on the 28/3/2014 (see this date for details)\n', '18/02/2014   Mixed Use/Multi-Unit            Kingston    2        66       2,413             75           $5,250,000                     Fronterra Pty Ltd\n', '12/02/2014   Mixed Use/Multi-Unit            Kingston    1        66       2,653             67           Passed in       Sold on the 2/4/2014 (see this date for details)\n', '12/02/2014   Mixed Use/Multi-Unit            Kingston    1        65       4,859             161          Passed in        Sold on 7/3/2014 (see this date for details)\n', '19/12/2013       Residential                 Wright      1        44       8,250             85           $3,800,000\n', '11/12/2013        Multi Unit                 Lawson      1        39       5,610           22 - 39        $4,160,000     Keggins International Investment Group Pty Ltd\n', '11/12/2013        Multi Unit                 Lawson      2        39       5,610           22 - 39        $4,120,000          Oriental Companion Property Pty Ltd\n', '11/12/2013        Multi Unit                 Lawson      1        43       6,326           25 -44         $5,071,000          Oriental Companion Property Pty Ltd\n', '11/12/2013        Multi Unit                 Lawson      2        43       6,326           25 - 44        $5,160,000          Oriental Companion Property Pty Ltd\n', '29/11/2013        Industrial                  Hume       6        29       7,671             N/A          $1,090,000                   GAM Catania Pty Ltd\n', '29/11/2013         Terraces                  Wright     2-9 & 14-21     31       4,104             16           $2,400,000             Julfrank Pty Ltd\n', '29/11/2013   Mixed Use/Multi-Unit            Amaroo        1-2         114       4,049             70           $2,350,000   Empire Global Developments Pty Ltd\n', '27/11/2013   Community/Child Care            Amaroo         1          112       1,872             N/A          $882,000          Katherine Avenue Pty Ltd\n', '27/11/2013      Town Houses                  Amaroo        1-8         111       1,347              8           $1,700,000   Oriental Companion Property Pty Ltd\n', '27/11/2013         Terraces                  Amaroo        1-13        113       2,535             15           $2,650,000   Oriental Companion Property Pty Ltd\n', '27/11/2013   Mixed Use/Multi-Unit            Amaroo         1          110       2,058             35           $1,575,000   Oriental Companion Property Pty Ltd\n', '20/11/2013   Mixed Use/Multi Unit            Franklin       2          126       7,853          32 - 102        $3,500,000        ART Homes Two Pty Ltd\n', '20/11/2013         Terraces                  Coombs       1 - 36        6        11,337            35           $5,350,000          RMD Projects Pty Ltd\n', '20/11/2013         Terraces                  Coombs       1 - 44        5        11,323            43           $4,950,000    POD Property Group No 4 Pty Ltd\n', '20/11/2013        Multi Unit                 Coombs         1           4        8,837           45 - 88        $4,800,000      Capital Projects No 3 Pty Ltd\n', '23/09/2013      Mixed Use                 Kingston      59         50       6,825           19,100         $11,700,000             Blue Skies (ACT) Pty Limited\n', '30/08/2013                                Gungahlin      1        227       8,279            6,000         $1,050,000             Eastlakes Football Club Limited\n', '06/06/2013      Residential               Coombs                            9,729             35           $4,450,000             Coombs Modular Living Pty Ltd\n', '24/05/2013      Community                  Conder       13        229       3,842             N/A           $530,000             Konstantinou Consultants Pty Ltd\n', '09/05/2013      Mixed Use                   Holt        67         51       1,772             N/A           $375,000               Krnc Bros Investments Pty Ltd\n', '07/05/2013      Mixed Use                  Banks        23         36       2,500             11            $475,000\n', '07/05/2013      Residential                Watson        2        111       3,939             13           $2,570,000           Platinum Constructions ACT Pty Ltd\n', '30/04/2013      Residential               Coombs                            9,729             35           $4,910,500            POD Property Group No 1 Pty Ltd\n', '23/04/2013                                Macarthur      9        398       4,741             N/A           $910,000           Teddy Bears Child Care Centre Pty Ltd\n', '09/04/2013      Mixed Use                  Phillip      16         3        8,258       (Min 850 Public    $4,550,000                 Demac Property Pty Ltd\n', '02/04/2013   Residential            Coombs                                9,729             35           Tender Closed      Sold on 6/6/2013 (see this date for details)\n', '02/04/2013   Residential            Coombs                                9,538             35           Tender Closed   Sold on the 30/4/2013 (see this date for details)\n', '27/03/2013   Commercial               Holt          67           51       1,772             N/A            Passed in     Sold on the 09/05/2013 (see this date for details)\n', '27/03/2013   Community               Conder         13          229       3,842             N/A            Passed in     Sold on the 24/05/2013 (see this date for details)\n', '20/03/2013      Hotel                Barton     2,3,4,5, & 6     10       16,426            N/A           $7,650,000\n', '04/03/2013   Mixed use              Franklin         2          123       6,646             87            $2,260,000                  Art Homes One Pty Ltd\n', '18/02/2013    Industrial            Fyshwick         2           85       6,978          6,000m2          $1,920,000        Canberra data Centres Proprietary Limited\n', '07/12/2012    Multi Unit            Franklin         1          124       5,119             26            $1,615,000               Capital Projects No 2 Pty Ltd\n', '29/11/2012   Commercial             Gungahlin       11           18       2,576          3,500m2          $1,250,000               Autoworld Gungahlin Pty Ltd\n', '29/11/2012   Commercial             Gungahlin       12           18       3,738          5,000m2          $1,850,000                    David Owen Rolfe\n', '29/11/2012   Community                Oxley      3        8        2,575             N/A          $660,000                  Vic Kids Property Pty Ltd\n', '29/11/2012    Multi Unit             Franklin    1       123       6,713             34           $2,500,000         Di Iulio Building & Construction Pty Ltd\n', '29/11/2012   Mixed Use               Franklin    2       123       6,646             87           Passed in    Sold on the 4 March 2013 (see this date for details)\n', '29/11/2012    Multi Unit             Franklin    1       124       5,119             26           Passed in     Sold on the 7/12/2012 (see this date for details)\n', '25/10/2012   Community              Ngunnawal   108       23      6.231ha            225          $7,510,000          Lend Lease RL (Ngunnawal) Pty Ltd\n', '23/10/2012    Multi Unit    Lot 1    Harrison   163       1        8,900             11           $1,350,000               KWJH Well Station Pty Ltd\n', '27/07/2012    Multi Unit    Lot 1     Jacka      1        4        9,823             36           $2,451,000    Canberra Estates Consortium No 34 Pty Limited\n', '27/07/2012    Multi Unit    Lot 2     Jacka      1        5        6,198             23           $1,710,000    Canberra Estates Consortium No 34 Pty Limited\n', '27/07/2012    Multi Unit    Lot 4     Jacka      2        6        5,734             21           $1,651,000    Canberra Estates Consortium No 34 Pty Limited\n', '27/07/2012         Multi Unit         Lot 5     Jacka          1           11       11,193            110          $3,210,000   Canberra Estates Consortium No 34 Pty Limited\n', '27/07/2012         Multi Unit         Lot 6     Jacka          1           2        1,306              4           $360,000              SARG (Canberra) Pty Limited\n', '27/07/2012        Residential         Lot 7     Jacka                              250 each       1 per block      $864,590              Elevated Constructions Pty Ltd\n', '27/07/2012        Residential         Lot 8     Jacka     21, 22 ,23 &     9                      1 per block      $1,167,896            Elevated Constructions Pty Ltd\n', '06/07/2012         Multi unit                 Coombs           a           AS      8044m2             80           $3,100,000             POD Property Group Pty Ltd\n', '29/06/2012        Mixed Use                    Franklin        2          124       5,933             78           $2,250,000          Meteora Franklin Holdings Pty Ltd\n', '25/06/2012         Multi unit                 Coombs           a           AS      8,044m2            80           Passed In    Sold on the 06/07/2012 (see this date for details)\n', '25/06/2012   Mixed Use / Childcare            Gungahlin        7           58      3,505m2            50           $2,400,000            Kaiwen Developments Pty Ltd\n', '15/06/2012        Mixed Use                   Harrison         1          140       7,705             101          $2,750,000          POD Property Group JV 1 Pty Ltd\n', '05/06/2012       Commercial                   Belconnen        7           12        929              n/a          $910,000       Brede Management Consultants Pty Limited\n', '05/06/2012   Community                Holt       11       52       2,548             n/a          $685,000                        Temloc Pty Ltd\n', '31/05/2012   Mixed Use              Belconnen    8        47       3,398             235          $5,750,000           Geocon Belconnen Holdings Pty Ltd\n', '10/05/2012    Multi unit             Wright      1        45       5,627             56           $2,775,000    Hodome Pty Limited & HZD Developments Pty Ltd\n', '02/05/2012   Mixed Use              Harrison     1       140       7,705             101          Passed In    Sold on the 15/06/2012 (see this date for sale details)\n', '02/05/2012   Mixed Use               Franklin    2       124       5,933             78           Passed In\n', '02/05/2012   Mixed Use              Belconnen    8        47       3,398             235          Passed In    Sold on the 31/05/2012 (see this date for sale details)\n', '12/04/2012    Multi unit             Wright      1        44       8,515             85           Passed In                          Available\n', '12/04/2012    Multi unit             Wright      1        45       5,627             56           Passed In    Sold on the 10/05/2012 (see this date for sale details)\n', '11/04/2012    Industrial              Hume       5        29       6,403             N/A          $1,000,000          Teddy Bears Child Care Centre Pty Ltd\n', '20/03/2012    Multi unit             Wright      1        47       17,935            180          $7,200,000      Empire Building Group (ACT) No.2 Pty Limited\n', '31/01/2012                                      Watson              3           95      3.447ha            N/A          $1,600,000           Maryalicec Pty Limited\n', '23/12/2011       Community                      Calwell             5          790                         N/A          $2,050,000             Innovative Care Ltd\n', '08/12/2011       Community                   Isabella Plains        8          856                         N/A          $5,050,000       LLP Retirement Villages Pty Ltd\n', '14/12/2011       Community           Lot 1      Conder             13          229       3,842             N/A          $595,000     Metro Group Investment No1 Pty Limited\n', '13/12/2011       Community           Lot 2     Gungahlin            2           59       1,100             N/A          $320,000          Mr Tien Do & Mrs Van Trinh\n', '28/10/2011        Multi unit                     Wright             1           27       17,625            176          $7,400,000      Rovine Property Holdings Pty Ltd\n', '25/10/2011        Mixed Use          Lot 1      Franklin            &           &          &               &            $3,050,000\n', '07/10/2011        Multi unit                     Wright             1           46       21,170            212          $9,200,000     Geocon Land Holdings No.4 Pty Ltd\n', '02/09/2011       Residential                     Wright        10, 11 & 12      33      662 - 809      1 per block      $1,289,950       Better Building Holdings Pty Ltd\n', '02/09/2011        Terraces                       Wright                         31      240 - 306      1 per block      $2,600,000        Section 31 Molonglo Pty Ltd\n', '02/09/2011    Terraces              Wright                      33      249 - 459      1 per block      $3,262,500       Canberra Property Holdings No 8 Pty Limited\n', '04/06/2011   Residential            Wright                      33      471 - 643      1 per block      $1,463,000              Molonglo Valley Property Group\n', '26/07/2011   Mixed Use      Lot 1   Harrison        1          139       7,076             93           $3,200,000         Empire Building Group (ACT) Pty Limited\n', '26/07/2011   Mixed Use      Lot 2   Harrison        1          138       5,746             75           $2,150,000                Baron Projects Pty Limited\n', '23/06/2011    Industrial    Lot 1    Hume         71 (a)      22 (AE)    6,317             N/A          Passed in                          Available\n', '23/06/2011    Industrial    Lot 2    Hume         5 (e)       29 (AB)    6,403             N/A          Passed in    Sold on the 11/04/2012 (see this date for sale details)\n', '23/06/2011    Industrial    Lot 3    Hume          6 (f)      29 (AB)    7,671             N/A          Passed in     Sold on the 29/11/13 (see this date for sale details)\n', '23/06/2011    Industrial    Lot 4    Hume         66 (a)      22 (AF)    8,058             N/A          Passed in      Sold on the 2/6/15 (see this date for sale details)\n', '23/06/2011    Industrial    Lot 5    Hume         7 (g)       29 (AB)    11,026            N/A          Passed in     Sold on the 23/9/14 (see this date for sale details)\n', '23/06/2011    Industrial    Lot 6    Hume         8 (h)       29 (AB)    11,557            N/A          Passed in                          Available\n', '23/06/2011    Industrial    Lot 7     Hume      9 (i)   29 (AB)    12,863            N/A           Passed in    Sold in Jan 2014 (see this date for sale details)\n', '23/06/2011    Industrial            Fyshwick     6        89       2,247             N/A           $675,000                    PD (ACT) Pty Ltd\n', '23/06/2011    Industrial            Fyshwick     7        89       2,716             N/A           $815,000                    PD (ACT) Pty Ltd\n', '22/06/2011   Residential    Lot 1    Harrison    1       163       8,900             11           $1,650,000             Metal Fire (ACT) Pty Limited\n', '22/06/2011   Residential    Lot 2     Page       45       7         866              12            $560,000             Dinamic Constructions Pty Ltd\n', '17/06/2011   Mixed use      Lot 1   Belconnen    1       199       3,757       240 Dwellings      $7,000,000               MPG Burleigh Pty Limited\n', '15/06/2011    Englobo       Lot 1   Ngunnawal   132       1       35.14ha       475 dwellings     $36,250,000   Canberra Estate Consortium No 30 Pty Limited\n', '07/06/2011    Industrial    Lot 1   Fyshwick     1        88       4,083             N/A          $1,200,000                 Cessnock 88 Pty Ltd\n', '07/06/2011    Industrial    Lot 5   Fyshwick     2        88       2,590             N/A           $700,000                  Cessnock 88 Pty Ltd\n', '07/06/2011    Industrial    Lot 3   Fyshwick     2        90       2,537             N/A           $710,000              Hawkesbury Projects Pty Ltd\n', '31/05/2011   Commercial     Lot 1   Barton        14         22       6,554             N/A          $2,500,000          Emerald Max Pty Limited\n', '24/05/2011   Commercial     Lot 1   Nicholls      5          39      2.167ha            N/A          $2,900,000             Elvin Global Pty Ltd\n', "18/05/2011   Community      Lot 1   Giralang   9 (was 2)     80       2,274             N/A           $733,000     Merkos L'Inyonei Chinuch (ACT) Inc\n", '18/05/2011   Community      Lot 2   McKellar      4          52       1,353             N/A           $695,000     Majura Park Childcare Centre Pry Ltd\n', '16/05/2011    Englobo               Casey 4       20         1       21.35ha            N/A          $14,280,000         Worth Street Pty Limited\n', '07/04/2011   Residential    Lot 1   Harrison    12 - 17     141      250 - 250      1 per block       $786,100             Deemro Pty. Limited\n', '07/04/2011   Residential    Lot 2   Harrison      &         142      250 - 250      1 per block       $727,100             Deemro Pty. Limited\n', '07/04/2011   Residential    Lot 3   Harrison      &         143      250 - 250      1 per block       $768,000     Nablus Building and Electrical Pty Ltd\n', '07/04/2011   Residential    Lot 4   Harrison    17 - 22     144      250 - 250      1 per block       $750,000     BTG Property Development Pty Ltd\n', '07/04/2011   Residential    Lot 5   Harrison                145      250 - 250      1 per block       $750,000     BTG Property Development Pty Ltd\n', '07/04/2011        Residential          Lot 6   Harrison     &         &       250 - 250      1 per block      $785,900            Antalija Constructions Pty Ltd\n', '07/04/2011        Residential          Lot 7   Harrison                       250 - 250      1 per block      $676,000           Elevated Constructions Pty Ltd\n', '07/04/2011        Residential          Lot 8   Harrison     &                 250 - 296      1 per block      $563,400            Stylish Homes (ACT) Pty Ltd\n', '07/04/2011        Residential          Lot 9   Harrison    1-7       152      250 - 250      1 per block      $982,520     Canberra Property Holdings No 8 Pty Limited\n', '07/04/2011        Residential         Lot 10   Harrison   8 - 14     152      250 - 250      1 per block      $983,112     Canberra Property Holdings No 8 Pty Limited\n', '07/04/2011   Multi-Unit Residential   Lot 11   Harrison     1        147       4,750        12 dwellings      $1,223,880              Briarwood Pty Limited\n', '07/04/2011   Multi-Unit Residential   Lot 12   Harrison     1        148       9,096        24 dwellings      $2,447,760              Briarwood Pty Limited\n', '07/04/2011   Multi-Unit Residential   Lot 13   Harrison     1        162       5,750        16 dwellings      $1,728,000          Sutton & Horsley Pty Limited\n', '29/03/2011       Commercial                    Forrest      15        30       4,498           21,000         $6,800,000            BDC (ACT) PTY LIMITED\n', '22/03/2011        Mixed use                    Franklin     2         33       7,612        100 dwellings     $3,700,000           M.P.K Investments Pty Ltd\n', '22/03/2011        Residential                  Franklin     2         31       3,531        18 dwellings      $1,650,000         Zina Pty Ltd & Lem Pty Limited\n', '22/03/2011        Mixed use                     Franklin    1       122        7,983        105 dwellings      $3,850,000         Taofei (Australia) International Pty Ltd\n', '22/03/2011        Mixed use                    Harrison     2        95        6,318         83 dwellings      $3,100,000              II Developments JV Pty Ltd\n', '22/02/2011         Industrial                  Fyshwick     1        89        2,836              N/A          $850,000                 Midlec Properties Pty Ltd\n', '22/02/2011         Industrial                  Fyshwick     2        89        1,821              N/A          $620,000        Diamond Property Investment Group Pty Ltd\n', '22/02/2011         Industrial                  Fyshwick     3        89        3,006              N/A          $1,100,000           E & E Sterling Enterprises Pty Ltd\n', '22/02/2011         Industrial                  Fyshwick     4        89        1,609              N/A          $610,000            Canberra Development Pty Limited\n', '22/02/2011         Industrial                  Fyshwick     5        89        1,609              N/A          $600,000                         GA Pty Ltd\n', '16/02/2011        Mixed use                    Kingston     1        64        4,937             18,200        $9,100,000         Englobo Group Venture No 3 Pty Ltd\n', '21/12/2010         Terrace                      Wright               AV                    25      Dwellings   $4,640,000               Section 30 Forde Pty Ltd\n', '17/12/2010   Multi-Unit Residential             Wright               AO        7,456                           $4,380,000                Intelligent Group Pty Ltd\n', '16/12/2010   Multi-Unit Residential             Franklin    1        94        9,936       60-110 Dwellings    $3,150,000    Canberra Estate Consortium No.29 Pty Limited\n', '30/11/2010       Commercial                    Belconnen    3        3         2,988              N/A          $1,260,000\n', '30/11/2010       Commercial                     Higgins     18       12         807               N/A          $230,000                     JAG A Site Pty Ltd\n', '30/11/2010       Commercial                      Holt        65        51        788              N/A            $350,000                       Matkovic Pty Ltd\n', '24/11/2010   Multi-Unit Residential             Bonner       2         12       3,749         20 dwellings       $1,240,000                     AC6 Pty Limited\n', '24/11/2010   Multi-Unit Residential             Bonner       51        56       6,923         25 dwellings       $2,290,000\n', '17/11/2010         Industrial                  Fyshwick      8         89       4,057             N/A            $1,000,000     Metro Contruction & Developments (ACT) Pty LTD\n', '17/11/2010         Industrial                  Fyshwick      9         89       3,822             N/A            $1,200,000         Mr P Ciancio & Mr G Cirillo & Mr A Cirillo\n', '17/11/2010         Industrial                  Fyshwick      1         90       2,898             N/A            $960,000             Australian Capital Contractors Pty Ltd\n', '17/11/2010         Industrial                  Fyshwick      2         90                         N/A\n', '17/11/2010         Industrial                  Fyshwick      3         90       3,107             N/A            $930,000                        Ajuma Pty Ltd\n', '17/11/2010         Industrial                  Fyshwick      4         90       4,696             N/A            $1,180,000                  Victory Homes Pty Ltd\n', "11/11/2010         Industrial                  Fyshwick      2         85       6,978             N/A            $1,920,000     Name withheld* 'Did not complete' See 18/02/2013\n", '23/09/2010         Industrial                  Fyshwick      2         87       5,737             N/A            $1,450,000                   Gusherd Pty Limited\n', '23/09/2010         Industrial                  Fyshwick      3         87       5,737             N/A            $1,600,000                   Gusherd Pty Limited\n', '23/09/2010         Industrial                  Fyshwick      4         85       5,734             N/A            $1,300,000\n', '06/10/2010         Industrial                  Fyshwick      3         85       6,558             N/A            $1,300,000           Network Development Group Pty Ltd\n', '14/10/2010         Industrial                  Fyshwick      8         83       8,265             N/A            $1,675,000                Beaconsfield 8 Pty Limited\n', '14/09/2010       Commercial                    Gungahlin     6         2         573              N/A            $270,000                 Benchmark Projects Pty Ltd\n', '14/09/2010       Commercial                    Gungahlin     1        225       2,580             N/A            $720,000                       G.B.M.W Pty Ltd\n', '26/06/2010        Residential                   Wright       a         AP       11,304      57-113 dwellings     $5,800,000                 MPK Investments Pty Ltd\n', '26/06/2010        Residential                   Wright       e         BC       5,575         18 dwellings       $2,900,000                  Mascot Homes Pry Ltd\n', '16/07/2010        Residential                  Franklin               113      646-669        1 per block                           Name withheld as requested by purchaser\n', '16/07/2010       Commercial                    Fyshwick     6        83       6,000           5,500m2                                Bruce 8 Consortium Pty Ltd\n', '16/07/2010       Commercial                    Fyshwick     7        83       6,000           5,500m2                                Bruce 8 Consortium Pty Ltd\n', '01/07/2010       Commercial                    Fyshwick     5        83       6,000           5,500m2                                Parsa Investments Pty Ltd\n', '29/06/2010       Commercial                     Bruce       8        85                         N/A          $14,100,000         13.9 Barton Residential Pty Limited\n', '29/06/2010        Residential                  Franklin     2        95                   60-105 dwellings   $3,520,000           Englobo Group No.2 P/L Pty Ltd\n', '29/06/2010        Residential                  Franklin     1        95       9,630       60-110 dwellings   $3,400,000                 Caparra Pty Limited\n', '29/06/2010        Residential                  Franklin     2        96                   60-120 dwellings   $4,150,000\n', '10/05/2010       Commercial                    Gungahlin    6        88       6,015             N/A          $1,125,000                  Landco Pty Limited\n', '10/05/2010       Commercial                    Gungahlin    1       209       17,264            N/A          $2,850,000       Geocon Commercial Holdings Pty Ltd for\n', '04/05/2010        Residential                   Bonner      1-7      36      235-290        1 per block      $1,015,000                     Paul Seears\n', '04/05/2010        Residential                   Bonner      1-5      44      260-348        1 per block       $828,000                MHK Enterprises Pty Ltd\n', '04/05/2010        Residential                   Bonner      1-8      51      265-363        1 per block      $1,256,000              Tokich Homes Pty Limited\n', '04/05/2010        Residential                   Bonner      1-5      54      265-348        1 per block       $800,000          Revolution Building Group Pty Limited\n', '04/05/2010        Residential                   Bonner      1-5      55      269-394        1 per block       $825,000              Soldo Constructions Pty Ltd\n', '04/05/2010        Residential                   Bonner      1-6      38      198-266        1 per block       $923,000             Alves Constructions Pty Limited\n', '04/05/2010        Residential                   Bonner     10-13     4       495-610        1 per block       $955,000                   Tokich Pty Limited\n', '04/05/2010        Residential                  Franklin    7, 11    45,71    654, 714       1 per block       $590,000      Sublime Constructions & Development Pty Ltd\n', '20/04/2010   Multi-Unit Residential             Bonner      1        26       9,319         30 dwellings     $3,060,000           Devpro Nominees #3 Pty Limited\n', '20/04/2010   Multi-Unit Residential             Bonner      9        26       6,675         22 dwellings     $2,410,000            Pelle Constructions Pty Limited\n', '20/04/2010   Multi-Unit Residential             Bonner      2        11       4,475         14 dwellings     $1,400,000    Basic Investments Pty Ltd & T&J Seselja Pty Ltd\n', '18/03/2009 /\n', '29/10/2008     Aged Care      Lot 1       Stirling      90       24        16,160        Min. 100 Beds        $2,800,000        Healthcare Property Funds Pty Limited\n', '30/09/2008     Residential   20 Lots                    1-4     101                    1 dwelling per block   $2,550,000                Parklane ACT Pty Ltd\n', '11/09/2008     Residential    Lot 1       Casey                  1       110 hectare           N/A            $52,000,000        Macquarie Bank & Delfin Lend Lease\n', '03/07/2008     Commercial                Fyshwick       3        84        5,350             3745m²           $2,000,000             Jackson (ACT) Pty Limited\n', '18/06/2008     Commercial                Fyshwick       3        84        5,350                               Passed in\n', '11/06/2008     Commercial                               1        88        1,046             710m2             $525,000           Metro Development (ACT) Pty Ltd\n', '11/06/2008     Commercial                               2        88        1,139             710m2             $455,000              Hudina Holdings Pty Limited\n', '11/06/2008     Commercial                               3        88        1,139             710m2             $455,000           Samesh Singh and Subash Dang\n', '11/06/2008     Commercial                               4        88        1,078             710m2             $475,000                   Merrakai Pty Ltd\n', '28/05/2008     Commercial               Belconnen       14       14        5,138             2000m²           $1,850,000                  N & S Haridemos\n', '28/05/2008     Commercial               Belconnen       20       32        6,078            12,000m2          $5,650,000                 Telidoo Pty Limited\n', '28/05/2008     Commercial                 Isaacs        3       541         349              504m2             $400,000                  Scott Bradley Ellis\n', '28/05/2008     Commercial               MacGregor       16       82        1,829            2,450m2            $460,000               Clancy (ACT) Pty Limited\n', '28/05/2008     Commercial                 Griffith      14       25        1,689            2,512m2           $3,300,000    Amalgamated Investments Corporation Pty Ltd\n', '31/03/2008     Commercial     Lot 1      Fyshwick       61       32        1,824            1,600m2           $1,000,000           Bourkes Hill Station Pty Limited\n', '31/03/2008     Commercial     Lot 2      Fyshwick       64       32        1,371            1,000m2            $950,000\n', '31/03/2008     Commercial     Lot 3      Kambah         13      275        6,650            1,500m2            $720,000       Sport Centre Management Australia Pty Ltd\n', '31/03/2008     Commercial     Lot 4       Dunlop        1       202        6,688          16 dwellings        $1,900,000          Geocon Constructors Pty Limited\n', '31/03/2008     Commercial     Lot 5      Fyshwick       26       19        7,754            7,000m2           $3,200,000                 Mini (ACT) Pty Ltd\n', '31/03/2008   Commercial     Lot 6     Fyshwick       23       19       6,869          6,000m2         $3,000,000                Lacedaemon Pty Limited\n', '31/03/2008   Commercial     Lot 7     Dickson        8        1        2,691          6,750m2         $4,700,000               Angus Homes Pty Limited\n', '14/03/2008   Residential    Lot 4    Gungahlin       1        72       2,769        61 dwellings      $2,450,000        B & T Developments (ACT) 4 Pty Limited\n', '14/03/2008   Residential    Lot 3    Gungahlin       1        71       2,550        57 dwellings      $2,300,000        Capital Townhouse Developments Pty Ltd\n', '14/03/2008   Residential    Lot 2    Gungahlin       1        68       2,364        45 dwellings      $1,950,000          National Capital Investments Pty Ltd\n', '14/03/2008   Residential    Lot 1    Gungahlin       1        67       2,769        61 dwellings      $2,000,000                Metros Estate Pty Limited\n', '14/12/2007   Commercial             Canberra City    19       63       26,844                         $92,000,000        City West Property Holdings Pty Limited\n', '12/12/2007   Residential               Casey         1        1        45Ha                           $51,150,000                  CRD No 1 Pty Ltd\n', '07/11/2007   Commercial               Fyshwick       2        84       10,970                         $5,000,000                   Phum Pty Limited\n', '07/11/2007   Commercial               Fyshwick       4        84                                      $4,250,000    Michalis Holdings Pty Ltd and Nikdia Hume Pty Ltd\n', '25/10/2007   Mixed Use                 Dunlop        4       133       2,851                          $1,090,000              Classic Constructions Pty Ltd\n', '25/10/2007   Commercial              MacGregor       5        58        209                            $195,000                   Klek Holdings Pty Ltd\n', '25/10/2007    Industrial              Mitchell       27       38       9,628                          $2,600,000                     Gasson Pty Ltd\n', '25/10/2007    Industrial              Mitchell       32       38       5,342                          $2,175,000                     Gasson Pty Ltd\n', '28/08/2007   Commercial     Lot 1     Kingston       7        48       4,389                          $9,400,000             Canberra Investment Corp. Ltd\n', '23/07/2007    Industrial              Mitchell       18       11       1,686                           $700,000            Konstantinov Developments Pty Ltd\n', '23/07/2007    Industrial              Mitchell       25       38       5,863                          $1,250,000      Dimensional Developments Australia Pty Ltd\n', '23/07/2007    Industrial               Hume          43       7         657                           $2,025,000                    Granson Pty Ltd\n', '23/07/2007   Commercial               Kambah         4       274       4,915                           $900,000                     U-Stow-It Pty Ltd\n', '23/07/2007   Residential               Oxley         23       40        721                            $306,000                    Souad Harmouche\n', '31/05/2007        Industrial         Lot 1      Hume         42       7        26,315         17,000m2        $5,500,000                    Granson Pty Ltd\n', '31/05/2007                           Lot 2    Waniassa       6       278       1,400       >500m2 <1,100m2     $630,000               IC formwork Services Pty Ltd\n', '31/05/2007                           Lot 3     Conder        15      228       3,035          <1,500m2        $1,250,000                    Clonmell Pty Ldt\n', '31/05/2007       Residential         Lot 4     Higgins       17       23        960              N/A           $210,000                       Klek Holding\n', '31/05/2007       Residential         Lot 5     Higgins       18       23        982              N/A           $230,000                       Klek Holding\n', '31/05/2007       Residential         Lot 6                   13       1        31,600            N/A          $6,800,000               MacGregor Projects Pty Ltd\n', '11/04/2007         Englobo                    Macgregor     3&4      115      68.7 Ha                         $45,500,000      Canberra Estates Consortium No. 19 Pty Ltd\n', '28/02/2007       Residential         Lot 1      Page         44       7         802              N/A           $450,000                    Q Projects Pty Ltd\n', '19/12/2006       Residential         Lot 1    Bonython       2        76       7,252             28           $3,650,000         Canberra Property Developments Pty Ltd\n', '19/12/2006       Residential         Lot 2    Bonython       2        78       5,878             22           $3,000,000               Anita Constructions Pty Ltd\n', '19/12/2006       Residential         Lot3     Bonython       3        78       5,210             21           $2,700,000               M & R Investments Pty Ltd\n', '19/12/2006       Residential         Lot 4    Bonython       4        78       4,124             14           $1,865,000      HZD Developments Pty Ltd & Hodome Pty Ltd\n', '06/12/2006    Office/ Apartments     Lot 1     Kingston      5        54       1,424           4,000m2        $3,010,000                    A&S Haridemos\n', '06/12/2006    Office/ Apartments     Lot 2     Kingston      6        54       1,436           4,000m2        $2,660,000        Capital Commercial Developments Pty Ltd\n', '06/12/2006    Office/ Apartments     Lot 3     Kingston      7        54       1,434           4,000m2        $2,950,000        Capital Commercial Developments Pty Ltd\n', '06/12/2006    Office/ Apartments     Lot 4     Kingston      8        54       1,423           4,000m2        $3,050,000                   Gemz Pty Limited\n', '06/12/2006      Health Facility      Lot 1     Conder        12      229       1,310            450m2          $500,000\n', '26/09/2006        Industrial         Lot 1      Hume         24       7        3,965           3,500m2         $770,000       Rovera Constructions Pty Ltd & Desi Nominees\n', '30/10/2006                           Lot 1    Greenway       10       16       21,426         21,500m2        $9,350,000                    Zainden Pty Ltd\n', '26/09/2006   Community      Lot 1   Yarralumla       2           77       1,627            >250m2            $960,000          Michalis Management Pty Ltd\n', '26/09/2006   Community      Lot 2   Belconnen        11          87       2,510             650m2                                      Temloc Pty Ltd\n', '26/09/2006   Commercial     Lot 3    Mitchell        67          6        2,994            2,500m2                                 Tokich Homes Pty Ltd\n', '26/09/2006   Commercial     Lot 4     Hume           12          1        1,786            1,700m2           $520,000          Rovera Constructions Pty Ltd\n', '26/09/2006   Commercial     Lot 5     Hume           24          7        3,965            3,500m2\n', '04/07/2006    Industrial    Lot 1    Mitchell        4           57       14,210          10,000m2          $1,500,000                 Gasson Pty Ltd\n', '04/07/2006    Industrial    Lot 2    Mitchell        5           57       3,851           3,600m2            $750,000        Konstantinou Developments Pty Ltd\n', '04/07/2006    Industrial    Lot 3    Mitchell        6           57       4,633           4,500m2            $740,000        Multi Property Investments Pty Ltd\n', '04/07/2006    Industrial    Lot 4    Mitchell        7           57       4,151           3,800m2            $620,000        Dimensional Developemtns Pty Ltd\n', '04/07/2006    Industrial    Lot 5    Mitchell        8           57       4,525           4,300m2           $1,100,000             Bink Nominees Pty Ltd\n', '06/03/2006   Commercial     Lot 1   Greenway         10          16       21,426          21,500m2\n', '06/03/2006   Commercial     Lot 2   Greenway         5           3        3,924           3,900m2           $3,400,000           Michalis Holdings Pty Ltd\n', '06/03/2006   Commercial     Lot 3    Calwell         23         787       1,347       500m2 - 1,366m2        $576,000                  Tsoulias Group\n', '06/03/2006   Commercial     Lot 4    Calwell         32         787        875         400m2 - 875m2         $565,000                  Tsoulias Group\n', '06/03/2006   Commercial     Lot 5    Calwell         33         787       1,538       700m2 - 1,538m2        $815,000            KCWL Pty Ltd (Kingswim)\n', '16/12/2005   Commercial     Lot 1   Fyshwick         8           48       69,552          60,000m2         $39,000,000               Glenshine Pty Ltd\n', '14/12/2005   Commercial     Lot 1   Belconnen        52          55       7,708           25,000m2          $5,000,000                  Vise Pty Ltd\n', '07/12/2005   Residential    Lot 1   Belconnen        10          87       33,968      110-115 dwellings     $7,850,000                  Kiena Pty Ltd\n', '07/12/2005   Residential    Lot 2   Gungahlin                   200                                                             Di Iulio Constructions Pty Ltd\n', '07/12/2005   Commercial    Lot 3   Greenway    6        3        3,700           3,700m2          $2,800,000                    NRMA Treasury Ltd\n', '02/11/2005   Commercial    Lot 1   Kambah      43      277       2,764           2,000m2           $330,000\n', '02/11/2005   Commercial    Lot 2   Mitchell    35       7        2,225       800m2 - 2,800m2       $450,000                 Roso Property Group Pty Ltd\n', '02/11/2005   Commercial    Lot 3   Fyshwick    15       41       4,703       2,000m2 - 4,200m2    $1,210,000                   PBS Projects Pty Ltd\n', '02/11/2005   Commercial    Lot 4   Fyshwick    12       41       1,570       800m2 - 1,300m2       $700,000                 Collie Street Developments\n', '02/11/2005   Commercial    Lot 5   Fyshwick    11       41       1,560       800m2 - 1,300m2       $660,000                         Barry Faux\n', '02/11/2005   Commercial    Lot 6   Fyshwick    10       41       1,620       800m2 - 1,400m2       $650,000                 Kamiros Investments Pty Ltd\n', '02/11/2005   Commercial    Lot 7   Fyshwick    9        41       1,620       800m2 - 1,400m2       $800,000                 Kamiros Investments Pty Ltd\n', '05/10/2005   Commercial    Lot 1   Greenway    17       7        1,855            1200m2          $1,300,000                   Socem united Pty Ltd\n', '05/10/2005   Commercial    Lot 2   Mitchell    68       6        2,997       2,000m2 -2,800m2      $750,000         Post Auction Sale – Albia Nominees 5/12/05\n', '05/10/2005   Commercial    Lot 3   Mitchell    69       6        3,425       2,300m2 - 3,000m2     $810,000            MRC Canberra Developments Pty Ltd\n', '05/10/2005   Commercial    Lot 4   Mitchell    70       6        3,651       2,300m2 - 3,000m2     $810,000            MRC Canberra Developments Pty Ltd\n', '05/10/2005   Commercial    Lot 5   Mitchell    71       6        3,874       2,500m2 - 3,300m2                         MRC Canberra Developments Pty Ltd\n', '31/08/2005   Commercial    Lot 1   Kingston    1        52       2,912                            $4,500,000                   Perse Developments\n', '31/08/2005   Commercial    Lot 2     City      1        92       1,173       6,825m2 - 8,775m2    $3,250,000                 Sunpatch Parade Pty Ltd\n', '25/05/2005   Commercial    Lot 1    Calwell    6        71       1,636           1,600m2           $400,000              Sold to Paitres Pty Ltd on 24/3/06\n', '25/05/2005   Commercial    Lot 2   Amaroo      1       106       2,809            400m2           $1,000,000                 Renato & Margaret Cervo\n', '25/05/2005   Commercial    Lot 3   Fyshwick    13       41       6,029           5,000m2           $850,000      Sold in October 2005 to Collie Street Developments\n', '25/05/2005   Commercial    Lot 4   Greenway    11       55       7,260           2,500m2           $575,000\n', '25/05/2005   Commercial     Lot 5   Greenway     21       17       3,703           3,200m2         $880,000\n', '25/05/2005   Commercial     Lot 6   Greenway     4        3        3,130           3,000m2         $2,150,000   Post Auction Sale – NPS Property Holdings Pty Ltd\n', '03/03/2005   Commercial     Lot 1      City      1        90       1,141           8,000m2         $5,250,000       Willemsen Investment Corporation Pty Ltd\n', '03/03/2005   Commercial     Lot 2   Fyshwick     8        41       5,692           4,500m2         $800,000      Network Development Group Pty Ltd or Nominee\n', '03/03/2005   Commercial     Lot 3   Greenway     15       7        2,862           2,500m2         $1,900,000                 Socem United Pty Ltd\n', '03/03/2005   Commercial     Lot 4    Mitchell    73       6        4,128           3,900m2         $970,000                      Janrule Pty Ltd\n', '03/03/2005   Commercial     Lot 5   Wanniassa    30      130       1,080           1,080m2         $700,000             TLJ Holdings Pty Ltd or nominee\n', '17/11/2004   Commercial     Lot 1    Mitchell    72       6        3,975           3,500m2         $800,000        Dimensional Developments Australia Pty Ltd\n', '17/11/2004   Commercial     Lot 2    Conder      2       229       2,087            700m2          $770,000                     Evenlong Pty Ltd\n', '25/06/2004   Commercial     Lot 1   Kingston     5        48       3,559       25 - 30 dwellings   $2,400,000          Mainore Pty Ltd or nominee 28/6/04\n', '25/06/2004   Commercial     Lot 2   Kingston     6        48       3,710       25 - 30 dwellings   $2,400,000          Mainore Pty Ltd or nominee 28/6/04\n', '09/06/2004   Commercial     Lot 2     Florey     25      143        253             80m2            $95,000                  Gino Roso or Nominee\n', '09/06/2004   Commercial     Lot 3    Hawker      29       33       2,540            1 to 1         $1,160,000          SHG Canberra Investments Pty Ltd\n', '09/06/2004   Commercial     Lot 4    Mitchell    12       38       7,798           6,900m2         $1,250,000             Australian Postal Corporation\n', '09/06/2004   Commercial     Lot 5   Belconnen    4        20       2,300           1,500m2         $960,000          Canberra and District Petanque Club Inc\n', '13/08/2003    Residential Estate       Lot 1   North Watson     3        79      18.12Ha       260 dwellings     $33,000,000       Canberra Investment Corporation Limited\n', '13/08/2003    Residential Estate       Lot 2   East O’Malley    5        52       28 Ha        116 dwellings     $31,250,000                     Xriso Pty Ltd\n', '13/08/2003    Residential Estate       Lot 3    Harrison 1     25, 2     1        39Ha         595 dwellings     $42,000,000      Canberra Residential Developments Pty Ltd\n']

In [29]:
def extract_date_type_suburb_price_company_from_list(info_list):
    for item in info_list:
        date=item[:10]
        pattern_type=re.compile(r'(?:\d{2}\/\d{2}\/\d{4} +)([a-zA-Z]+)')
        block_type=pattern_type.search(item)
        pattern_price=re.compile(r'\$[0-9,]+')
        price=pattern_price.search(item)
        pattern_suburb=re.compile(r'(?<= {3})[a-zA-Z]+(?= {3})')
        
        info_dict={}
        info_dict['date']=date
        if block_type:
            info_dict['block type']=block_type.groups()[0]
            block_type_position=block_type.end()
            suburb=pattern_suburb.search(item[block_type_position+1:])
            if suburb:
                info_dict['suburb']=suburb.group()
            else:
                info_dict['suburb']=''
        else:
            info_dict['block type']=''
            info_dict['suburb']=''
        if price:
            info_dict['price']=price.group()
            purchaser_offset=price.end()
            purchaser=item[purchaser_offset+1:]
            purchaser=purchaser.replace(' ','')
            info_dict['purchaser']=purchaser
        else:
            info_dict['price']=''
            info_dict['purchaser']=item[-10:].replace(' ','')
                      
        yield info_dict

不加pd.set_option('display.expand_frame_repr', False)这句话,print(df)一行会分裂成两行显示


In [37]:
plt.style.use('ggplot')
%matplotlib inline
pd.set_option('display.max_columns',100)
pd.set_option('display.max_colwidth',400)
pd.set_option('display.precision',3)
pd.set_option('display.expand_frame_repr', False)

In [38]:
info_list=extract_info_from_convert_text('canberra_land_sales_result.txt')
land_list=list(extract_date_type_suburb_price_company_from_list(info_list))
df=pd.DataFrame(land_list)

In [39]:
print(df)


      block type        date        price                                      purchaser     suburb
0    Residential  03/02/2017   $7,899,900                   DeltaDesignandConstruction\n    Throsby
1    Residential  03/02/2017   $4,810,000                     RomanDevelopmentHoldings\n    Throsby
2    Residential  03/02/2017   $9,393,600                   DeltaDesignandConstruction\n    Throsby
3    Residential  03/02/2017   $1,854,000                                  MSLProjects\n    Throsby
4    Residential  03/02/2017   $2,698,600                                  MSLProjects\n    Throsby
5    Residential  03/02/2017  $14,631,150                      WellingtonPropertyGroup\n    Throsby
6     Industrial  22/12/2016   $2,800,000                                                      Hume
7      Community  30/11/2016   $2,145,000                ChildcareInvestmentsAusPtyLtd\n  Charnwood
8            Mix  30/11/2016     $635,000                                  AnthonyLieu\n     Amaroo
9          Multi  30/11/2016   $2,000,000                        RMDProjectsNo.4PtyLtd\n  Moncrieff
10         Multi  30/11/2016     $975,000                                                 Moncrieff
11    Industrial  24/11/2016     $395,000                                                      Hume
12    Industrial  14/09/2016   $1,120,000                                                      Hume
13         Mixed  31/08/2016  $40,000,000                    ArtProjectsNomineesPtyLtd\n    Dickson
14    Industrial  29/08/2016     $385,000                                                      Hume
15    Industrial  11/08/2016   $3,108,500                              FOYGroupLimited\n       Hume
16    Industrial  14/07/2016     $335,000                      ChristopherJamesConvine\n       Hume
17      Packaged  22/06/2016     $825,000                                  VisconHomes\n    Throsby
18      Packaged  22/06/2016     $562,500                                  VisconHomes\n    Throsby
19      Packaged  22/06/2016     $565,000                      MillerandTaitProperties\n    Throsby
20      Packaged  22/06/2016   $1,410,000                       Congli&KinweeJingZheng\n    Throsby
21      Packaged  22/06/2016   $1,120,000                       BrilliantBuildingGroup\n    Throsby
22      Packaged  22/06/2016   $1,100,000                     00FairmanHomesPtyLimited\n    Throsby
23      Packaged  22/06/2016   $1,100,000                       Congli&KinweeJingZheng\n    Throsby
24      Packaged  22/06/2016     $560,000                                  00TrentRudd\n    Throsby
25      Packaged  22/06/2016   $1,100,000                       FairmanHomesPtyLimited\n    Throsby
26      Packaged  22/06/2016   $1,125,000                      00PlatinumConstructions\n    Throsby
27      Packaged  22/06/2016   $1,140,000                        PlatinumConstructions\n    Throsby
28      Packaged  22/06/2016   $1,100,000                   00AJDevelopmentGroupPtyLtd\n    Throsby
29      Packaged  24/06/2016     $560,000                RoseDaleInvestmentsPtyLimited\n    Throsby
..           ...         ...          ...                                            ...        ...
413   Commercial  02/11/2005     $800,000                     KamirosInvestmentsPtyLtd\n   Fyshwick
414   Commercial  05/10/2005   $1,300,000                            SocemunitedPtyLtd\n   Greenway
415   Commercial  05/10/2005     $750,000         PostAuctionSale–AlbiaNominees5/12/05\n   Mitchell
416   Commercial  05/10/2005     $810,000                MRCCanberraDevelopmentsPtyLtd\n   Mitchell
417   Commercial  05/10/2005     $810,000                MRCCanberraDevelopmentsPtyLtd\n   Mitchell
418   Commercial  05/10/2005                                                   sPtyLtd\n   Mitchell
419   Commercial  31/08/2005   $4,500,000                            PerseDevelopments\n   Kingston
420   Commercial  31/08/2005   $3,250,000                         SunpatchParadePtyLtd\n       City
421   Commercial  25/05/2005     $400,000                 SoldtoPaitresPtyLtdon24/3/06\n    Calwell
422   Commercial  25/05/2005   $1,000,000                         Renato&MargaretCervo\n     Amaroo
423   Commercial  25/05/2005     $850,000  SoldinOctober2005toCollieStreetDevelopments\n   Fyshwick
424   Commercial  25/05/2005     $575,000                                                  Greenway
425   Commercial  25/05/2005     $880,000                                                  Greenway
426   Commercial  25/05/2005   $2,150,000    PostAuctionSale–NPSPropertyHoldingsPtyLtd\n   Greenway
427   Commercial  03/03/2005   $5,250,000         WillemsenInvestmentCorporationPtyLtd\n       City
428   Commercial  03/03/2005     $800,000       NetworkDevelopmentGroupPtyLtdorNominee\n   Fyshwick
429   Commercial  03/03/2005   $1,900,000                            SocemUnitedPtyLtd\n   Greenway
430   Commercial  03/03/2005     $970,000                                JanrulePtyLtd\n   Mitchell
431   Commercial  03/03/2005     $700,000                   TLJHoldingsPtyLtdornominee\n  Wanniassa
432   Commercial  17/11/2004     $800,000       DimensionalDevelopmentsAustraliaPtyLtd\n   Mitchell
433   Commercial  17/11/2004     $770,000                               EvenlongPtyLtd\n     Conder
434   Commercial  25/06/2004   $2,400,000                MainorePtyLtdornominee28/6/04\n   Kingston
435   Commercial  25/06/2004   $2,400,000                MainorePtyLtdornominee28/6/04\n   Kingston
436   Commercial  09/06/2004      $95,000                            GinoRosoorNominee\n     Florey
437   Commercial  09/06/2004   $1,160,000                 SHGCanberraInvestmentsPtyLtd\n     Hawker
438   Commercial  09/06/2004   $1,250,000                  AustralianPostalCorporation\n   Mitchell
439   Commercial  09/06/2004     $960,000           CanberraandDistrictPetanqueClubInc\n  Belconnen
440  Residential  13/08/2003  $33,000,000         CanberraInvestmentCorporationLimited\n           
441  Residential  13/08/2003  $31,250,000                                  XrisoPtyLtd\n           
442  Residential  13/08/2003  $42,000,000        CanberraResidentialDevelopmentsPtyLtd\n           

[443 rows x 5 columns]

还是这个函数好,df.to_string() to force it to show the whole table.


In [42]:
print(df.to_string())


      block type        date         price                                      purchaser      suburb
0    Residential  03/02/2017    $7,899,900                   DeltaDesignandConstruction\n     Throsby
1    Residential  03/02/2017    $4,810,000                     RomanDevelopmentHoldings\n     Throsby
2    Residential  03/02/2017    $9,393,600                   DeltaDesignandConstruction\n     Throsby
3    Residential  03/02/2017    $1,854,000                                  MSLProjects\n     Throsby
4    Residential  03/02/2017    $2,698,600                                  MSLProjects\n     Throsby
5    Residential  03/02/2017   $14,631,150                      WellingtonPropertyGroup\n     Throsby
6     Industrial  22/12/2016    $2,800,000                                                       Hume
7      Community  30/11/2016    $2,145,000                ChildcareInvestmentsAusPtyLtd\n   Charnwood
8            Mix  30/11/2016      $635,000                                  AnthonyLieu\n      Amaroo
9          Multi  30/11/2016    $2,000,000                        RMDProjectsNo.4PtyLtd\n   Moncrieff
10         Multi  30/11/2016      $975,000                                                  Moncrieff
11    Industrial  24/11/2016      $395,000                                                       Hume
12    Industrial  14/09/2016    $1,120,000                                                       Hume
13         Mixed  31/08/2016   $40,000,000                    ArtProjectsNomineesPtyLtd\n     Dickson
14    Industrial  29/08/2016      $385,000                                                       Hume
15    Industrial  11/08/2016    $3,108,500                              FOYGroupLimited\n        Hume
16    Industrial  14/07/2016      $335,000                      ChristopherJamesConvine\n        Hume
17      Packaged  22/06/2016      $825,000                                  VisconHomes\n     Throsby
18      Packaged  22/06/2016      $562,500                                  VisconHomes\n     Throsby
19      Packaged  22/06/2016      $565,000                      MillerandTaitProperties\n     Throsby
20      Packaged  22/06/2016    $1,410,000                       Congli&KinweeJingZheng\n     Throsby
21      Packaged  22/06/2016    $1,120,000                       BrilliantBuildingGroup\n     Throsby
22      Packaged  22/06/2016    $1,100,000                     00FairmanHomesPtyLimited\n     Throsby
23      Packaged  22/06/2016    $1,100,000                       Congli&KinweeJingZheng\n     Throsby
24      Packaged  22/06/2016      $560,000                                  00TrentRudd\n     Throsby
25      Packaged  22/06/2016    $1,100,000                       FairmanHomesPtyLimited\n     Throsby
26      Packaged  22/06/2016    $1,125,000                      00PlatinumConstructions\n     Throsby
27      Packaged  22/06/2016    $1,140,000                        PlatinumConstructions\n     Throsby
28      Packaged  22/06/2016    $1,100,000                   00AJDevelopmentGroupPtyLtd\n     Throsby
29      Packaged  24/06/2016      $560,000                RoseDaleInvestmentsPtyLimited\n     Throsby
30      Packaged  22/06/2016    $1,100,000              00RoseDaleInvestmentsPtyLimited\n     Throsby
31      Packaged  24/06/2016    $1,615,000                        PlatinumConstructions\n     Throsby
32         Mixed  15/06/2016   $21,650,000                          KegginsEstatePtyLtd\n    Kingston
33    Industrial  02/06/2016      $470,000   J&MGavinPtyLtdastrusteeforGavinFamilyTrust\n        Hume
34         Multi  09/05/2016    $6,540,000                            WDC(ACT)No3PtyLtd\n      Coombs
35         Multi  13/05/2016    $5,700,000                           M&AGroupsNo2PtyLtd\n      Coombs
36         Multi  09/05/2016    $6,300,000                                   May4PtyLtd\n      Coombs
37         Multi  04/05/2016    $4,250,000                        YXX6InvestmentsPtyLtd\n   Moncrieff
38         Multi  04/05/2016    $5,025,000               AntalijiaDevelopmentsNo3PtyLtd\n   Moncrieff
39         Multi  04/05/2016    $3,410,000                              SandODevelopers\n   Moncrieff
40     Community  29/04/2016      $801,000                  RivettChildcareCentrePtyLtd\n      Rivett
41     Community  22/04/2016    $6,106,000                             BaitlyPtyLimited\n     Higgins
42     Community  16/03/2016    $2,605,000                 HigginsChildcareCentrePtyLtd\n     Higgins
43         Multi  16/03/2016    $3,200,000                                                   Greenway
44      Packaged  26/02/2016    $2,230,000                       F.G.CDevelopmentPtyLtd\n     Throsby
45      Packaged  26/02/2016    $1,895,000            NablusBuildingandElectricalPtyLtd\n     Throsby
46         Multi  26/02/2016    $1,500,000                          KolakLandSPVTPtyLtd\n     Throsby
47         Multi  26/02/2016    $1,420,000                          KolakLandSPVTPtyLtd\n     Throsby
48      Packaged  26/02/2016    $2,750,000                               BurntAshPtyLtd\n     Throsby
49      Packaged  26/02/2016    $2,310,000                       F.G.CDevelopmentPtyLtd\n     Throsby
50         Multi  26/02/2016    $4,700,000                        BRSTDevelopmentPtyLtd\n     Throsby
51         Mixed  10/02/2016   $47,000,000                             AltairNo1.PtyLtd\n     Braddon
52    Industrial  08/12/2015    $1,900,000          JanakBlackleyPtyLtd&PhilSmithPtyLtd\n        Hume
53       Service  25/11/2015    $5,750,000                           VincentiaSthPtyLtd\n            
54    Industrial  25/11/2015      $415,000                                JosipKuljanac\n    Mitchell
55    Industrial  04/11/2015      $565,000                                                       Hume
56         Mixed  30/10/2015    $5,055,000                     GungahlinLifestylePtyLtd\n   Gungahlin
57         Multi  21/10/2015    $4,900,000                                   CDBuildP/L\n      Coombs
58         Multi  21/10/2015    $6,560,000                         MPKInvestmentsPtyLtd\n      Coombs
59    Industrial  19/10/2015      $720,000            UnitedInvestmentsGroup(ACT)PtyLtd\n        Hume
60        Single  18/09/2015      $876,000                             Mitchell18PtyLtd\n   Moncrieff
61        Single  18/09/2015      $880,000                            WonderhousePtyLtd\n   Moncrieff
62        Single  18/09/2015    $1,092,442                         ElevatedConstruction\n   Moncrieff
63        Single  18/09/2015    $4,027,500                                MijoantPtyLtd\n   Moncrieff
64        Single  18/09/2015    $3,680,000                                   PintoHomes\n   Moncrieff
65        Single  18/09/2015      $810,000                            RuizConstructions\n   Moncrieff
66        Single  18/09/2015      $463,000                           PoppySeedACTPtyLtd\n   Moncrieff
67        Single  18/09/2015      $640,000            NablusBuildingandElectricalPtyLtd\n   Moncrieff
68        Single  18/09/2015      $640,000            NablusBuildingandElectricalPtyLtd\n   Moncrieff
69        Single  18/09/2015      $351,600                             RenaissanceHomes\n   Moncrieff
70        Single  18/09/2015      $960,000            NablusBuildingandElectricalPtyLtd\n   Moncrieff
71        Single  18/09/2015    $1,038,000                             RenaissanceHomes\n   Moncrieff
72        Single  18/09/2015      $420,000                            RuizConstructions\n   Moncrieff
73    Industrial  14/09/2015    $1,779,460                       HavenInvestmentsPtyLtd\n        Hume
74         Mixed  26/08/2015    $6,000,000           EmpireGlobalDevelopmentsNo.3PtyLtd\n    Greenway
75         Mixed  26/08/2015    $5,600,000                        3PropertyGroup2PtyLtd\n   Moncrieff
76         Multi  26/08/2015    $4,050,000                       VillageNo.14PtyLimited\n   Moncrieff
77         Multi  26/08/2015    $2,500,000                       T&APropertyGroupPtyLtd\n   Moncrieff
78   Residential  26/08/2015    $1,300,000                                       PingLi\n   Moncrieff
79   Residential  26/08/2015    $1,190,000                        JBIDevelopmentsPtyLtd\n   Moncrieff
80    Industrial  14/08/2015      $370,000                                                       Hume
81       Englobo  28/07/2015  $241,300,000          CapitalEstateDevelopmentsPtyLimited\n            
82     Community  20/07/2015    $1,370,000           BramPtyLtdACN604949117AFTBKAMTrust\n      Kambah
83     Belconnen  17/06/2015   $22,100,000                  NGLandHoldingsNomineePtyLtd\n            
84    Industrial  02/06/2015      $542,850                           IronPropertyPtyLtd\n        Hume
85    Industrial  02/06/2015    $1,102,150                           IronPropertyPtyLtd\n        Hume
86     Community  24/04/2015      $630,000           MatsonStreetInvestmentsPtyLimiited\n      Gordon
87         Mixed  31/03/2015   $14,000,000                               TNRCPtyLimited\n    Kingston
88    Industrial  31/03/2015    $1,820,000                       HartSuperannuationFund\n        Hume
89          Aged  18/03/2015    $6,050,000        KambahRetirementDevelopmentPtyLimited\n      Kambah
90         Multi  11/03/2015    $4,520,000                         RMDProjectsNo3PtyLtd\n      Lawson
91         Multi  11/03/2015    $4,700,000                       2611DevelopmentsPtyLtd\n      Lawson
92         Multi  11/03/2015    $3,400,000                     ManixPropertyGroupPtyLtd\n      Lawson
93         Multi  11/03/2015    $2,000,000                   TriswatConstructionsPtyLtd\n      Lawson
94         Multi  11/03/2015    $6,400,000                           ArtHomesFivePtyltd\n      Lawson
95         Multi  11/03/2015    $4,850,000                AntalijaDevelopmentsNo2PtyLtd\n      Lawson
96         Local  04/03/2015    $2,700,000                                      RACervo\n      Coombs
97     Community  04/03/2015    $4,000,000                         WSLInvestmentsPTYLTD\n      Coombs
98         Mixed  25/02/2015    $2,625,000                MeteoraCanberraHoldingsPtyLtd\n    Greenway
99         Mixed  25/02/2015    $2,881,000                 SaleTerminated.Resold16/3/16\n    Greenway
100        Multi  25/02/2015    $1,100,000                    HighlandsBuildingCoPtyltd\n   Moncrieff
101        Multi  25/02/2015    $1,600,000                     MonteBuildingGroupPtyLtd\n   Moncrieff
102        Multi  25/02/2015    $2,000,000                    HighlandsBuildingCoPtyltd\n   Moncrieff
103        Multi  25/02/2015    $2,320,000                LongTermInvestmentsPtyLimited\n   Moncrieff
104        Multi  25/02/2015    $3,100,000                         RMDProjectsNo2PtyLtd\n   Moncrieff
105        Multi  25/02/2015    $4,400,000                               LCollissPtyLtd\n   Moncrieff
106        Multi  18/02/2015    $6,400,000                                   LommPtyLtd\n      Coombs
107        Multi  18/02/2015    $7,250,000         CanberraEstatesConsortiumNo.50PtyLtd\n      Coombs
108        Multi  18/02/2015    $6,900,000                            BGCNomineesPtyLtd\n      Coombs
109    Community  11/02/2015      $800,000                             SeedSeekerPtyLtd\n      Kambah
110    Community  11/02/2015      $940,000                         BrahmanCapitalPtyLtd\n      Kambah
111        Mixed  26/11/2014    $8,550,000                                                   Kingston
112    Community  19/11/2014                                                   Passedin\n      Gordon
113        Mixed  19/11/2014      $700,000            UnitedInvestmentsGroup(ACT)PtyLtd\n      Gordon
114       Lawson  29/10/2014    $3,600,000                      JZDevelopmentsAustralia\n            
115       Lawson  29/10/2014    $3,800,000                 PeachProperty(QLD)PtyLimited\n            
116       Lawson  29/10/2014    $5,500,000                           ArtHomesFourPtyLtd\n            
117       Lawson  29/10/2014    $1,750,000                AntalijaDevelopmentsNo1PtyLtd\n            
118     Facility  15/10/2014      $860,000                         CanberraGirlsGrammar\n  Yarralumla
119     Facility  15/10/2014      $920,000                         CanberraGirlsGrammar\n  Yarralumla
120        Mixed  01/10/2014    $2,230,000                         ZBDInvestmentsPtyLtd\n    Greenway
121        Mixed  01/10/2014    $5,400,000                 GeoconLandHoldingsNo.5PtyLtd\n    Greenway
122        Mixed  01/10/2014    $2,075,000                                  TimothyFinn\n    Greenway
123    Community  24/09/2014    $3,510,000                    R&RMedicalAustraliaPtyLtd\n   Gungahlin
124   Industrial  23/09/2014    $1,490,000                    PrecastProjectsLandPtyLtd\n        Hume
125   Industrial  19/09/2014      $280,000                           CourangaHumePtyLtd\n        Hume
126   Industrial  21/08/2014                                                   details)\n        Hume
127        Local  20/08/2014    $3,700,000                               M&AGroupPtyLtd\n    Franklin
128        Mixed  20/08/2014    $6,700,000                           ACN601334744PtyLtd\n    Harrison
129        Mixed  20/08/2014    $3,350,000                             PelleHomesPtyLtd\n    Franklin
130    Community  20/08/2014    $2,200,000                            TPChildcarePtyLtd\n    Franklin
131        Mixed  25/06/2014    $6,950,000                       WetcreekHoldingsPtyLtd\n    Kingston
132        Mixed  25/06/2014    $7,350,000                      TheForeshore(ACT)PtyLtd\n    Kingston
133        Mixed  11/05/2014   $15,000,000                CelestialDevelopmentNo5PtyLtd\n    Campbell
134        Mixed  11/05/2014   $13,500,000                CelestialDevelopmentNo2PtyLtd\n    Campbell
135        Mixed  11/05/2014   $14,500,000                CelestialDevelopmentNo3PtyLtd\n    Campbell
136        Mixed  11/05/2014   $11,000,000                CelestialDevelopmentNo4PtyLtd\n    Campbell
137        Mixed  11/05/2014    $9,750,000                   CelestialDevelopmentPtyLtd\n    Campbell
138        Mixed  05/05/2014    $5,005,000            ColesGroupPropertyDevelopmentsLtd\n      Amaroo
139       Lawson  03/06/2014    $4,400,000                JonathanBrothersInternational\n            
140       Lawson  03/06/2014    $5,070,000                       MinervaAustraliaPtyLtd\n            
141       Coombs  29/04/2014    $6,825,000              K.R.HoldingsAustraliaPtyLimited\n            
142        Multi  10/04/2014    $3,800,000         PeachProperty(ACT)ProprietaryLimited\n      Lawson
143        Multi  09/04/2014    $5,000,000                     ArtHomesThree(ACT)PtyLtd\n      Lawson
144        Multi  09/04/2014    $3,500,000                          ShiningStarupPtyLtd\n      Lawson
145        Mixed  02/04/2014    $6,850,000                       PeninsulaACTPtyLimited\n    Kingston
146  Residential  28/03/2014    $7,300,000                         Lonsdale28PtyLimited\n      Watson
147        Mixed  26/03/2014    $2,900,000                    PODPropertyGroupNo5PtyLtd\n    Franklin
148        Mixed  26/03/2014    $3,650,000                               BKL(ACT)PtyLtd\n    Franklin
149        Multi  26/03/2014    $2,260,000                        StrikaHomesPtyLimited\n    Franklin
150        Mixed  13/03/2014    $4,500,000            EmpireGlobalDevelopmentsNo2PtyLtd\n    Greenway
151        Multi  13/03/2014    $4,500,000                     KendrickEnterprisePtyLtd\n    Greenway
152        Mixed  07/03/2014   $10,100,000                         AbacusCrafted2PtyLtd\n    Kingston
153      Dickson  03/03/2014    $8,450,000            ColesGroupPropertyDevelopmentsLtd\n            
154        Mixed  26/02/2014    $1,300,000                   HBConstructions(ACT)PtyLtd\n   Ngunnawal
155  Residential  26/02/2014                                                   details)\n      Watson
156        Mixed  18/02/2014    $5,250,000                              FronterraPtyLtd\n    Kingston
157        Mixed  12/02/2014                                                   details)\n    Kingston
158        Mixed  12/02/2014                                                   details)\n    Kingston
159  Residential  19/12/2013    $3,800,000                                                     Wright
160        Multi  11/12/2013    $4,160,000    KegginsInternationalInvestmentGroupPtyLtd\n      Lawson
161        Multi  11/12/2013    $4,120,000              OrientalCompanionPropertyPtyLtd\n      Lawson
162        Multi  11/12/2013    $5,071,000              OrientalCompanionPropertyPtyLtd\n      Lawson
163        Multi  11/12/2013    $5,160,000              OrientalCompanionPropertyPtyLtd\n      Lawson
164   Industrial  29/11/2013    $1,090,000                             GAMCataniaPtyLtd\n        Hume
165     Terraces  29/11/2013    $2,400,000                               JulfrankPtyLtd\n      Wright
166        Mixed  29/11/2013    $2,350,000               EmpireGlobalDevelopmentsPtyLtd\n      Amaroo
167    Community  27/11/2013      $882,000                        KatherineAvenuePtyLtd\n      Amaroo
168         Town  27/11/2013    $1,700,000              OrientalCompanionPropertyPtyLtd\n      Amaroo
169     Terraces  27/11/2013    $2,650,000              OrientalCompanionPropertyPtyLtd\n      Amaroo
170        Mixed  27/11/2013    $1,575,000              OrientalCompanionPropertyPtyLtd\n      Amaroo
171        Mixed  20/11/2013    $3,500,000                            ARTHomesTwoPtyLtd\n    Franklin
172     Terraces  20/11/2013    $5,350,000                            RMDProjectsPtyLtd\n      Coombs
173     Terraces  20/11/2013    $4,950,000                    PODPropertyGroupNo4PtyLtd\n      Coombs
174        Multi  20/11/2013    $4,800,000                     CapitalProjectsNo3PtyLtd\n      Coombs
175        Mixed  23/09/2013   $11,700,000                     BlueSkies(ACT)PtyLimited\n    Kingston
176    Gungahlin  30/08/2013    $1,050,000                 EastlakesFootballClubLimited\n            
177  Residential  06/06/2013    $4,450,000                    CoombsModularLivingPtyLtd\n      Coombs
178    Community  24/05/2013      $530,000                KonstantinouConsultantsPtyLtd\n      Conder
179        Mixed  09/05/2013      $375,000                    KrncBrosInvestmentsPtyLtd\n        Holt
180        Mixed  07/05/2013      $475,000                                                      Banks
181  Residential  07/05/2013    $2,570,000               PlatinumConstructionsACTPtyLtd\n      Watson
182  Residential  30/04/2013    $4,910,500                    PODPropertyGroupNo1PtyLtd\n      Coombs
183    Macarthur  23/04/2013      $910,000              TeddyBearsChildCareCentrePtyLtd\n            
184        Mixed  09/04/2013    $4,550,000                          DemacPropertyPtyLtd\n     Phillip
185  Residential  02/04/2013                                                   details)\n      Coombs
186  Residential  02/04/2013                                                   details)\n      Coombs
187   Commercial  27/03/2013                                                   details)\n        Holt
188    Community  27/03/2013                                                   details)\n      Conder
189        Hotel  20/03/2013    $7,650,000                                                     Barton
190        Mixed  04/03/2013    $2,260,000                            ArtHomesOnePtyLtd\n    Franklin
191   Industrial  18/02/2013    $1,920,000        CanberradataCentresProprietaryLimited\n    Fyshwick
192        Multi  07/12/2012    $1,615,000                     CapitalProjectsNo2PtyLtd\n    Franklin
193   Commercial  29/11/2012    $1,250,000                     AutoworldGungahlinPtyLtd\n   Gungahlin
194   Commercial  29/11/2012    $1,850,000                               DavidOwenRolfe\n   Gungahlin
195    Community  29/11/2012      $660,000                        VicKidsPropertyPtyLtd\n       Oxley
196        Multi  29/11/2012    $2,500,000           DiIulioBuilding&ConstructionPtyLtd\n    Franklin
197        Mixed  29/11/2012                                                   details)\n    Franklin
198        Multi  29/11/2012                                                   details)\n    Franklin
199    Community  25/10/2012    $7,510,000                 LendLeaseRL(Ngunnawal)PtyLtd\n   Ngunnawal
200        Multi  23/10/2012    $1,350,000                        KWJHWellStationPtyLtd\n    Harrison
201        Multi  27/07/2012    $2,451,000      CanberraEstatesConsortiumNo34PtyLimited\n       Jacka
202        Multi  27/07/2012    $1,710,000      CanberraEstatesConsortiumNo34PtyLimited\n       Jacka
203        Multi  27/07/2012    $1,651,000      CanberraEstatesConsortiumNo34PtyLimited\n       Jacka
204        Multi  27/07/2012    $3,210,000      CanberraEstatesConsortiumNo34PtyLimited\n       Jacka
205        Multi  27/07/2012      $360,000                     SARG(Canberra)PtyLimited\n       Jacka
206  Residential  27/07/2012      $864,590                  ElevatedConstructionsPtyLtd\n       Jacka
207  Residential  27/07/2012    $1,167,896                  ElevatedConstructionsPtyLtd\n       Jacka
208        Multi  06/07/2012    $3,100,000                       PODPropertyGroupPtyLtd\n      Coombs
209        Mixed  29/06/2012    $2,250,000                MeteoraFranklinHoldingsPtyLtd\n    Franklin
210        Multi  25/06/2012                                                   details)\n      Coombs
211        Mixed  25/06/2012    $2,400,000                     KaiwenDevelopmentsPtyLtd\n   Gungahlin
212        Mixed  15/06/2012    $2,750,000                    PODPropertyGroupJV1PtyLtd\n    Harrison
213   Commercial  05/06/2012      $910,000         BredeManagementConsultantsPtyLimited\n   Belconnen
214    Community  05/06/2012      $685,000                                 TemlocPtyLtd\n        Holt
215        Mixed  31/05/2012    $5,750,000                GeoconBelconnenHoldingsPtyLtd\n   Belconnen
216        Multi  10/05/2012    $2,775,000       HodomePtyLimited&HZDDevelopmentsPtyLtd\n      Wright
217        Mixed  02/05/2012                                                   details)\n    Harrison
218        Mixed  02/05/2012                                                   PassedIn\n    Franklin
219        Mixed  02/05/2012                                                   details)\n   Belconnen
220        Multi  12/04/2012                                                  Available\n      Wright
221        Multi  12/04/2012                                                   details)\n      Wright
222   Industrial  11/04/2012    $1,000,000              TeddyBearsChildCareCentrePtyLtd\n        Hume
223        Multi  20/03/2012    $7,200,000       EmpireBuildingGroup(ACT)No.2PtyLimited\n      Wright
224       Watson  31/01/2012    $1,600,000                         MaryalicecPtyLimited\n            
225    Community  23/12/2011    $2,050,000                            InnovativeCareLtd\n     Calwell
226    Community  08/12/2011    $5,050,000                  LLPRetirementVillagesPtyLtd\n            
227    Community  14/12/2011      $595,000            MetroGroupInvestmentNo1PtyLimited\n      Conder
228    Community  13/12/2011      $320,000                         MrTienDo&MrsVanTrinh\n   Gungahlin
229        Multi  28/10/2011    $7,400,000                 RovinePropertyHoldingsPtyLtd\n      Wright
230        Mixed  25/10/2011    $3,050,000                                                   Franklin
231        Multi  07/10/2011    $9,200,000                 GeoconLandHoldingsNo.4PtyLtd\n      Wright
232  Residential  02/09/2011    $1,289,950                 BetterBuildingHoldingsPtyLtd\n      Wright
233     Terraces  02/09/2011    $2,600,000                      Section31MolongloPtyLtd\n      Wright
234     Terraces  02/09/2011    $3,262,500        CanberraPropertyHoldingsNo8PtyLimited\n      Wright
235  Residential  04/06/2011    $1,463,000                  MolongloValleyPropertyGroup\n      Wright
236        Mixed  26/07/2011    $3,200,000           EmpireBuildingGroup(ACT)PtyLimited\n    Harrison
237        Mixed  26/07/2011    $2,150,000                      BaronProjectsPtyLimited\n    Harrison
238   Industrial  23/06/2011                                                  Available\n        Hume
239   Industrial  23/06/2011                                                   details)\n        Hume
240   Industrial  23/06/2011                                                   details)\n        Hume
241   Industrial  23/06/2011                                                   details)\n        Hume
242   Industrial  23/06/2011                                                   details)\n        Hume
243   Industrial  23/06/2011                                                  Available\n        Hume
244   Industrial  23/06/2011                                                   details)\n        Hume
245   Industrial  23/06/2011      $675,000                                PD(ACT)PtyLtd\n    Fyshwick
246   Industrial  23/06/2011      $815,000                                PD(ACT)PtyLtd\n    Fyshwick
247  Residential  22/06/2011    $1,650,000                     MetalFire(ACT)PtyLimited\n    Harrison
248  Residential  22/06/2011      $560,000                   DinamicConstructionsPtyLtd\n        Page
249        Mixed  17/06/2011    $7,000,000                        MPGBurleighPtyLimited\n   Belconnen
250      Englobo  15/06/2011   $36,250,000       CanberraEstateConsortiumNo30PtyLimited\n   Ngunnawal
251   Industrial  07/06/2011    $1,200,000                             Cessnock88PtyLtd\n    Fyshwick
252   Industrial  07/06/2011      $700,000                             Cessnock88PtyLtd\n    Fyshwick
253   Industrial  07/06/2011      $710,000                     HawkesburyProjectsPtyLtd\n    Fyshwick
254   Commercial  31/05/2011    $2,500,000                         EmeraldMaxPtyLimited\n      Barton
255   Commercial  24/05/2011    $2,900,000                            ElvinGlobalPtyLtd\n    Nicholls
256    Community  18/05/2011      $733,000               MerkosL'InyoneiChinuch(ACT)Inc\n    Giralang
257    Community  18/05/2011      $695,000              MajuraParkChildcareCentrePryLtd\n    McKellar
258      Englobo  16/05/2011   $14,280,000                        WorthStreetPtyLimited\n            
259  Residential  07/04/2011      $786,100                            DeemroPty.Limited\n    Harrison
260  Residential  07/04/2011      $727,100                            DeemroPty.Limited\n    Harrison
261  Residential  07/04/2011      $768,000            NablusBuildingandElectricalPtyLtd\n    Harrison
262  Residential  07/04/2011      $750,000                 BTGPropertyDevelopmentPtyLtd\n    Harrison
263  Residential  07/04/2011      $750,000                 BTGPropertyDevelopmentPtyLtd\n    Harrison
264  Residential  07/04/2011      $785,900                  AntalijaConstructionsPtyLtd\n    Harrison
265  Residential  07/04/2011      $676,000                  ElevatedConstructionsPtyLtd\n    Harrison
266  Residential  07/04/2011      $563,400                      StylishHomes(ACT)PtyLtd\n    Harrison
267  Residential  07/04/2011      $982,520        CanberraPropertyHoldingsNo8PtyLimited\n    Harrison
268  Residential  07/04/2011      $983,112        CanberraPropertyHoldingsNo8PtyLimited\n    Harrison
269        Multi  07/04/2011    $1,223,880                          BriarwoodPtyLimited\n    Harrison
270        Multi  07/04/2011    $2,447,760                          BriarwoodPtyLimited\n    Harrison
271        Multi  07/04/2011    $1,728,000                     Sutton&HorsleyPtyLimited\n    Harrison
272   Commercial  29/03/2011    $6,800,000                           BDC(ACT)PTYLIMITED\n     Forrest
273        Mixed  22/03/2011    $3,700,000                       M.P.KInvestmentsPtyLtd\n    Franklin
274  Residential  22/03/2011    $1,650,000                     ZinaPtyLtd&LemPtyLimited\n    Franklin
275        Mixed  22/03/2011    $3,850,000         Taofei(Australia)InternationalPtyLtd\n    Franklin
276        Mixed  22/03/2011    $3,100,000                       IIDevelopmentsJVPtyLtd\n    Harrison
277   Industrial  22/02/2011      $850,000                       MidlecPropertiesPtyLtd\n    Fyshwick
278   Industrial  22/02/2011      $620,000         DiamondPropertyInvestmentGroupPtyLtd\n    Fyshwick
279   Industrial  22/02/2011    $1,100,000                 E&ESterlingEnterprisesPtyLtd\n    Fyshwick
280   Industrial  22/02/2011      $610,000                CanberraDevelopmentPtyLimited\n    Fyshwick
281   Industrial  22/02/2011      $600,000                                     GAPtyLtd\n    Fyshwick
282        Mixed  16/02/2011    $9,100,000                 EngloboGroupVentureNo3PtyLtd\n    Kingston
283      Terrace  21/12/2010    $4,640,000                         Section30FordePtyLtd\n      Wright
284        Multi  17/12/2010    $4,380,000                       IntelligentGroupPtyLtd\n      Wright
285        Multi  16/12/2010    $3,150,000      CanberraEstateConsortiumNo.29PtyLimited\n    Franklin
286   Commercial  30/11/2010    $1,260,000                                                  Belconnen
287   Commercial  30/11/2010      $230,000                               JAGASitePtyLtd\n     Higgins
288   Commercial  30/11/2010      $350,000                               MatkovicPtyLtd\n        Holt
289        Multi  24/11/2010    $1,240,000                                AC6PtyLimited\n      Bonner
290        Multi  24/11/2010    $2,290,000                                                     Bonner
291   Industrial  17/11/2010    $1,000,000     MetroContruction&Developments(ACT)PtyLTD\n    Fyshwick
292   Industrial  17/11/2010    $1,200,000             MrPCiancio&MrGCirillo&MrACirillo\n    Fyshwick
293   Industrial  17/11/2010      $960,000           AustralianCapitalContractorsPtyLtd\n    Fyshwick
294   Industrial  17/11/2010                                                        N/A\n    Fyshwick
295   Industrial  17/11/2010      $930,000                                  AjumaPtyLtd\n    Fyshwick
296   Industrial  17/11/2010    $1,180,000                           VictoryHomesPtyLtd\n    Fyshwick
297   Industrial  11/11/2010    $1,920,000   Namewithheld*'Didnotcomplete'See18/02/2013\n    Fyshwick
298   Industrial  23/09/2010    $1,450,000                            GusherdPtyLimited\n    Fyshwick
299   Industrial  23/09/2010    $1,600,000                            GusherdPtyLimited\n    Fyshwick
300   Industrial  23/09/2010    $1,300,000                                                   Fyshwick
301   Industrial  06/10/2010    $1,300,000                NetworkDevelopmentGroupPtyLtd\n    Fyshwick
302   Industrial  14/10/2010    $1,675,000                      Beaconsfield8PtyLimited\n    Fyshwick
303   Commercial  14/09/2010      $270,000                      BenchmarkProjectsPtyLtd\n   Gungahlin
304   Commercial  14/09/2010      $720,000                                G.B.M.WPtyLtd\n   Gungahlin
305  Residential  26/06/2010    $5,800,000                         MPKInvestmentsPtyLtd\n      Wright
306  Residential  26/06/2010    $2,900,000                            MascotHomesPryLtd\n      Wright
307  Residential  16/07/2010                                                  purchaser\n    Franklin
308   Commercial  16/07/2010                                                    mPtyLtd\n    Fyshwick
309   Commercial  16/07/2010                                                    mPtyLtd\n    Fyshwick
310   Commercial  01/07/2010                                                    sPtyLtd\n    Fyshwick
311   Commercial  29/06/2010   $14,100,000              13.9BartonResidentialPtyLimited\n       Bruce
312  Residential  29/06/2010    $3,520,000                    EngloboGroupNo.2P/LPtyLtd\n    Franklin
313  Residential  29/06/2010    $3,400,000                            CaparraPtyLimited\n    Franklin
314  Residential  29/06/2010    $4,150,000                                                   Franklin
315   Commercial  10/05/2010    $1,125,000                             LandcoPtyLimited\n   Gungahlin
316   Commercial  10/05/2010    $2,850,000            GeoconCommercialHoldingsPtyLtdfor\n   Gungahlin
317  Residential  04/05/2010    $1,015,000                                   PaulSeears\n      Bonner
318  Residential  04/05/2010      $828,000                         MHKEnterprisesPtyLtd\n      Bonner
319  Residential  04/05/2010    $1,256,000                        TokichHomesPtyLimited\n      Bonner
320  Residential  04/05/2010      $800,000            RevolutionBuildingGroupPtyLimited\n      Bonner
321  Residential  04/05/2010      $825,000                     SoldoConstructionsPtyLtd\n      Bonner
322  Residential  04/05/2010      $923,000                 AlvesConstructionsPtyLimited\n      Bonner
323  Residential  04/05/2010      $955,000                             TokichPtyLimited\n      Bonner
324  Residential  04/05/2010      $590,000       SublimeConstructions&DevelopmentPtyLtd\n    Franklin
325        Multi  20/04/2010    $3,060,000                   DevproNominees#3PtyLimited\n      Bonner
326        Multi  20/04/2010    $2,410,000                 PelleConstructionsPtyLimited\n      Bonner
327        Multi  20/04/2010    $1,400,000      BasicInvestmentsPtyLtd&T&JSeseljaPtyLtd\n      Bonner
328               18/03/2009                                                   03/2009/\n            
329         Aged  29/10/2008    $2,800,000            HealthcarePropertyFundsPtyLimited\n    Stirling
330  Residential  30/09/2008    $2,550,000                            ParklaneACTPtyLtd\n            
331  Residential  11/09/2008   $52,000,000                MacquarieBank&DelfinLendLease\n       Casey
332   Commercial  03/07/2008    $2,000,000                       Jackson(ACT)PtyLimited\n    Fyshwick
333   Commercial  18/06/2008                                                   Passedin\n    Fyshwick
334   Commercial  11/06/2008      $525,000                  MetroDevelopment(ACT)PtyLtd\n            
335   Commercial  11/06/2008      $455,000                     HudinaHoldingsPtyLimited\n            
336   Commercial  11/06/2008      $455,000                     SameshSinghandSubashDang\n            
337   Commercial  11/06/2008      $475,000                               MerrakaiPtyLtd\n            
338   Commercial  28/05/2008    $1,850,000                                 N&SHaridemos\n   Belconnen
339   Commercial  28/05/2008    $5,650,000                            TelidooPtyLimited\n   Belconnen
340   Commercial  28/05/2008      $400,000                            ScottBradleyEllis\n      Isaacs
341   Commercial  28/05/2008      $460,000                        Clancy(ACT)PtyLimited\n   MacGregor
342   Commercial  28/05/2008    $3,300,000      AmalgamatedInvestmentsCorporationPtyLtd\n    Griffith
343   Commercial  31/03/2008    $1,000,000                 BourkesHillStationPtyLimited\n    Fyshwick
344   Commercial  31/03/2008      $950,000                                                   Fyshwick
345   Commercial  31/03/2008      $720,000         SportCentreManagementAustraliaPtyLtd\n      Kambah
346   Commercial  31/03/2008    $1,900,000                 GeoconConstructorsPtyLimited\n      Dunlop
347   Commercial  31/03/2008    $3,200,000                              Mini(ACT)PtyLtd\n    Fyshwick
348   Commercial  31/03/2008    $3,000,000                         LacedaemonPtyLimited\n    Fyshwick
349   Commercial  31/03/2008    $4,700,000                         AngusHomesPtyLimited\n     Dickson
350  Residential  14/03/2008    $2,450,000              B&TDevelopments(ACT)4PtyLimited\n   Gungahlin
351  Residential  14/03/2008    $2,300,000           CapitalTownhouseDevelopmentsPtyLtd\n   Gungahlin
352  Residential  14/03/2008    $1,950,000             NationalCapitalInvestmentsPtyLtd\n   Gungahlin
353  Residential  14/03/2008    $2,000,000                       MetrosEstatePtyLimited\n   Gungahlin
354   Commercial  14/12/2007   $92,000,000           CityWestPropertyHoldingsPtyLimited\n            
355  Residential  12/12/2007   $51,150,000                                 CRDNo1PtyLtd\n       Casey
356   Commercial  07/11/2007    $5,000,000                               PhumPtyLimited\n    Fyshwick
357   Commercial  07/11/2007    $4,250,000    MichalisHoldingsPtyLtdandNikdiaHumePtyLtd\n    Fyshwick
358        Mixed  25/10/2007    $1,090,000                   ClassicConstructionsPtyLtd\n      Dunlop
359   Commercial  25/10/2007      $195,000                           KlekHoldingsPtyLtd\n   MacGregor
360   Industrial  25/10/2007    $2,600,000                                 GassonPtyLtd\n    Mitchell
361   Industrial  25/10/2007    $2,175,000                                 GassonPtyLtd\n    Mitchell
362   Commercial  28/08/2007    $9,400,000                   CanberraInvestmentCorp.Ltd\n    Kingston
363   Industrial  23/07/2007      $700,000               KonstantinovDevelopmentsPtyLtd\n    Mitchell
364   Industrial  23/07/2007    $1,250,000       DimensionalDevelopmentsAustraliaPtyLtd\n    Mitchell
365   Industrial  23/07/2007    $2,025,000                                GransonPtyLtd\n        Hume
366   Commercial  23/07/2007      $900,000                              U-Stow-ItPtyLtd\n      Kambah
367  Residential  23/07/2007      $306,000                               SouadHarmouche\n       Oxley
368   Industrial  31/05/2007    $5,500,000                                GransonPtyLtd\n        Hume
369          Lot  31/05/2007      $630,000                     ICformworkServicesPtyLtd\n    Waniassa
370          Lot  31/05/2007    $1,250,000                               ClonmellPtyLdt\n      Conder
371  Residential  31/05/2007      $210,000                                  KlekHolding\n     Higgins
372  Residential  31/05/2007      $230,000                                  KlekHolding\n     Higgins
373  Residential  31/05/2007    $6,800,000                      MacGregorProjectsPtyLtd\n            
374      Englobo  11/04/2007   $45,500,000         CanberraEstatesConsortiumNo.19PtyLtd\n   Macgregor
375  Residential  28/02/2007      $450,000                              QProjectsPtyLtd\n        Page
376  Residential  19/12/2006    $3,650,000           CanberraPropertyDevelopmentsPtyLtd\n    Bonython
377  Residential  19/12/2006    $3,000,000                     AnitaConstructionsPtyLtd\n    Bonython
378  Residential  19/12/2006    $2,700,000                         M&RInvestmentsPtyLtd\n    Bonython
379  Residential  19/12/2006    $1,865,000           HZDDevelopmentsPtyLtd&HodomePtyLtd\n    Bonython
380       Office  06/12/2006    $3,010,000                                 A&SHaridemos\n    Kingston
381       Office  06/12/2006    $2,660,000          CapitalCommercialDevelopmentsPtyLtd\n    Kingston
382       Office  06/12/2006    $2,950,000          CapitalCommercialDevelopmentsPtyLtd\n    Kingston
383       Office  06/12/2006    $3,050,000                               GemzPtyLimited\n    Kingston
384       Health  06/12/2006      $500,000                                                     Conder
385   Industrial  26/09/2006      $770,000       RoveraConstructionsPtyLtd&DesiNominees\n        Hume
386          Lot  30/10/2006    $9,350,000                                ZaindenPtyLtd\n    Greenway
387    Community  26/09/2006      $960,000                     MichalisManagementPtyLtd\n  Yarralumla
388    Community  26/09/2006                                                    cPtyLtd\n   Belconnen
389   Commercial  26/09/2006                                                    sPtyLtd\n    Mitchell
390   Commercial  26/09/2006      $520,000                    RoveraConstructionsPtyLtd\n        Hume
391   Commercial  26/09/2006                                                    3,500m2\n        Hume
392   Industrial  04/07/2006    $1,500,000                                 GassonPtyLtd\n    Mitchell
393   Industrial  04/07/2006      $750,000               KonstantinouDevelopmentsPtyLtd\n    Mitchell
394   Industrial  04/07/2006      $740,000               MultiPropertyInvestmentsPtyLtd\n    Mitchell
395   Industrial  04/07/2006      $620,000                DimensionalDevelopemtnsPtyLtd\n    Mitchell
396   Industrial  04/07/2006    $1,100,000                           BinkNomineesPtyLtd\n    Mitchell
397   Commercial  06/03/2006                                                   21,500m2\n    Greenway
398   Commercial  06/03/2006    $3,400,000                       MichalisHoldingsPtyLtd\n    Greenway
399   Commercial  06/03/2006      $576,000                                TsouliasGroup\n     Calwell
400   Commercial  06/03/2006      $565,000                                TsouliasGroup\n     Calwell
401   Commercial  06/03/2006      $815,000                         KCWLPtyLtd(Kingswim)\n     Calwell
402   Commercial  16/12/2005   $39,000,000                              GlenshinePtyLtd\n    Fyshwick
403   Commercial  14/12/2005    $5,000,000                                   VisePtyLtd\n   Belconnen
404  Residential  07/12/2005    $7,850,000                                  KienaPtyLtd\n   Belconnen
405  Residential  07/12/2005                                                    sPtyLtd\n   Gungahlin
406   Commercial  07/12/2005    $2,800,000                              NRMATreasuryLtd\n    Greenway
407   Commercial  02/11/2005      $330,000                                                     Kambah
408   Commercial  02/11/2005      $450,000                      RosoPropertyGroupPtyLtd\n    Mitchell
409   Commercial  02/11/2005    $1,210,000                            PBSProjectsPtyLtd\n    Fyshwick
410   Commercial  02/11/2005      $700,000                     CollieStreetDevelopments\n    Fyshwick
411   Commercial  02/11/2005      $660,000                                    BarryFaux\n    Fyshwick
412   Commercial  02/11/2005      $650,000                     KamirosInvestmentsPtyLtd\n    Fyshwick
413   Commercial  02/11/2005      $800,000                     KamirosInvestmentsPtyLtd\n    Fyshwick
414   Commercial  05/10/2005    $1,300,000                            SocemunitedPtyLtd\n    Greenway
415   Commercial  05/10/2005      $750,000         PostAuctionSale–AlbiaNominees5/12/05\n    Mitchell
416   Commercial  05/10/2005      $810,000                MRCCanberraDevelopmentsPtyLtd\n    Mitchell
417   Commercial  05/10/2005      $810,000                MRCCanberraDevelopmentsPtyLtd\n    Mitchell
418   Commercial  05/10/2005                                                    sPtyLtd\n    Mitchell
419   Commercial  31/08/2005    $4,500,000                            PerseDevelopments\n    Kingston
420   Commercial  31/08/2005    $3,250,000                         SunpatchParadePtyLtd\n        City
421   Commercial  25/05/2005      $400,000                 SoldtoPaitresPtyLtdon24/3/06\n     Calwell
422   Commercial  25/05/2005    $1,000,000                         Renato&MargaretCervo\n      Amaroo
423   Commercial  25/05/2005      $850,000  SoldinOctober2005toCollieStreetDevelopments\n    Fyshwick
424   Commercial  25/05/2005      $575,000                                                   Greenway
425   Commercial  25/05/2005      $880,000                                                   Greenway
426   Commercial  25/05/2005    $2,150,000    PostAuctionSale–NPSPropertyHoldingsPtyLtd\n    Greenway
427   Commercial  03/03/2005    $5,250,000         WillemsenInvestmentCorporationPtyLtd\n        City
428   Commercial  03/03/2005      $800,000       NetworkDevelopmentGroupPtyLtdorNominee\n    Fyshwick
429   Commercial  03/03/2005    $1,900,000                            SocemUnitedPtyLtd\n    Greenway
430   Commercial  03/03/2005      $970,000                                JanrulePtyLtd\n    Mitchell
431   Commercial  03/03/2005      $700,000                   TLJHoldingsPtyLtdornominee\n   Wanniassa
432   Commercial  17/11/2004      $800,000       DimensionalDevelopmentsAustraliaPtyLtd\n    Mitchell
433   Commercial  17/11/2004      $770,000                               EvenlongPtyLtd\n      Conder
434   Commercial  25/06/2004    $2,400,000                MainorePtyLtdornominee28/6/04\n    Kingston
435   Commercial  25/06/2004    $2,400,000                MainorePtyLtdornominee28/6/04\n    Kingston
436   Commercial  09/06/2004       $95,000                            GinoRosoorNominee\n      Florey
437   Commercial  09/06/2004    $1,160,000                 SHGCanberraInvestmentsPtyLtd\n      Hawker
438   Commercial  09/06/2004    $1,250,000                  AustralianPostalCorporation\n    Mitchell
439   Commercial  09/06/2004      $960,000           CanberraandDistrictPetanqueClubInc\n   Belconnen
440  Residential  13/08/2003   $33,000,000         CanberraInvestmentCorporationLimited\n            
441  Residential  13/08/2003   $31,250,000                                  XrisoPtyLtd\n            
442  Residential  13/08/2003   $42,000,000        CanberraResidentialDevelopmentsPtyLtd\n            

In [ ]: